diff --git a/.env b/.env deleted file mode 100644 index b30889fdb059..000000000000 --- a/.env +++ /dev/null @@ -1,5 +0,0 @@ -PORT=3000 -CHOKIDAR_USEPOLLING=true -BROWSER=none -GENERATE_SOURCEMAP=false -WDS_SOCKET_PORT=3000 diff --git a/.node-version b/.node-version deleted file mode 100644 index 3c032078a4a2..000000000000 --- a/.node-version +++ /dev/null @@ -1 +0,0 @@ -18 diff --git a/.secretlintrc.json b/.secretlintrc.json deleted file mode 100644 index 7a1a5df3c28e..000000000000 --- a/.secretlintrc.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "rules": [ - { - "id": "@secretlint/secretlint-rule-preset-recommend" - } - ] -} diff --git a/.stylelintrc.json b/.stylelintrc.json deleted file mode 100644 index a89421b2dbbc..000000000000 --- a/.stylelintrc.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "stylelint-config-sass-guidelines", - "rules": { - "selector-class-pattern": null, - "max-nesting-depth": 6, - "selector-no-qualifying-type": [ - true, - { - "ignore": ["attribute", "class"] - } - ], - "selector-max-compound-selectors": 5 - } -} diff --git a/.vscode/extensions.json b/.vscode/extensions.json deleted file mode 100644 index c21abba6989f..000000000000 --- a/.vscode/extensions.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "recommendations": [ - "github.vscode-codeql", - "dbaeumer.vscode-eslint", - "eg2.vscode-npm-script", - "christian-kohler.npm-intellisense", - "esbenp.prettier-vscode", - "stylelint.vscode-stylelint", - "editorconfig.editorconfig" - ] -} diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index b0363910187c..000000000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - "name": "PowerShell: Execute current file", - "type": "PowerShell", - "request": "launch", - "script": "${file}", - "cwd": "${file}" - }, - { - "command": "npm run start-swa", - "name": "Run Emulator", - "request": "launch", - "type": "node-terminal" - }, - { - "command": "npm start", - "name": "Run Frontend", - "request": "launch", - "type": "node-terminal", - "preLaunchTask": "Run All Tasks", - "resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"] - }, - { - "type": "chrome", - "request": "launch", - "name": "Launch Chrome Debugger", - "url": "http://localhost:4280" - }, - { - "type": "PowerShell", - "name": "Launch in Windows Terminal", - "request": "launch", - "cwd": "${cwd}", - "script": ". '${cwd}\\Tools\\Start-CippDevEmulators.ps1'" - } - ], - "compounds": [ - { - "name": "Launch it all 🚀", - "configurations": ["Run Frontend", "Run Emulator"] - } - ] -} diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 1bcdb9744954..000000000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "Run All Tasks", - "dependsOn": ["Run API", "Run Azurite"] - }, - { - "label": "Run Azurite", - "type": "shell", - "command": "azurite --location ../", - "isBackground": true, - "problemMatcher": { - "pattern": [ - { - "regexp": ".", - "file": 1, - "location": 2, - "message": 3 - } - ], - "background": { - "activeOnStart": true, - "beginsPattern": ".", - "endsPattern": "." - } - } - }, - { - "label": "Run API", - "type": "shell", - "command": "func start --verbose", - "isBackground": true, - "options": { - "cwd": "${workspaceFolder}/../CIPP-API" - }, - "problemMatcher": { - "pattern": [ - { - "regexp": ".", - "file": 1, - "location": 2, - "message": 3 - } - ], - "background": { - "activeOnStart": true, - "beginsPattern": ".", - "endsPattern": "." - } - } - } - ] -} diff --git a/.yamllint.yaml b/.yamllint.yaml deleted file mode 100644 index e907140bfe4d..000000000000 --- a/.yamllint.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -extends: default diff --git a/Generate-Import-Map.js b/Generate-Import-Map.js deleted file mode 100644 index d8b23547c55b..000000000000 --- a/Generate-Import-Map.js +++ /dev/null @@ -1,35 +0,0 @@ -// Using ES Module syntax compatible with Node.js 18 and ensuring cross-platform compatibility -import fs from 'fs/promises' -import path from 'path' -import { fileURLToPath } from 'url' - -// Convert __dirname equivalent for ES Modules -const __filename = fileURLToPath(import.meta.url) -const __dirname = path.dirname(__filename) - -// Adjust the relative path as necessary to point to your routes.json location -const routesPath = path.join(__dirname, './src/routes.json') // Example path - -// Load routes.json with an import assertion for JSON -const routes = await import(`file://${routesPath}`, { assert: { type: 'json' } }).then( - (module) => module.default, -) - -let importsMap = "import React from 'react'\n export const importsMap = {\n" - -routes.forEach((route) => { - if (route.component) { - // Adjust the import path to be relative to the importsMap.js file location - const importPath = route.component.replace('views', './views') - // Ensure paths are Unix-like for the dynamic import to work cross-platform - const unixImportPath = importPath.split(path.sep).join('/') - importsMap += ` "${route.path}": React.lazy(() => import('${unixImportPath}')), \n` - } -}) - -importsMap += '}\nexport default importsMap' - -// Specify the output file path for the generated imports map -const outputPath = path.join(__dirname, './src/importsMap.jsx') -await fs.writeFile(outputPath, importsMap) -console.log('Import map generated.') diff --git a/Importmap.ps1 b/Importmap.ps1 deleted file mode 100644 index 357c3af5d1ce..000000000000 --- a/Importmap.ps1 +++ /dev/null @@ -1,22 +0,0 @@ -// generate-imports-map.js -const fs = require('fs') -const path = require('path') -const routes = require('./path/to/routes.json') - -let importsMap = 'export const importsMap = {\n' - -routes.forEach(route => { - if (route.component) { - // Convert the path to a format that's relative to where you'll be importing from - const importPath = route.component.replace('views', './views') - const componentName = path.basename(importPath) - - // Create an import statement for the component - importsMap += "${route.path}": React.lazy(() = > import('${importPath}')), \n`; - } - }) - -importsMap += '};\n' - -fs.writeFileSync(path.resolve(__dirname,'./src/importsMap.js'), importsMap) -console.log('Import map generated.') diff --git a/LICENSE.CustomLicenses b/LICENSE.CustomLicenses deleted file mode 100644 index c66793baf6d3..000000000000 --- a/LICENSE.CustomLicenses +++ /dev/null @@ -1,3 +0,0 @@ -Custom licenses are available upon agreement via Github Sponsorships. Custom licenses will not have to be published in this repository. All contributors automatically agree with this provision. - -A CLA is signed by contributors if they have contributed before these provisions. Only contributions currently in the running latest release require the CLA to be signed. The CLA is signed by creating a issue using the issue template "CLA". the agreement will be related directly to available CLA template. diff --git a/LICENSE.md b/LICENSE.md deleted file mode 100644 index 162676cbef61..000000000000 --- a/LICENSE.md +++ /dev/null @@ -1,661 +0,0 @@ - GNU AFFERO GENERAL PUBLIC LICENSE - Version 3, 19 November 2007 - -Copyright (C) 2007 Free Software Foundation, Inc. -Everyone is permitted to copy and distribute verbatim copies -of this license document, but changing it is not allowed. - - Preamble - -The GNU Affero General Public License is a free, copyleft license for -software and other kinds of works, specifically designed to ensure -cooperation with the community in the case of network server software. - -The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -our General Public Licenses are intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. - -When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - -Developers that use our General Public Licenses protect your rights -with two steps: (1) assert copyright on the software, and (2) offer -you this License which gives you legal permission to copy, distribute -and/or modify the software. - -A secondary benefit of defending all users' freedom is that -improvements made in alternate versions of the program, if they -receive widespread use, become available for other developers to -incorporate. Many developers of free software are heartened and -encouraged by the resulting cooperation. However, in the case of -software used on network servers, this result may fail to come about. -The GNU General Public License permits making a modified version and -letting the public access it on a server without ever releasing its -source code to the public. - -The GNU Affero General Public License is designed specifically to -ensure that, in such cases, the modified source code becomes available -to the community. It requires the operator of a network server to -provide the source code of the modified version running there to the -users of that server. Therefore, public use of a modified version, on -a publicly accessible server, gives the public access to the source -code of the modified version. - -An older license, called the Affero General Public License and -published by Affero, was designed to accomplish similar goals. This is -a different license, not a version of the Affero GPL, but Affero has -released a new version of the Affero GPL which permits relicensing under -this license. - -The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - -0. Definitions. - -"This License" refers to version 3 of the GNU Affero General Public License. - -"Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - -"The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - -To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - -A "covered work" means either the unmodified Program or a work based -on the Program. - -To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - -To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - -An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - -1. Source Code. - -The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - -A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - -The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - -The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - -The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - -The Corresponding Source for a work in source code form is that -same work. - -2. Basic Permissions. - -All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - -You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - -Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - -3. Protecting Users' Legal Rights From Anti-Circumvention Law. - -No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - -When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - -4. Conveying Verbatim Copies. - -You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - -You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - -5. Conveying Modified Source Versions. - -You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - -A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - -6. Conveying Non-Source Forms. - -You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - -A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - -A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - -"Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - -If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - -The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - -Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - -7. Additional Terms. - -"Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - -When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - -Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - -All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - -If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - -Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - -8. Termination. - -You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - -However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - -Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - -Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - -9. Acceptance Not Required for Having Copies. - -You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - -10. Automatic Licensing of Downstream Recipients. - -Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - -An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - -You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - -11. Patents. - -A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - -A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - -Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - -In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - -If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - -If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - -A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - -Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - -12. No Surrender of Others' Freedom. - -If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - -13. Remote Network Interaction; Use with the GNU General Public License. - -Notwithstanding any other provision of this License, if you modify the -Program, your modified version must prominently offer all users -interacting with it remotely through a computer network (if your version -supports such interaction) an opportunity to receive the Corresponding -Source of your version by providing access to the Corresponding Source -from a network server at no charge, through some standard or customary -means of facilitating copying of software. This Corresponding Source -shall include the Corresponding Source for any work covered by version 3 -of the GNU General Public License that is incorporated pursuant to the -following paragraph. - -Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the work with which it is combined will remain governed by version -3 of the GNU General Public License. - -14. Revised Versions of this License. - -The Free Software Foundation may publish revised and/or new versions of -the GNU Affero General Public License from time to time. Such new versions -will be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU Affero General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU Affero General Public License, you may choose any version ever published -by the Free Software Foundation. - -If the Program specifies that a proxy can decide which future -versions of the GNU Affero General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - -Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - -15. Disclaimer of Warranty. - -THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -16. Limitation of Liability. - -IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - -17. Interpretation of Sections 15 and 16. - -If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - -If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - -To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as published - by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - -If your software can interact with users remotely through a computer -network, you should also make sure that it provides a way for users to -get its source. For example, if your program is a web application, its -interface could display a "Source" link that leads users to an archive -of the code. There are many ways you could offer source, and different -solutions will be better for different programs; see section 13 for the -specific requirements. - -You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU AGPL, see -. diff --git a/Tools/Start-CippDevEmulators.ps1 b/Tools/Start-CippDevEmulators.ps1 deleted file mode 100644 index bde7511caac1..000000000000 --- a/Tools/Start-CippDevEmulators.ps1 +++ /dev/null @@ -1,12 +0,0 @@ -Write-Host 'Starting CIPP Dev Emulators' -Get-Process node -ErrorAction SilentlyContinue | Stop-Process -ErrorAction SilentlyContinue -$Path = (Get-Item $PSScriptRoot).Parent.Parent.FullName - -$Process = Read-Host -Prompt 'Start Process Function (y/N)?' - -if ($Process -eq 'y') { - wt --title CIPP`; new-tab --title 'Azurite' -d $Path pwsh -c azurite`; new-tab --title 'FunctionApp' -d $Path\CIPP-API pwsh -c func start`; new-tab --title 'CIPP Frontend' -d $Path\CIPP pwsh -c npm run start`; new-tab --title 'SWA' -d $Path\CIPP pwsh -c npm run start-swa`; new-tab --title 'CIPP-API-Processor' -d $Path\CIPP-API-Processor pwsh -c func start --port 7072 -} else { - wt --title CIPP`; new-tab --title 'Azurite' -d $Path pwsh -c azurite`; new-tab --title 'FunctionApp' -d $Path\CIPP-API pwsh -c func start`; new-tab --title 'CIPP Frontend' -d $Path\CIPP pwsh -c npm run start`; new-tab --title 'SWA' -d $Path\CIPP pwsh -c npm run start-swa -} - diff --git a/Tools/Update-Version.ps1 b/Tools/Update-Version.ps1 deleted file mode 100644 index 48ad6e6bf9ba..000000000000 --- a/Tools/Update-Version.ps1 +++ /dev/null @@ -1,10 +0,0 @@ -Param($Version) -Set-Location (Get-Item $PSScriptRoot).Parent.FullName -$Files = @('version_latest.txt', 'public/version_latest.txt') -foreach ($File in $Files) { - Set-Content $File -Value $Version -} - -$Package = Get-Content package.json | ConvertFrom-Json -$Package.version = $Version -$Package | ConvertTo-Json -Depth 10 | Set-Content package.json diff --git a/deployment/AzureDeploymentTemplate.json b/deployment/AzureDeploymentTemplate.json deleted file mode 100644 index ff7e9a97bada..000000000000 --- a/deployment/AzureDeploymentTemplate.json +++ /dev/null @@ -1,271 +0,0 @@ -{ - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", - "parameters": { - "baseName": { - "defaultValue": "CIPP", - "type": "string", - "metadata": { - "description": "Name use as base-template to named the resources deployed in Azure." - } - }, - "GithubRepository": { - "defaultValue": "https://github.com/KelvinTegelaar/CIPP", - "type": "string", - "metadata": { - "description": "URL to your Github Frontend fork." - } - }, - "GithubToken": { - "defaultValue": "GeneratedPassword", - "type": "string", - "metadata": { - "description": "Your Github Repository token (see https://docs.microsoft.com/en-us/azure/static-web-apps/publish-azure-resource-manager?tabs=azure-cli#create-a-github-personal-access-token" - } - }, - "GithubAPIRepository": { - "defaultValue": "https://github.com/KelvinTegelaar/CIPP-API", - "type": "string", - "metadata": { - "description": "URL to your Github backend fork." - } - } - }, - "variables": { - "suffix": "[substring(toLower(uniqueString(resourceGroup().id, resourceGroup().location)),0,5)]", - "funcAppName": "[toLower(concat(parameters('baseName'), variables('suffix')))]", - "funcStorageName": "[tolower(concat(substring(parameters('baseName'), 0, min(length(parameters('baseName')),16)), 'stg', variables('suffix')))]", - "serverFarmName": "[concat(substring(parameters('baseName'), 0, min(length(parameters('baseName')),14)), '-srv-', variables('suffix'))]", - "uniqueResourceNameBase": "[toLower(concat(parameters('baseName'), variables('suffix')))]", - "swaName": "[toLower(concat(parameters('baseName'), '-swa-', variables('suffix')))]" - }, - "resources": [ - { - "type": "Microsoft.KeyVault/vaults", - "name": "[variables('uniqueResourceNameBase')]", - "apiVersion": "2016-10-01", - "location": "[resourceGroup().location]", - "properties": { - "sku": { - "family": "A", - "name": "standard" - }, - "tenantId": "[subscription().tenantid]", - "accessPolicies": [ - { - "tenantId": "[subscription().tenantid]", - "objectId": "[reference(resourceId('Microsoft.Web/sites', variables('funcAppName')),'2019-08-01', 'full').identity.principalId]", - "permissions": { - "keys": [], - "secrets": ["all"], - "certificates": [] - } - } - ], - "enabledForDeployment": true, - "enabledForDiskEncryption": false, - "enabledForTemplateDeployment": true - }, - "resources": [ - { - "type": "secrets", - "name": "applicationid", - "apiVersion": "2015-06-01", - "properties": { - "contentType": "text/plain", - "value": "LongApplicationId" - }, - "dependsOn": [ - "[resourceId('Microsoft.KeyVault/vaults', variables('uniqueResourceNameBase'))]" - ] - }, - { - "type": "secrets", - "name": "applicationsecret", - "apiVersion": "2015-06-01", - "properties": { - "contentType": "text/plain", - "value": "AppSecret" - }, - "dependsOn": [ - "[resourceId('Microsoft.KeyVault/vaults', variables('uniqueResourceNameBase'))]" - ] - }, - { - "type": "secrets", - "name": "refreshtoken", - "apiVersion": "2015-06-01", - "properties": { - "contentType": "text/plain", - "value": "RefreshToken" - }, - "dependsOn": [ - "[resourceId('Microsoft.KeyVault/vaults', variables('uniqueResourceNameBase'))]" - ] - }, - { - "type": "secrets", - "name": "tenantid", - "apiVersion": "2015-06-01", - "properties": { - "contentType": "text/plain", - "value": "tenantId" - }, - "dependsOn": [ - "[resourceId('Microsoft.KeyVault/vaults', variables('uniqueResourceNameBase'))]" - ] - } - ], - "dependsOn": ["[resourceId('Microsoft.Web/sites', variables('funcAppName'))]"] - }, - { - "apiVersion": "2015-08-01", - "type": "Microsoft.Web/sites", - "identity": { - "type": "SystemAssigned" - }, - "name": "[variables('funcAppName')]", - "location": "[resourceGroup().location]", - "kind": "functionapp", - "dependsOn": [ - "[resourceId('Microsoft.Web/serverfarms',variables('serverFarmName'))]", - "[resourceId('Microsoft.Storage/storageAccounts', variables('funcStorageName'))]" - ], - "properties": { - "serverFarmId": "[resourceId('Microsoft.Web/serverfarms', variables('serverFarmName'))]", - "siteConfig": { - "Use32BitWorkerProcess": false, - "powerShellVersion": "7.2", - "appSettings": [ - { - "name": "AzureWebJobsStorage", - "value": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('funcStorageName'), ';AccountKey=', listKeys(variables('funcStorageName'),'2015-05-01-preview').key1)]" - }, - { - "name": "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING", - "value": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('funcStorageName'), ';AccountKey=', listKeys(variables('funcStorageName'),'2015-05-01-preview').key1)]" - }, - { - "name": "WEBSITE_CONTENTSHARE", - "value": "[variables('funcAppName')]" - }, - { - "name": "FUNCTIONS_EXTENSION_VERSION", - "value": "~4" - }, - { - "name": "ApplicationID", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/ApplicationId)')]" - }, - { - "name": "ApplicationSecret", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/ApplicationSecret)')]" - }, - { - "name": "RefreshToken", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/RefreshToken)')]" - }, - { - "name": "TenantID", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/tenantid)')]" - }, - { - "name": "FUNCTIONS_WORKER_RUNTIME", - "value": "powershell" - } - ] - } - }, - "resources": [ - { - "apiVersion": "2015-08-01", - "name": "web", - "type": "sourcecontrols", - "dependsOn": ["[resourceId('Microsoft.Web/sites/', variables('funcAppName'))]"], - "properties": { - "RepoUrl": "[parameters('GithubAPIRepository')]", - "repositoryToken": "[parameters('GithubToken')]", - "token": "[parameters('GithubToken')]", - - "branch": "master", - "publishRunbook": true, - "IsManualIntegration": true - } - } - ] - }, - { - "type": "Microsoft.Storage/storageAccounts", - "apiVersion": "2018-07-01", - "name": "[variables('funcStorageName')]", - "location": "[resourceGroup().location]", - "tags": { - "displayName": "funStorageName" - }, - "sku": { - "name": "Standard_LRS" - }, - "kind": "Storage" - }, - { - "type": "Microsoft.Web/serverfarms", - "apiVersion": "2018-02-01", - "name": "[variables('serverFarmName')]", - "location": "[resourceGroup().location]", - "sku": { - "name": "Y1", - "tier": "Dynamic", - "size": "Y1", - "family": "Y", - "capacity": 0 - }, - "properties": { - "perSiteScaling": false, - "maximumElasticWorkerCount": 1, - "isSpot": false, - "reserved": false, - "isXenon": false, - "hyperV": false, - "targetWorkerCount": 0, - "targetWorkerSizeId": 0, - "name": "[variables('serverFarmName')]", - "computeMode": "Dynamic" - } - }, - { - "type": "Microsoft.Web/staticSites", - "apiVersion": "2021-01-15", - "name": "[variables('swaName')]", - "location": "[resourceGroup().location]", - "properties": { - "repositoryUrl": "[parameters('GithubRepository')]", - "branch": "main", - "repositoryToken": "[parameters('GithubToken')]", - "buildProperties": { - "appLocation": "/", - "apiLocation": "", - "appArtifactLocation": "" - } - }, - "sku": { - "name": "Standard", - "tier": "Standard" - } - }, - { - "type": "Microsoft.Web/staticSites/userProvidedFunctionApps", - "apiVersion": "2020-12-01", - "name": "[concat(variables('swaName'), '/', variables('swaName'))]", - "location": "[resourceGroup().location]", - "dependsOn": [ - "[resourceId('Microsoft.Web/staticSites', variables('swaName'))]", - "[resourceId('Microsoft.Web/sites/', variables('funcAppName'))]" - ], - "properties": { - "functionAppResourceId": "[resourceId('Microsoft.Web/sites/', variables('funcAppName'))]", - "functionAppRegion": "[resourceGroup().location]" - } - } - ], - "outputs": {} -} diff --git a/deployment/AzureDeploymentTemplate_regionoptions.json b/deployment/AzureDeploymentTemplate_regionoptions.json deleted file mode 100644 index bc2f24089d4d..000000000000 --- a/deployment/AzureDeploymentTemplate_regionoptions.json +++ /dev/null @@ -1,268 +0,0 @@ -{ - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", - "parameters": { - "baseName": { - "defaultValue": "CIPP", - "type": "string", - "metadata": { - "description": "Name use as base-template to named the resources deployed in Azure." - } - }, - "GithubRepository": { - "defaultValue": "https://github.com/KelvinTegelaar/CIPP", - "type": "string", - "metadata": { - "description": "URL to your Github Frontend fork." - } - }, - "GithubToken": { - "defaultValue": "GeneratedPassword", - "type": "string", - "metadata": { - "description": "Your Github Repository token (see https://docs.microsoft.com/en-us/azure/static-web-apps/publish-azure-resource-manager?tabs=azure-cli#create-a-github-personal-access-token" - } - }, - "GithubAPIRepository": { - "defaultValue": "https://github.com/KelvinTegelaar/CIPP-API", - "type": "string", - "metadata": { - "description": "URL to your Github backend fork." - } - } - }, - "variables": { - "suffix": "[substring(toLower(uniqueString(resourceGroup().id, resourceGroup().location)),0,5)]", - "funcAppName": "[toLower(concat(parameters('baseName'), variables('suffix')))]", - "funcStorageName": "[tolower(concat(substring(parameters('baseName'), 0, min(length(parameters('baseName')),16)), 'stg', variables('suffix')))]", - "serverFarmName": "[concat(substring(parameters('baseName'), 0, min(length(parameters('baseName')),14)), '-srv-', variables('suffix'))]", - "uniqueResourceNameBase": "[toLower(concat(parameters('baseName'), variables('suffix')))]", - "swaName": "[toLower(concat(parameters('baseName'), '-swa-', variables('suffix')))]" - }, - "resources": [ - { - "type": "Microsoft.KeyVault/vaults", - "name": "[variables('uniqueResourceNameBase')]", - "apiVersion": "2016-10-01", - "location": "[resourceGroup().location]", - "properties": { - "sku": { - "family": "A", - "name": "standard" - }, - "tenantId": "[subscription().tenantid]", - "accessPolicies": [ - { - "tenantId": "[subscription().tenantid]", - "objectId": "[reference(resourceId('Microsoft.Web/sites', variables('funcAppName')),'2019-08-01', 'full').identity.principalId]", - "permissions": { - "keys": [], - "secrets": ["all"], - "certificates": [] - } - } - ], - "enabledForDeployment": true, - "enabledForDiskEncryption": false, - "enabledForTemplateDeployment": true - }, - "resources": [ - { - "type": "secrets", - "name": "applicationid", - "apiVersion": "2015-06-01", - "properties": { - "contentType": "text/plain", - "value": "LongApplicationId" - }, - "dependsOn": [ - "[resourceId('Microsoft.KeyVault/vaults', variables('uniqueResourceNameBase'))]" - ] - }, - { - "type": "secrets", - "name": "applicationsecret", - "apiVersion": "2015-06-01", - "properties": { - "contentType": "text/plain", - "value": "AppSecret" - }, - "dependsOn": [ - "[resourceId('Microsoft.KeyVault/vaults', variables('uniqueResourceNameBase'))]" - ] - }, - { - "type": "secrets", - "name": "refreshtoken", - "apiVersion": "2015-06-01", - "properties": { - "contentType": "text/plain", - "value": "RefreshToken" - }, - "dependsOn": [ - "[resourceId('Microsoft.KeyVault/vaults', variables('uniqueResourceNameBase'))]" - ] - }, - { - "type": "secrets", - "name": "tenantid", - "apiVersion": "2015-06-01", - "properties": { - "contentType": "text/plain", - "value": "tenantId" - }, - "dependsOn": [ - "[resourceId('Microsoft.KeyVault/vaults', variables('uniqueResourceNameBase'))]" - ] - } - ], - "dependsOn": ["[resourceId('Microsoft.Web/sites', variables('funcAppName'))]"] - }, - { - "apiVersion": "2015-08-01", - "type": "Microsoft.Web/sites", - "identity": { - "type": "SystemAssigned" - }, - "name": "[variables('funcAppName')]", - "location": "[resourceGroup().location]", - "kind": "functionapp", - "dependsOn": [ - "[resourceId('Microsoft.Web/serverfarms',variables('serverFarmName'))]", - "[resourceId('Microsoft.Storage/storageAccounts', variables('funcStorageName'))]" - ], - "properties": { - "serverFarmId": "[resourceId('Microsoft.Web/serverfarms', variables('serverFarmName'))]", - "siteConfig": { - "Use32BitWorkerProcess": false, - "powerShellVersion": "7.2", - "appSettings": [ - { - "name": "AzureWebJobsStorage", - "value": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('funcStorageName'), ';AccountKey=', listKeys(variables('funcStorageName'),'2015-05-01-preview').key1)]" - }, - { - "name": "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING", - "value": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('funcStorageName'), ';AccountKey=', listKeys(variables('funcStorageName'),'2015-05-01-preview').key1)]" - }, - { - "name": "WEBSITE_CONTENTSHARE", - "value": "[variables('funcAppName')]" - }, - { - "name": "FUNCTIONS_EXTENSION_VERSION", - "value": "~4" - }, - { - "name": "ApplicationID", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/ApplicationId)')]" - }, - { - "name": "ApplicationSecret", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/ApplicationSecret)')]" - }, - { - "name": "RefreshToken", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/RefreshToken)')]" - }, - { - "name": "TenantID", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/tenantid)')]" - }, - { - "name": "FUNCTIONS_WORKER_RUNTIME", - "value": "powershell" - } - ] - } - }, - "resources": [ - { - "apiVersion": "2015-08-01", - "name": "web", - "type": "sourcecontrols", - "dependsOn": ["[resourceId('Microsoft.Web/sites/', variables('funcAppName'))]"], - "properties": { - "RepoUrl": "[parameters('GithubAPIRepository')]", - "branch": "master", - "publishRunbook": true, - "IsManualIntegration": true - } - } - ] - }, - { - "type": "Microsoft.Storage/storageAccounts", - "apiVersion": "2018-07-01", - "name": "[variables('funcStorageName')]", - "location": "[resourceGroup().location]", - "tags": { - "displayName": "funStorageName" - }, - "sku": { - "name": "Standard_LRS" - }, - "kind": "Storage" - }, - { - "type": "Microsoft.Web/serverfarms", - "apiVersion": "2018-02-01", - "name": "[variables('serverFarmName')]", - "location": "[resourceGroup().location]", - "sku": { - "name": "Y1", - "tier": "Dynamic", - "size": "Y1", - "family": "Y", - "capacity": 0 - }, - "properties": { - "perSiteScaling": false, - "maximumElasticWorkerCount": 1, - "isSpot": false, - "reserved": false, - "isXenon": false, - "hyperV": false, - "targetWorkerCount": 0, - "targetWorkerSizeId": 0, - "name": "[variables('serverFarmName')]", - "computeMode": "Dynamic" - } - }, - { - "type": "Microsoft.Web/staticSites", - "apiVersion": "2021-01-15", - "name": "[variables('swaName')]", - "location": "centralus", - "properties": { - "repositoryUrl": "[parameters('GithubRepository')]", - "branch": "main", - "repositoryToken": "[parameters('GithubToken')]", - "buildProperties": { - "appLocation": "/", - "apiLocation": "", - "appArtifactLocation": "" - } - }, - "sku": { - "name": "Standard", - "tier": "Standard" - } - }, - { - "type": "Microsoft.Web/staticSites/userProvidedFunctionApps", - "apiVersion": "2020-12-01", - "name": "[concat(variables('swaName'), '/', variables('swaName'))]", - "location": "centralus", - "dependsOn": [ - "[resourceId('Microsoft.Web/staticSites', variables('swaName'))]", - "[resourceId('Microsoft.Web/sites/', variables('funcAppName'))]" - ], - "properties": { - "functionAppResourceId": "[resourceId('Microsoft.Web/sites/', variables('funcAppName'))]", - "functionAppRegion": "[resourceGroup().location]" - } - } - ], - "outputs": {} -} diff --git a/deployment/DevAzureDeploymentTemplate.json b/deployment/DevAzureDeploymentTemplate.json deleted file mode 100644 index 8beefadd450c..000000000000 --- a/deployment/DevAzureDeploymentTemplate.json +++ /dev/null @@ -1,334 +0,0 @@ -{ - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", - "parameters": { - "baseName": { - "defaultValue": "CIPPDev", - "type": "string", - "metadata": { - "description": "Name use as base-template to named the resources deployed in Azure." - } - }, - "TenantID": { - "defaultValue": "YourTenant.onmicrosoft.com", - "type": "string", - "metadata": { - "description": "Your tenant ID" - } - }, - "ApplicationID": { - "defaultValue": "LongApplicationID", - "type": "string", - "metadata": { - "description": "The Application ID for your Secure Application Model" - } - }, - "ApplicationSecret": { - "defaultValue": "LongApplicationSecret", - "type": "string", - "metadata": { - "description": "The Application Secret for your Secure Application Model." - } - }, - "Refreshtoken": { - "defaultValue": "LongRefreshtoken", - "type": "string", - "metadata": { - "description": "The Refresh token for your Secure Application Model." - } - }, - "GithubRepository": { - "defaultValue": "https://github.com/KelvinTegelaar/CIPP", - "type": "string", - "metadata": { - "description": "URL to your Github Frontend fork." - } - }, - "GithubToken": { - "defaultValue": "GeneratedPassword", - "type": "string", - "metadata": { - "description": "Your Github Repository token (see https://docs.microsoft.com/en-us/azure/static-web-apps/publish-azure-resource-manager?tabs=azure-cli#create-a-github-personal-access-token" - } - }, - "GithubAPIRepository": { - "defaultValue": "https://github.com/KelvinTegelaar/CIPP-API", - "type": "string", - "metadata": { - "description": "URL to your Github backend fork." - } - } - }, - "variables": { - "suffix": "[substring(toLower(uniqueString(resourceGroup().id, resourceGroup().location)),0,5)]", - "funcAppName": "[toLower(concat(parameters('baseName'), variables('suffix')))]", - "funcStorageName": "[tolower(concat(substring(parameters('baseName'), 0, min(length(parameters('baseName')),16)), 'stg', variables('suffix')))]", - "serverFarmName": "[concat(substring(parameters('baseName'), 0, min(length(parameters('baseName')),14)), '-srv-', variables('suffix'))]", - "uniqueResourceNameBase": "[toLower(concat(parameters('baseName'), variables('suffix')))]", - "swaName": "[toLower(concat(parameters('baseName'), '-swa-', variables('suffix')))]" - }, - "resources": [ - { - "type": "Microsoft.KeyVault/vaults", - "name": "[variables('uniqueResourceNameBase')]", - "apiVersion": "2016-10-01", - "location": "[resourceGroup().location]", - "properties": { - "sku": { - "family": "A", - "name": "standard" - }, - "tenantId": "[subscription().tenantid]", - "accessPolicies": [ - { - "tenantId": "[subscription().tenantid]", - "objectId": "[reference(resourceId('Microsoft.Web/sites', variables('funcAppName')),'2019-08-01', 'full').identity.principalId]", - "permissions": { - "keys": [], - "secrets": ["all"], - "certificates": [] - } - } - ], - "enabledForDeployment": true, - "enabledForDiskEncryption": false, - "enabledForTemplateDeployment": true - }, - "resources": [ - { - "type": "secrets", - "name": "applicationid", - "apiVersion": "2015-06-01", - "properties": { - "contentType": "text/plain", - "value": "[parameters('ApplicationID')]" - }, - "dependsOn": [ - "[resourceId('Microsoft.KeyVault/vaults', variables('uniqueResourceNameBase'))]" - ] - }, - { - "type": "secrets", - "name": "applicationsecret", - "apiVersion": "2015-06-01", - "properties": { - "contentType": "text/plain", - "value": "[parameters('Applicationsecret')]" - }, - "dependsOn": [ - "[resourceId('Microsoft.KeyVault/vaults', variables('uniqueResourceNameBase'))]" - ] - }, - { - "type": "secrets", - "name": "refreshtoken", - "apiVersion": "2015-06-01", - "properties": { - "contentType": "text/plain", - "value": "[parameters('refreshtoken')]" - }, - "dependsOn": [ - "[resourceId('Microsoft.KeyVault/vaults', variables('uniqueResourceNameBase'))]" - ] - }, - { - "type": "secrets", - "name": "tenantid", - "apiVersion": "2015-06-01", - "properties": { - "contentType": "text/plain", - "value": "[parameters('tenantid')]" - }, - "dependsOn": [ - "[resourceId('Microsoft.KeyVault/vaults', variables('uniqueResourceNameBase'))]" - ] - } - ], - "dependsOn": ["[resourceId('Microsoft.Web/sites', variables('funcAppName'))]"] - }, - { - "apiVersion": "2015-08-01", - "type": "Microsoft.Web/sites", - "identity": { - "type": "SystemAssigned" - }, - "name": "[variables('funcAppName')]", - "location": "[resourceGroup().location]", - "kind": "functionapp", - "dependsOn": [ - "[resourceId('Microsoft.Web/serverfarms',variables('serverFarmName'))]", - "[resourceId('Microsoft.Storage/storageAccounts', variables('funcStorageName'))]" - ], - "properties": { - "serverFarmId": "[resourceId('Microsoft.Web/serverfarms', variables('serverFarmName'))]", - "siteConfig": { - "Use32BitWorkerProcess": false, - "powerShellVersion": "7.2", - "appSettings": [ - { - "name": "AzureWebJobsStorage", - "value": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('funcStorageName'), ';AccountKey=', listKeys(variables('funcStorageName'),'2015-05-01-preview').key1)]" - }, - { - "name": "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING", - "value": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('funcStorageName'), ';AccountKey=', listKeys(variables('funcStorageName'),'2015-05-01-preview').key1)]" - }, - { - "name": "WEBSITE_CONTENTSHARE", - "value": "[variables('funcAppName')]" - }, - { - "name": "FUNCTIONS_EXTENSION_VERSION", - "value": "~4" - }, - { - "name": "ApplicationID", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/ApplicationId)')]" - }, - { - "name": "ApplicationSecret", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/ApplicationSecret)')]" - }, - { - "name": "RefreshToken", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/RefreshToken)')]" - }, - { - "name": "TenantID", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/tenantid)')]" - }, - { - "name": "FUNCTIONS_WORKER_RUNTIME", - "value": "powershell" - }, - { - "name": "WEBSITE_RUN_FROM_PACKAGE", - "value": "1" - } - ] - } - }, - "resources": [ - { - "apiVersion": "2015-08-01", - "name": "web", - "type": "sourcecontrols", - "dependsOn": ["[resourceId('Microsoft.Web/sites/', variables('funcAppName'))]"], - "properties": { - "RepoUrl": "[parameters('GithubAPIRepository')]", - "repositoryToken": "[parameters('GithubToken')]", - "branch": "master", - "publishRunbook": true, - "gitHubActionConfiguration": { - "codeConfiguration": null, - "containerConfiguration": null, - "isLinux": false, - "generateWorkflowFile": true, - "workflowSettings": { - "appType": "functionapp", - "publishType": "code", - "os": "windows", - "variables": { - "runtimeVersion": "7.2", - "sitename": "[variables('funcAppName')]", - "slotname": "Production", - "publishingprofilesecretname": "[variables('funcAppName')]", - "branch": "master" - }, - "runtimeStack": "powershell", - "workflowApiVersion": "2020-12-01", - "useCanaryFusionServer": false - } - } - } - } - ] - }, - { - "type": "Microsoft.Storage/storageAccounts", - "apiVersion": "2018-07-01", - "name": "[variables('funcStorageName')]", - "location": "[resourceGroup().location]", - "tags": { - "displayName": "funStorageName" - }, - "sku": { - "name": "Standard_LRS" - }, - "kind": "Storage" - }, - { - "type": "Microsoft.Web/serverfarms", - "apiVersion": "2018-02-01", - "name": "[variables('serverFarmName')]", - "location": "[resourceGroup().location]", - "sku": { - "name": "Y1", - "tier": "Dynamic", - "size": "Y1", - "family": "Y", - "capacity": 0 - }, - "properties": { - "perSiteScaling": false, - "maximumElasticWorkerCount": 1, - "isSpot": false, - "reserved": false, - "isXenon": false, - "hyperV": false, - "targetWorkerCount": 0, - "targetWorkerSizeId": 0, - "name": "[variables('serverFarmName')]", - "computeMode": "Dynamic" - } - }, - { - "type": "Microsoft.Web/staticSites", - "apiVersion": "2021-01-15", - "name": "[variables('swaName')]", - "location": "[resourceGroup().location]", - "properties": { - "repositoryUrl": "[parameters('GithubRepository')]", - "branch": "dev", - "repositoryToken": "[parameters('GithubToken')]", - "buildProperties": { - "appLocation": "/", - "apiLocation": "", - "appArtifactLocation": "" - } - }, - "sku": { - "name": "Standard", - "tier": "Standard" - } - }, - { - "type": "Microsoft.Web/staticSites/userProvidedFunctionApps", - "apiVersion": "2020-12-01", - "name": "[concat(variables('swaName'), '/', variables('swaName'))]", - "location": "[resourceGroup().location]", - "dependsOn": [ - "[resourceId('Microsoft.Web/staticSites', variables('swaName'))]", - "[resourceId('Microsoft.Web/sites/', variables('funcAppName'))]" - ], - "properties": { - "functionAppResourceId": "[resourceId('Microsoft.Web/sites/', variables('funcAppName'))]", - "functionAppRegion": "[resourceGroup().location]" - } - }, - { - "type": "Microsoft.Authorization/roleAssignments", - "apiVersion": "2018-09-01-preview", - "name": "[guid(variables('funcAppName'))]", - "dependsOn": [ - "[resourceId('Microsoft.Web/staticSites', variables('swaName'))]", - "[resourceId('Microsoft.Web/sites/', variables('funcAppName'))]" - ], - "properties": { - "roleDefinitionId": "[concat('/subscriptions/', subscription().subscriptionId, '/providers/Microsoft.Authorization/roleDefinitions/', 'acdd72a7-3385-48ef-bd42-f606fba81ae7')]", - "principalId": "[reference(resourceId('Microsoft.Web/sites', variables('funcAppName')),'2019-08-01', 'full').identity.principalId]" - } - } - ], - "outputs": {} -} diff --git a/deployment/DevAzureDeploymentTemplate_regionoptions.json b/deployment/DevAzureDeploymentTemplate_regionoptions.json deleted file mode 100644 index 0fb300af06c9..000000000000 --- a/deployment/DevAzureDeploymentTemplate_regionoptions.json +++ /dev/null @@ -1,334 +0,0 @@ -{ - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", - "parameters": { - "baseName": { - "defaultValue": "CIPP", - "type": "string", - "metadata": { - "description": "Name use as base-template to named the resources deployed in Azure." - } - }, - "TenantID": { - "defaultValue": "YourTenant.onmicrosoft.com", - "type": "string", - "metadata": { - "description": "Your tenant ID" - } - }, - "ApplicationID": { - "defaultValue": "LongApplicationID", - "type": "string", - "metadata": { - "description": "The Application ID for your Secure Application Model" - } - }, - "ApplicationSecret": { - "defaultValue": "LongApplicationSecret", - "type": "string", - "metadata": { - "description": "The Application Secret for your Secure Application Model." - } - }, - "Refreshtoken": { - "defaultValue": "LongRefreshtoken", - "type": "string", - "metadata": { - "description": "The Refresh token for your Secure Application Model." - } - }, - "GithubRepository": { - "defaultValue": "https://github.com/KelvinTegelaar/CIPP", - "type": "string", - "metadata": { - "description": "URL to your Github Frontend fork." - } - }, - "GithubToken": { - "defaultValue": "GeneratedPassword", - "type": "string", - "metadata": { - "description": "Your Github Repository token (see https://docs.microsoft.com/en-us/azure/static-web-apps/publish-azure-resource-manager?tabs=azure-cli#create-a-github-personal-access-token" - } - }, - "GithubAPIRepository": { - "defaultValue": "https://github.com/KelvinTegelaar/CIPP-API", - "type": "string", - "metadata": { - "description": "URL to your Github backend fork." - } - } - }, - "variables": { - "suffix": "[substring(toLower(uniqueString(resourceGroup().id, resourceGroup().location)),0,5)]", - "funcAppName": "[toLower(concat(parameters('baseName'), variables('suffix')))]", - "funcStorageName": "[tolower(concat(substring(parameters('baseName'), 0, min(length(parameters('baseName')),16)), 'stg', variables('suffix')))]", - "serverFarmName": "[concat(substring(parameters('baseName'), 0, min(length(parameters('baseName')),14)), '-srv-', variables('suffix'))]", - "uniqueResourceNameBase": "[toLower(concat(parameters('baseName'), variables('suffix')))]", - "swaName": "[toLower(concat(parameters('baseName'), '-swa-', variables('suffix')))]" - }, - "resources": [ - { - "type": "Microsoft.KeyVault/vaults", - "name": "[variables('uniqueResourceNameBase')]", - "apiVersion": "2016-10-01", - "location": "[resourceGroup().location]", - "properties": { - "sku": { - "family": "A", - "name": "standard" - }, - "tenantId": "[subscription().tenantid]", - "accessPolicies": [ - { - "tenantId": "[subscription().tenantid]", - "objectId": "[reference(resourceId('Microsoft.Web/sites', variables('funcAppName')),'2019-08-01', 'full').identity.principalId]", - "permissions": { - "keys": [], - "secrets": ["all"], - "certificates": [] - } - } - ], - "enabledForDeployment": true, - "enabledForDiskEncryption": false, - "enabledForTemplateDeployment": true - }, - "resources": [ - { - "type": "secrets", - "name": "applicationid", - "apiVersion": "2015-06-01", - "properties": { - "contentType": "text/plain", - "value": "[parameters('ApplicationID')]" - }, - "dependsOn": [ - "[resourceId('Microsoft.KeyVault/vaults', variables('uniqueResourceNameBase'))]" - ] - }, - { - "type": "secrets", - "name": "applicationsecret", - "apiVersion": "2015-06-01", - "properties": { - "contentType": "text/plain", - "value": "[parameters('Applicationsecret')]" - }, - "dependsOn": [ - "[resourceId('Microsoft.KeyVault/vaults', variables('uniqueResourceNameBase'))]" - ] - }, - { - "type": "secrets", - "name": "refreshtoken", - "apiVersion": "2015-06-01", - "properties": { - "contentType": "text/plain", - "value": "[parameters('refreshtoken')]" - }, - "dependsOn": [ - "[resourceId('Microsoft.KeyVault/vaults', variables('uniqueResourceNameBase'))]" - ] - }, - { - "type": "secrets", - "name": "tenantid", - "apiVersion": "2015-06-01", - "properties": { - "contentType": "text/plain", - "value": "[parameters('tenantid')]" - }, - "dependsOn": [ - "[resourceId('Microsoft.KeyVault/vaults', variables('uniqueResourceNameBase'))]" - ] - } - ], - "dependsOn": ["[resourceId('Microsoft.Web/sites', variables('funcAppName'))]"] - }, - { - "apiVersion": "2015-08-01", - "type": "Microsoft.Web/sites", - "identity": { - "type": "SystemAssigned" - }, - "name": "[variables('funcAppName')]", - "location": "[resourceGroup().location]", - "kind": "functionapp", - "dependsOn": [ - "[resourceId('Microsoft.Web/serverfarms',variables('serverFarmName'))]", - "[resourceId('Microsoft.Storage/storageAccounts', variables('funcStorageName'))]" - ], - "properties": { - "serverFarmId": "[resourceId('Microsoft.Web/serverfarms', variables('serverFarmName'))]", - "siteConfig": { - "Use32BitWorkerProcess": false, - "powerShellVersion": "7.2", - "appSettings": [ - { - "name": "AzureWebJobsStorage", - "value": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('funcStorageName'), ';AccountKey=', listKeys(variables('funcStorageName'),'2015-05-01-preview').key1)]" - }, - { - "name": "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING", - "value": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('funcStorageName'), ';AccountKey=', listKeys(variables('funcStorageName'),'2015-05-01-preview').key1)]" - }, - { - "name": "WEBSITE_CONTENTSHARE", - "value": "[variables('funcAppName')]" - }, - { - "name": "FUNCTIONS_EXTENSION_VERSION", - "value": "~4" - }, - { - "name": "ApplicationID", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/ApplicationId)')]" - }, - { - "name": "ApplicationSecret", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/ApplicationSecret)')]" - }, - { - "name": "RefreshToken", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/RefreshToken)')]" - }, - { - "name": "TenantID", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/tenantid)')]" - }, - { - "name": "FUNCTIONS_WORKER_RUNTIME", - "value": "powershell" - }, - { - "name": "WEBSITE_RUN_FROM_PACKAGE", - "value": "1" - } - ] - } - }, - "resources": [ - { - "apiVersion": "2015-08-01", - "name": "web", - "type": "sourcecontrols", - "dependsOn": ["[resourceId('Microsoft.Web/sites/', variables('funcAppName'))]"], - "properties": { - "RepoUrl": "[parameters('GithubAPIRepository')]", - "repositoryToken": "[parameters('GithubToken')]", - "branch": "master", - "publishRunbook": true, - "gitHubActionConfiguration": { - "codeConfiguration": null, - "containerConfiguration": null, - "isLinux": false, - "generateWorkflowFile": true, - "workflowSettings": { - "appType": "functionapp", - "publishType": "code", - "os": "windows", - "variables": { - "runtimeVersion": "7.2", - "sitename": "[variables('funcAppName')]", - "slotname": "Production", - "publishingprofilesecretname": "[variables('funcAppName')]", - "branch": "master" - }, - "runtimeStack": "powershell", - "workflowApiVersion": "2020-12-01", - "useCanaryFusionServer": false - } - } - } - } - ] - }, - { - "type": "Microsoft.Storage/storageAccounts", - "apiVersion": "2018-07-01", - "name": "[variables('funcStorageName')]", - "location": "[resourceGroup().location]", - "tags": { - "displayName": "funStorageName" - }, - "sku": { - "name": "Standard_LRS" - }, - "kind": "Storage" - }, - { - "type": "Microsoft.Web/serverfarms", - "apiVersion": "2018-02-01", - "name": "[variables('serverFarmName')]", - "location": "[resourceGroup().location]", - "sku": { - "name": "Y1", - "tier": "Dynamic", - "size": "Y1", - "family": "Y", - "capacity": 0 - }, - "properties": { - "perSiteScaling": false, - "maximumElasticWorkerCount": 1, - "isSpot": false, - "reserved": false, - "isXenon": false, - "hyperV": false, - "targetWorkerCount": 0, - "targetWorkerSizeId": 0, - "name": "[variables('serverFarmName')]", - "computeMode": "Dynamic" - } - }, - { - "type": "Microsoft.Web/staticSites", - "apiVersion": "2021-01-15", - "name": "[variables('swaName')]", - "location": "centralus", - "properties": { - "repositoryUrl": "[parameters('GithubRepository')]", - "branch": "dev", - "repositoryToken": "[parameters('GithubToken')]", - "buildProperties": { - "appLocation": "/", - "apiLocation": "", - "appArtifactLocation": "" - } - }, - "sku": { - "name": "Standard", - "tier": "Standard" - } - }, - { - "type": "Microsoft.Web/staticSites/userProvidedFunctionApps", - "apiVersion": "2020-12-01", - "name": "[concat(variables('swaName'), '/', variables('swaName'))]", - "location": "centralus", - "dependsOn": [ - "[resourceId('Microsoft.Web/staticSites', variables('swaName'))]", - "[resourceId('Microsoft.Web/sites/', variables('funcAppName'))]" - ], - "properties": { - "functionAppResourceId": "[resourceId('Microsoft.Web/sites/', variables('funcAppName'))]", - "functionAppRegion": "[resourceGroup().location]" - } - }, - { - "type": "Microsoft.Authorization/roleAssignments", - "apiVersion": "2018-09-01-preview", - "name": "[guid(variables('funcAppName'))]", - "dependsOn": [ - "[resourceId('Microsoft.Web/staticSites', variables('swaName'))]", - "[resourceId('Microsoft.Web/sites/', variables('funcAppName'))]" - ], - "properties": { - "roleDefinitionId": "[concat('/subscriptions/', subscription().subscriptionId, '/providers/Microsoft.Authorization/roleDefinitions/', 'acdd72a7-3385-48ef-bd42-f606fba81ae7')]", - "principalId": "[reference(resourceId('Microsoft.Web/sites', variables('funcAppName')),'2019-08-01', 'full').identity.principalId]" - } - } - ], - "outputs": {} -} diff --git a/github_assets/img/CIPP-Light.png b/github_assets/img/CIPP-Light.png deleted file mode 100644 index 6d9ad4e7fad4..000000000000 Binary files a/github_assets/img/CIPP-Light.png and /dev/null differ diff --git a/github_assets/img/CIPP.png b/github_assets/img/CIPP.png deleted file mode 100644 index c3cec15dd468..000000000000 Binary files a/github_assets/img/CIPP.png and /dev/null differ diff --git a/github_assets/img/CyberDrain.png b/github_assets/img/CyberDrain.png deleted file mode 100644 index e27dbdacd2f2..000000000000 Binary files a/github_assets/img/CyberDrain.png and /dev/null differ diff --git a/github_assets/img/Genuine-logo-vertical-light.png b/github_assets/img/Genuine-logo-vertical-light.png deleted file mode 100644 index 9742b901b31a..000000000000 Binary files a/github_assets/img/Genuine-logo-vertical-light.png and /dev/null differ diff --git a/github_assets/img/Genuine-logo-vertical-light_dark.png b/github_assets/img/Genuine-logo-vertical-light_dark.png deleted file mode 100644 index 9742b901b31a..000000000000 Binary files a/github_assets/img/Genuine-logo-vertical-light_dark.png and /dev/null differ diff --git a/github_assets/img/Huntress.png b/github_assets/img/Huntress.png deleted file mode 100644 index 8fe7421ba341..000000000000 Binary files a/github_assets/img/Huntress.png and /dev/null differ diff --git a/github_assets/img/Immybot.png b/github_assets/img/Immybot.png deleted file mode 100644 index 66a115fda14d..000000000000 Binary files a/github_assets/img/Immybot.png and /dev/null differ diff --git a/github_assets/img/Logo.png b/github_assets/img/Logo.png deleted file mode 100644 index 8caed1332233..000000000000 Binary files a/github_assets/img/Logo.png and /dev/null differ diff --git a/github_assets/img/NinjaOne-Dark.png b/github_assets/img/NinjaOne-Dark.png deleted file mode 100644 index 3a4f69f76ce3..000000000000 Binary files a/github_assets/img/NinjaOne-Dark.png and /dev/null differ diff --git a/github_assets/img/NinjaOne-Light.png b/github_assets/img/NinjaOne-Light.png deleted file mode 100644 index 289fe66e3f61..000000000000 Binary files a/github_assets/img/NinjaOne-Light.png and /dev/null differ diff --git a/github_assets/img/favicon.png b/github_assets/img/favicon.png deleted file mode 100644 index 8caed1332233..000000000000 Binary files a/github_assets/img/favicon.png and /dev/null differ diff --git a/github_assets/img/halopsa-red-grey.svg b/github_assets/img/halopsa-red-grey.svg deleted file mode 100644 index 9d45a2b5d619..000000000000 --- a/github_assets/img/halopsa-red-grey.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/github_assets/img/oitpsonsor_light.png b/github_assets/img/oitpsonsor_light.png deleted file mode 100644 index c023f4c94f98..000000000000 Binary files a/github_assets/img/oitpsonsor_light.png and /dev/null differ diff --git a/github_assets/img/oitpsonsor_light.webp b/github_assets/img/oitpsonsor_light.webp deleted file mode 100644 index 8c36621827e3..000000000000 Binary files a/github_assets/img/oitpsonsor_light.webp and /dev/null differ diff --git a/github_assets/img/profilepic.png b/github_assets/img/profilepic.png deleted file mode 100644 index 31dc9315eac7..000000000000 Binary files a/github_assets/img/profilepic.png and /dev/null differ diff --git a/github_assets/screenshots/AssignLicense.gif b/github_assets/screenshots/AssignLicense.gif deleted file mode 100644 index 100ab1be673c..000000000000 Binary files a/github_assets/screenshots/AssignLicense.gif and /dev/null differ diff --git a/github_assets/screenshots/IntunePolicyEngine.gif b/github_assets/screenshots/IntunePolicyEngine.gif deleted file mode 100644 index f135793b975f..000000000000 Binary files a/github_assets/screenshots/IntunePolicyEngine.gif and /dev/null differ diff --git a/github_assets/screenshots/MyChocoApp.gif b/github_assets/screenshots/MyChocoApp.gif deleted file mode 100644 index e41581103e55..000000000000 Binary files a/github_assets/screenshots/MyChocoApp.gif and /dev/null differ diff --git a/github_assets/screenshots/OffboardUser.gif b/github_assets/screenshots/OffboardUser.gif deleted file mode 100644 index 18ea7c37cbae..000000000000 Binary files a/github_assets/screenshots/OffboardUser.gif and /dev/null differ diff --git a/github_assets/screenshots/SetStandard.gif b/github_assets/screenshots/SetStandard.gif deleted file mode 100644 index 64bc063bd14c..000000000000 Binary files a/github_assets/screenshots/SetStandard.gif and /dev/null differ diff --git a/github_assets/screenshots/Teams.gif b/github_assets/screenshots/Teams.gif deleted file mode 100644 index 20465a3114a8..000000000000 Binary files a/github_assets/screenshots/Teams.gif and /dev/null differ diff --git a/index.html b/index.html deleted file mode 100644 index 0715762939da..000000000000 --- a/index.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - CIPP - - - - - - - - - - - -
- - - diff --git a/jsconfig.json b/jsconfig.json deleted file mode 100644 index 35496702afff..000000000000 --- a/jsconfig.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "compilerOptions": { - "module": "ESNext", - "baseUrl": "./", - "checkJs": false, - "moduleResolution": "node", - "jsx": "react" - }, - "include": ["./src"], - "exclude": ["node_modules/"] -} diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index 52097c7d8d38..000000000000 --- a/package-lock.json +++ /dev/null @@ -1,9380 +0,0 @@ -{ - "name": "cipp", - "version": "6.2.2", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "cipp", - "version": "6.2.2", - "license": "AGPL-3.0", - "dependencies": { - "@coreui/chartjs": "^3.0.0", - "@coreui/coreui": "^4.3.0", - "@coreui/react": "^4.11.0", - "@coreui/react-chartjs": "^2.1.3", - "@coreui/utils": "^1.3.1", - "@fortawesome/fontawesome-svg-core": "^6.5.1", - "@fortawesome/free-brands-svg-icons": "^6.5.1", - "@fortawesome/free-regular-svg-icons": "^6.5.1", - "@fortawesome/free-solid-svg-icons": "^6.5.1", - "@fortawesome/react-fontawesome": "^0.2.0", - "@monaco-editor/react": "^4.5.2", - "@popperjs/core": "^2.10.2", - "@reduxjs/toolkit": "^1.9.7", - "@rjsf/bootstrap-4": "^5.12.1", - "@rjsf/core": "^5.12.1", - "@rjsf/utils": "^5.12.1", - "@rjsf/validator-ajv8": "^5.12.1", - "@uiw/react-json-view": "^2.0.0-alpha.23", - "axios": "^1.6.2", - "buffer": "^6.0.3", - "chart.js": "^3.5.1", - "classnames": "^2.3.1", - "core-js": "^3.18.3", - "dompurify": "^3.1.6", - "eml-parse-js": "^1.1.14", - "enzyme": "^3.11.0", - "final-form": "^4.20.4", - "final-form-arrays": "^3.1.0", - "fuse.js": "^7.0.0", - "fuzzysort": "^1.1.4", - "javascript-time-ago": "^2.5.9", - "jspdf": "^2.4.0", - "jspdf-autotable": "^3.5.23", - "lodash-es": "^4.17.21", - "moment": "^2.29.1", - "prop-types": "^15.7.2", - "react": "^18.2.0", - "react-app-polyfill": "^2.0.0", - "react-bootstrap": "^1.6.5", - "react-circular-progressbar": "^2.1.0", - "react-copy-to-clipboard": "^5.1.0", - "react-data-table-component": "^7.4.5", - "react-datepicker": "^4.10.0", - "react-dom": "^18.2.0", - "react-dropzone": "^14.2.3", - "react-final-form": "^6.5.9", - "react-final-form-arrays": "^3.1.4", - "react-final-form-listeners": "^1.0.3", - "react-helmet-async": "^1.3.0", - "react-hotkeys-hook": "^3.4.4", - "react-html-parser": "^2.0.2", - "react-loading-skeleton": "^3.1.0", - "react-masonry-component": "^6.3.0", - "react-media-hook": "^0.4.9", - "react-papaparse": "^3.18.2", - "react-redux": "^7.2.5", - "react-router-dom": "^6.1.1", - "react-select": "^5.3.0", - "react-select-search": "^3.0.8", - "react-syntax-highlighter": "^15.4.5", - "react-time-ago": "^7.2.1", - "redux": "4.1.1", - "redux-persist": "^6.0.0", - "simplebar-react": "^2.3.6", - "source-map-loader": "^3.0.0", - "styled-components": "^5.3.11" - }, - "devDependencies": { - "@types/react": "^18.2.39", - "@types/react-helmet": "^6.1.5", - "@vitejs/plugin-react": "^4.2.1", - "auto-changelog": "~2.3.0", - "browserslist-to-esbuild": "^1.2.0", - "eslint": "^8.54.0", - "eslint-config-prettier": "^8.3.0", - "eslint-import-resolver-custom-alias": "^1.3.2", - "eslint-plugin-import": "^2.29.0", - "eslint-plugin-prettier": "^4.0.0", - "eslint-plugin-react": "^7.33.2", - "eslint-plugin-react-hooks": "^4.6.0", - "eslint-plugin-react-refresh": "^0.4.4", - "husky": "^7.0.4", - "postcss-scss": "^4.0.3", - "prettier": "2.4.1", - "redux-immutable-state-invariant": "^2.1.0", - "sass": "^1.64.2", - "stylelint": "^14.3.0", - "stylelint-config-sass-guidelines": "^9.0.1", - "stylelint-order": "^5.0.0", - "vite": "^5.0.6", - "vite-plugin-eslint": "^1.8.1" - }, - "engines": { - "node": "18", - "npm": ">=8.3.0" - } - }, - "node_modules/@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@ampproject/remapping": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", - "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", - "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", - "dependencies": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz", - "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.0.tgz", - "integrity": "sha512-fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR+K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw==", - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.6", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helpers": "^7.24.0", - "@babel/parser": "^7.24.0", - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.0", - "@babel/types": "^7.24.0", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/generator": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", - "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", - "dependencies": { - "@babel/types": "^7.23.6", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", - "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", - "dependencies": { - "@babel/compat-data": "^7.23.5", - "@babel/helper-validator-option": "^7.23.5", - "browserslist": "^4.22.2", - "lru-cache": "^5.1.1", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", - "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", - "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", - "dependencies": { - "@babel/template": "^7.22.15", - "@babel/types": "^7.23.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", - "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", - "dependencies": { - "@babel/types": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", - "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/helper-validator-identifier": "^7.22.20" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.0.tgz", - "integrity": "sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", - "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", - "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", - "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", - "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.0.tgz", - "integrity": "sha512-ulDZdc0Aj5uLc5nETsa7EPx2L7rM0YJM8r7ck7U73AXi7qOV44IHHRAYZHY6iU1rr3C5N4NtTmMRUJP6kwCWeA==", - "dependencies": { - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.0", - "@babel/types": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", - "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", - "dependencies": { - "@babel/helper-validator-identifier": "^7.22.20", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.0.tgz", - "integrity": "sha512-QuP/FxEAzMSjXygs8v4N9dvdXzEHN4W1oF3PxuWAtPo08UdM17u89RDMgjLn/mlc56iM0HlLmVkO/wgR+rDgHg==", - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", - "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx-self": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.23.3.tgz", - "integrity": "sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx-source": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.23.3.tgz", - "integrity": "sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/runtime": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.0.tgz", - "integrity": "sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==", - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/template": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz", - "integrity": "sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==", - "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/parser": "^7.24.0", - "@babel/types": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.0.tgz", - "integrity": "sha512-HfuJlI8qq3dEDmNU5ChzzpZRWq+oxCZQyMzIMEqLho+AQnhMnKQUzH6ydo3RBl/YjPCuk68Y6s0Gx0AeyULiWw==", - "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.6", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.24.0", - "@babel/types": "^7.24.0", - "debug": "^4.3.1", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/types": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz", - "integrity": "sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==", - "dependencies": { - "@babel/helper-string-parser": "^7.23.4", - "@babel/helper-validator-identifier": "^7.22.20", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@coreui/chartjs": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@coreui/chartjs/-/chartjs-3.1.2.tgz", - "integrity": "sha512-d3MGk3KZNAt29VRKP/XYiGmT56KTqtuOhLEg5HNwb7P7ZmEgOJoHxFHVCVE4I36hfgQCjZZVknsuk2ZTfF/2fw==", - "dependencies": { - "@coreui/coreui": "^4.2.6", - "chart.js": "^3.9.1" - } - }, - "node_modules/@coreui/coreui": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/@coreui/coreui/-/coreui-4.3.0.tgz", - "integrity": "sha512-2bx5E9YT17td4K7hZapudypSPx7a5jYg8NpSCTLRStPTWOBlL5XVF7fz3yUn2S6DQE1VmnbrXQpuS5LzmptRLQ==", - "dependencies": { - "postcss-combine-duplicated-selectors": "^10.0.3" - }, - "peerDependencies": { - "@popperjs/core": "^2.11.6" - } - }, - "node_modules/@coreui/react": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@coreui/react/-/react-4.11.1.tgz", - "integrity": "sha512-2EYnV6kpyH8/648+iffRy/I/xCEnD2MnEOuo1LPiUSX7EqoHn5M3fI+sf4vM9Wrqz4Gv2gxCl8DNRpk2xcLANQ==", - "peerDependencies": { - "@coreui/coreui": "4.3.0", - "react": ">=17", - "react-dom": ">=17" - } - }, - "node_modules/@coreui/react-chartjs": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/@coreui/react-chartjs/-/react-chartjs-2.1.3.tgz", - "integrity": "sha512-Boj2LhlGlAVIdPRDDIyF5nbupIg9ohhpdLXW28ch0A0ZMpJvf0AwBoibV4Uo6agcN7jSq2uvgudNC3aJTMg/8w==", - "dependencies": { - "@coreui/chartjs": "^3.1.1", - "chart.js": "3.9.1" - }, - "peerDependencies": { - "react": ">=17", - "react-dom": ">=17" - } - }, - "node_modules/@coreui/utils": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@coreui/utils/-/utils-1.3.1.tgz", - "integrity": "sha512-WuWHX7bg89cJH34TWVsLe9RsxzBhTApj+X2Ja19xhjcpxt5Gv11Ozm+fwYt6DD7DgncTvpwYrMcnNlpp701UOg==", - "engines": { - "node": ">=8.9.0", - "npm": ">= 5.6.0" - } - }, - "node_modules/@csstools/selector-specificity": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz", - "integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==", - "dev": true, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss-selector-parser": "^6.0.10" - } - }, - "node_modules/@emotion/babel-plugin": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz", - "integrity": "sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==", - "dependencies": { - "@babel/helper-module-imports": "^7.16.7", - "@babel/runtime": "^7.18.3", - "@emotion/hash": "^0.9.1", - "@emotion/memoize": "^0.8.1", - "@emotion/serialize": "^1.1.2", - "babel-plugin-macros": "^3.1.0", - "convert-source-map": "^1.5.0", - "escape-string-regexp": "^4.0.0", - "find-root": "^1.1.0", - "source-map": "^0.5.7", - "stylis": "4.2.0" - } - }, - "node_modules/@emotion/babel-plugin/node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" - }, - "node_modules/@emotion/babel-plugin/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@emotion/babel-plugin/node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@emotion/cache": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz", - "integrity": "sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==", - "dependencies": { - "@emotion/memoize": "^0.8.1", - "@emotion/sheet": "^1.2.2", - "@emotion/utils": "^1.2.1", - "@emotion/weak-memoize": "^0.3.1", - "stylis": "4.2.0" - } - }, - "node_modules/@emotion/hash": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz", - "integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==" - }, - "node_modules/@emotion/is-prop-valid": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.2.tgz", - "integrity": "sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==", - "dependencies": { - "@emotion/memoize": "^0.8.1" - } - }, - "node_modules/@emotion/memoize": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", - "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==" - }, - "node_modules/@emotion/react": { - "version": "11.11.4", - "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.11.4.tgz", - "integrity": "sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==", - "dependencies": { - "@babel/runtime": "^7.18.3", - "@emotion/babel-plugin": "^11.11.0", - "@emotion/cache": "^11.11.0", - "@emotion/serialize": "^1.1.3", - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", - "@emotion/utils": "^1.2.1", - "@emotion/weak-memoize": "^0.3.1", - "hoist-non-react-statics": "^3.3.1" - }, - "peerDependencies": { - "react": ">=16.8.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@emotion/serialize": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.3.tgz", - "integrity": "sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA==", - "dependencies": { - "@emotion/hash": "^0.9.1", - "@emotion/memoize": "^0.8.1", - "@emotion/unitless": "^0.8.1", - "@emotion/utils": "^1.2.1", - "csstype": "^3.0.2" - } - }, - "node_modules/@emotion/sheet": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.2.tgz", - "integrity": "sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==" - }, - "node_modules/@emotion/stylis": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz", - "integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==" - }, - "node_modules/@emotion/unitless": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz", - "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==" - }, - "node_modules/@emotion/use-insertion-effect-with-fallbacks": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz", - "integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==", - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/@emotion/utils": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz", - "integrity": "sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==" - }, - "node_modules/@emotion/weak-memoize": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz", - "integrity": "sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==" - }, - "node_modules/@esbuild/aix-ppc64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.19.12.tgz", - "integrity": "sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "aix" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.12.tgz", - "integrity": "sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.12.tgz", - "integrity": "sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-x64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.12.tgz", - "integrity": "sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.12.tgz", - "integrity": "sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.12.tgz", - "integrity": "sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.12.tgz", - "integrity": "sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.12.tgz", - "integrity": "sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.12.tgz", - "integrity": "sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.12.tgz", - "integrity": "sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.12.tgz", - "integrity": "sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.12.tgz", - "integrity": "sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==", - "cpu": [ - "loong64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.12.tgz", - "integrity": "sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==", - "cpu": [ - "mips64el" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.12.tgz", - "integrity": "sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.12.tgz", - "integrity": "sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.12.tgz", - "integrity": "sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==", - "cpu": [ - "s390x" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-x64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.12.tgz", - "integrity": "sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.12.tgz", - "integrity": "sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.12.tgz", - "integrity": "sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.12.tgz", - "integrity": "sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.12.tgz", - "integrity": "sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.12.tgz", - "integrity": "sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-x64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.12.tgz", - "integrity": "sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "dev": true, - "dependencies": { - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" - } - }, - "node_modules/@eslint-community/regexpp": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", - "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", - "dev": true, - "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" - } - }, - "node_modules/@eslint/eslintrc": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", - "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", - "dev": true, - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@eslint/eslintrc/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/@eslint/eslintrc/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@eslint/js": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", - "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/@floating-ui/core": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.0.tgz", - "integrity": "sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==", - "dependencies": { - "@floating-ui/utils": "^0.2.1" - } - }, - "node_modules/@floating-ui/dom": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.3.tgz", - "integrity": "sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==", - "dependencies": { - "@floating-ui/core": "^1.0.0", - "@floating-ui/utils": "^0.2.0" - } - }, - "node_modules/@floating-ui/utils": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.1.tgz", - "integrity": "sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==" - }, - "node_modules/@fortawesome/fontawesome-common-types": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.5.1.tgz", - "integrity": "sha512-GkWzv+L6d2bI5f/Vk6ikJ9xtl7dfXtoRu3YGE6nq0p/FFqA1ebMOAWg3XgRyb0I6LYyYkiAo+3/KrwuBp8xG7A==", - "hasInstallScript": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/@fortawesome/fontawesome-svg-core": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.5.1.tgz", - "integrity": "sha512-MfRCYlQPXoLlpem+egxjfkEuP9UQswTrlCOsknus/NcMoblTH2g0jPrapbcIb04KGA7E2GZxbAccGZfWoYgsrQ==", - "hasInstallScript": true, - "dependencies": { - "@fortawesome/fontawesome-common-types": "6.5.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@fortawesome/free-brands-svg-icons": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@fortawesome/free-brands-svg-icons/-/free-brands-svg-icons-6.5.1.tgz", - "integrity": "sha512-093l7DAkx0aEtBq66Sf19MgoZewv1zeY9/4C7vSKPO4qMwEsW/2VYTUTpBtLwfb9T2R73tXaRDPmE4UqLCYHfg==", - "hasInstallScript": true, - "dependencies": { - "@fortawesome/fontawesome-common-types": "6.5.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@fortawesome/free-regular-svg-icons": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-6.5.1.tgz", - "integrity": "sha512-m6ShXn+wvqEU69wSP84coxLbNl7sGVZb+Ca+XZq6k30SzuP3X4TfPqtycgUh9ASwlNh5OfQCd8pDIWxl+O+LlQ==", - "hasInstallScript": true, - "dependencies": { - "@fortawesome/fontawesome-common-types": "6.5.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@fortawesome/free-solid-svg-icons": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.5.1.tgz", - "integrity": "sha512-S1PPfU3mIJa59biTtXJz1oI0+KAXW6bkAb31XKhxdxtuXDiUIFsih4JR1v5BbxY7hVHsD1RKq+jRkVRaf773NQ==", - "hasInstallScript": true, - "dependencies": { - "@fortawesome/fontawesome-common-types": "6.5.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@fortawesome/react-fontawesome": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@fortawesome/react-fontawesome/-/react-fontawesome-0.2.0.tgz", - "integrity": "sha512-uHg75Rb/XORTtVt7OS9WoK8uM276Ufi7gCzshVWkUJbHhh3svsUUeqXerrM96Wm7fRiDzfKRwSoahhMIkGAYHw==", - "dependencies": { - "prop-types": "^15.8.1" - }, - "peerDependencies": { - "@fortawesome/fontawesome-svg-core": "~1 || ~6", - "react": ">=16.3" - } - }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.11.14", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", - "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", - "dev": true, - "dependencies": { - "@humanwhocodes/object-schema": "^2.0.2", - "debug": "^4.3.1", - "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=10.10.0" - } - }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true, - "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@humanwhocodes/object-schema": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", - "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", - "dev": true - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", - "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", - "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", - "peer": true, - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - }, - "node_modules/@juggle/resize-observer": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@juggle/resize-observer/-/resize-observer-3.4.0.tgz", - "integrity": "sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==" - }, - "node_modules/@monaco-editor/loader": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@monaco-editor/loader/-/loader-1.4.0.tgz", - "integrity": "sha512-00ioBig0x642hytVspPl7DbQyaSWRaolYie/UFNjoTdvoKPzo6xrXLhTk9ixgIKcLH5b5vDOjVNiGyY+uDCUlg==", - "dependencies": { - "state-local": "^1.0.6" - }, - "peerDependencies": { - "monaco-editor": ">= 0.21.0 < 1" - } - }, - "node_modules/@monaco-editor/react": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/@monaco-editor/react/-/react-4.6.0.tgz", - "integrity": "sha512-RFkU9/i7cN2bsq/iTkurMWOEErmYcY6JiQI3Jn+WeR/FGISH8JbHERjpS9oRuSOPvDMJI0Z8nJeKkbOs9sBYQw==", - "dependencies": { - "@monaco-editor/loader": "^1.4.0" - }, - "peerDependencies": { - "monaco-editor": ">= 0.25.0 < 1", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@popperjs/core": { - "version": "2.11.8", - "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", - "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/popperjs" - } - }, - "node_modules/@react-icons/all-files": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@react-icons/all-files/-/all-files-4.1.0.tgz", - "integrity": "sha512-hxBI2UOuVaI3O/BhQfhtb4kcGn9ft12RWAFVMUeNjqqhLsHvFtzIkFaptBJpFDANTKoDfdVoHTKZDlwKCACbMQ==", - "peerDependencies": { - "react": "*" - } - }, - "node_modules/@reduxjs/toolkit": { - "version": "1.9.7", - "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.9.7.tgz", - "integrity": "sha512-t7v8ZPxhhKgOKtU+uyJT13lu4vL7az5aFi4IdoDs/eS548edn2M8Ik9h8fxgvMjGoAUVFSt6ZC1P5cWmQ014QQ==", - "dependencies": { - "immer": "^9.0.21", - "redux": "^4.2.1", - "redux-thunk": "^2.4.2", - "reselect": "^4.1.8" - }, - "peerDependencies": { - "react": "^16.9.0 || ^17.0.0 || ^18", - "react-redux": "^7.2.1 || ^8.0.2" - }, - "peerDependenciesMeta": { - "react": { - "optional": true - }, - "react-redux": { - "optional": true - } - } - }, - "node_modules/@reduxjs/toolkit/node_modules/redux": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", - "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", - "dependencies": { - "@babel/runtime": "^7.9.2" - } - }, - "node_modules/@remix-run/router": { - "version": "1.15.3", - "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.15.3.tgz", - "integrity": "sha512-Oy8rmScVrVxWZVOpEF57ovlnhpZ8CCPlnIIumVcV9nFdiSIrus99+Lw78ekXyGvVDlIsFJbSfmSovJUhCWYV3w==", - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@restart/context": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@restart/context/-/context-2.1.4.tgz", - "integrity": "sha512-INJYZQJP7g+IoDUh/475NlGiTeMfwTXUEr3tmRneckHIxNolGOW9CTq83S8cxq0CgJwwcMzMJFchxvlwe7Rk8Q==", - "peerDependencies": { - "react": ">=16.3.2" - } - }, - "node_modules/@restart/hooks": { - "version": "0.4.16", - "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.16.tgz", - "integrity": "sha512-f7aCv7c+nU/3mF7NWLtVVr0Ra80RqsO89hO72r+Y/nvQr5+q0UFGkocElTH6MJApvReVh6JHUFYn2cw1WdHF3w==", - "dependencies": { - "dequal": "^2.0.3" - }, - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/@rjsf/bootstrap-4": { - "version": "5.17.1", - "resolved": "https://registry.npmjs.org/@rjsf/bootstrap-4/-/bootstrap-4-5.17.1.tgz", - "integrity": "sha512-23NZ5qB0eYmJRY1UgI66mTAp4lyGXSgduyr7UX35fsBFy91CzP/FozL1P/muRcEslRqBJhDgrWbMdw99eLSO1w==", - "dependencies": { - "@react-icons/all-files": "^4.1.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@rjsf/core": "^5.16.x", - "@rjsf/utils": "^5.16.x", - "react": "^16.14.0 || >=17", - "react-bootstrap": "^1.6.5" - } - }, - "node_modules/@rjsf/core": { - "version": "5.17.1", - "resolved": "https://registry.npmjs.org/@rjsf/core/-/core-5.17.1.tgz", - "integrity": "sha512-COZSuumwHskWN8Pz3RxdxvuQUP6M/qBMXAkIi+TSWLFLaF6SUugpLiceMT1jGemDCr7fOSTiPxjkToSsgpvueQ==", - "dependencies": { - "lodash": "^4.17.21", - "lodash-es": "^4.17.21", - "markdown-to-jsx": "^7.4.1", - "nanoid": "^3.3.7", - "prop-types": "^15.8.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@rjsf/utils": "^5.16.x", - "react": "^16.14.0 || >=17" - } - }, - "node_modules/@rjsf/utils": { - "version": "5.17.1", - "resolved": "https://registry.npmjs.org/@rjsf/utils/-/utils-5.17.1.tgz", - "integrity": "sha512-q1Igz/cuM2hi+jiXFkoaXqdRTUFB+a0jfVKNmZlHmvPmfYeeJfcfyOTzO8dQ41fHNHUFb15ryxa/TblDQimwkA==", - "dependencies": { - "json-schema-merge-allof": "^0.8.1", - "jsonpointer": "^5.0.1", - "lodash": "^4.17.21", - "lodash-es": "^4.17.21", - "react-is": "^18.2.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "react": "^16.14.0 || >=17" - } - }, - "node_modules/@rjsf/validator-ajv8": { - "version": "5.17.1", - "resolved": "https://registry.npmjs.org/@rjsf/validator-ajv8/-/validator-ajv8-5.17.1.tgz", - "integrity": "sha512-KdvHsjDQ60b04fqnoqhfkiCv7E4n4NIHli8QU8dtpuUAVS/TOqDuOtDJVz6bv/rd/QNROGpxlO/OCccE0rmxLQ==", - "dependencies": { - "ajv": "^8.12.0", - "ajv-formats": "^2.1.1", - "lodash": "^4.17.21", - "lodash-es": "^4.17.21" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@rjsf/utils": "^5.16.x" - } - }, - "node_modules/@rollup/pluginutils": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", - "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", - "dev": true, - "dependencies": { - "estree-walker": "^2.0.1", - "picomatch": "^2.2.2" - }, - "engines": { - "node": ">= 8.0.0" - } - }, - "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.13.0.tgz", - "integrity": "sha512-5ZYPOuaAqEH/W3gYsRkxQATBW3Ii1MfaT4EQstTnLKViLi2gLSQmlmtTpGucNP3sXEpOiI5tdGhjdE111ekyEg==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-android-arm64": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.13.0.tgz", - "integrity": "sha512-BSbaCmn8ZadK3UAQdlauSvtaJjhlDEjS5hEVVIN3A4bbl3X+otyf/kOJV08bYiRxfejP3DXFzO2jz3G20107+Q==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.13.0.tgz", - "integrity": "sha512-Ovf2evVaP6sW5Ut0GHyUSOqA6tVKfrTHddtmxGQc1CTQa1Cw3/KMCDEEICZBbyppcwnhMwcDce9ZRxdWRpVd6g==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.13.0.tgz", - "integrity": "sha512-U+Jcxm89UTK592vZ2J9st9ajRv/hrwHdnvyuJpa5A2ngGSVHypigidkQJP+YiGL6JODiUeMzkqQzbCG3At81Gg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.13.0.tgz", - "integrity": "sha512-8wZidaUJUTIR5T4vRS22VkSMOVooG0F4N+JSwQXWSRiC6yfEsFMLTYRFHvby5mFFuExHa/yAp9juSphQQJAijQ==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.13.0.tgz", - "integrity": "sha512-Iu0Kno1vrD7zHQDxOmvweqLkAzjxEVqNhUIXBsZ8hu8Oak7/5VTPrxOEZXYC1nmrBVJp0ZcL2E7lSuuOVaE3+w==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.13.0.tgz", - "integrity": "sha512-C31QrW47llgVyrRjIwiOwsHFcaIwmkKi3PCroQY5aVq4H0A5v/vVVAtFsI1nfBngtoRpeREvZOkIhmRwUKkAdw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.13.0.tgz", - "integrity": "sha512-Oq90dtMHvthFOPMl7pt7KmxzX7E71AfyIhh+cPhLY9oko97Zf2C9tt/XJD4RgxhaGeAraAXDtqxvKE1y/j35lA==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.13.0.tgz", - "integrity": "sha512-yUD/8wMffnTKuiIsl6xU+4IA8UNhQ/f1sAnQebmE/lyQ8abjsVyDkyRkWop0kdMhKMprpNIhPmYlCxgHrPoXoA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.13.0.tgz", - "integrity": "sha512-9RyNqoFNdF0vu/qqX63fKotBh43fJQeYC98hCaf89DYQpv+xu0D8QFSOS0biA7cGuqJFOc1bJ+m2rhhsKcw1hw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.13.0.tgz", - "integrity": "sha512-46ue8ymtm/5PUU6pCvjlic0z82qWkxv54GTJZgHrQUuZnVH+tvvSP0LsozIDsCBFO4VjJ13N68wqrKSeScUKdA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.13.0.tgz", - "integrity": "sha512-P5/MqLdLSlqxbeuJ3YDeX37srC8mCflSyTrUsgbU1c/U9j6l2g2GiIdYaGD9QjdMQPMSgYm7hgg0551wHyIluw==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.13.0.tgz", - "integrity": "sha512-UKXUQNbO3DOhzLRwHSpa0HnhhCgNODvfoPWv2FCXme8N/ANFfhIPMGuOT+QuKd16+B5yxZ0HdpNlqPvTMS1qfw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@sinonjs/text-encoding": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.2.tgz", - "integrity": "sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ==" - }, - "node_modules/@types/babel__core": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", - "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", - "dev": true, - "dependencies": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "node_modules/@types/babel__generator": { - "version": "7.6.8", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", - "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", - "dev": true, - "dependencies": { - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__template": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", - "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", - "dev": true, - "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__traverse": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.5.tgz", - "integrity": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==", - "dev": true, - "dependencies": { - "@babel/types": "^7.20.7" - } - }, - "node_modules/@types/eslint": { - "version": "8.56.5", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.5.tgz", - "integrity": "sha512-u5/YPJHo1tvkSF2CE0USEkxon82Z5DBy2xR+qfyYNszpX9qcs4sT6uq2kBbj4BXY1+DBGDPnrhMZV3pKWGNukw==", - "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" - } - }, - "node_modules/@types/eslint-scope": { - "version": "3.7.7", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", - "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", - "peer": true, - "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" - } - }, - "node_modules/@types/estree": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", - "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" - }, - "node_modules/@types/hast": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz", - "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", - "dependencies": { - "@types/unist": "^2" - } - }, - "node_modules/@types/hoist-non-react-statics": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.5.tgz", - "integrity": "sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==", - "dependencies": { - "@types/react": "*", - "hoist-non-react-statics": "^3.3.0" - } - }, - "node_modules/@types/invariant": { - "version": "2.2.37", - "resolved": "https://registry.npmjs.org/@types/invariant/-/invariant-2.2.37.tgz", - "integrity": "sha512-IwpIMieE55oGWiXkQPSBY1nw1nFs6bsKXTFskNY8sdS17K24vyEBRQZEwlRS7ZmXCWnJcQtbxWzly+cODWGs2A==" - }, - "node_modules/@types/json-schema": { - "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" - }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true - }, - "node_modules/@types/minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", - "dev": true - }, - "node_modules/@types/node": { - "version": "20.11.26", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.26.tgz", - "integrity": "sha512-YwOMmyhNnAWijOBQweOJnQPl068Oqd4K3OFbTc6AHJwzweUwwWG3GIFY74OKks2PJUDkQPeddOQES9mLn1CTEQ==", - "dependencies": { - "undici-types": "~5.26.4" - } - }, - "node_modules/@types/normalize-package-data": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", - "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", - "dev": true - }, - "node_modules/@types/papaparse": { - "version": "5.3.14", - "resolved": "https://registry.npmjs.org/@types/papaparse/-/papaparse-5.3.14.tgz", - "integrity": "sha512-LxJ4iEFcpqc6METwp9f6BV6VVc43m6MfH0VqFosHvrUgfXiFe6ww7R3itkOQ+TCK6Y+Iv/+RnnvtRZnkc5Kc9g==", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/parse-json": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", - "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" - }, - "node_modules/@types/prop-types": { - "version": "15.7.11", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz", - "integrity": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==" - }, - "node_modules/@types/raf": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/@types/raf/-/raf-3.4.3.tgz", - "integrity": "sha512-c4YAvMedbPZ5tEyxzQdMoOhhJ4RD3rngZIdwC2/qDN3d7JpEhB6fiBRKVY1lg5B7Wk+uPBjn5f39j1/2MY1oOw==", - "optional": true - }, - "node_modules/@types/react": { - "version": "18.2.65", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.65.tgz", - "integrity": "sha512-98TsY0aW4jqx/3RqsUXwMDZSWR1Z4CUlJNue8ueS2/wcxZOsz4xmW1X8ieaWVRHcmmQM3R8xVA4XWB3dJnWwDQ==", - "dependencies": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/react-helmet": { - "version": "6.1.11", - "resolved": "https://registry.npmjs.org/@types/react-helmet/-/react-helmet-6.1.11.tgz", - "integrity": "sha512-0QcdGLddTERotCXo3VFlUSWO3ztraw8nZ6e3zJSgG7apwV5xt+pJUS8ewPBqT4NYB1optGLprNQzFleIY84u/g==", - "dev": true, - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/react-redux": { - "version": "7.1.33", - "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.33.tgz", - "integrity": "sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==", - "dependencies": { - "@types/hoist-non-react-statics": "^3.3.0", - "@types/react": "*", - "hoist-non-react-statics": "^3.3.0", - "redux": "^4.0.0" - } - }, - "node_modules/@types/react-transition-group": { - "version": "4.4.10", - "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.10.tgz", - "integrity": "sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==", - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/scheduler": { - "version": "0.16.8", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz", - "integrity": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==" - }, - "node_modules/@types/unist": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz", - "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==" - }, - "node_modules/@types/warning": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.3.tgz", - "integrity": "sha512-D1XC7WK8K+zZEveUPY+cf4+kgauk8N4eHr/XIHXGlGYkHLud6hK9lYfZk1ry1TNh798cZUCgb6MqGEG8DkJt6Q==" - }, - "node_modules/@uiw/react-json-view": { - "version": "2.0.0-alpha.23", - "resolved": "https://registry.npmjs.org/@uiw/react-json-view/-/react-json-view-2.0.0-alpha.23.tgz", - "integrity": "sha512-GT0fy/K7+xSsfhvV4PVx2qPRomr/RjzFnerCjglfTYX0oEjFe9S2UwnhqOBaSHrfaCL6ccALZ2c+qV73eqop9Q==", - "funding": { - "url": "https://jaywcjlove.github.io/#/sponsor" - }, - "peerDependencies": { - "@babel/runtime": ">=7.10.0", - "react": ">=18.0.0", - "react-dom": ">=18.0.0" - } - }, - "node_modules/@ungap/structured-clone": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", - "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", - "dev": true - }, - "node_modules/@vitejs/plugin-react": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.2.1.tgz", - "integrity": "sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==", - "dev": true, - "dependencies": { - "@babel/core": "^7.23.5", - "@babel/plugin-transform-react-jsx-self": "^7.23.3", - "@babel/plugin-transform-react-jsx-source": "^7.23.3", - "@types/babel__core": "^7.20.5", - "react-refresh": "^0.14.0" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "peerDependencies": { - "vite": "^4.2.0 || ^5.0.0" - } - }, - "node_modules/@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", - "peer": true, - "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" - } - }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", - "peer": true - }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", - "peer": true - }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", - "peer": true - }, - "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", - "peer": true, - "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", - "peer": true - }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" - } - }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", - "peer": true, - "dependencies": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", - "peer": true, - "dependencies": { - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", - "peer": true - }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" - } - }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } - }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" - } - }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } - }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "peer": true - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "peer": true - }, - "node_modules/abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", - "deprecated": "Use your platform's native atob() and btoa() methods instead" - }, - "node_modules/acorn": { - "version": "8.11.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", - "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", - "peer": true, - "peerDependencies": { - "acorn": "^8" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-formats": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", - "dependencies": { - "ajv": "^8.0.0" - }, - "peerDependencies": { - "ajv": "^8.0.0" - }, - "peerDependenciesMeta": { - "ajv": { - "optional": true - } - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", - "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", - "dependencies": { - "call-bind": "^1.0.5", - "is-array-buffer": "^3.0.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-includes": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", - "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/array.prototype.filter": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array.prototype.filter/-/array.prototype.filter-1.0.3.tgz", - "integrity": "sha512-VizNcj/RGJiUyQBgzwxzE5oHdeuXY5hSbbmKMlphj1cy1Vl7Pn2asCGbSrru6hSQjmCzqTBPVWAF/whmEOVHbw==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-array-method-boxes-properly": "^1.0.0", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.findlast": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.4.tgz", - "integrity": "sha512-BMtLxpV+8BD+6ZPFIWmnUBpQoy+A+ujcg4rhp2iwCRJYA7PEh2MS4NL3lz8EiDlLrJPp2hg9qWihr5pd//jcGw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.3.0", - "es-shim-unscopables": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.findlastindex": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.4.tgz", - "integrity": "sha512-hzvSHUshSpCflDR1QMUBLHGHP1VIEBegT4pix9H/Z92Xw3ySoy6c2qh7lJWTJnRJ8JCZ9bJNCgTyYaJGcJu6xQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.3.0", - "es-shim-unscopables": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flat": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", - "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", - "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.toreversed": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/array.prototype.toreversed/-/array.prototype.toreversed-1.1.2.tgz", - "integrity": "sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - } - }, - "node_modules/array.prototype.tosorted": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.3.tgz", - "integrity": "sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.1.0", - "es-shim-unscopables": "^1.0.2" - } - }, - "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", - "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", - "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.2.1", - "get-intrinsic": "^1.2.3", - "is-array-buffer": "^3.0.4", - "is-shared-array-buffer": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" - }, - "node_modules/astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/asynciterator.prototype": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", - "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.3" - } - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - }, - "node_modules/atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", - "bin": { - "atob": "bin/atob.js" - }, - "engines": { - "node": ">= 4.5.0" - } - }, - "node_modules/attr-accept": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/attr-accept/-/attr-accept-2.2.2.tgz", - "integrity": "sha512-7prDjvt9HmqiZ0cl5CRjtS84sEyhsHP2coDkaZKRKVfCDo9s7iw7ChVmar78Gu9pC4SoR/28wFu/G5JJhTnqEg==", - "engines": { - "node": ">=4" - } - }, - "node_modules/auto-changelog": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/auto-changelog/-/auto-changelog-2.3.0.tgz", - "integrity": "sha512-S2B+RtTgytsa7l5iFGBoWT9W9ylITT5JJ8OaMJ7nrwvnlRm1dSS2tghaYueDeInZZafOE+1llH3tUQjMDRVS1g==", - "dev": true, - "dependencies": { - "commander": "^5.0.0", - "handlebars": "^4.7.3", - "node-fetch": "^2.6.0", - "parse-github-url": "^1.0.2", - "semver": "^6.3.0" - }, - "bin": { - "auto-changelog": "src/index.js" - }, - "engines": { - "node": ">=8.3" - } - }, - "node_modules/available-typed-arrays": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", - "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", - "dependencies": { - "possible-typed-array-names": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/axios": { - "version": "1.6.7", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.7.tgz", - "integrity": "sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==", - "dependencies": { - "follow-redirects": "^1.15.4", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - } - }, - "node_modules/babel-plugin-macros": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", - "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", - "dependencies": { - "@babel/runtime": "^7.12.5", - "cosmiconfig": "^7.0.0", - "resolve": "^1.19.0" - }, - "engines": { - "node": ">=10", - "npm": ">=6" - } - }, - "node_modules/babel-plugin-styled-components": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-2.1.4.tgz", - "integrity": "sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-module-imports": "^7.22.5", - "@babel/plugin-syntax-jsx": "^7.22.5", - "lodash": "^4.17.21", - "picomatch": "^2.3.1" - }, - "peerDependencies": { - "styled-components": ">= 2" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "node_modules/base64-arraybuffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", - "integrity": "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==", - "optional": true, - "engines": { - "node": ">= 0.6.0" - } - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/batch-processor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/batch-processor/-/batch-processor-1.0.0.tgz", - "integrity": "sha512-xoLQD8gmmR32MeuBHgH0Tzd5PuSZx71ZsbhVxOCRbgktZEPe4SQy7s9Z50uPp0F/f7iw2XmkHN2xkgbMfckMDA==" - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browserslist": { - "version": "4.23.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", - "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001587", - "electron-to-chromium": "^1.4.668", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/browserslist-to-esbuild": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserslist-to-esbuild/-/browserslist-to-esbuild-1.2.0.tgz", - "integrity": "sha512-ftrrbI/VHBgEnmnSyhkqvQVMp6jAKybfs0qMIlm7SLBrQTGMsdCIP4q3BoKeLsZTBQllIQtY9kbxgRYV2WU47g==", - "dev": true, - "dependencies": { - "browserslist": "^4.17.3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/btoa": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/btoa/-/btoa-1.2.1.tgz", - "integrity": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==", - "bin": { - "btoa": "bin/btoa.js" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" - } - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "peer": true - }, - "node_modules/call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/camelcase-keys": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", - "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", - "dev": true, - "dependencies": { - "camelcase": "^5.3.1", - "map-obj": "^4.0.0", - "quick-lru": "^4.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/camelize": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.1.tgz", - "integrity": "sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/can-use-dom": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/can-use-dom/-/can-use-dom-0.1.0.tgz", - "integrity": "sha512-ceOhN1DL7Y4O6M0j9ICgmTYziV89WMd96SvSl0REd8PMgrY0B/WBOPoed5S1KUmJqXgUXh8gzSe6E3ae27upsQ==" - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001597", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001597.tgz", - "integrity": "sha512-7LjJvmQU6Sj7bL0j5b5WY/3n7utXUJvAe1lxhsHDbLmwX9mdL86Yjtr+5SRCyf8qME4M7pU2hswj0FpyBVCv9w==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] - }, - "node_modules/canvg": { - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/canvg/-/canvg-3.0.10.tgz", - "integrity": "sha512-qwR2FRNO9NlzTeKIPIKpnTY6fqwuYSequ8Ru8c0YkYU7U0oW+hLUvWadLvAu1Rl72OMNiFhoLu4f8eUjQ7l/+Q==", - "optional": true, - "dependencies": { - "@babel/runtime": "^7.12.5", - "@types/raf": "^3.4.0", - "core-js": "^3.8.3", - "raf": "^3.4.1", - "regenerator-runtime": "^0.13.7", - "rgbcolor": "^1.0.1", - "stackblur-canvas": "^2.0.0", - "svg-pathdata": "^6.0.3" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/canvg/node_modules/regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", - "optional": true - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/character-entities": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", - "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/character-entities-legacy": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", - "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/character-reference-invalid": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", - "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/chart.js": { - "version": "3.9.1", - "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-3.9.1.tgz", - "integrity": "sha512-Ro2JbLmvg83gXF5F4sniaQ+lTbSv18E+TIf2cOeiH1Iqd2PGFOtem+DUufMZsCJwFE7ywPOpfXFBwRTGq7dh6w==" - }, - "node_modules/cheerio": { - "version": "1.0.0-rc.12", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz", - "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==", - "dependencies": { - "cheerio-select": "^2.1.0", - "dom-serializer": "^2.0.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1", - "htmlparser2": "^8.0.1", - "parse5": "^7.0.0", - "parse5-htmlparser2-tree-adapter": "^7.0.0" - }, - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/cheeriojs/cheerio?sponsor=1" - } - }, - "node_modules/cheerio-select": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz", - "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", - "dependencies": { - "boolbase": "^1.0.0", - "css-select": "^5.1.0", - "css-what": "^6.1.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/chokidar": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", - "dev": true, - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "funding": { - "url": "https://paulmillr.com/funding/" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chokidar/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", - "peer": true, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/classnames": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", - "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==" - }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "node_modules/colord": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", - "dev": true - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/comma-separated-tokens": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz", - "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/commander": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", - "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/compute-gcd": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/compute-gcd/-/compute-gcd-1.2.1.tgz", - "integrity": "sha512-TwMbxBNz0l71+8Sc4czv13h4kEqnchV9igQZBi6QUaz09dnz13juGnnaWWJTRsP3brxOoxeB4SA2WELLw1hCtg==", - "dependencies": { - "validate.io-array": "^1.0.3", - "validate.io-function": "^1.0.2", - "validate.io-integer-array": "^1.0.0" - } - }, - "node_modules/compute-lcm": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/compute-lcm/-/compute-lcm-1.1.2.tgz", - "integrity": "sha512-OFNPdQAXnQhDSKioX8/XYT6sdUlXwpeMjfd6ApxMJfyZ4GxmLR1xvMERctlYhlHwIiz6CSpBc2+qYKjHGZw4TQ==", - "dependencies": { - "compute-gcd": "^1.2.1", - "validate.io-array": "^1.0.3", - "validate.io-function": "^1.0.2", - "validate.io-integer-array": "^1.0.0" - } - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" - }, - "node_modules/copy-to-clipboard": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz", - "integrity": "sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==", - "dependencies": { - "toggle-selection": "^1.0.6" - } - }, - "node_modules/core-js": { - "version": "3.36.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.36.0.tgz", - "integrity": "sha512-mt7+TUBbTFg5+GngsAxeKBTl5/VS0guFeJacYge9OmHb+m058UwwIm41SE9T4Den7ClatV57B6TYTuJ0CX1MAw==", - "hasInstallScript": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/create-react-class": { - "version": "15.7.0", - "resolved": "https://registry.npmjs.org/create-react-class/-/create-react-class-15.7.0.tgz", - "integrity": "sha512-QZv4sFWG9S5RUvkTYWbflxeZX+JG7Cz0Tn33rQBJ+WFQTqTfUTjMjiv9tnfXazjsO5r0KhPs+AqCjyrQX6h2ng==", - "dependencies": { - "loose-envify": "^1.3.1", - "object-assign": "^4.1.1" - } - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/css-color-keywords": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz", - "integrity": "sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==", - "engines": { - "node": ">=4" - } - }, - "node_modules/css-functions-list": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.1.tgz", - "integrity": "sha512-Nj5YcaGgBtuUmn1D7oHqPW0c9iui7xsTsj5lIX8ZgevdfhmjFfKB3r8moHJtNJnctnYXJyYX5I1pp90HM4TPgQ==", - "dev": true, - "engines": { - "node": ">=12 || >=16" - } - }, - "node_modules/css-line-break": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-line-break/-/css-line-break-2.1.0.tgz", - "integrity": "sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==", - "optional": true, - "dependencies": { - "utrie": "^1.0.2" - } - }, - "node_modules/css-select": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", - "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.1.0", - "domhandler": "^5.0.2", - "domutils": "^3.0.1", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/css-to-react-native": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.2.0.tgz", - "integrity": "sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==", - "dependencies": { - "camelize": "^1.0.0", - "css-color-keywords": "^1.0.0", - "postcss-value-parser": "^4.0.2" - } - }, - "node_modules/css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/csstype": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" - }, - "node_modules/date-fns": { - "version": "2.30.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", - "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", - "dependencies": { - "@babel/runtime": "^7.21.0" - }, - "engines": { - "node": ">=0.11" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/date-fns" - } - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/decamelize-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", - "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", - "dev": true, - "dependencies": { - "decamelize": "^1.1.0", - "map-obj": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/decamelize-keys/node_modules/map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "node_modules/deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/define-data-property": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", - "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/desandro-matches-selector": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/desandro-matches-selector/-/desandro-matches-selector-2.0.2.tgz", - "integrity": "sha512-+1q0nXhdzg1IpIJdMKalUwvvskeKnYyEe3shPRwedNcWtnhEKT3ZxvFjzywHDeGcKViIxTCAoOYQWP1qD7VNyg==" - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/discontinuous-range": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz", - "integrity": "sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==" - }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/dom-helpers": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", - "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", - "dependencies": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" - } - }, - "node_modules/dom-serializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ] - }, - "node_modules/domhandler": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", - "dependencies": { - "domelementtype": "^2.3.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/dompurify": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.1.6.tgz", - "integrity": "sha512-cTOAhc36AalkjtBpfG6O8JimdTMWNXjiePT2xQH/ppBGi/4uIpmj8eKyIkMJErXWARyINV/sB38yf8JCLF5pbQ==" - }, - "node_modules/domutils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", - "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", - "dependencies": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/electron-to-chromium": { - "version": "1.4.701", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.701.tgz", - "integrity": "sha512-K3WPQ36bUOtXg/1+69bFlFOvdSm0/0bGqmsfPDLRXLanoKXdA+pIWuf/VbA9b+2CwBFuONgl4NEz4OEm+OJOKA==" - }, - "node_modules/element-resize-detector": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/element-resize-detector/-/element-resize-detector-1.2.4.tgz", - "integrity": "sha512-Fl5Ftk6WwXE0wqCgNoseKWndjzZlDCwuPTcoVZfCP9R3EHQF8qUtr3YUPNETegRBOKqQKPW3n4kiIWngGi8tKg==", - "dependencies": { - "batch-processor": "1.0.0" - } - }, - "node_modules/eml-parse-js": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/eml-parse-js/-/eml-parse-js-1.1.14.tgz", - "integrity": "sha512-6wUmZQ4k67CHGaQdNTukUMtCQ77e/676pRRsn/ga6CdaIwitzbQwqA/YTq/Wk+l1gghFJTPhbRyQphrAptK/GA==", - "dependencies": { - "@sinonjs/text-encoding": "^0.7.2", - "js-base64": "^3.7.2" - } - }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/enhanced-resolve": { - "version": "5.16.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.16.0.tgz", - "integrity": "sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==", - "peer": true, - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/enzyme": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/enzyme/-/enzyme-3.11.0.tgz", - "integrity": "sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==", - "dependencies": { - "array.prototype.flat": "^1.2.3", - "cheerio": "^1.0.0-rc.3", - "enzyme-shallow-equal": "^1.0.1", - "function.prototype.name": "^1.1.2", - "has": "^1.0.3", - "html-element-map": "^1.2.0", - "is-boolean-object": "^1.0.1", - "is-callable": "^1.1.5", - "is-number-object": "^1.0.4", - "is-regex": "^1.0.5", - "is-string": "^1.0.5", - "is-subset": "^0.1.1", - "lodash.escape": "^4.0.1", - "lodash.isequal": "^4.5.0", - "object-inspect": "^1.7.0", - "object-is": "^1.0.2", - "object.assign": "^4.1.0", - "object.entries": "^1.1.1", - "object.values": "^1.1.1", - "raf": "^3.4.1", - "rst-selector-parser": "^2.2.3", - "string.prototype.trim": "^1.2.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/enzyme-shallow-equal": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.7.tgz", - "integrity": "sha512-/um0GFqUXnpM9SvKtje+9Tjoz3f1fpBC3eXRFrNs8kpYn69JljciYP7KZTqM/YQbUY9KUjvKB4jo/q+L6WGGvg==", - "dependencies": { - "hasown": "^2.0.0", - "object-is": "^1.1.5" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dependencies": { - "is-arrayish": "^0.2.1" - } - }, - "node_modules/es-abstract": { - "version": "1.22.5", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.5.tgz", - "integrity": "sha512-oW69R+4q2wG+Hc3KZePPZxOiisRIqfKBVo/HLx94QcJeWGU/8sZhCvc829rd1kS366vlJbzBfXf9yWwf0+Ko7w==", - "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "arraybuffer.prototype.slice": "^1.0.3", - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "es-set-tostringtag": "^2.0.3", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.4", - "get-symbol-description": "^1.0.2", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.3", - "has-symbols": "^1.0.3", - "hasown": "^2.0.1", - "internal-slot": "^1.0.7", - "is-array-buffer": "^3.0.4", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.3", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.3", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.13", - "is-weakref": "^1.0.2", - "object-inspect": "^1.13.1", - "object-keys": "^1.1.1", - "object.assign": "^4.1.5", - "regexp.prototype.flags": "^1.5.2", - "safe-array-concat": "^1.1.0", - "safe-regex-test": "^1.0.3", - "string.prototype.trim": "^1.2.8", - "string.prototype.trimend": "^1.0.7", - "string.prototype.trimstart": "^1.0.7", - "typed-array-buffer": "^1.0.2", - "typed-array-byte-length": "^1.0.1", - "typed-array-byte-offset": "^1.0.2", - "typed-array-length": "^1.0.5", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.14" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-array-method-boxes-properly": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", - "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" - }, - "node_modules/es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - "dependencies": { - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-errors": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-iterator-helpers": { - "version": "1.0.17", - "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.17.tgz", - "integrity": "sha512-lh7BsUqelv4KUbR5a/ZTaGGIMLCjPGPqJ6q+Oq24YP0RdyptX1uzm4vvaqzk7Zx3bpl/76YLTTDj9L7uYQ92oQ==", - "dev": true, - "dependencies": { - "asynciterator.prototype": "^1.0.0", - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.4", - "es-errors": "^1.3.0", - "es-set-tostringtag": "^2.0.2", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "globalthis": "^1.0.3", - "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.7", - "iterator.prototype": "^1.1.2", - "safe-array-concat": "^1.1.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-module-lexer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.1.tgz", - "integrity": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==", - "peer": true - }, - "node_modules/es-set-tostringtag": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", - "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", - "dependencies": { - "get-intrinsic": "^1.2.4", - "has-tostringtag": "^1.0.2", - "hasown": "^2.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-shim-unscopables": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", - "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", - "dependencies": { - "hasown": "^2.0.0" - } - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/esbuild": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.12.tgz", - "integrity": "sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==", - "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.19.12", - "@esbuild/android-arm": "0.19.12", - "@esbuild/android-arm64": "0.19.12", - "@esbuild/android-x64": "0.19.12", - "@esbuild/darwin-arm64": "0.19.12", - "@esbuild/darwin-x64": "0.19.12", - "@esbuild/freebsd-arm64": "0.19.12", - "@esbuild/freebsd-x64": "0.19.12", - "@esbuild/linux-arm": "0.19.12", - "@esbuild/linux-arm64": "0.19.12", - "@esbuild/linux-ia32": "0.19.12", - "@esbuild/linux-loong64": "0.19.12", - "@esbuild/linux-mips64el": "0.19.12", - "@esbuild/linux-ppc64": "0.19.12", - "@esbuild/linux-riscv64": "0.19.12", - "@esbuild/linux-s390x": "0.19.12", - "@esbuild/linux-x64": "0.19.12", - "@esbuild/netbsd-x64": "0.19.12", - "@esbuild/openbsd-x64": "0.19.12", - "@esbuild/sunos-x64": "0.19.12", - "@esbuild/win32-arm64": "0.19.12", - "@esbuild/win32-ia32": "0.19.12", - "@esbuild/win32-x64": "0.19.12" - } - }, - "node_modules/escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/eslint": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", - "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.4", - "@eslint/js": "8.57.0", - "@humanwhocodes/config-array": "^0.11.14", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "@ungap/structured-clone": "^1.2.0", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-config-prettier": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz", - "integrity": "sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==", - "dev": true, - "bin": { - "eslint-config-prettier": "bin/cli.js" - }, - "peerDependencies": { - "eslint": ">=7.0.0" - } - }, - "node_modules/eslint-import-resolver-custom-alias": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-custom-alias/-/eslint-import-resolver-custom-alias-1.3.2.tgz", - "integrity": "sha512-wBPcZA2k6/IXaT8FsLMyiyVSG6WVEuaYIAbeKLXeGwr523BmeB9lKAAoLJWSqp3txsnU4gpkgD2x1q6K8k0uDQ==", - "dev": true, - "dependencies": { - "glob-parent": "^6.0.2", - "resolve": "^1.22.2" - }, - "peerDependencies": { - "eslint-plugin-import": ">=2.2.0" - } - }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", - "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", - "dev": true, - "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.13.0", - "resolve": "^1.22.4" - } - }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-module-utils": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz", - "integrity": "sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==", - "dev": true, - "dependencies": { - "debug": "^3.2.7" - }, - "engines": { - "node": ">=4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } - } - }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import": { - "version": "2.29.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", - "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.7", - "array.prototype.findlastindex": "^1.2.3", - "array.prototype.flat": "^1.3.2", - "array.prototype.flatmap": "^1.3.2", - "debug": "^3.2.7", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.9", - "eslint-module-utils": "^2.8.0", - "hasown": "^2.0.0", - "is-core-module": "^2.13.1", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.fromentries": "^2.0.7", - "object.groupby": "^1.0.1", - "object.values": "^1.1.7", - "semver": "^6.3.1", - "tsconfig-paths": "^3.15.0" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" - } - }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-prettier": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz", - "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==", - "dev": true, - "dependencies": { - "prettier-linter-helpers": "^1.0.0" - }, - "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "eslint": ">=7.28.0", - "prettier": ">=2.0.0" - }, - "peerDependenciesMeta": { - "eslint-config-prettier": { - "optional": true - } - } - }, - "node_modules/eslint-plugin-react": { - "version": "7.34.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.34.0.tgz", - "integrity": "sha512-MeVXdReleBTdkz/bvcQMSnCXGi+c9kvy51IpinjnJgutl3YTHWsDdke7Z1ufZpGfDG8xduBDKyjtB9JH1eBKIQ==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.7", - "array.prototype.findlast": "^1.2.4", - "array.prototype.flatmap": "^1.3.2", - "array.prototype.toreversed": "^1.1.2", - "array.prototype.tosorted": "^1.1.3", - "doctrine": "^2.1.0", - "es-iterator-helpers": "^1.0.17", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.7", - "object.fromentries": "^2.0.7", - "object.hasown": "^1.1.3", - "object.values": "^1.1.7", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.5", - "semver": "^6.3.1", - "string.prototype.matchall": "^4.0.10" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-plugin-react-hooks": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", - "dev": true, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" - } - }, - "node_modules/eslint-plugin-react-refresh": { - "version": "0.4.5", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.5.tgz", - "integrity": "sha512-D53FYKJa+fDmZMtriODxvhwrO+IOqrxoEo21gMA0sjHdU6dPVH4OhyFip9ypl8HOF5RV5KdTo+rBQLvnY2cO8w==", - "dev": true, - "peerDependencies": { - "eslint": ">=7" - } - }, - "node_modules/eslint-plugin-react/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.5", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", - "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", - "dev": true, - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", - "dev": true, - "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "dev": true, - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", - "dev": true - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ev-emitter": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ev-emitter/-/ev-emitter-1.1.1.tgz", - "integrity": "sha512-ipiDYhdQSCZ4hSbX4rMW+XzNKMD1prg/sTvoVmSLkuQ1MVlwjJQQA+sW8tMYR3BLUr9KjodFV4pvzunvRhd33Q==" - }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "peer": true, - "engines": { - "node": ">=0.8.x" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-diff": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", - "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", - "dev": true - }, - "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "node_modules/fastest-levenshtein": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", - "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", - "dev": true, - "engines": { - "node": ">= 4.9.1" - } - }, - "node_modules/fastq": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", - "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", - "dev": true, - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/fault": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/fault/-/fault-1.0.4.tgz", - "integrity": "sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==", - "dependencies": { - "format": "^0.2.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/fflate": { - "version": "0.4.8", - "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.4.8.tgz", - "integrity": "sha512-FJqqoDBR00Mdj9ppamLa/Y7vxm+PRmNWA67N846RvsoYVMKB4q3y/de5PA7gUmRMYK/8CMz2GDZQmCRN1wBcWA==" - }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "dependencies": { - "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/file-selector": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/file-selector/-/file-selector-0.6.0.tgz", - "integrity": "sha512-QlZ5yJC0VxHxQQsQhXvBaC7VRJ2uaxTf+Tfpu4Z/OcVQJVpZO+DGU0rkoVW5ce2SccxugvpBJoMvUs59iILYdw==", - "dependencies": { - "tslib": "^2.4.0" - }, - "engines": { - "node": ">= 12" - } - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/final-form": { - "version": "4.20.10", - "resolved": "https://registry.npmjs.org/final-form/-/final-form-4.20.10.tgz", - "integrity": "sha512-TL48Pi1oNHeMOHrKv1bCJUrWZDcD3DIG6AGYVNOnyZPr7Bd/pStN0pL+lfzF5BNoj/FclaoiaLenk4XUIFVYng==", - "dependencies": { - "@babel/runtime": "^7.10.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/final-form" - } - }, - "node_modules/final-form-arrays": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/final-form-arrays/-/final-form-arrays-3.1.0.tgz", - "integrity": "sha512-TWBvun+AopgBLw9zfTFHBllnKMVNEwCEyDawphPuBGGqNsuhGzhT7yewHys64KFFwzIs6KEteGLpKOwvTQEscQ==", - "peerDependencies": { - "final-form": "^4.20.8" - } - }, - "node_modules/find-root": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", - "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/fizzy-ui-utils": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/fizzy-ui-utils/-/fizzy-ui-utils-2.0.7.tgz", - "integrity": "sha512-CZXDVXQ1If3/r8s0T+v+qVeMshhfcuq0rqIFgJnrtd+Bu8GmDmqMjntjUePypVtjHXKJ6V4sw9zeyox34n9aCg==", - "dependencies": { - "desandro-matches-selector": "^2.0.0" - } - }, - "node_modules/flat-cache": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", - "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", - "dev": true, - "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/flatted": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", - "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", - "dev": true - }, - "node_modules/follow-redirects": { - "version": "1.15.5", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", - "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==", - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/format": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz", - "integrity": "sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==", - "engines": { - "node": ">=0.4.x" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/fuse.js": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-7.0.0.tgz", - "integrity": "sha512-14F4hBIxqKvD4Zz/XjDc3y94mNZN6pRv3U13Udo0lNLCWRBUsrMv2xwcF/y/Z5sV6+FQW+/ow68cHpm4sunt8Q==", - "engines": { - "node": ">=10" - } - }, - "node_modules/fuzzysort": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/fuzzysort/-/fuzzysort-1.9.0.tgz", - "integrity": "sha512-MOxCT0qLTwLqmEwc7UtU045RKef7mc8Qz8eR4r2bLNEq9dy/c3ZKMEFp6IEst69otkQdFZ4FfgH2dmZD+ddX1g==" - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-size": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/get-size/-/get-size-2.0.3.tgz", - "integrity": "sha512-lXNzT/h/dTjTxRbm9BXb+SGxxzkm97h/PCIKtlN/CBCxxmkkIVV21udumMS93MuVTDX583gqc94v3RjuHmI+2Q==" - }, - "node_modules/get-symbol-description": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", - "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", - "dependencies": { - "call-bind": "^1.0.5", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "peer": true - }, - "node_modules/global-modules": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", - "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", - "dev": true, - "dependencies": { - "global-prefix": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/global-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", - "dev": true, - "dependencies": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/global-prefix/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "dependencies": { - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globjoin": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", - "integrity": "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==", - "dev": true - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "peer": true - }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true - }, - "node_modules/handlebars": { - "version": "4.7.8", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", - "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", - "dev": true, - "dependencies": { - "minimist": "^1.2.5", - "neo-async": "^2.6.2", - "source-map": "^0.6.1", - "wordwrap": "^1.0.0" - }, - "bin": { - "handlebars": "bin/handlebars" - }, - "engines": { - "node": ">=0.4.7" - }, - "optionalDependencies": { - "uglify-js": "^3.1.4" - } - }, - "node_modules/hard-rejection": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", - "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/has": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz", - "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - "dependencies": { - "es-define-property": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", - "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", - "dependencies": { - "has-symbols": "^1.0.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/hast-util-parse-selector": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz", - "integrity": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hastscript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz", - "integrity": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==", - "dependencies": { - "@types/hast": "^2.0.0", - "comma-separated-tokens": "^1.0.0", - "hast-util-parse-selector": "^2.0.0", - "property-information": "^5.0.0", - "space-separated-tokens": "^1.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/highlight.js": { - "version": "10.7.3", - "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz", - "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==", - "engines": { - "node": "*" - } - }, - "node_modules/hoist-non-react-statics": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", - "dependencies": { - "react-is": "^16.7.0" - } - }, - "node_modules/hoist-non-react-statics/node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/hosted-git-info": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", - "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/hosted-git-info/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/hosted-git-info/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/hotkeys-js": { - "version": "3.9.4", - "resolved": "https://registry.npmjs.org/hotkeys-js/-/hotkeys-js-3.9.4.tgz", - "integrity": "sha512-2zuLt85Ta+gIyvs4N88pCYskNrxf1TFv3LR9t5mdAZIX8BcgQQ48F2opUptvHa6m8zsy5v/a0i9mWzTrlNWU0Q==" - }, - "node_modules/html-element-map": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/html-element-map/-/html-element-map-1.3.1.tgz", - "integrity": "sha512-6XMlxrAFX4UEEGxctfFnmrFaaZFNf9i5fNuV5wZ3WWQ4FVaNP1aX1LkX9j2mfEx1NpjeE/rL3nmgEn23GdFmrg==", - "dependencies": { - "array.prototype.filter": "^1.0.0", - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/html-tags": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", - "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/html2canvas": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/html2canvas/-/html2canvas-1.4.1.tgz", - "integrity": "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==", - "optional": true, - "dependencies": { - "css-line-break": "^2.1.0", - "text-segmentation": "^1.0.3" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/htmlparser2": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", - "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1", - "entities": "^4.4.0" - } - }, - "node_modules/husky": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/husky/-/husky-7.0.4.tgz", - "integrity": "sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==", - "dev": true, - "bin": { - "husky": "lib/bin.js" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/typicode" - } - }, - "node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/imagesloaded": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/imagesloaded/-/imagesloaded-4.1.4.tgz", - "integrity": "sha512-ltiBVcYpc/TYTF5nolkMNsnREHW+ICvfQ3Yla2Sgr71YFwQ86bDwV9hgpFhFtrGPuwEx5+LqOHIrdXBdoWwwsA==", - "dependencies": { - "ev-emitter": "^1.0.0" - } - }, - "node_modules/immer": { - "version": "9.0.21", - "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", - "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/immer" - } - }, - "node_modules/immutable": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.5.tgz", - "integrity": "sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==", - "dev": true - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/import-lazy": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", - "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true - }, - "node_modules/internal-slot": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", - "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", - "dependencies": { - "es-errors": "^1.3.0", - "hasown": "^2.0.0", - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/is-alphabetical": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", - "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/is-alphanumerical": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", - "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", - "dependencies": { - "is-alphabetical": "^1.0.0", - "is-decimal": "^1.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/is-array-buffer": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", - "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" - }, - "node_modules/is-async-function": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", - "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-core-module": { - "version": "2.13.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", - "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", - "dependencies": { - "hasown": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-decimal": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", - "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-finalizationregistry": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", - "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-hexadecimal": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", - "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/is-map": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", - "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-negative-zero": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", - "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-set": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", - "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", - "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", - "dependencies": { - "call-bind": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-subset": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-subset/-/is-subset-0.1.1.tgz", - "integrity": "sha512-6Ybun0IkarhmEqxXCNw/C0bna6Zb/TkfUX9UbwJtK6ObwAVCxmAP308WWTHviM/zAqXk05cdhYsUsZeGQh99iw==" - }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", - "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", - "dependencies": { - "which-typed-array": "^1.1.14" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakmap": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", - "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakset": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", - "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "node_modules/iterator.prototype": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", - "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", - "dev": true, - "dependencies": { - "define-properties": "^1.2.1", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "reflect.getprototypeof": "^1.0.4", - "set-function-name": "^2.0.1" - } - }, - "node_modules/javascript-time-ago": { - "version": "2.5.9", - "resolved": "https://registry.npmjs.org/javascript-time-ago/-/javascript-time-ago-2.5.9.tgz", - "integrity": "sha512-pQ8mNco/9g9TqWXWWjP0EWl6i/lAQScOyEeXy5AB+f7MfLSdgyV9BJhiOD1zrIac/lrxPYOWNbyl/IW8CW5n0A==", - "dependencies": { - "relative-time-format": "^1.1.6" - } - }, - "node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", - "peer": true, - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/jest-worker/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "peer": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/js-base64": { - "version": "3.7.7", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-3.7.7.tgz", - "integrity": "sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==" - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - }, - "node_modules/json-schema-compare": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/json-schema-compare/-/json-schema-compare-0.2.2.tgz", - "integrity": "sha512-c4WYmDKyJXhs7WWvAWm3uIYnfyWFoIp+JEoX34rctVvEkMYCPGhXtvmFFXiffBbxfZsvQ0RNnV5H7GvDF5HCqQ==", - "dependencies": { - "lodash": "^4.17.4" - } - }, - "node_modules/json-schema-merge-allof": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/json-schema-merge-allof/-/json-schema-merge-allof-0.8.1.tgz", - "integrity": "sha512-CTUKmIlPJbsWfzRRnOXz+0MjIqvnleIXwFTzz+t9T86HnYX/Rozria6ZVGLktAU9e+NygNljveP+yxqtQp/Q4w==", - "dependencies": { - "compute-lcm": "^1.1.2", - "json-schema-compare": "^0.2.2", - "lodash": "^4.17.20" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", - "dev": true - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jsonpointer": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", - "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jspdf": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/jspdf/-/jspdf-2.5.1.tgz", - "integrity": "sha512-hXObxz7ZqoyhxET78+XR34Xu2qFGrJJ2I2bE5w4SM8eFaFEkW2xcGRVUss360fYelwRSid/jT078kbNvmoW0QA==", - "dependencies": { - "@babel/runtime": "^7.14.0", - "atob": "^2.1.2", - "btoa": "^1.2.1", - "fflate": "^0.4.8" - }, - "optionalDependencies": { - "canvg": "^3.0.6", - "core-js": "^3.6.0", - "dompurify": "^2.2.0", - "html2canvas": "^1.0.0-rc.5" - } - }, - "node_modules/jspdf-autotable": { - "version": "3.8.2", - "resolved": "https://registry.npmjs.org/jspdf-autotable/-/jspdf-autotable-3.8.2.tgz", - "integrity": "sha512-zW1ix99/mtR4MbIni7IqvrpfHmuTaICl6iv6wqjRN86Nxtwaw/QtOeDbpXqYSzHIJK9JvgtLM283sc5x+ipkJg==", - "peerDependencies": { - "jspdf": "^2.5.1" - } - }, - "node_modules/jspdf/node_modules/dompurify": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-2.5.6.tgz", - "integrity": "sha512-zUTaUBO8pY4+iJMPE1B9XlO2tXVYIcEA4SNGtvDELzTSCQO7RzH+j7S180BmhmJId78lqGU2z19vgVx2Sxs/PQ==", - "optional": true - }, - "node_modules/jsx-ast-utils": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", - "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "object.assign": "^4.1.4", - "object.values": "^1.1.6" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", - "dev": true, - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/known-css-properties": { - "version": "0.26.0", - "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.26.0.tgz", - "integrity": "sha512-5FZRzrZzNTBruuurWpvZnvP9pum+fe0HcK8z/ooo+U+Hmp4vtbyp1/QDsqmufirXy4egGzbaH/y2uCZf+6W5Kg==", - "dev": true - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" - }, - "node_modules/loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", - "peer": true, - "engines": { - "node": ">=6.11.5" - } - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash-es": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", - "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" - }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" - }, - "node_modules/lodash.escape": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-4.0.1.tgz", - "integrity": "sha512-nXEOnb/jK9g0DYMr1/Xvq6l5xMD7GDG55+GSYIYmS0G4tBk/hURD4JR9WCavs04t33WmJx9kCyp9vJ+mr4BOUw==" - }, - "node_modules/lodash.flattendeep": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz", - "integrity": "sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==" - }, - "node_modules/lodash.isequal": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" - }, - "node_modules/lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "node_modules/lodash.throttle": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", - "integrity": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==" - }, - "node_modules/lodash.truncate": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", - "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", - "dev": true - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lowlight": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/lowlight/-/lowlight-1.20.0.tgz", - "integrity": "sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==", - "dependencies": { - "fault": "^1.0.0", - "highlight.js": "~10.7.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/map-obj": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", - "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/markdown-to-jsx": { - "version": "7.4.2", - "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.4.2.tgz", - "integrity": "sha512-xgEwt13t+pM1kmE5vN0Ch64PX3tGDFt5Xa3e36sCknTnWiqPcnskWzIoaO/tGaPKOd0avCO0IwmBSmVxn/ZAcg==", - "engines": { - "node": ">= 10" - }, - "peerDependencies": { - "react": ">= 0.14.0" - } - }, - "node_modules/masonry-layout": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/masonry-layout/-/masonry-layout-4.2.2.tgz", - "integrity": "sha512-iGtAlrpHNyxaR19CvKC3npnEcAwszXoyJiI8ARV2ePi7fmYhIud25MHK8Zx4P0LCC4d3TNO9+rFa1KoK1OEOaA==", - "dependencies": { - "get-size": "^2.0.2", - "outlayer": "^2.1.0" - } - }, - "node_modules/mathml-tag-names": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", - "integrity": "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/memoize-one": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz", - "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" - }, - "node_modules/meow": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", - "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", - "dev": true, - "dependencies": { - "@types/minimist": "^1.2.0", - "camelcase-keys": "^6.2.2", - "decamelize": "^1.2.0", - "decamelize-keys": "^1.1.0", - "hard-rejection": "^2.1.0", - "minimist-options": "4.1.0", - "normalize-package-data": "^3.0.0", - "read-pkg-up": "^7.0.1", - "redent": "^3.0.0", - "trim-newlines": "^3.0.0", - "type-fest": "^0.18.0", - "yargs-parser": "^20.2.3" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "peer": true - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, - "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/min-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", - "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/minimist-options": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", - "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", - "dev": true, - "dependencies": { - "arrify": "^1.0.1", - "is-plain-obj": "^1.1.0", - "kind-of": "^6.0.3" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/moment": { - "version": "2.30.1", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz", - "integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==", - "engines": { - "node": "*" - } - }, - "node_modules/monaco-editor": { - "version": "0.47.0", - "resolved": "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.47.0.tgz", - "integrity": "sha512-VabVvHvQ9QmMwXu4du008ZDuyLnHs9j7ThVFsiJoXSOQk18+LF89N4ADzPbFenm0W4V2bGHnFBztIRQTgBfxzw==", - "peer": true - }, - "node_modules/moo": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.2.tgz", - "integrity": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==" - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "node_modules/nearley": { - "version": "2.20.1", - "resolved": "https://registry.npmjs.org/nearley/-/nearley-2.20.1.tgz", - "integrity": "sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==", - "dependencies": { - "commander": "^2.19.0", - "moo": "^0.5.0", - "railroad-diagrams": "^1.0.0", - "randexp": "0.4.6" - }, - "bin": { - "nearley-railroad": "bin/nearley-railroad.js", - "nearley-test": "bin/nearley-test.js", - "nearley-unparse": "bin/nearley-unparse.js", - "nearleyc": "bin/nearleyc.js" - }, - "funding": { - "type": "individual", - "url": "https://nearley.js.org/#give-to-nearley" - } - }, - "node_modules/nearley/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" - }, - "node_modules/node-fetch": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", - "dev": true, - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" - }, - "node_modules/normalize-package-data": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", - "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", - "dev": true, - "dependencies": { - "hosted-git-info": "^4.0.1", - "is-core-module": "^2.5.0", - "semver": "^7.3.4", - "validate-npm-package-license": "^3.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/normalize-package-data/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/normalize-package-data/node_modules/semver": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", - "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/normalize-package-data/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", - "dependencies": { - "boolbase": "^1.0.0" - }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-inspect": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-is": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", - "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.assign": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", - "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.entries": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", - "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.fromentries": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", - "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.groupby": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.2.tgz", - "integrity": "sha512-bzBq58S+x+uo0VjurFT0UktpKHOZmv4/xePiOA1nbB9pMqpGK7rUPNgf+1YC+7mE+0HzhTMqNUuCqvKhj6FnBw==", - "dev": true, - "dependencies": { - "array.prototype.filter": "^1.0.3", - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.0.0" - } - }, - "node_modules/object.hasown": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", - "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", - "dev": true, - "dependencies": { - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.values": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", - "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", - "dev": true, - "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/outlayer": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/outlayer/-/outlayer-2.1.1.tgz", - "integrity": "sha512-+GplXsCQ3VrbGujAeHEzP9SXsBmJxzn/YdDSQZL0xqBmAWBmortu2Y9Gwdp9J0bgDQ8/YNIPMoBM13nTwZfAhw==", - "dependencies": { - "ev-emitter": "^1.0.0", - "fizzy-ui-utils": "^2.0.0", - "get-size": "^2.0.2" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/papaparse": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.4.1.tgz", - "integrity": "sha512-HipMsgJkZu8br23pW15uvo6sib6wne/4woLZPlFf3rpDyMe9ywEXUsuD7+6K9PRkJlVT51j/sCOYDKGGS3ZJrw==" - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/parse-entities": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", - "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", - "dependencies": { - "character-entities": "^1.0.0", - "character-entities-legacy": "^1.0.0", - "character-reference-invalid": "^1.0.0", - "is-alphanumerical": "^1.0.0", - "is-decimal": "^1.0.0", - "is-hexadecimal": "^1.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/parse-github-url": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/parse-github-url/-/parse-github-url-1.0.2.tgz", - "integrity": "sha512-kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==", - "dev": true, - "bin": { - "parse-github-url": "cli.js" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parse5": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", - "dependencies": { - "entities": "^4.4.0" - }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" - } - }, - "node_modules/parse5-htmlparser2-tree-adapter": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz", - "integrity": "sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==", - "dependencies": { - "domhandler": "^5.0.2", - "parse5": "^7.0.0" - }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" - } - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/possible-typed-array-names": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", - "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/postcss": { - "version": "8.4.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.35.tgz", - "integrity": "sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-combine-duplicated-selectors": { - "version": "10.0.3", - "resolved": "https://registry.npmjs.org/postcss-combine-duplicated-selectors/-/postcss-combine-duplicated-selectors-10.0.3.tgz", - "integrity": "sha512-IP0BmwFloCskv7DV7xqvzDXqMHpwdczJa6ZvIW8abgHdcIHs9mCJX2ltFhu3EwA51ozp13DByng30+Ke+eIExA==", - "dependencies": { - "postcss-selector-parser": "^6.0.4" - }, - "engines": { - "node": "^10.0.0 || ^12.0.0 || >=14.0.0" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-media-query-parser": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", - "integrity": "sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==", - "dev": true - }, - "node_modules/postcss-resolve-nested-selector": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz", - "integrity": "sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==", - "dev": true - }, - "node_modules/postcss-safe-parser": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", - "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", - "dev": true, - "engines": { - "node": ">=12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.3.3" - } - }, - "node_modules/postcss-scss": { - "version": "4.0.9", - "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.9.tgz", - "integrity": "sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss-scss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "engines": { - "node": ">=12.0" - }, - "peerDependencies": { - "postcss": "^8.4.29" - } - }, - "node_modules/postcss-selector-parser": { - "version": "6.0.15", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz", - "integrity": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss-sorting": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/postcss-sorting/-/postcss-sorting-7.0.1.tgz", - "integrity": "sha512-iLBFYz6VRYyLJEJsBJ8M3TCqNcckVzz4wFounSc5Oez35ogE/X+aoC5fFu103Ot7NyvjU3/xqIXn93Gp3kJk4g==", - "dev": true, - "peerDependencies": { - "postcss": "^8.3.9" - } - }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/prettier": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.4.1.tgz", - "integrity": "sha512-9fbDAXSBcc6Bs1mZrDYb3XKzDLm4EXXL9sC1LqKP5rZkT6KRr/rf9amVUcODVXgguK/isJz0d0hP72WeaKWsvA==", - "dev": true, - "bin": { - "prettier": "bin-prettier.js" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/prettier-linter-helpers": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", - "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", - "dev": true, - "dependencies": { - "fast-diff": "^1.1.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/prismjs": { - "version": "1.29.0", - "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz", - "integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==", - "engines": { - "node": ">=6" - } - }, - "node_modules/promise": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", - "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", - "dependencies": { - "asap": "~2.0.6" - } - }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - } - }, - "node_modules/prop-types-extra": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.1.tgz", - "integrity": "sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==", - "dependencies": { - "react-is": "^16.3.2", - "warning": "^4.0.0" - }, - "peerDependencies": { - "react": ">=0.14.0" - } - }, - "node_modules/prop-types-extra/node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/prop-types/node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/property-information": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/property-information/-/property-information-5.6.0.tgz", - "integrity": "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==", - "dependencies": { - "xtend": "^4.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - }, - "node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/quick-lru": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", - "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/raf": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", - "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", - "dependencies": { - "performance-now": "^2.1.0" - } - }, - "node_modules/railroad-diagrams": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz", - "integrity": "sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==" - }, - "node_modules/randexp": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/randexp/-/randexp-0.4.6.tgz", - "integrity": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==", - "dependencies": { - "discontinuous-range": "1.0.0", - "ret": "~0.1.10" - }, - "engines": { - "node": ">=0.12" - } - }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "peer": true, - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "dependencies": { - "loose-envify": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-app-polyfill": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-2.0.0.tgz", - "integrity": "sha512-0sF4ny9v/B7s6aoehwze9vJNWcmCemAUYBVasscVr92+UYiEqDXOxfKjXN685mDaMRNF3WdhHQs76oTODMocFA==", - "dependencies": { - "core-js": "^3.6.5", - "object-assign": "^4.1.1", - "promise": "^8.1.0", - "raf": "^3.4.1", - "regenerator-runtime": "^0.13.7", - "whatwg-fetch": "^3.4.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/react-app-polyfill/node_modules/regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" - }, - "node_modules/react-bootstrap": { - "version": "1.6.8", - "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-1.6.8.tgz", - "integrity": "sha512-yD6uN78XlFOkETQp6GRuVe0s5509x3XYx8PfPbirwFTYCj5/RfmSs9YZGCwkUrhZNFzj7tZPdpb+3k50mK1E4g==", - "dependencies": { - "@babel/runtime": "^7.14.0", - "@restart/context": "^2.1.4", - "@restart/hooks": "^0.4.7", - "@types/invariant": "^2.2.33", - "@types/prop-types": "^15.7.3", - "@types/react": ">=16.14.8", - "@types/react-transition-group": "^4.4.1", - "@types/warning": "^3.0.0", - "classnames": "^2.3.1", - "dom-helpers": "^5.2.1", - "invariant": "^2.2.4", - "prop-types": "^15.7.2", - "prop-types-extra": "^1.1.0", - "react-overlays": "^5.1.2", - "react-transition-group": "^4.4.1", - "uncontrollable": "^7.2.1", - "warning": "^4.0.3" - }, - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/react-circular-progressbar": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/react-circular-progressbar/-/react-circular-progressbar-2.1.0.tgz", - "integrity": "sha512-xp4THTrod4aLpGy68FX/k1Q3nzrfHUjUe5v6FsdwXBl3YVMwgeXYQKDrku7n/D6qsJA9CuunarAboC2xCiKs1g==", - "peerDependencies": { - "react": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-copy-to-clipboard": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/react-copy-to-clipboard/-/react-copy-to-clipboard-5.1.0.tgz", - "integrity": "sha512-k61RsNgAayIJNoy9yDsYzDe/yAZAzEbEgcz3DZMhF686LEyukcE1hzurxe85JandPUG+yTfGVFzuEw3xt8WP/A==", - "dependencies": { - "copy-to-clipboard": "^3.3.1", - "prop-types": "^15.8.1" - }, - "peerDependencies": { - "react": "^15.3.0 || 16 || 17 || 18" - } - }, - "node_modules/react-data-table-component": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/react-data-table-component/-/react-data-table-component-7.6.2.tgz", - "integrity": "sha512-nHe7040fmtrJyQr/ieGrTfV0jBflYGK4sLokC6/AFOv3ThjmA9WzKz8Z8/2wMxzRqLU+Rn0CVFg+8+frKLepWQ==", - "dependencies": { - "deepmerge": "^4.3.1" - }, - "peerDependencies": { - "react": ">= 16.8.3", - "styled-components": ">= 5.0.0" - }, - "peerDependenciesMeta": { - "styled-components": { - "optional": false - } - } - }, - "node_modules/react-datepicker": { - "version": "4.25.0", - "resolved": "https://registry.npmjs.org/react-datepicker/-/react-datepicker-4.25.0.tgz", - "integrity": "sha512-zB7CSi44SJ0sqo8hUQ3BF1saE/knn7u25qEMTO1CQGofY1VAKahO8k9drZtp0cfW1DMfoYLR3uSY1/uMvbEzbg==", - "dependencies": { - "@popperjs/core": "^2.11.8", - "classnames": "^2.2.6", - "date-fns": "^2.30.0", - "prop-types": "^15.7.2", - "react-onclickoutside": "^6.13.0", - "react-popper": "^2.3.0" - }, - "peerDependencies": { - "react": "^16.9.0 || ^17 || ^18", - "react-dom": "^16.9.0 || ^17 || ^18" - } - }, - "node_modules/react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", - "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" - }, - "peerDependencies": { - "react": "^18.2.0" - } - }, - "node_modules/react-dropzone": { - "version": "14.2.3", - "resolved": "https://registry.npmjs.org/react-dropzone/-/react-dropzone-14.2.3.tgz", - "integrity": "sha512-O3om8I+PkFKbxCukfIR3QAGftYXDZfOE2N1mr/7qebQJHs7U+/RSL/9xomJNpRg9kM5h9soQSdf0Gc7OHF5Fug==", - "dependencies": { - "attr-accept": "^2.2.2", - "file-selector": "^0.6.0", - "prop-types": "^15.8.1" - }, - "engines": { - "node": ">= 10.13" - }, - "peerDependencies": { - "react": ">= 16.8 || 18.0.0" - } - }, - "node_modules/react-fast-compare": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz", - "integrity": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==" - }, - "node_modules/react-final-form": { - "version": "6.5.9", - "resolved": "https://registry.npmjs.org/react-final-form/-/react-final-form-6.5.9.tgz", - "integrity": "sha512-x3XYvozolECp3nIjly+4QqxdjSSWfcnpGEL5K8OBT6xmGrq5kBqbA6+/tOqoom9NwqIPPbxPNsOViFlbKgowbA==", - "dependencies": { - "@babel/runtime": "^7.15.4" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/final-form" - }, - "peerDependencies": { - "final-form": "^4.20.4", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-final-form-arrays": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/react-final-form-arrays/-/react-final-form-arrays-3.1.4.tgz", - "integrity": "sha512-siVFAolUAe29rMR6u8VwepoysUcUdh6MLV2OWnCtKpsPRUdT9VUgECjAPaVMAH2GROZNiVB9On1H9MMrm9gdpg==", - "dependencies": { - "@babel/runtime": "^7.19.4" - }, - "peerDependencies": { - "final-form": "^4.15.0", - "final-form-arrays": ">=1.0.4", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-final-form": "^6.2.1" - } - }, - "node_modules/react-final-form-listeners": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/react-final-form-listeners/-/react-final-form-listeners-1.0.3.tgz", - "integrity": "sha512-OrdCNxSS4JQS/EXD+R530kZKFqaPfa+WcXPgVro/h4BpaBDF/Ja+BtHyCzDezCIb5rWaGGdOJIj+tN2YdtvrXg==", - "dependencies": { - "@babel/runtime": "^7.12.5" - }, - "peerDependencies": { - "final-form": ">=4.0.0", - "prop-types": "^15.6.0", - "react": "^15.3.0 || ^16.0.0 || ^17.0.0", - "react-final-form": ">=3.0.0" - } - }, - "node_modules/react-helmet-async": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/react-helmet-async/-/react-helmet-async-1.3.0.tgz", - "integrity": "sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==", - "dependencies": { - "@babel/runtime": "^7.12.5", - "invariant": "^2.2.4", - "prop-types": "^15.7.2", - "react-fast-compare": "^3.2.0", - "shallowequal": "^1.1.0" - }, - "peerDependencies": { - "react": "^16.6.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.6.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-hotkeys-hook": { - "version": "3.4.7", - "resolved": "https://registry.npmjs.org/react-hotkeys-hook/-/react-hotkeys-hook-3.4.7.tgz", - "integrity": "sha512-+bbPmhPAl6ns9VkXkNNyxlmCAIyDAcWbB76O4I0ntr3uWCRuIQf/aRLartUahe9chVMPj+OEzzfk3CQSjclUEQ==", - "dependencies": { - "hotkeys-js": "3.9.4" - }, - "peerDependencies": { - "react": ">=16.8.1", - "react-dom": ">=16.8.1" - } - }, - "node_modules/react-html-parser": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/react-html-parser/-/react-html-parser-2.0.2.tgz", - "integrity": "sha512-XeerLwCVjTs3njZcgCOeDUqLgNIt/t+6Jgi5/qPsO/krUWl76kWKXMeVs2LhY2gwM6X378DkhLjur0zUQdpz0g==", - "dependencies": { - "htmlparser2": "^3.9.0" - }, - "peerDependencies": { - "react": "^0.14.0 || ^15.0.0 || ^16.0.0-0" - } - }, - "node_modules/react-html-parser/node_modules/dom-serializer": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", - "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", - "dependencies": { - "domelementtype": "^2.0.1", - "entities": "^2.0.0" - } - }, - "node_modules/react-html-parser/node_modules/dom-serializer/node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ] - }, - "node_modules/react-html-parser/node_modules/dom-serializer/node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/react-html-parser/node_modules/domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" - }, - "node_modules/react-html-parser/node_modules/domhandler": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", - "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", - "dependencies": { - "domelementtype": "1" - } - }, - "node_modules/react-html-parser/node_modules/domutils": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", - "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", - "dependencies": { - "dom-serializer": "0", - "domelementtype": "1" - } - }, - "node_modules/react-html-parser/node_modules/entities": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", - "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" - }, - "node_modules/react-html-parser/node_modules/htmlparser2": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", - "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", - "dependencies": { - "domelementtype": "^1.3.1", - "domhandler": "^2.3.0", - "domutils": "^1.5.1", - "entities": "^1.1.1", - "inherits": "^2.0.1", - "readable-stream": "^3.1.1" - } - }, - "node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - }, - "node_modules/react-lifecycles-compat": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", - "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" - }, - "node_modules/react-loading-skeleton": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/react-loading-skeleton/-/react-loading-skeleton-3.4.0.tgz", - "integrity": "sha512-1oJEBc9+wn7BbkQQk7YodlYEIjgeR+GrRjD+QXkVjwZN7LGIcAFHrx4NhT7UHGBxNY1+zax3c+Fo6XQM4R7CgA==", - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/react-masonry-component": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/react-masonry-component/-/react-masonry-component-6.3.0.tgz", - "integrity": "sha512-4ZI78nxMfCpU5yQiS6Rup07Ju++YzcOGAyvbMcl2GfpZTw8GRwT548lkKr0PJarNicRV1qE2D/NiT26UPg1T7A==", - "dependencies": { - "create-react-class": "^15.6.2", - "element-resize-detector": "^1.1.9", - "imagesloaded": "^4.0.0", - "lodash": "^4.17.4", - "masonry-layout": "^4.2.0", - "prop-types": "^15.5.8" - }, - "peerDependencies": { - "react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0 || ^17.0.0" - } - }, - "node_modules/react-media-hook": { - "version": "0.4.9", - "resolved": "https://registry.npmjs.org/react-media-hook/-/react-media-hook-0.4.9.tgz", - "integrity": "sha512-FZr/2xA1+23vDJ1IZ794yLqMRRkBoCNOiJATdtTfB5GyVc5djf8FL2qEB/68pSkiNgHdHsmKknMSDr0sC4zBKQ==", - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/react-onclickoutside": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/react-onclickoutside/-/react-onclickoutside-6.13.0.tgz", - "integrity": "sha512-ty8So6tcUpIb+ZE+1HAhbLROvAIJYyJe/1vRrrcmW+jLsaM+/powDRqxzo6hSh9CuRZGSL1Q8mvcF5WRD93a0A==", - "funding": { - "type": "individual", - "url": "https://github.com/Pomax/react-onclickoutside/blob/master/FUNDING.md" - }, - "peerDependencies": { - "react": "^15.5.x || ^16.x || ^17.x || ^18.x", - "react-dom": "^15.5.x || ^16.x || ^17.x || ^18.x" - } - }, - "node_modules/react-overlays": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/react-overlays/-/react-overlays-5.2.1.tgz", - "integrity": "sha512-GLLSOLWr21CqtJn8geSwQfoJufdt3mfdsnIiQswouuQ2MMPns+ihZklxvsTDKD3cR2tF8ELbi5xUsvqVhR6WvA==", - "dependencies": { - "@babel/runtime": "^7.13.8", - "@popperjs/core": "^2.11.6", - "@restart/hooks": "^0.4.7", - "@types/warning": "^3.0.0", - "dom-helpers": "^5.2.0", - "prop-types": "^15.7.2", - "uncontrollable": "^7.2.1", - "warning": "^4.0.3" - }, - "peerDependencies": { - "react": ">=16.3.0", - "react-dom": ">=16.3.0" - } - }, - "node_modules/react-papaparse": { - "version": "3.18.2", - "resolved": "https://registry.npmjs.org/react-papaparse/-/react-papaparse-3.18.2.tgz", - "integrity": "sha512-qDth1fWX198VQe7xpkSioK+7MqZc7TqLHCl7hGOz4KWL47AxrFhRjaZMphdX6z43TWCTUf+zhh7BYU2uSMVDkQ==", - "dependencies": { - "@types/papaparse": "^5.3.1", - "papaparse": "^5.3.1" - }, - "engines": { - "node": ">=8", - "npm": ">=5" - } - }, - "node_modules/react-popper": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-2.3.0.tgz", - "integrity": "sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==", - "dependencies": { - "react-fast-compare": "^3.0.1", - "warning": "^4.0.2" - }, - "peerDependencies": { - "@popperjs/core": "^2.0.0", - "react": "^16.8.0 || ^17 || ^18", - "react-dom": "^16.8.0 || ^17 || ^18" - } - }, - "node_modules/react-redux": { - "version": "7.2.9", - "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz", - "integrity": "sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==", - "dependencies": { - "@babel/runtime": "^7.15.4", - "@types/react-redux": "^7.1.20", - "hoist-non-react-statics": "^3.3.2", - "loose-envify": "^1.4.0", - "prop-types": "^15.7.2", - "react-is": "^17.0.2" - }, - "peerDependencies": { - "react": "^16.8.3 || ^17 || ^18" - }, - "peerDependenciesMeta": { - "react-dom": { - "optional": true - }, - "react-native": { - "optional": true - } - } - }, - "node_modules/react-redux/node_modules/react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" - }, - "node_modules/react-refresh": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", - "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-router": { - "version": "6.22.3", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.22.3.tgz", - "integrity": "sha512-dr2eb3Mj5zK2YISHK++foM9w4eBnO23eKnZEDs7c880P6oKbrjz/Svg9+nxqtHQK+oMW4OtjZca0RqPglXxguQ==", - "dependencies": { - "@remix-run/router": "1.15.3" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "react": ">=16.8" - } - }, - "node_modules/react-router-dom": { - "version": "6.22.3", - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.22.3.tgz", - "integrity": "sha512-7ZILI7HjcE+p31oQvwbokjk6OA/bnFxrhJ19n82Ex9Ph8fNAq+Hm/7KchpMGlTgWhUxRHMMCut+vEtNpWpowKw==", - "dependencies": { - "@remix-run/router": "1.15.3", - "react-router": "6.22.3" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "react": ">=16.8", - "react-dom": ">=16.8" - } - }, - "node_modules/react-select": { - "version": "5.8.0", - "resolved": "https://registry.npmjs.org/react-select/-/react-select-5.8.0.tgz", - "integrity": "sha512-TfjLDo58XrhP6VG5M/Mi56Us0Yt8X7xD6cDybC7yoRMUNm7BGO7qk8J0TLQOua/prb8vUOtsfnXZwfm30HGsAA==", - "dependencies": { - "@babel/runtime": "^7.12.0", - "@emotion/cache": "^11.4.0", - "@emotion/react": "^11.8.1", - "@floating-ui/dom": "^1.0.1", - "@types/react-transition-group": "^4.4.0", - "memoize-one": "^6.0.0", - "prop-types": "^15.6.0", - "react-transition-group": "^4.3.0", - "use-isomorphic-layout-effect": "^1.1.2" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-select-search": { - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/react-select-search/-/react-select-search-3.0.10.tgz", - "integrity": "sha512-K3Ww5HfOaoqgjNIZt++DMeSjWgu5T78d2xXt/hEa3ERLvEqfxBwXUML2E23goWGIUQBv2b+kGkb86YnOwH0hUw==", - "optionalDependencies": { - "fuse.js": "^6.6.0" - }, - "peerDependencies": { - "prop-types": "^15.8.1", - "react": "^18.0.1 || ^17.0.1 || ^16.14.0", - "react-dom": "^18.0.1 || ^17.0.1 || ^16.14.0" - } - }, - "node_modules/react-select-search/node_modules/fuse.js": { - "version": "6.6.2", - "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-6.6.2.tgz", - "integrity": "sha512-cJaJkxCCxC8qIIcPBF9yGxY0W/tVZS3uEISDxhYIdtk8OL93pe+6Zj7LjCqVV4dzbqcriOZ+kQ/NE4RXZHsIGA==", - "optional": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/react-syntax-highlighter": { - "version": "15.5.0", - "resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-15.5.0.tgz", - "integrity": "sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==", - "dependencies": { - "@babel/runtime": "^7.3.1", - "highlight.js": "^10.4.1", - "lowlight": "^1.17.0", - "prismjs": "^1.27.0", - "refractor": "^3.6.0" - }, - "peerDependencies": { - "react": ">= 0.14.0" - } - }, - "node_modules/react-time-ago": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/react-time-ago/-/react-time-ago-7.3.1.tgz", - "integrity": "sha512-c6QKSRrnIhZiEbOa2PXdh1InNYpqX3wwXA0fuOFX4r/C2hdt5hNvjvKXbKbGWXAeumMi9DoS3oGPboEpgccnOQ==", - "dependencies": { - "memoize-one": "^6.0.0", - "prop-types": "^15.8.1", - "raf": "^3.4.1" - }, - "peerDependencies": { - "javascript-time-ago": "^2.3.7", - "react": ">=0.16.8", - "react-dom": ">=0.16.8" - } - }, - "node_modules/react-transition-group": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", - "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", - "dependencies": { - "@babel/runtime": "^7.5.5", - "dom-helpers": "^5.0.1", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2" - }, - "peerDependencies": { - "react": ">=16.6.0", - "react-dom": ">=16.6.0" - } - }, - "node_modules/read-pkg": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", - "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", - "dev": true, - "dependencies": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^2.5.0", - "parse-json": "^5.0.0", - "type-fest": "^0.6.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", - "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", - "dev": true, - "dependencies": { - "find-up": "^4.1.0", - "read-pkg": "^5.2.0", - "type-fest": "^0.8.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg-up/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg-up/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg/node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "node_modules/read-pkg/node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "node_modules/read-pkg/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/read-pkg/node_modules/type-fest": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/redent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", - "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", - "dev": true, - "dependencies": { - "indent-string": "^4.0.0", - "strip-indent": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/redux": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/redux/-/redux-4.1.1.tgz", - "integrity": "sha512-hZQZdDEM25UY2P493kPYuKqviVwZ58lEmGQNeQ+gXa+U0gYPUBf7NKYazbe3m+bs/DzM/ahN12DbF+NG8i0CWw==", - "dependencies": { - "@babel/runtime": "^7.9.2" - } - }, - "node_modules/redux-immutable-state-invariant": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/redux-immutable-state-invariant/-/redux-immutable-state-invariant-2.1.0.tgz", - "integrity": "sha512-3czbDKs35FwiBRsx/3KabUk5zSOoTXC+cgVofGkpBNv3jQcqIe5JrHcF5AmVt7B/4hyJ8MijBIpCJ8cife6yJg==", - "dev": true, - "dependencies": { - "invariant": "^2.1.0", - "json-stringify-safe": "^5.0.1" - } - }, - "node_modules/redux-persist": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/redux-persist/-/redux-persist-6.0.0.tgz", - "integrity": "sha512-71LLMbUq2r02ng2We9S215LtPu3fY0KgaGE0k8WRgl6RkqxtGfl7HUozz1Dftwsb0D/5mZ8dwAaPbtnzfvbEwQ==", - "peerDependencies": { - "redux": ">4.0.0" - } - }, - "node_modules/redux-thunk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.4.2.tgz", - "integrity": "sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==", - "peerDependencies": { - "redux": "^4" - } - }, - "node_modules/reflect.getprototypeof": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.5.tgz", - "integrity": "sha512-62wgfC8dJWrmxv44CA36pLDnP6KKl3Vhxb7PL+8+qrrFMMoJij4vgiMP8zV4O8+CBMXY1mHxI5fITGHXFHVmQQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.0.0", - "get-intrinsic": "^1.2.3", - "globalthis": "^1.0.3", - "which-builtin-type": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/refractor": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/refractor/-/refractor-3.6.0.tgz", - "integrity": "sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==", - "dependencies": { - "hastscript": "^6.0.0", - "parse-entities": "^2.0.0", - "prismjs": "~1.27.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/refractor/node_modules/prismjs": { - "version": "1.27.0", - "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.27.0.tgz", - "integrity": "sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" - }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", - "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", - "dependencies": { - "call-bind": "^1.0.6", - "define-properties": "^1.2.1", - "es-errors": "^1.3.0", - "set-function-name": "^2.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/relative-time-format": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/relative-time-format/-/relative-time-format-1.1.6.tgz", - "integrity": "sha512-aCv3juQw4hT1/P/OrVltKWLlp15eW1GRcwP1XdxHrPdZE9MtgqFpegjnTjLhi2m2WI9MT/hQQtE+tjEWG1hgkQ==" - }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/reselect": { - "version": "4.1.8", - "resolved": "https://registry.npmjs.org/reselect/-/reselect-4.1.8.tgz", - "integrity": "sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==" - }, - "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "engines": { - "node": ">=4" - } - }, - "node_modules/ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "engines": { - "node": ">=0.12" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rgbcolor": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/rgbcolor/-/rgbcolor-1.0.1.tgz", - "integrity": "sha512-9aZLIrhRaD97sgVhtJOW6ckOEh6/GnvQtdVNfdZ6s67+3/XwLS9lBcQYzEEhYVeUowN7pRzMLsyGhK2i/xvWbw==", - "optional": true, - "engines": { - "node": ">= 0.8.15" - } - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/rollup": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.13.0.tgz", - "integrity": "sha512-3YegKemjoQnYKmsBlOHfMLVPPA5xLkQ8MHLLSw/fBrFaVkEayL51DilPpNNLq1exr98F2B1TzrV0FUlN3gWRPg==", - "dev": true, - "dependencies": { - "@types/estree": "1.0.5" - }, - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=18.0.0", - "npm": ">=8.0.0" - }, - "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.13.0", - "@rollup/rollup-android-arm64": "4.13.0", - "@rollup/rollup-darwin-arm64": "4.13.0", - "@rollup/rollup-darwin-x64": "4.13.0", - "@rollup/rollup-linux-arm-gnueabihf": "4.13.0", - "@rollup/rollup-linux-arm64-gnu": "4.13.0", - "@rollup/rollup-linux-arm64-musl": "4.13.0", - "@rollup/rollup-linux-riscv64-gnu": "4.13.0", - "@rollup/rollup-linux-x64-gnu": "4.13.0", - "@rollup/rollup-linux-x64-musl": "4.13.0", - "@rollup/rollup-win32-arm64-msvc": "4.13.0", - "@rollup/rollup-win32-ia32-msvc": "4.13.0", - "@rollup/rollup-win32-x64-msvc": "4.13.0", - "fsevents": "~2.3.2" - } - }, - "node_modules/rst-selector-parser": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz", - "integrity": "sha512-nDG1rZeP6oFTLN6yNDV/uiAvs1+FS/KlrEwh7+y7dpuApDBy6bI2HTBcc0/V8lv9OTqfyD34eF7au2pm8aBbhA==", - "dependencies": { - "lodash.flattendeep": "^4.4.0", - "nearley": "^2.7.10" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/safe-array-concat": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", - "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", - "dependencies": { - "call-bind": "^1.0.7", - "get-intrinsic": "^1.2.4", - "has-symbols": "^1.0.3", - "isarray": "^2.0.5" - }, - "engines": { - "node": ">=0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/safe-regex-test": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", - "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", - "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-regex": "^1.1.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "node_modules/sass": { - "version": "1.71.1", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.71.1.tgz", - "integrity": "sha512-wovtnV2PxzteLlfNzbgm1tFXPLoZILYAMJtvoXXkD7/+1uP41eKkIt1ypWq5/q2uT94qHjXehEYfmjKOvjL9sg==", - "dev": true, - "dependencies": { - "chokidar": ">=3.0.0 <4.0.0", - "immutable": "^4.0.0", - "source-map-js": ">=0.6.2 <2.0.0" - }, - "bin": { - "sass": "sass.js" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "dependencies": { - "loose-envify": "^1.1.0" - } - }, - "node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "peer": true, - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/schema-utils/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "peer": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/schema-utils/node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "peer": true, - "peerDependencies": { - "ajv": "^6.9.1" - } - }, - "node_modules/schema-utils/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "peer": true - }, - "node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/serialize-javascript": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", - "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", - "peer": true, - "dependencies": { - "randombytes": "^2.1.0" - } - }, - "node_modules/set-function-length": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", - "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/set-function-name": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", - "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/shallowequal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", - "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/side-channel": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", - "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", - "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "object-inspect": "^1.13.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/simplebar": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/simplebar/-/simplebar-5.3.9.tgz", - "integrity": "sha512-1vIIpjDvY9sVH14e0LGeiCiTFU3ILqAghzO6OI9axeG+mvU/vMSrvXeAXkBolqFFz3XYaY8n5ahH9MeP3sp2Ag==", - "dependencies": { - "@juggle/resize-observer": "^3.3.1", - "can-use-dom": "^0.1.0", - "core-js": "^3.0.1", - "lodash.debounce": "^4.0.8", - "lodash.memoize": "^4.1.2", - "lodash.throttle": "^4.1.1" - } - }, - "node_modules/simplebar-react": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/simplebar-react/-/simplebar-react-2.4.3.tgz", - "integrity": "sha512-Ep8gqAUZAS5IC2lT5RE4t1ZFUIVACqbrSRQvFV9a6NbVUzXzOMnc4P82Hl8Ak77AnPQvmgUwZS7aUKLyBoMAcg==", - "dependencies": { - "prop-types": "^15.6.1", - "simplebar": "^5.3.9" - }, - "peerDependencies": { - "react": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0 || ^17.0 || ^18.0.0", - "react-dom": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0 || ^17.0 || ^18.0.0" - } - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/slice-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/slice-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/slice-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-loader": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", - "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", - "dependencies": { - "abab": "^2.0.5", - "iconv-lite": "^0.6.3", - "source-map-js": "^1.0.1" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "peer": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/space-separated-tokens": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", - "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/spdx-correct": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", - "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", - "dev": true, - "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-exceptions": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", - "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", - "dev": true - }, - "node_modules/spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", - "dev": true, - "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-license-ids": { - "version": "3.0.17", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz", - "integrity": "sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==", - "dev": true - }, - "node_modules/stackblur-canvas": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/stackblur-canvas/-/stackblur-canvas-2.7.0.tgz", - "integrity": "sha512-yf7OENo23AGJhBriGx0QivY5JP6Y1HbrrDI6WLt6C5auYZXlQrheoY8hD4ibekFKz1HOfE48Ww8kMWMnJD/zcQ==", - "optional": true, - "engines": { - "node": ">=0.1.14" - } - }, - "node_modules/state-local": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/state-local/-/state-local-1.0.7.tgz", - "integrity": "sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==" - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string.prototype.matchall": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz", - "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "regexp.prototype.flags": "^1.5.0", - "set-function-name": "^2.0.0", - "side-channel": "^1.0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trim": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", - "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", - "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", - "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/strip-indent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", - "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", - "dev": true, - "dependencies": { - "min-indent": "^1.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/style-search": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", - "integrity": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==", - "dev": true - }, - "node_modules/styled-components": { - "version": "5.3.11", - "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-5.3.11.tgz", - "integrity": "sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw==", - "dependencies": { - "@babel/helper-module-imports": "^7.0.0", - "@babel/traverse": "^7.4.5", - "@emotion/is-prop-valid": "^1.1.0", - "@emotion/stylis": "^0.8.4", - "@emotion/unitless": "^0.7.4", - "babel-plugin-styled-components": ">= 1.12.0", - "css-to-react-native": "^3.0.0", - "hoist-non-react-statics": "^3.0.0", - "shallowequal": "^1.1.0", - "supports-color": "^5.5.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/styled-components" - }, - "peerDependencies": { - "react": ">= 16.8.0", - "react-dom": ">= 16.8.0", - "react-is": ">= 16.8.0" - } - }, - "node_modules/styled-components/node_modules/@emotion/unitless": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz", - "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==" - }, - "node_modules/stylelint": { - "version": "14.16.1", - "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-14.16.1.tgz", - "integrity": "sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A==", - "dev": true, - "dependencies": { - "@csstools/selector-specificity": "^2.0.2", - "balanced-match": "^2.0.0", - "colord": "^2.9.3", - "cosmiconfig": "^7.1.0", - "css-functions-list": "^3.1.0", - "debug": "^4.3.4", - "fast-glob": "^3.2.12", - "fastest-levenshtein": "^1.0.16", - "file-entry-cache": "^6.0.1", - "global-modules": "^2.0.0", - "globby": "^11.1.0", - "globjoin": "^0.1.4", - "html-tags": "^3.2.0", - "ignore": "^5.2.1", - "import-lazy": "^4.0.0", - "imurmurhash": "^0.1.4", - "is-plain-object": "^5.0.0", - "known-css-properties": "^0.26.0", - "mathml-tag-names": "^2.1.3", - "meow": "^9.0.0", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "picocolors": "^1.0.0", - "postcss": "^8.4.19", - "postcss-media-query-parser": "^0.2.3", - "postcss-resolve-nested-selector": "^0.1.1", - "postcss-safe-parser": "^6.0.0", - "postcss-selector-parser": "^6.0.11", - "postcss-value-parser": "^4.2.0", - "resolve-from": "^5.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "style-search": "^0.1.0", - "supports-hyperlinks": "^2.3.0", - "svg-tags": "^1.0.0", - "table": "^6.8.1", - "v8-compile-cache": "^2.3.0", - "write-file-atomic": "^4.0.2" - }, - "bin": { - "stylelint": "bin/stylelint.js" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/stylelint" - } - }, - "node_modules/stylelint-config-sass-guidelines": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/stylelint-config-sass-guidelines/-/stylelint-config-sass-guidelines-9.0.1.tgz", - "integrity": "sha512-N06PsVsrgKijQ3YT5hqKA7x3NUkgELTRI1cbWMqcYiCGG6MjzvNk6Cb5YYA1PrvrksBV76BvY9P9bAswojVMqA==", - "dev": true, - "dependencies": { - "postcss-scss": "^4.0.2", - "stylelint-order": "^5.0.0", - "stylelint-scss": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "peerDependencies": { - "postcss": "^8.3.3", - "stylelint": "^14.0.1" - } - }, - "node_modules/stylelint-order": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/stylelint-order/-/stylelint-order-5.0.0.tgz", - "integrity": "sha512-OWQ7pmicXufDw5BlRqzdz3fkGKJPgLyDwD1rFY3AIEfIH/LQY38Vu/85v8/up0I+VPiuGRwbc2Hg3zLAsJaiyw==", - "dev": true, - "dependencies": { - "postcss": "^8.3.11", - "postcss-sorting": "^7.0.1" - }, - "peerDependencies": { - "stylelint": "^14.0.0" - } - }, - "node_modules/stylelint-scss": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-4.7.0.tgz", - "integrity": "sha512-TSUgIeS0H3jqDZnby1UO1Qv3poi1N8wUYIJY6D1tuUq2MN3lwp/rITVo0wD+1SWTmRm0tNmGO0b7nKInnqF6Hg==", - "dev": true, - "dependencies": { - "postcss-media-query-parser": "^0.2.3", - "postcss-resolve-nested-selector": "^0.1.1", - "postcss-selector-parser": "^6.0.11", - "postcss-value-parser": "^4.2.0" - }, - "peerDependencies": { - "stylelint": "^14.5.1 || ^15.0.0" - } - }, - "node_modules/stylelint/node_modules/balanced-match": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", - "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", - "dev": true - }, - "node_modules/stylelint/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/stylis": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", - "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==" - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/supports-hyperlinks": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", - "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0", - "supports-color": "^7.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-hyperlinks/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-hyperlinks/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/svg-pathdata": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/svg-pathdata/-/svg-pathdata-6.0.3.tgz", - "integrity": "sha512-qsjeeq5YjBZ5eMdFuUa4ZosMLxgr5RZ+F+Y1OrDhuOCEInRMA3x74XdBtggJcj9kOeInz0WE+LgCPDkZFlBYJw==", - "optional": true, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/svg-tags": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", - "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", - "dev": true - }, - "node_modules/table": { - "version": "6.8.1", - "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", - "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", - "dev": true, - "dependencies": { - "ajv": "^8.0.1", - "lodash.truncate": "^4.4.2", - "slice-ansi": "^4.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "peer": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/terser": { - "version": "5.29.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.29.1.tgz", - "integrity": "sha512-lZQ/fyaIGxsbGxApKmoPTODIzELy3++mXhS5hOqaAWZjQtpq/hFHAc+rm29NND1rYRxRWKcjuARNwULNXa5RtQ==", - "peer": true, - "dependencies": { - "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/terser-webpack-plugin": { - "version": "5.3.10", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", - "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", - "peer": true, - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.20", - "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.26.0" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "esbuild": { - "optional": true - }, - "uglify-js": { - "optional": true - } - } - }, - "node_modules/terser/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "peer": true - }, - "node_modules/text-segmentation": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/text-segmentation/-/text-segmentation-1.0.3.tgz", - "integrity": "sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==", - "optional": true, - "dependencies": { - "utrie": "^1.0.2" - } - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/toggle-selection": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", - "integrity": "sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==" - }, - "node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "dev": true - }, - "node_modules/trim-newlines": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", - "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/tsconfig-paths": { - "version": "3.15.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", - "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", - "dev": true, - "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, - "node_modules/tsconfig-paths/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==" - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-fest": { - "version": "0.18.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", - "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/typed-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", - "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", - "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/typed-array-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", - "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", - "dependencies": { - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-byte-offset": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", - "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", - "dependencies": { - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-length": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.5.tgz", - "integrity": "sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA==", - "dependencies": { - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13", - "possible-typed-array-names": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/uglify-js": { - "version": "3.17.4", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", - "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", - "dev": true, - "optional": true, - "bin": { - "uglifyjs": "bin/uglifyjs" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/uncontrollable": { - "version": "7.2.1", - "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-7.2.1.tgz", - "integrity": "sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==", - "dependencies": { - "@babel/runtime": "^7.6.3", - "@types/react": ">=16.9.11", - "invariant": "^2.2.4", - "react-lifecycles-compat": "^3.0.4" - }, - "peerDependencies": { - "react": ">=15.0.0" - } - }, - "node_modules/undici-types": { - "version": "5.26.5", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" - }, - "node_modules/update-browserslist-db": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", - "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/use-isomorphic-layout-effect": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz", - "integrity": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - }, - "node_modules/utrie": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/utrie/-/utrie-1.0.2.tgz", - "integrity": "sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==", - "optional": true, - "dependencies": { - "base64-arraybuffer": "^1.0.2" - } - }, - "node_modules/v8-compile-cache": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz", - "integrity": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==", - "dev": true - }, - "node_modules/validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "dev": true, - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "node_modules/validate.io-array": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/validate.io-array/-/validate.io-array-1.0.6.tgz", - "integrity": "sha512-DeOy7CnPEziggrOO5CZhVKJw6S3Yi7e9e65R1Nl/RTN1vTQKnzjfvks0/8kQ40FP/dsjRAOd4hxmJ7uLa6vxkg==" - }, - "node_modules/validate.io-function": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/validate.io-function/-/validate.io-function-1.0.2.tgz", - "integrity": "sha512-LlFybRJEriSuBnUhQyG5bwglhh50EpTL2ul23MPIuR1odjO7XaMLFV8vHGwp7AZciFxtYOeiSCT5st+XSPONiQ==" - }, - "node_modules/validate.io-integer": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/validate.io-integer/-/validate.io-integer-1.0.5.tgz", - "integrity": "sha512-22izsYSLojN/P6bppBqhgUDjCkr5RY2jd+N2a3DCAUey8ydvrZ/OkGvFPR7qfOpwR2LC5p4Ngzxz36g5Vgr/hQ==", - "dependencies": { - "validate.io-number": "^1.0.3" - } - }, - "node_modules/validate.io-integer-array": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/validate.io-integer-array/-/validate.io-integer-array-1.0.0.tgz", - "integrity": "sha512-mTrMk/1ytQHtCY0oNO3dztafHYyGU88KL+jRxWuzfOmQb+4qqnWmI+gykvGp8usKZOM0H7keJHEbRaFiYA0VrA==", - "dependencies": { - "validate.io-array": "^1.0.3", - "validate.io-integer": "^1.0.4" - } - }, - "node_modules/validate.io-number": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/validate.io-number/-/validate.io-number-1.0.3.tgz", - "integrity": "sha512-kRAyotcbNaSYoDnXvb4MHg/0a1egJdLwS6oJ38TJY7aw9n93Fl/3blIXdyYvPOp55CNxywooG/3BcrwNrBpcSg==" - }, - "node_modules/vite": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.1.6.tgz", - "integrity": "sha512-yYIAZs9nVfRJ/AiOLCA91zzhjsHUgMjB+EigzFb6W2XTLO8JixBCKCjvhKZaye+NKYHCrkv3Oh50dH9EdLU2RA==", - "dev": true, - "dependencies": { - "esbuild": "^0.19.3", - "postcss": "^8.4.35", - "rollup": "^4.2.0" - }, - "bin": { - "vite": "bin/vite.js" - }, - "engines": { - "node": "^18.0.0 || >=20.0.0" - }, - "funding": { - "url": "https://github.com/vitejs/vite?sponsor=1" - }, - "optionalDependencies": { - "fsevents": "~2.3.3" - }, - "peerDependencies": { - "@types/node": "^18.0.0 || >=20.0.0", - "less": "*", - "lightningcss": "^1.21.0", - "sass": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "lightningcss": { - "optional": true - }, - "sass": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { - "optional": true - } - } - }, - "node_modules/vite-plugin-eslint": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/vite-plugin-eslint/-/vite-plugin-eslint-1.8.1.tgz", - "integrity": "sha512-PqdMf3Y2fLO9FsNPmMX+//2BF5SF8nEWspZdgl4kSt7UvHDRHVVfHvxsD7ULYzZrJDGRxR81Nq7TOFgwMnUang==", - "dev": true, - "dependencies": { - "@rollup/pluginutils": "^4.2.1", - "@types/eslint": "^8.4.5", - "rollup": "^2.77.2" - }, - "peerDependencies": { - "eslint": ">=7", - "vite": ">=2" - } - }, - "node_modules/vite-plugin-eslint/node_modules/rollup": { - "version": "2.79.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", - "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", - "dev": true, - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=10.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/warning": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", - "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", - "peer": true, - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", - "dev": true - }, - "node_modules/webpack": { - "version": "5.90.3", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.90.3.tgz", - "integrity": "sha512-h6uDYlWCctQRuXBs1oYpVe6sFcWedl0dpcVaTf/YF67J9bKvwJajFulMVSYKHrksMB3I/pIagRzDxwxkebuzKA==", - "peer": true, - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.5", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.21.10", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", - "es-module-lexer": "^1.2.1", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.10", - "watchpack": "^2.4.0", - "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } - } - }, - "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", - "peer": true, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webpack/node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "peer": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/webpack/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "peer": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/whatwg-fetch": { - "version": "3.6.20", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", - "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==" - }, - "node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dev": true, - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-builtin-type": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", - "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", - "dev": true, - "dependencies": { - "function.prototype.name": "^1.1.5", - "has-tostringtag": "^1.0.0", - "is-async-function": "^2.0.0", - "is-date-object": "^1.0.5", - "is-finalizationregistry": "^1.0.2", - "is-generator-function": "^1.0.10", - "is-regex": "^1.1.4", - "is-weakref": "^1.0.2", - "isarray": "^2.0.5", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-collection": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", - "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", - "dev": true, - "dependencies": { - "is-map": "^2.0.3", - "is-set": "^2.0.3", - "is-weakmap": "^2.0.2", - "is-weakset": "^2.0.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-typed-array": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", - "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", - "dependencies": { - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", - "dev": true - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "node_modules/write-file-atomic": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "engines": { - "node": ">=0.4" - } - }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - }, - "node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "engines": { - "node": ">= 6" - } - }, - "node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - } - } -} diff --git a/package.json b/package.json deleted file mode 100644 index b74d149fe82e..000000000000 --- a/package.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "name": "cipp", - "version": "6.3.0", - "description": "The CyberDrain Improved Partner Portal is a portal to help manage administration for Microsoft Partners.", - "homepage": "https://cipp.app/", - "bugs": { - "url": "https://github.com/KelvinTegelaar/CIPP/issues" - }, - "repository": { - "type": "git", - "url": "git@github.com:KelvinTegelaar/CIPP.git" - }, - "type": "module", - "license": "AGPL-3.0", - "author": "CIPP Contributors", - "scripts": { - "prebuild": "node Generate-Import-Map.js", - "build": "echo react-scripts build && vite build", - "changelog": "auto-changelog --starting-version 3.0.0 --commit-limit false --hide-credit", - "lint": "eslint \"src/**/*.js\"", - "start": "vite", - "start-swa": "swa start --swa-config-location .vscode http://127.0.0.1:3000 --api-location http://127.0.0.1:7071", - "prepare": "husky install", - "preview": "vite preview" - }, - "config": { - "coreui_library_short_version": "4.1" - }, - "dependencies": { - "@coreui/chartjs": "^3.0.0", - "@coreui/coreui": "^4.3.0", - "@coreui/react": "^4.11.0", - "@coreui/react-chartjs": "^2.1.3", - "@coreui/utils": "^1.3.1", - "@fortawesome/fontawesome-svg-core": "^6.5.1", - "@fortawesome/free-brands-svg-icons": "^6.5.1", - "@fortawesome/free-regular-svg-icons": "^6.5.1", - "@fortawesome/free-solid-svg-icons": "^6.5.1", - "@fortawesome/react-fontawesome": "^0.2.0", - "@monaco-editor/react": "^4.5.2", - "@popperjs/core": "^2.10.2", - "@reduxjs/toolkit": "^1.9.7", - "@rjsf/bootstrap-4": "^5.12.1", - "@rjsf/core": "^5.12.1", - "@rjsf/utils": "^5.12.1", - "@rjsf/validator-ajv8": "^5.12.1", - "@uiw/react-json-view": "^2.0.0-alpha.23", - "axios": "^1.6.2", - "buffer": "^6.0.3", - "chart.js": "^3.5.1", - "classnames": "^2.3.1", - "core-js": "^3.18.3", - "dompurify": "^3.1.6", - "eml-parse-js": "^1.1.14", - "enzyme": "^3.11.0", - "final-form": "^4.20.4", - "final-form-arrays": "^3.1.0", - "fuse.js": "^7.0.0", - "fuzzysort": "^1.1.4", - "javascript-time-ago": "^2.5.9", - "jspdf": "^2.4.0", - "jspdf-autotable": "^3.5.23", - "lodash-es": "^4.17.21", - "moment": "^2.29.1", - "prop-types": "^15.7.2", - "react": "^18.2.0", - "react-app-polyfill": "^2.0.0", - "react-bootstrap": "^1.6.5", - "react-circular-progressbar": "^2.1.0", - "react-copy-to-clipboard": "^5.1.0", - "react-data-table-component": "^7.4.5", - "react-datepicker": "^4.10.0", - "react-dom": "^18.2.0", - "react-dropzone": "^14.2.3", - "react-final-form": "^6.5.9", - "react-final-form-arrays": "^3.1.4", - "react-final-form-listeners": "^1.0.3", - "react-helmet-async": "^1.3.0", - "react-hotkeys-hook": "^3.4.4", - "react-html-parser": "^2.0.2", - "react-loading-skeleton": "^3.1.0", - "react-masonry-component": "^6.3.0", - "react-media-hook": "^0.4.9", - "react-papaparse": "^3.18.2", - "react-redux": "^7.2.5", - "react-router-dom": "^6.1.1", - "react-select": "^5.3.0", - "react-select-search": "^3.0.8", - "react-syntax-highlighter": "^15.4.5", - "react-time-ago": "^7.2.1", - "redux": "4.1.1", - "redux-persist": "^6.0.0", - "simplebar-react": "^2.3.6", - "source-map-loader": "^3.0.0", - "styled-components": "^5.3.11" - }, - "devDependencies": { - "@types/react": "^18.2.39", - "@types/react-helmet": "^6.1.5", - "@vitejs/plugin-react": "^4.2.1", - "auto-changelog": "~2.3.0", - "browserslist-to-esbuild": "^1.2.0", - "eslint": "^8.54.0", - "eslint-config-prettier": "^8.3.0", - "eslint-import-resolver-custom-alias": "^1.3.2", - "eslint-plugin-import": "^2.29.0", - "eslint-plugin-prettier": "^4.0.0", - "eslint-plugin-react": "^7.33.2", - "eslint-plugin-react-hooks": "^4.6.0", - "eslint-plugin-react-refresh": "^0.4.4", - "husky": "^7.0.4", - "postcss-scss": "^4.0.3", - "prettier": "2.4.1", - "redux-immutable-state-invariant": "^2.1.0", - "sass": "^1.64.2", - "stylelint": "^14.3.0", - "stylelint-config-sass-guidelines": "^9.0.1", - "stylelint-order": "^5.0.0", - "vite": "^5.0.6", - "vite-plugin-eslint": "^1.8.1" - }, - "engines": { - "node": "18", - "npm": ">=8.3.0" - }, - "overrides": { - "react": "^18.2.0", - "react-dom": "^18.2.0" - } -} diff --git a/public/GDAPRoles.json b/public/GDAPRoles.json deleted file mode 100644 index bf14e31159e5..000000000000 --- a/public/GDAPRoles.json +++ /dev/null @@ -1,722 +0,0 @@ -[ - { - "ExtensionData": {}, - "Description": "Can create and manage all aspects of app registrations and enterprise apps.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Application Administrator", - "ObjectId": "9b895d92-2cd3-44c7-9d02-a6ac2d5ea5c3" - }, - { - "ExtensionData": {}, - "Description": "Can create application registrations independent of the \u0027Users can register applications\u0027 setting.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Application Developer", - "ObjectId": "cf1c38e5-3621-4004-a7cb-879624dced7c" - }, - { - "ExtensionData": {}, - "Description": "Can create attack payloads that an administrator can initiate later.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Attack Payload Author", - "ObjectId": "9c6df0f2-1e7c-4dc3-b195-66dfbd24aa8f" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage all aspects of attack simulation campaigns.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Attack Simulation Administrator", - "ObjectId": "c430b396-e693-46cc-96f3-db01bf8bb62a" - }, - { - "ExtensionData": {}, - "Description": "Assign custom security attribute keys and values to supported Azure AD objects.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Attribute Assignment Administrator", - "ObjectId": "58a13ea3-c632-46ae-9ee0-9c0d43cd7f3d" - }, - { - "ExtensionData": {}, - "Description": "Read custom security attribute keys and values for supported Azure AD objects.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Attribute Assignment Reader", - "ObjectId": "ffd52fa5-98dc-465c-991d-fc073eb59f8f" - }, - { - "ExtensionData": {}, - "Description": "Define and manage the definition of custom security attributes.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Attribute Definition Administrator", - "ObjectId": "8424c6f0-a189-499e-bbd0-26c1753c96d4" - }, - { - "ExtensionData": {}, - "Description": "Read the definition of custom security attributes.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Attribute Definition Reader", - "ObjectId": "1d336d2c-4ae8-42ef-9711-b3604ce3fc2c" - }, - { - "ExtensionData": {}, - "Description": "Allowed to view, set and reset authentication method information for any non-admin user.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Authentication Administrator", - "ObjectId": "c4e39bd9-1100-46d3-8c65-fb160da0071f" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage the authentication methods policy, tenant-wide MFA settings, password protection policy, and verifiable credentials.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Authentication Policy Administrator", - "ObjectId": "0526716b-113d-4c15-b2c8-68e3c22b9f80" - }, - { - "ExtensionData": {}, - "Description": "Users assigned to this role are added to the local administrators group on Azure AD-joined devices.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Azure AD Joined Device Local Administrator", - "ObjectId": "9f06204d-73c1-4d4c-880a-6edb90606fd8" - }, - { - "ExtensionData": {}, - "Description": "Can manage Azure DevOps organization policy and settings.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Azure DevOps Administrator", - "ObjectId": "e3973bdf-4987-49ae-837a-ba8e231c7286" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the Azure Information Protection product.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Azure Information Protection Administrator", - "ObjectId": "7495fdc4-34c4-4d15-a289-98788ce399fd" - }, - { - "ExtensionData": {}, - "Description": "Can manage secrets for federation and encryption in the Identity Experience Framework (IEF).", - "IsEnabled": true, - "IsSystem": true, - "Name": "B2C IEF Keyset Administrator", - "ObjectId": "aaf43236-0c0d-4d5f-883a-6955382ac081" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage trust framework policies in the Identity Experience Framework (IEF).", - "IsEnabled": true, - "IsSystem": true, - "Name": "B2C IEF Policy Administrator", - "ObjectId": "3edaf663-341e-4475-9f94-5c398ef6c070" - }, - { - "ExtensionData": {}, - "Description": "Can perform common billing related tasks like updating payment information.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Billing Administrator", - "ObjectId": "b0f54661-2d74-4c50-afa3-1ec803f12efe" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the Cloud App Security product.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Cloud App Security Administrator", - "ObjectId": "892c5842-a9a6-463a-8041-72aa08ca3cf6" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage all aspects of app registrations and enterprise apps except App Proxy.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Cloud Application Administrator", - "ObjectId": "158c047a-c907-4556-b7ef-446551a6b5f7" - }, - { - "ExtensionData": {}, - "Description": "Full access to manage devices in Azure AD.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Cloud Device Administrator", - "ObjectId": "7698a772-787b-4ac8-901f-60d6b08affd2" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of Azure AD and Microsoft services that use Azure AD identities. This role was formerly known as Global Administrator.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Company Administrator", - "ObjectId": "62e90394-69f5-4237-9190-012177145e10" - }, - { - "ExtensionData": {}, - "Description": "Can read and manage compliance configuration and reports in Azure AD and Microsoft 365.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Compliance Administrator", - "ObjectId": "17315797-102d-40b4-93e0-432062caca18" - }, - { - "ExtensionData": {}, - "Description": "Creates and manages compliance content.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Compliance Data Administrator", - "ObjectId": "e6d1a23a-da11-4be4-9570-befc86d067a7" - }, - { - "ExtensionData": {}, - "Description": "Can manage Conditional Access capabilities.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Conditional Access Administrator", - "ObjectId": "b1be1c3e-b65d-4f19-8427-f6fa0d97feb9" - }, - { - "ExtensionData": {}, - "Description": "Can approve Microsoft support requests to access customer organizational data.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Customer LockBox Access Approver", - "ObjectId": "5c4f9dcd-47dc-4cf7-8c9a-9e4207cbfc91" - }, - { - "ExtensionData": {}, - "Description": "Can access and manage Desktop management tools and services.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Desktop Analytics Administrator", - "ObjectId": "38a96431-2bdf-4b4c-8b6e-5d3d8abac1a4" - }, - { - "ExtensionData": {}, - "Description": "Device Join", - "IsEnabled": true, - "IsSystem": true, - "Name": "Device Join", - "ObjectId": "9c094953-4995-41c8-84c8-3ebb9b32c93f" - }, - { - "ExtensionData": {}, - "Description": "Device Users", - "IsEnabled": true, - "IsSystem": true, - "Name": "Device Users", - "ObjectId": "d405c6df-0af8-4e3b-95e4-4d06e542189e" - }, - { - "ExtensionData": {}, - "Description": "Can read basic directory information. Commonly used to grant directory read access to applications and guests.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Directory Readers", - "ObjectId": "88d8e3e3-8f55-4a1e-953a-9b9898b8876b" - }, - { - "ExtensionData": {}, - "Description": "Only used by Azure AD Connect service.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Directory Synchronization Accounts", - "ObjectId": "d29b2b05-8046-44ba-8758-1e26182fcf32" - }, - { - "ExtensionData": {}, - "Description": "Can read and write basic directory information. For granting access to applications, not intended for users.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Directory Writers", - "ObjectId": "9360feb5-f418-4baa-8175-e2a00bac4301" - }, - { - "ExtensionData": {}, - "Description": "Can manage domain names in cloud and on-premises.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Domain Name Administrator", - "ObjectId": "8329153b-31d0-4727-b945-745eb3bc5f31" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the Dynamics 365 product.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Dynamics 365 Administrator", - "ObjectId": "44367163-eba1-44c3-98af-f5787879f96a" - }, - { - "ExtensionData": {}, - "Description": "Manage all aspects of Microsoft Edge.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Edge Administrator", - "ObjectId": "3f1acade-1e04-4fbc-9b69-f0302cd84aef" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the Exchange product.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Exchange Administrator", - "ObjectId": "29232cdf-9323-42fd-ade2-1d097af3e4de" - }, - { - "ExtensionData": {}, - "Description": "Can create or update Exchange Online recipients within the Exchange Online organization.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Exchange Recipient Administrator", - "ObjectId": "31392ffb-586c-42d1-9346-e59415a2cc4e" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage all aspects of user flows.", - "IsEnabled": true, - "IsSystem": true, - "Name": "External ID User Flow Administrator", - "ObjectId": "6e591065-9bad-43ed-90f3-e9424366d2f0" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage the attribute schema available to all user flows.", - "IsEnabled": true, - "IsSystem": true, - "Name": "External ID User Flow Attribute Administrator", - "ObjectId": "0f971eea-41eb-4569-a71e-57bb8a3eff1e" - }, - { - "ExtensionData": {}, - "Description": "Can configure identity providers for use in direct federation.", - "IsEnabled": true, - "IsSystem": true, - "Name": "External Identity Provider Administrator", - "ObjectId": "be2f45a1-457d-42af-a067-6ec1fa63bc45" - }, - { - "ExtensionData": {}, - "Description": "Can read everything that a Global Administrator can, but not update anything.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Global Reader", - "ObjectId": "f2ef992c-3afb-46b9-b7cf-a126ee74c451" - }, - { - "ExtensionData": {}, - "Description": "Members of this role can create/manage groups, create/manage groups settings like naming and expiration policies, and view groups activity and audit reports.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Groups Administrator", - "ObjectId": "fdd7a751-b60b-444a-984c-02652fe8fa1c" - }, - { - "ExtensionData": {}, - "Description": "Can invite guest users independent of the \u0027members can invite guests\u0027 setting.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Guest Inviter", - "ObjectId": "95e79109-95c0-4d8e-aee3-d01accf2d47b" - }, - { - "ExtensionData": {}, - "Description": "Can reset passwords for non-administrators and Helpdesk Administrators.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Helpdesk Administrator", - "ObjectId": "729827e3-9c14-49f7-bb1b-9608f156bbb8" - }, - { - "ExtensionData": {}, - "Description": "Can manage AD to Azure AD cloud provisioning, Azure AD Connect, and federation settings.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Hybrid Identity Administrator", - "ObjectId": "8ac3fc64-6eca-42ea-9e69-59f4c7b60eb2" - }, - { - "ExtensionData": {}, - "Description": "Manage access using Azure AD for identity governance scenarios.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Identity Governance Administrator", - "ObjectId": "45d8d3c5-c802-45c6-b32a-1d70b5e1e86e" - }, - { - "ExtensionData": {}, - "Description": "Has administrative access in the Microsoft 365 Insights app.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Insights Administrator", - "ObjectId": "eb1f4a8d-243a-41f0-9fbd-c7cdf6c5ef7c" - }, - { - "ExtensionData": {}, - "Description": "Access the analytical capabilities in Microsoft Viva Insights and run custom queries.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Insights Analyst", - "ObjectId": "25df335f-86eb-4119-b717-0ff02de207e9" - }, - { - "ExtensionData": {}, - "Description": "Can view and share dashboards and insights via the M365 Insights app.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Insights Business Leader", - "ObjectId": "31e939ad-9672-4796-9c2e-873181342d2d" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the Intune product.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Intune Administrator", - "ObjectId": "3a2c62db-5318-420d-8d74-23affee5d9d5" - }, - { - "ExtensionData": {}, - "Description": "Can manage settings for Microsoft Kaizala.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Kaizala Administrator", - "ObjectId": "74ef975b-6605-40af-a5d2-b9539d836353" - }, - { - "ExtensionData": {}, - "Description": "Can configure knowledge, learning, and other intelligent features.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Knowledge Administrator", - "ObjectId": "b5a8dcf3-09d5-43a9-a639-8e29ef291470" - }, - { - "ExtensionData": {}, - "Description": "Has access to topic management dashboard and can manage content.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Knowledge Manager", - "ObjectId": "744ec460-397e-42ad-a462-8b3f9747a02c" - }, - { - "ExtensionData": {}, - "Description": "Can manage product licenses on users and groups.", - "IsEnabled": true, - "IsSystem": true, - "Name": "License Administrator", - "ObjectId": "4d6ac14f-3453-41d0-bef9-a3e0c569773a" - }, - { - "ExtensionData": {}, - "Description": "Create and manage all aspects of workflows and tasks associated with Lifecycle Workflows in Azure AD.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Lifecycle Workflows Administrator", - "ObjectId": "59d46f88-662b-457b-bceb-5c3809e5908f" - }, - { - "ExtensionData": {}, - "Description": "Can read security messages and updates in Office 365 Message Center only.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Message Center Privacy Reader", - "ObjectId": "ac16e43d-7b2d-40e0-ac05-243ff356ab5b" - }, - { - "ExtensionData": {}, - "Description": "Can read messages and updates for their organization in Office 365 Message Center only.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Message Center Reader", - "ObjectId": "790c1fb9-7f7d-4f88-86a1-ef1f95c05c1b" - }, - { - "ExtensionData": {}, - "Description": "Can manage network locations and review enterprise network design insights for Microsoft 365 Software as a Service applications.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Network Administrator", - "ObjectId": "d37c8bed-0711-4417-ba38-b4abe66ce4c2" - }, - { - "ExtensionData": {}, - "Description": "Can manage Office apps cloud services, including policy and settings management, and manage the ability to select, unselect and publish \u0027what\u0027s new\u0027 feature content to end-user\u0027s devices.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Office Apps Administrator", - "ObjectId": "2b745bdf-0803-4d80-aa65-822c4493daac" - }, - { - "ExtensionData": {}, - "Description": "Do not use - not intended for general use.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Partner Tier1 Support", - "ObjectId": "4ba39ca4-527c-499a-b93d-d9b492c50246" - }, - { - "ExtensionData": {}, - "Description": "Do not use - not intended for general use.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Partner Tier2 Support", - "ObjectId": "e00e864a-17c5-4a4b-9c06-f5b95a8d5bd8" - }, - { - "ExtensionData": {}, - "Description": "Can reset passwords for non-administrators and Password Administrators.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Password Administrator", - "ObjectId": "966707d0-3269-4727-9be2-8c3a10f19b9d" - }, - { - "ExtensionData": {}, - "Description": "Manage all aspects of Entra Permissions Management.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Permissions Management Administrator", - "ObjectId": "af78dc32-cf4d-46f9-ba4e-4428526346b5" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the Power BI product.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Power BI Administrator", - "ObjectId": "a9ea8996-122f-4c74-9520-8edcd192826c" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage all aspects of Microsoft Dynamics 365, PowerApps and Microsoft Flow.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Power Platform Administrator", - "ObjectId": "11648597-926c-4cf3-9c36-bcebb0ba8dcc" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of printers and printer connectors.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Printer Administrator", - "ObjectId": "644ef478-e28f-4e28-b9dc-3fdde9aa0b1f" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of printers and printer connectors.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Printer Technician", - "ObjectId": "e8cef6f1-e4bd-4ea8-bc07-4b8d950f4477" - }, - { - "ExtensionData": {}, - "Description": "Allowed to view, set and reset authentication method information for any user (admin or non-admin).", - "IsEnabled": true, - "IsSystem": true, - "Name": "Privileged Authentication Administrator", - "ObjectId": "7be44c8a-adaf-4e2a-84d6-ab2649e08a13" - }, - { - "ExtensionData": {}, - "Description": "Can manage role assignments in Azure AD, and all aspects of Privileged Identity Management.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Privileged Role Administrator", - "ObjectId": "e8611ab8-c189-46e8-94e1-60213ab1f814" - }, - { - "ExtensionData": {}, - "Description": "Can read sign-in and audit reports.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Reports Reader", - "ObjectId": "4a5d8f65-41da-4de4-8968-e035b65339cf" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage all aspects of Microsoft Search settings.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Search Administrator", - "ObjectId": "0964bb5e-9bdb-4d7b-ac29-58e794862a40" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage the editorial content such as bookmarks, Q and As, locations, floorplan.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Search Editor", - "ObjectId": "8835291a-918c-4fd7-a9ce-faa49f0cf7d9" - }, - { - "ExtensionData": {}, - "Description": "Security Administrator allows ability to read and manage security configuration and reports.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Security Administrator", - "ObjectId": "194ae4cb-b126-40b2-bd5b-6091b380977d" - }, - { - "ExtensionData": {}, - "Description": "Creates and manages security events.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Security Operator", - "ObjectId": "5f2222b1-57c3-48ba-8ad5-d4759f1fde6f" - }, - { - "ExtensionData": {}, - "Description": "Can read security information and reports in Azure AD and Office 365.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Security Reader", - "ObjectId": "5d6b6bb7-de71-4623-b4af-96380a352509" - }, - { - "ExtensionData": {}, - "Description": "Can read service health information and manage support tickets.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Service Support Administrator", - "ObjectId": "f023fd81-a637-4b56-95fd-791ac0226033" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the SharePoint service.", - "IsEnabled": true, - "IsSystem": true, - "Name": "SharePoint Administrator", - "ObjectId": "f28a1f50-f6e7-4571-818b-6a12f2af6b6c" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the Skype for Business product.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Skype for Business Administrator", - "ObjectId": "75941009-915a-4869-abe7-691bff18279e" - }, - { - "ExtensionData": {}, - "Description": "Can manage the Microsoft Teams service.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Teams Administrator", - "ObjectId": "69091246-20e8-4a56-aa4d-066075b2a7a8" - }, - { - "ExtensionData": {}, - "Description": "Can manage calling and meetings features within the Microsoft Teams service.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Teams Communications Administrator", - "ObjectId": "baf37b3a-610e-45da-9e62-d9d1e5e8914b" - }, - { - "ExtensionData": {}, - "Description": "Can troubleshoot communications issues within Teams using advanced tools.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Teams Communications Support Engineer", - "ObjectId": "f70938a0-fc10-4177-9e90-2178f8765737" - }, - { - "ExtensionData": {}, - "Description": "Can troubleshoot communications issues within Teams using basic tools.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Teams Communications Support Specialist", - "ObjectId": "fcf91098-03e3-41a9-b5ba-6f0ec8188a12" - }, - { - "ExtensionData": {}, - "Description": "Can perform management related tasks on Teams certified devices.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Teams Devices Administrator", - "ObjectId": "3d762c5a-1b6c-493f-843e-55a3b42923d4" - }, - { - "ExtensionData": {}, - "Description": "Can see only tenant level aggregates in Microsoft 365 Usage Analytics and Productivity Score.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Usage Summary Reports Reader", - "ObjectId": "75934031-6c7e-415a-99d7-48dbd49e875e" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of users and groups, including resetting passwords for limited admins.", - "IsEnabled": true, - "IsSystem": true, - "Name": "User Administrator", - "ObjectId": "fe930be7-5e62-47db-91af-98c3a49a38b1" - }, - { - "ExtensionData": {}, - "Description": "Manage and share Virtual Visits information and metrics from admin centers or the Virtual Visits app.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Virtual Visits Administrator", - "ObjectId": "e300d9e7-4a2b-4295-9eff-f1c78b36cc98" - }, - { - "ExtensionData": {}, - "Description": "Manage and configure all aspects of Microsoft Viva Goals.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Viva Goals Administrator", - "ObjectId": "92b086b3-e367-4ef2-b869-1de128fb986e" - }, - { - "ExtensionData": {}, - "Description": "Can manage all settings for Microsoft Viva Pulse app.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Viva Pulse Administrator", - "ObjectId": "87761b17-1ed2-4af3-9acd-92a150038160" - }, - { - "ExtensionData": {}, - "Description": "Can provision and manage all aspects of Cloud PCs.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Windows 365 Administrator", - "ObjectId": "11451d60-acb2-45eb-a7d6-43d0f0125c13" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage all aspects of Windows Update deployments through the Windows Update for Business deployment service.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Windows Update Deployment Administrator", - "ObjectId": "32696413-001a-46ae-978c-ce0f6b3620d2" - }, - { - "ExtensionData": {}, - "Description": "Workplace Device Join", - "IsEnabled": true, - "IsSystem": true, - "Name": "Workplace Device Join", - "ObjectId": "c34f683f-4d5a-4403-affd-6615e00e3a7f" - }, - { - "ExtensionData": {}, - "Description": "Manage all aspects of Yammer.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Yammer Administrator", - "ObjectId": "810a2642-a034-447f-a5e8-41beaa378541" - } -] diff --git a/public/MFAStates.json b/public/MFAStates.json deleted file mode 100644 index fcaf8dc6ceb3..000000000000 --- a/public/MFAStates.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "value": "disabled", - "label": "Disabled" - }, - { - "value": "enabled", - "label": "Enabled" - }, - { - "value": "enforced", - "label": "Enforced" - } -] diff --git a/public/PermissionsList.json b/public/PermissionsList.json deleted file mode 100644 index c91c29126036..000000000000 --- a/public/PermissionsList.json +++ /dev/null @@ -1,7973 +0,0 @@ -[ - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.", - "displayName": "Read all access reviews", - "id": "d07a8cc0-3d51-4b77-b3b0-32704d1f69fa", - "isEnabled": true, - "origin": "Application", - "value": "AccessReview.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.", - "displayName": "Manage all access reviews", - "id": "ef5f7d5c-338f-44b0-86c3-351f46c8bb5f", - "isEnabled": true, - "origin": "Application", - "value": "AccessReview.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization for group and app memberships, without a signed-in user.", - "displayName": "Manage access reviews for group and app memberships", - "id": "18228521-a591-40f1-b215-5fad4488c117", - "isEnabled": true, - "origin": "Application", - "value": "AccessReview.ReadWrite.Membership" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows an app to read all acronyms without a signed-in user.", - "displayName": "Read all acronyms", - "id": "8c0aed2c-0c61-433d-b63c-6370ddc73248", - "isEnabled": true, - "origin": "Application", - "value": "Acronym.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read administrative units and administrative unit membership without a signed-in user.", - "displayName": "Read all administrative units", - "id": "134fd756-38ce-4afd-ba33-e9623dbe66c2", - "isEnabled": true, - "origin": "Application", - "value": "AdministrativeUnit.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.", - "displayName": "Read and write all administrative units", - "id": "5eb59dd3-1da2-4329-8733-9dabdc435916", - "isEnabled": true, - "origin": "Application", - "value": "AdministrativeUnit.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read terms of use agreements, without a signed in user.", - "displayName": "Read all terms of use agreements", - "id": "2f3e6f8c-093b-4c57-a58b-ba5ce494a169", - "isEnabled": true, - "origin": "Application", - "value": "Agreement.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write terms of use agreements, without a signed in user.", - "displayName": "Read and write all terms of use agreements", - "id": "c9090d00-6101-42f0-a729-c41074260d47", - "isEnabled": true, - "origin": "Application", - "value": "Agreement.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read terms of use acceptance statuses, without a signed in user.", - "displayName": "Read all terms of use acceptance statuses", - "id": "d8e4ec18-f6c0-4620-8122-c8b1f2bf400e", - "isEnabled": true, - "origin": "Application", - "value": "AgreementAcceptance.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the API connectors used in user authentication flows, without a signed-in user.", - "displayName": "Read API connectors for authentication flows", - "id": "b86848a7-d5b1-41eb-a9b4-54a4e6306e97", - "isEnabled": true, - "origin": "Application", - "value": "APIConnectors.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read, create and manage the API connectors used in user authentication flows, without a signed-in user.", - "displayName": "Read and write API connectors for authentication flows", - "id": "1dfe531a-24a6-4f1b-80f4-7a0dc5a0a171", - "isEnabled": true, - "origin": "Application", - "value": "APIConnectors.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read apps in the app catalogs without a signed-in user.", - "displayName": "Read all app catalogs", - "id": "e12dae10-5a57-4817-b79d-dfbec5348930", - "isEnabled": true, - "origin": "Application", - "value": "AppCatalog.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.", - "displayName": "Read and write to all app catalogs", - "id": "dc149144-f292-421e-b185-5953f2e98d7f", - "isEnabled": true, - "origin": "Application", - "value": "AppCatalog.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write the remote desktop security configuration for all apps in your organization, without a signed-in user.", - "displayName": "Read and write the remote desktop security configuration for all apps", - "id": "3be0012a-cc4e-426b-895b-f9c836bf6381", - "isEnabled": true, - "origin": "Application", - "value": "Application-RemoteDesktopConfig.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all applications and service principals without a signed-in user.", - "displayName": "Read all applications", - "id": "9a5d68dd-52b0-4cc2-bd40-abcf44ac3a30", - "isEnabled": true, - "origin": "Application", - "value": "Application.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.", - "displayName": "Read and write all applications", - "id": "1bfefb4e-e0b5-418b-a88f-73c46d2cc8e9", - "isEnabled": true, - "origin": "Application", - "value": "Application.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user.  It cannot update any apps that it is not an owner of.", - "displayName": "Manage apps that this app creates or owns", - "id": "18a4783c-866b-4cc7-a460-3d5e5662c884", - "isEnabled": true, - "origin": "Application", - "value": "Application.ReadWrite.OwnedBy" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to manage permission grants for application permissions to any API (including Microsoft Graph) and application assignments for any app, without a signed-in user.", - "displayName": "Manage app permission grants and app role assignments", - "id": "06b708a9-e830-4db3-a914-8e69da51d44f", - "isEnabled": true, - "origin": "Application", - "value": "AppRoleAssignment.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read attack simulation and training data for an organization without a signed-in user.", - "displayName": "Read attack simulation data of an organization", - "id": "93283d0a-6322-4fa8-966b-8c121624760d", - "isEnabled": true, - "origin": "Application", - "value": "AttackSimulation.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read, create, and update attack simulation and training data for an organization without a signed-in user.", - "displayName": "Read, create, and update all attack simulation data of an organization", - "id": "e125258e-8c8a-42a8-8f55-ab502afa52f3", - "isEnabled": true, - "origin": "Application", - "value": "AttackSimulation.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and query your audit log activities, without a signed-in user.", - "displayName": "Read all audit log data", - "id": "b0afded3-3588-46d8-8b3d-9842eff778da", - "isEnabled": true, - "origin": "Application", - "value": "AuditLog.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the authentication context information in your organization without a signed-in user.", - "displayName": "Read all authentication context information", - "id": "381f742f-e1f8-4309-b4ab-e3d91ae4c5c1", - "isEnabled": true, - "origin": "Application", - "value": "AuthenticationContext.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and update the authentication context information in your organization without a signed-in user.", - "displayName": "Read and write all authentication context information", - "id": "a88eef72-fed0-4bf7-a2a9-f19df33f8b83", - "isEnabled": true, - "origin": "Application", - "value": "AuthenticationContext.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write the billing configuration on all applications without a signed-in user. ", - "displayName": "Read and write application billing configuration", - "id": "9e8be751-7eee-4c09-bcfd-d64f6b087fd8", - "isEnabled": true, - "origin": "Application", - "value": "BillingConfiguration.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ", - "displayName": "Read all Bookings related resources.", - "id": "6e98f277-b046-4193-a4f2-6bf6a78cd491", - "isEnabled": true, - "origin": "Application", - "value": "Bookings.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ", - "displayName": "Read and write all Bookings related resources.", - "id": "9769393e-5a9f-4302-9e3d-7e018ecb64a7", - "isEnabled": true, - "origin": "Application", - "value": "BookingsAppointment.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows an app to read all bookmarks without a signed-in user.", - "displayName": "Read all bookmarks", - "id": "be95e614-8ef3-49eb-8464-1c9503433b86", - "isEnabled": true, - "origin": "Application", - "value": "Bookmark.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows an app to read all browser site lists configured for your organization, without a signed-in user.", - "displayName": "Read all browser site lists for your organization", - "id": "c5ee1f21-fc7f-4937-9af0-c91648ff9597", - "isEnabled": true, - "origin": "Application", - "value": "BrowserSiteLists.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows an app to read and write all browser site lists configured for your organization, without a signed-in user.", - "displayName": "Read and write all browser site lists for your organization", - "id": "8349ca94-3061-44d5-9bfb-33774ea5e4f9", - "isEnabled": true, - "origin": "Application", - "value": "BrowserSiteLists.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the configurations of business scenarios it owns, without a signed-in user.", - "displayName": "Read all business scenario configurations this app creates or owns", - "id": "acc0fc4d-2cd6-4194-8700-1768d8423d86", - "isEnabled": true, - "origin": "Application", - "value": "BusinessScenarioConfig.Read.OwnedBy" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, without a signed-in user.", - "displayName": "Read and write all business scenario configurations this app creates or owns", - "id": "bbea195a-4c47-4a4f-bff2-cba399e11698", - "isEnabled": true, - "origin": "Application", - "value": "BusinessScenarioConfig.ReadWrite.OwnedBy" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the data associated with the business scenarios it owns, without a signed-in user.", - "displayName": "Read data for all business scenarios this app creates or owns", - "id": "6c0257fd-cffe-415b-8239-2d0d70fdaa9c", - "isEnabled": true, - "origin": "Application", - "value": "BusinessScenarioData.Read.OwnedBy" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to fully manage the data associated with the business scenarios it owns, without a signed-in user.", - "displayName": "Read and write data for all business scenarios this app creates or owns", - "id": "f2d21f22-5d80-499e-91cc-0a8a4ce16f54", - "isEnabled": true, - "origin": "Application", - "value": "BusinessScenarioData.ReadWrite.OwnedBy" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read events of all calendars without a signed-in user.", - "displayName": "Read calendars in all mailboxes", - "id": "798ee544-9d2d-430c-a058-570e29e34338", - "isEnabled": true, - "origin": "Application", - "value": "Calendars.Read" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read events of all calendars, except for properties such as body, attachments, and extensions, without a signed-in user.", - "displayName": "Read basic details of calendars in all mailboxes ", - "id": "8ba4a692-bc31-4128-9094-475872af8a53", - "isEnabled": true, - "origin": "Application", - "value": "Calendars.ReadBasic.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create, read, update, and delete events of all calendars without a signed-in user.", - "displayName": "Read and write calendars in all mailboxes", - "id": "ef54d2bf-783f-4e0f-bca1-3210c0444d99", - "isEnabled": true, - "origin": "Application", - "value": "Calendars.ReadWrite" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read call event information for all users in your organizatio, without a signed-in user.", - "displayName": "Read all call events", - "id": "1abb026f-7572-49f6-9ddd-ad61cbba181e", - "isEnabled": true, - "origin": "Application", - "value": "CallEvents.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all PSTN and direct routing call log data without a signed-in user.", - "displayName": "Read PSTN and direct routing call log data", - "id": "a2611786-80b3-417e-adaa-707d4261a5f0", - "isEnabled": true, - "origin": "Application", - "value": "CallRecord-PstnCalls.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read call records for all calls and online meetings without a signed-in user.", - "displayName": "Read all call records", - "id": "45bbb07e-7321-4fd7-a8f6-3ff27e6a81c8", - "isEnabled": true, - "origin": "Application", - "value": "CallRecords.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to get direct access to media streams in a call, without a signed-in user.", - "displayName": "Access media streams in a call as an app", - "id": "a7a681dc-756e-4909-b988-f160edc6655f", - "isEnabled": true, - "origin": "Application", - "value": "Calls.AccessMedia.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to place outbound calls to a single user and transfer calls to users in your organization’s directory, without a signed-in user.", - "displayName": "Initiate outgoing 1 to 1 calls from the app", - "id": "284383ee-7f6e-4e40-a2a8-e85dcb029101", - "isEnabled": true, - "origin": "Application", - "value": "Calls.Initiate.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to place outbound calls to multiple users and add participants to meetings in your organization, without a signed-in user.", - "displayName": "Initiate outgoing group calls from the app", - "id": "4c277553-8a09-487b-8023-29ee378d8324", - "isEnabled": true, - "origin": "Application", - "value": "Calls.InitiateGroupCall.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to join group calls and scheduled meetings in your organization, without a signed-in user.  The app will be joined with the privileges of a directory user to meetings in your organization.", - "displayName": "Join group calls and meetings as an app", - "id": "f6b49018-60ab-4f81-83bd-22caeabfed2d", - "isEnabled": true, - "origin": "Application", - "value": "Calls.JoinGroupCall.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to anonymously join group calls and scheduled meetings in your organization, without a signed-in user.  The app will be joined as a guest to meetings in your organization.", - "displayName": "Join group calls and meetings as a guest", - "id": "fd7ccf6b-3d28-418b-9701-cd10f5cd2fd4", - "isEnabled": true, - "origin": "Application", - "value": "Calls.JoinGroupCallAsGuest.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Create channels in any team, without a signed-in user.", - "displayName": "Create channels", - "id": "f3a65bd4-b703-46df-8f7e-0174fea562aa", - "isEnabled": true, - "origin": "Application", - "value": "Channel.Create" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Delete channels in any team, without a signed-in user.", - "displayName": "Delete channels", - "id": "6a118a39-1227-45d4-af0c-ea7b40d210bc", - "isEnabled": true, - "origin": "Application", - "value": "Channel.Delete.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Read all channel names and channel descriptions, without a signed-in user.", - "displayName": "Read the names and descriptions of all channels", - "id": "59a6b24b-4225-4393-8165-ebaec5f55d7a", - "isEnabled": true, - "origin": "Application", - "value": "Channel.ReadBasic.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Read the members of all channels, without a signed-in user.", - "displayName": "Read the members of all channels", - "id": "3b55498e-47ec-484f-8136-9013221c06a9", - "isEnabled": true, - "origin": "Application", - "value": "ChannelMember.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Add and remove members from all channels, without a signed-in user. Also allows changing a member's role, for example from owner to non-owner.", - "displayName": "Add and remove members from all channels", - "id": "35930dcf-aceb-4bd1-b99a-8ffed403c974", - "isEnabled": true, - "origin": "Application", - "value": "ChannelMember.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all channel messages in Microsoft Teams", - "displayName": "Read all channel messages", - "id": "7b2449af-6ccd-4f4d-9f78-e550c193f0d1", - "isEnabled": true, - "origin": "Application", - "value": "ChannelMessage.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to update Microsoft Teams channel messages by patching a set of Data Loss Prevention (DLP) policy violation properties to handle the output of DLP processing.", - "displayName": "Flag channel messages for violating policy", - "id": "4d02b0cc-d90b-441f-8d82-4fb55c34d6bb", - "isEnabled": true, - "origin": "Application", - "value": "ChannelMessage.UpdatePolicyViolation.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Read all channel names, channel descriptions, and channel settings, without a signed-in user.", - "displayName": "Read the names, descriptions, and settings of all channels", - "id": "c97b873f-f59f-49aa-8a0e-52b32d762124", - "isEnabled": true, - "origin": "Application", - "value": "ChannelSettings.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Read and write the names, descriptions, and settings of all channels, without a signed-in user.", - "displayName": "Read and write the names, descriptions, and settings of all channels", - "id": "243cded2-bd16-4fd6-a953-ff8177894c3d", - "isEnabled": true, - "origin": "Application", - "value": "ChannelSettings.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create chats without a signed-in user. ", - "displayName": "Create chats", - "id": "d9c48af6-9ad9-47ad-82c3-63757137b9af", - "isEnabled": true, - "origin": "Application", - "value": "Chat.Create" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to delete and recover deleted chats, without a signed-in user.", - "displayName": "Delete and recover deleted chats", - "id": "9c7abde0-eacd-4319-bf9e-35994b1a1717", - "isEnabled": true, - "origin": "Application", - "value": "Chat.ManageDeletion.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.", - "displayName": "Read all chat messages", - "id": "6b7d71aa-70aa-4810-a8d9-5d9fb2830017", - "isEnabled": true, - "origin": "Application", - "value": "Chat.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all one-to-one or group chat messages in Microsoft Teams for chats where the associated Teams application is installed, without a signed-in user.", - "displayName": "Read all chat messages for chats where the associated Teams application is installed.", - "id": "1c1b4c8e-3cc7-4c58-8470-9b92c9d5848b", - "isEnabled": true, - "origin": "Application", - "value": "Chat.Read.WhereInstalled" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Read names and members of all one-to-one and group chats in Microsoft Teams, without a signed-in user.", - "displayName": "Read names and members of all chat threads", - "id": "b2e060da-3baf-4687-9611-f4ebc0f0cbde", - "isEnabled": true, - "origin": "Application", - "value": "Chat.ReadBasic.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read names and members of all one-to-one and group chats in Microsoft Teams where the associated Teams application is installed, without a signed-in user.", - "displayName": "Read names and members of all chat threads where the associated Teams application is installed.", - "id": "818ba5bd-5b3e-4fe0-bbe6-aa4686669073", - "isEnabled": true, - "origin": "Application", - "value": "Chat.ReadBasic.WhereInstalled" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.", - "displayName": "Read and write all chat messages", - "id": "294ce7c9-31ba-490a-ad7d-97a7d075e4ed", - "isEnabled": true, - "origin": "Application", - "value": "Chat.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write all chat messages in Microsoft Teams for chats where the associated Teams application is installed, without a signed-in user.", - "displayName": "Read and write all chat messages for chats where the associated Teams application is installed.", - "id": "ad73ce80-f3cd-40ce-b325-df12c33df713", - "isEnabled": true, - "origin": "Application", - "value": "Chat.ReadWrite.WhereInstalled" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to update Microsoft Teams 1-to-1 or group chat messages by patching a set of Data Loss Prevention (DLP) policy violation properties to handle the output of DLP processing.", - "displayName": "Flag chat messages for violating policy", - "id": "7e847308-e030-4183-9899-5235d7270f58", - "isEnabled": true, - "origin": "Application", - "value": "Chat.UpdatePolicyViolation.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Read the members of all chats, without a signed-in user.", - "displayName": "Read the members of all chats", - "id": "a3410be2-8e48-4f32-8454-c29a7465209d", - "isEnabled": true, - "origin": "Application", - "value": "ChatMember.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the members of all chats where the associated Teams application is installed, without a signed-in user.", - "displayName": "Read the members of all chats where the associated Teams application is installed.", - "id": "93e7c9e4-54c5-4a41-b796-f2a5adaacda7", - "isEnabled": true, - "origin": "Application", - "value": "ChatMember.Read.WhereInstalled" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Add and remove members from all chats, without a signed-in user.", - "displayName": "Add and remove members from all chats", - "id": "57257249-34ce-4810-a8a2-a03adf0c5693", - "isEnabled": true, - "origin": "Application", - "value": "ChatMember.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to add and remove members from all chats where the associated Teams application is installed, without a signed-in user.", - "displayName": "Add and remove members from all chats where the associated Teams application is installed.", - "id": "e32c2cd9-0124-4e44-88fc-772cd98afbdb", - "isEnabled": true, - "origin": "Application", - "value": "ChatMember.ReadWrite.WhereInstalled" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all one-to-one and group chats messages in Microsoft Teams, without a signed-in user.", - "displayName": "Read all chat messages", - "id": "b9bb2381-47a4-46cd-aafb-00cb12f68504", - "isEnabled": true, - "origin": "Application", - "value": "ChatMessage.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all details of discovered cloud apps in the organization, without a signed-in user.", - "displayName": "Read all discovered cloud applications data", - "id": "64a59178-dad3-4673-89db-84fdcd622fec", - "isEnabled": true, - "origin": "Application", - "value": "CloudApp-Discovery.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the properties of Cloud PCs, without a signed-in user.", - "displayName": "Read Cloud PCs", - "id": "a9e09520-8ed4-4cde-838e-4fdea192c227", - "isEnabled": true, - "origin": "Application", - "value": "CloudPC.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.", - "displayName": "Read and write Cloud PCs", - "id": "3b4349e1-8cf5-45a3-95b7-69d1751d3e6a", - "isEnabled": true, - "origin": "Application", - "value": "CloudPC.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read consent requests and approvals without a signed-in user.", - "displayName": "Read all consent requests", - "id": "1260ad83-98fb-4785-abbb-d6cc1806fd41", - "isEnabled": true, - "origin": "Application", - "value": "ConsentRequest.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read app consent requests and approvals, and deny or approve those requests without a signed-in user.", - "displayName": "Read and write all consent requests", - "id": "9f1b81a7-0223-4428-bfa4-0bcb5535f27d", - "isEnabled": true, - "origin": "Application", - "value": "ConsentRequest.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all contacts in all mailboxes without a signed-in user.", - "displayName": "Read contacts in all mailboxes", - "id": "089fe4d0-434a-44c5-8827-41ba8a0b17f5", - "isEnabled": true, - "origin": "Application", - "value": "Contacts.Read" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create, read, update, and delete all contacts in all mailboxes without a signed-in user.", - "displayName": "Read and write contacts in all mailboxes", - "id": "6918b873-d17a-4dc1-b314-35f528134491", - "isEnabled": true, - "origin": "Application", - "value": "Contacts.ReadWrite" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to obtain basic tenant information about another target tenant within the Azure AD ecosystem without a signed-in user.", - "displayName": "Read cross-tenant basic information", - "id": "cac88765-0581-4025-9725-5ebc13f729ee", - "isEnabled": true, - "origin": "Application", - "value": "CrossTenantInformation.ReadBasic.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to list and query any shared user profile information associated with the current tenant without a signed-in user.  It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant without a signed-in user.", - "displayName": "Read all shared cross-tenant user profiles and export their data", - "id": "8b919d44-6192-4f3d-8a3b-f86f8069ae3c", - "isEnabled": true, - "origin": "Application", - "value": "CrossTenantUserProfileSharing.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to list and query any shared user profile information associated with the current tenant without a signed-in user.  It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant without a signed-in user.", - "displayName": "Read all shared cross-tenant user profiles and export or delete their data", - "id": "306785c5-c09b-4ba0-a4ee-023f3da165cb", - "isEnabled": true, - "origin": "Application", - "value": "CrossTenantUserProfileSharing.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read your organization's custom authentication extensions without a signed-in user.", - "displayName": "Read all custom authentication extensions", - "id": "88bb2658-5d9e-454f-aacd-a3933e079526", - "isEnabled": true, - "origin": "Application", - "value": "CustomAuthenticationExtension.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read or write your organization's custom authentication extensions without a signed-in user.", - "displayName": "Read and write all custom authentication extensions", - "id": "c2667967-7050-4e7e-b059-4cbbb3811d03", - "isEnabled": true, - "origin": "Application", - "value": "CustomAuthenticationExtension.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows custom authentication extensions associated with the app to receive HTTP requests triggered by an authentication event. The request can include information about a user, client and resource service principals, and other information about the authentication.", - "displayName": "Receive custom authentication extension HTTP requests", - "id": "214e810f-fda8-4fd7-a475-29461495eb00", - "isEnabled": true, - "origin": "Application", - "value": "CustomAuthenticationExtension.Receive.Payload" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read custom security attribute assignments for all principals in the tenant without a signed in user.", - "displayName": "Read custom security attribute assignments", - "id": "3b37c5a4-1226-493d-bec3-5d6c6b866f3f", - "isEnabled": true, - "origin": "Application", - "value": "CustomSecAttributeAssignment.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write custom security attribute assignments for all principals in the tenant without a signed in user.", - "displayName": "Read and write custom security attribute assignments", - "id": "de89b5e4-5b8f-48eb-8925-29c2b33bd8bd", - "isEnabled": true, - "origin": "Application", - "value": "CustomSecAttributeAssignment.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all audit logs for events that contain information about custom security attributes, without a signed-in user.", - "displayName": "Read all custom security attribute audit logs", - "id": "2a4f026d-e829-4e84-bdbf-d981a2703059", - "isEnabled": true, - "origin": "Application", - "value": "CustomSecAttributeAuditLogs.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read custom security attribute definitions for the tenant without a signed in user.", - "displayName": "Read custom security attribute definitions", - "id": "b185aa14-d8d2-42c1-a685-0f5596613624", - "isEnabled": true, - "origin": "Application", - "value": "CustomSecAttributeDefinition.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write custom security attribute definitions for the tenant without a signed in user.", - "displayName": "Read and write custom security attribute definitions", - "id": "12338004-21f4-4896-bf5e-b75dfaf1016d", - "isEnabled": true, - "origin": "Application", - "value": "CustomSecAttributeDefinition.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.", - "displayName": "Read Delegated Admin relationships with customers", - "id": "f6e9e124-4586-492f-adc0-c6f96e4823fd", - "isEnabled": true, - "origin": "Application", - "value": "DelegatedAdminRelationship.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.", - "displayName": "Manage Delegated Admin relationships with customers", - "id": "cc13eba4-8cd8-44c6-b4d4-f93237adce58", - "isEnabled": true, - "origin": "Application", - "value": "DelegatedAdminRelationship.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all delegated permission grants, without a signed-in user.", - "displayName": "Read all delegated permission grants", - "id": "81b4724a-58aa-41c1-8a55-84ef97466587", - "isEnabled": true, - "origin": "Application", - "value": "DelegatedPermissionGrant.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to manage permission grants for delegated permissions exposed by any API (including Microsoft Graph), without a signed-in user.", - "displayName": "Manage all delegated permission grants", - "id": "8e8e4742-1d95-4f68-9d56-6ee75648c72a", - "isEnabled": true, - "origin": "Application", - "value": "DelegatedPermissionGrant.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read your organization's devices' configuration information without a signed-in user.", - "displayName": "Read all devices", - "id": "7438b122-aefc-4978-80ed-43db9fcc7715", - "isEnabled": true, - "origin": "Application", - "value": "Device.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.", - "displayName": "Read and write devices", - "id": "1138cb37-bd11-4084-a2b7-9f71582aeddb", - "isEnabled": true, - "origin": "Application", - "value": "Device.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read device local credential properties including passwords, without a signed-in user.", - "displayName": "Read device local credential passwords", - "id": "884b599e-4d48-43a5-ba94-15c414d00588", - "isEnabled": true, - "origin": "Application", - "value": "DeviceLocalCredential.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read device local credential properties excluding passwords, without a signed-in user.", - "displayName": "Read device local credential properties", - "id": "db51be59-e728-414b-b800-e0f010df1a79", - "isEnabled": true, - "origin": "Application", - "value": "DeviceLocalCredential.ReadBasic.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "displayName": "Read Microsoft Intune apps", - "id": "7a6ee1e7-141e-4cec-ae74-d9db155731ff", - "isEnabled": true, - "origin": "Application", - "value": "DeviceManagementApps.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "displayName": "Read and write Microsoft Intune apps", - "id": "78145de6-330d-4800-a6ce-494ff2d33d07", - "isEnabled": true, - "origin": "Application", - "value": "DeviceManagementApps.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "displayName": "Read Microsoft Intune device configuration and policies", - "id": "dc377aa6-52d8-4e23-b271-2a7ae04cedf3", - "isEnabled": true, - "origin": "Application", - "value": "DeviceManagementConfiguration.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "displayName": "Read and write Microsoft Intune device configuration and policies", - "id": "9241abd9-d0e6-425a-bd4f-47ba86e767a4", - "isEnabled": true, - "origin": "Application", - "value": "DeviceManagementConfiguration.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to perform remote high impact actions such as wiping the device or resetting the passcode on devices managed by Microsoft Intune, without a signed-in user.", - "displayName": "Perform user-impacting remote actions on Microsoft Intune devices", - "id": "5b07b0dd-2377-4e44-a38d-703f09a0dc3c", - "isEnabled": true, - "origin": "Application", - "value": "DeviceManagementManagedDevices.PrivilegedOperations.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", - "displayName": "Read Microsoft Intune devices", - "id": "2f51be20-0bb4-4fed-bf7b-db946066c75e", - "isEnabled": true, - "origin": "Application", - "value": "DeviceManagementManagedDevices.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", - "displayName": "Read and write Microsoft Intune devices", - "id": "243333ab-4d21-40cb-a475-36241daa0842", - "isEnabled": true, - "origin": "Application", - "value": "DeviceManagementManagedDevices.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.", - "displayName": "Read Microsoft Intune RBAC settings", - "id": "58ca0d9a-1575-47e1-a3cb-007ef2e4583b", - "isEnabled": true, - "origin": "Application", - "value": "DeviceManagementRBAC.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.", - "displayName": "Read and write Microsoft Intune RBAC settings", - "id": "e330c4f0-4170-414e-a55a-2f022ec2b57b", - "isEnabled": true, - "origin": "Application", - "value": "DeviceManagementRBAC.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", - "displayName": "Read Microsoft Intune configuration", - "id": "06a5fe6d-c49d-46a7-b082-56b1b14103c7", - "isEnabled": true, - "origin": "Application", - "value": "DeviceManagementServiceConfig.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", - "displayName": "Read and write Microsoft Intune configuration", - "id": "5ac13192-7ace-4fcf-b828-1a26f28068ee", - "isEnabled": true, - "origin": "Application", - "value": "DeviceManagementServiceConfig.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.", - "displayName": "Read directory data", - "id": "7ab1d382-f21e-4acd-a863-ba3e13f7da61", - "isEnabled": true, - "origin": "Application", - "value": "Directory.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.", - "displayName": "Read and write directory data", - "id": "19dbc75e-c2e2-444c-a770-ec69d8559fc7", - "isEnabled": true, - "origin": "Application", - "value": "Directory.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to manage restricted resources based on the other permissions granted to the app, without a signed-in user.", - "displayName": "Manage restricted resources in the directory", - "id": "f20584af-9290-4153-9280-ff8bb2c0ea7f", - "isEnabled": true, - "origin": "Application", - "value": "Directory.Write.Restricted" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all Azure AD recommendations, without a signed-in user. ", - "displayName": "Read all Azure AD recommendations", - "id": "ae73097b-cb2a-4447-b064-5d80f6093921", - "isEnabled": true, - "origin": "Application", - "value": "DirectoryRecommendations.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and update all Azure AD recommendations, without a signed-in user. ", - "displayName": "Read and update all Azure AD recommendations", - "id": "0e9eea12-4f01-45f6-9b8d-3ea4c8144158", - "isEnabled": true, - "origin": "Application", - "value": "DirectoryRecommendations.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all domain properties without a signed-in user.", - "displayName": "Read domains", - "id": "dbb9058a-0e50-45d7-ae91-66909b5d4664", - "isEnabled": true, - "origin": "Application", - "value": "Domain.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write all domain properties without a signed in user.  Also allows the app to add,  verify and remove domains.", - "displayName": "Read and write domains", - "id": "7e05723c-0bb0-42da-be95-ae9f08a6e53c", - "isEnabled": true, - "origin": "Application", - "value": "Domain.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects without a signed-in user.", - "displayName": "Read all eDiscovery objects", - "id": "50180013-6191-4d1e-a373-e590ff4e66af", - "isEnabled": true, - "origin": "Application", - "value": "eDiscovery.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects without a signed-in user.", - "displayName": "Read and write all eDiscovery objects", - "id": "b2620db1-3bf7-4c5b-9cb9-576d29eac736", - "isEnabled": true, - "origin": "Application", - "value": "eDiscovery.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Read the state and settings of all Microsoft education apps.", - "displayName": "Read Education app settings", - "id": "7c9db06a-ec2d-4e7b-a592-5a1e30992566", - "isEnabled": true, - "origin": "Application", - "value": "EduAdministration.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Manage the state and settings of all Microsoft education apps.", - "displayName": "Manage education app settings", - "id": "9bc431c3-b8bc-4a8d-a219-40f10f92eff6", - "isEnabled": true, - "origin": "Application", - "value": "EduAdministration.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all class assignments with grades for all users without a signed-in user.", - "displayName": "Read all class assignments with grades", - "id": "4c37e1b6-35a1-43bf-926a-6f30f2cdf585", - "isEnabled": true, - "origin": "Application", - "value": "EduAssignments.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all class assignments without grades for all users without a signed-in user.", - "displayName": "Read all class assignments without grades", - "id": "6e0a958b-b7fc-4348-b7c4-a6ab9fd3dd0e", - "isEnabled": true, - "origin": "Application", - "value": "EduAssignments.ReadBasic.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.", - "displayName": "Create, read, update and delete all class assignments with grades", - "id": "0d22204b-6cad-4dd0-8362-3e3f2ae699d9", - "isEnabled": true, - "origin": "Application", - "value": "EduAssignments.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.", - "displayName": "Create, read, update and delete all class assignments without grades", - "id": "f431cc63-a2de-48c4-8054-a34bc093af84", - "isEnabled": true, - "origin": "Application", - "value": "EduAssignments.ReadWriteBasic.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all modules and resources, without a signed-in user.", - "displayName": "Read all class modules and resources", - "id": "6cdb464c-3a03-40f8-900b-4cb7ea1da9c0", - "isEnabled": true, - "origin": "Application", - "value": "EduCurricula.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write all modules and resources, without a signed-in user.", - "displayName": "Read and write all class modules and resources", - "id": "6a0c2318-d59d-4c7d-bf2e-5f3902dc2593", - "isEnabled": true, - "origin": "Application", - "value": "EduCurricula.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.", - "displayName": "Read the organization's roster", - "id": "e0ac9e1b-cb65-4fc5-87c5-1a8bc181f648", - "isEnabled": true, - "origin": "Application", - "value": "EduRoster.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read a limited subset of properties from both the structure of schools and classes in the organization's roster and education-specific information about all users. Includes name, status, role, email address and photo.", - "displayName": "Read a limited subset of the organization's roster", - "id": "0d412a8c-a06c-439f-b3ec-8abcf54d2f96", - "isEnabled": true, - "origin": "Application", - "value": "EduRoster.ReadBasic.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.", - "displayName": "Read and write the organization's roster", - "id": "d1808e82-ce13-47af-ae0d-f9b254e6d58a", - "isEnabled": true, - "origin": "Application", - "value": "EduRoster.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read access packages and related entitlement management resources without a signed-in user.", - "displayName": "Read all entitlement management resources", - "id": "c74fd47d-ed3c-45c3-9a9e-b8676de685d2", - "isEnabled": true, - "origin": "Application", - "value": "EntitlementManagement.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.", - "displayName": "Read and write all entitlement management resources", - "id": "9acd699f-1e81-4958-b001-93b1d2506e19", - "isEnabled": true, - "origin": "Application", - "value": "EntitlementManagement.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read your organization's authentication event listeners without a signed-in user.", - "displayName": "Read all authentication event listeners", - "id": "b7f6385c-6ce6-4639-a480-e23c42ed9784", - "isEnabled": true, - "origin": "Application", - "value": "EventListener.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read or write your organization's authentication event listeners without a signed-in user.", - "displayName": "Read and write all authentication event listeners", - "id": "0edf5e9e-4ce8-468a-8432-d08631d18c43", - "isEnabled": true, - "origin": "Application", - "value": "EventListener.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all external connections without a signed-in user.", - "displayName": "Read all external connections", - "id": "1914711b-a1cb-4793-b019-c2ce0ed21b8c", - "isEnabled": true, - "origin": "Application", - "value": "ExternalConnection.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write all external connections without a signed-in user.", - "displayName": "Read and write all external connections", - "id": "34c37bc0-2b40-4d5e-85e1-2365cd256d79", - "isEnabled": true, - "origin": "Application", - "value": "ExternalConnection.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write external connections without a signed-in user. The app can only read and write external connections that it is authorized to, or it can create new external connections. ", - "displayName": "Read and write external connections", - "id": "f431331c-49a6-499f-be1c-62af19c34a9d", - "isEnabled": true, - "origin": "Application", - "value": "ExternalConnection.ReadWrite.OwnedBy" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all external items without a signed-in user.", - "displayName": "Read all external items", - "id": "7a7cffad-37d2-4f48-afa4-c6ab129adcc2", - "isEnabled": true, - "origin": "Application", - "value": "ExternalItem.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allow the app to read or write items in all external datasets that the app is authorized to access", - "displayName": "Read and write items in external datasets", - "id": "38c3d6ee-69ee-422f-b954-e17819665354", - "isEnabled": true, - "origin": "Application", - "value": "ExternalItem.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write external items without a signed-in user. The app can only read external items of the connection that it is authorized to.", - "displayName": "Read and write external items", - "id": "8116ae0f-55c2-452d-9944-d18420f5b2c8", - "isEnabled": true, - "origin": "Application", - "value": "ExternalItem.ReadWrite.OwnedBy" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all files in all site collections without a signed in user.", - "displayName": "Read files in all site collections", - "id": "01d4889c-1287-42c6-ac1f-5d1e02578ef6", - "isEnabled": true, - "origin": "Application", - "value": "Files.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read, create, update and delete all files in all site collections without a signed in user. ", - "displayName": "Read and write files in all site collections", - "id": "75359482-378d-4052-8f01-80520e7db3cd", - "isEnabled": true, - "origin": "Application", - "value": "Files.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create groups without a signed-in user.", - "displayName": "Create groups", - "id": "bf7b1a76-6e77-406b-b258-bf5c7720e98f", - "isEnabled": true, - "origin": "Application", - "value": "Group.Create" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.", - "displayName": "Read all groups", - "id": "5b567255-7703-4780-807c-7be8301ae99b", - "isEnabled": true, - "origin": "Application", - "value": "Group.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.", - "displayName": "Read and write all groups", - "id": "62a82d76-70ea-41e2-9197-370581804d09", - "isEnabled": true, - "origin": "Application", - "value": "Group.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.", - "displayName": "Read all group memberships", - "id": "98830695-27a2-44f7-8c18-0c3ebc9698f6", - "isEnabled": true, - "origin": "Application", - "value": "GroupMember.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to list groups, read basic properties, read and update the membership of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.", - "displayName": "Read and write all group memberships", - "id": "dbaae8cf-10b5-4b86-a4a1-f871c94c6695", - "isEnabled": true, - "origin": "Application", - "value": "GroupMember.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read your organization’s identity (authentication) providers’ properties without a signed in user.", - "displayName": "Read identity providers", - "id": "e321f0bb-e7f7-481e-bb28-e3b0b32d4bd0", - "isEnabled": true, - "origin": "Application", - "value": "IdentityProvider.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write your organization’s identity (authentication) providers’ properties without a signed in user.", - "displayName": "Read and write identity providers", - "id": "90db2b9a-d928-4d33-a4dd-8442ae3d41e4", - "isEnabled": true, - "origin": "Application", - "value": "IdentityProvider.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the identity risk event information for your organization without a signed in user.", - "displayName": "Read all identity risk event information", - "id": "6e472fd1-ad78-48da-a0f0-97ab2c6b769e", - "isEnabled": true, - "origin": "Application", - "value": "IdentityRiskEvent.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and update identity risk detection information for your organization without a signed-in user. Update operations include confirming risk event detections. ", - "displayName": "Read and write all risk detection information", - "id": "db06fb33-1953-4b7b-a2ac-f1e2c854f7ae", - "isEnabled": true, - "origin": "Application", - "value": "IdentityRiskEvent.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all risky service principal information for your organization, without a signed-in user.", - "displayName": "Read all identity risky service principal information", - "id": "607c7344-0eed-41e5-823a-9695ebe1b7b0", - "isEnabled": true, - "origin": "Application", - "value": "IdentityRiskyServicePrincipal.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and update identity risky service principal for your organization, without a signed-in user.", - "displayName": "Read and write all identity risky service principal information", - "id": "cb8d6980-6bcb-4507-afec-ed6de3a2d798", - "isEnabled": true, - "origin": "Application", - "value": "IdentityRiskyServicePrincipal.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the identity risky user information for your organization without a signed in user.", - "displayName": "Read all identity risky user information", - "id": "dc5007c0-2d7d-4c42-879c-2dab87571379", - "isEnabled": true, - "origin": "Application", - "value": "IdentityRiskyUser.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and update identity risky user information for your organization without a signed-in user.  Update operations include dismissing risky users.", - "displayName": "Read and write all risky user information", - "id": "656f6061-f9fe-4807-9708-6a2e0934df76", - "isEnabled": true, - "origin": "Application", - "value": "IdentityRiskyUser.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read your organization's user flows, without a signed-in user.", - "displayName": "Read all identity user flows", - "id": "1b0c317f-dd31-4305-9932-259a8b6e8099", - "isEnabled": true, - "origin": "Application", - "value": "IdentityUserFlow.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read or write your organization's user flows, without a signed-in user.", - "displayName": "Read and write all identity user flows", - "id": "65319a09-a2be-469d-8782-f6b07debf789", - "isEnabled": true, - "origin": "Application", - "value": "IdentityUserFlow.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read data connectors without a signed-in user.", - "displayName": "View data connector definitions", - "id": "7ab52c2f-a2ee-4d98-9ebc-725e3934aae2", - "isEnabled": true, - "origin": "Application", - "value": "IndustryData-DataConnector.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write data connectors without a signed-in user.", - "displayName": "Manage data connector definitions", - "id": "eda0971c-482e-4345-b28f-69c309cb8a34", - "isEnabled": true, - "origin": "Application", - "value": "IndustryData-DataConnector.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to upload data files to a data connector without a signed-in user.", - "displayName": "Upload files to a data connector", - "id": "9334c44b-a7c6-4350-8036-6bf8e02b4c1f", - "isEnabled": true, - "origin": "Application", - "value": "IndustryData-DataConnector.Upload" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read inbound data flows without a signed-in user.", - "displayName": "View inbound flow definitions", - "id": "305f6ba2-049a-4b1b-88bb-fe7e08758a00", - "isEnabled": true, - "origin": "Application", - "value": "IndustryData-InboundFlow.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write inbound data flows without a signed-in user.", - "displayName": "Manage inbound flow definitions", - "id": "e688c61f-d4c6-4d64-a197-3bcf6ba1d6ad", - "isEnabled": true, - "origin": "Application", - "value": "IndustryData-InboundFlow.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read reference definitions without a signed-in user.", - "displayName": "View reference definitions", - "id": "6ee891c3-74a4-4148-8463-0c834375dfaf", - "isEnabled": true, - "origin": "Application", - "value": "IndustryData-ReferenceDefinition.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read current and previous IndustryData runs without a signed-in user.", - "displayName": "View current and previous runs", - "id": "f6f5d10b-3024-4d1d-b674-aae4df4a1a73", - "isEnabled": true, - "origin": "Application", - "value": "IndustryData-Run.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read source system definitions without a signed-in user.", - "displayName": "View source system definitions", - "id": "bc167a60-39fe-4865-8b44-78400fc6ed03", - "isEnabled": true, - "origin": "Application", - "value": "IndustryData-SourceSystem.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write source system definitions without a signed-in user.", - "displayName": "Manage source system definitions", - "id": "7d866958-e06e-4dd6-91c6-a086b3f5cfeb", - "isEnabled": true, - "origin": "Application", - "value": "IndustryData-SourceSystem.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read time period definitions without a signed-in user.", - "displayName": "Read time period definitions", - "id": "7c55c952-b095-4c23-a522-022bce4cc1e3", - "isEnabled": true, - "origin": "Application", - "value": "IndustryData-TimePeriod.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write time period definitions without a signed-in user.", - "displayName": "Manage time period definitions", - "id": "7afa7744-a782-4a32-b8c2-e3db637e8de7", - "isEnabled": true, - "origin": "Application", - "value": "IndustryData-TimePeriod.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read basic service and resource information without a signed-in user.", - "displayName": "View basic service and resource information", - "id": "4f5ac95f-62fd-472c-b60f-125d24ca0bc5", - "isEnabled": true, - "origin": "Application", - "value": "IndustryData.ReadBasic.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all configurations applicable to users for protecting organizational data, without a signed-in user.", - "displayName": "Read all configurations for protecting organizational data applicable to users", - "id": "14f49b9f-4bf2-4d24-b80e-b27ec58409bd", - "isEnabled": true, - "origin": "Application", - "value": "InformationProtectionConfig.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows an app to sign digests for data without a signed-in user.", - "displayName": "Sign digests for data", - "id": "cbe6c7e4-09aa-4b8d-b3c3-2dbb59af4b54", - "isEnabled": true, - "origin": "Application", - "value": "InformationProtectionContent.Sign.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create protected content without a signed-in user. ", - "displayName": "Create protected content", - "id": "287bd98c-e865-4e8c-bade-1a85523195b9", - "isEnabled": true, - "origin": "Application", - "value": "InformationProtectionContent.Write.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows an app to read published sensitivity labels and label policy settings for the entire organization or a specific user, without a signed in user.", - "displayName": "Read all published labels and label policies for an organization.", - "id": "19da66cb-0fb0-4390-b071-ebc76a349482", - "isEnabled": true, - "origin": "Application", - "value": "InformationProtectionPolicy.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all insights related to guest activity, without a signed-in user.", - "displayName": "Read all insights related to guest activity", - "id": "e93bd8c0-c267-45ea-9722-9d3376a7e302", - "isEnabled": true, - "origin": "Application", - "value": "Insights-GuestActivity.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write all insights related to guest activity, without a signed-in user.", - "displayName": "Read and write all insights related to guest activity", - "id": "681ded65-ad9c-4d3d-8f7d-962f84cc13d8", - "isEnabled": true, - "origin": "Application", - "value": "Insights-GuestActivity.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read data for all assignments in the organization's directory, without a signed-in user.", - "displayName": "Read all assignments", - "id": "535e6066-2894-49ef-ab33-e2c6d064bb81", - "isEnabled": true, - "origin": "Application", - "value": "LearningAssignedCourse.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create, update, read and delete all assignments in the organization's directory, without a signed-in user.", - "displayName": "Read and write all assignments", - "id": "236c1cbd-1187-427f-b0f5-b1852454973b", - "isEnabled": true, - "origin": "Application", - "value": "LearningAssignedCourse.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all learning content in the organization's directory, without a signed-in user.", - "displayName": "Read all learning content", - "id": "8740813e-d8aa-4204-860e-2a0f8f84dbc8", - "isEnabled": true, - "origin": "Application", - "value": "LearningContent.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to manage all learning content in the organization's directory, without a signed-in user.", - "displayName": "Manage all learning content", - "id": "444d6fcb-b738-41e5-b103-ac4f2a2628a3", - "isEnabled": true, - "origin": "Application", - "value": "LearningContent.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read data for all self-initiated courses in the organization's directory, without a signed-in user.", - "displayName": "Read all self-initiated courses", - "id": "467524fc-ed22-4356-a910-af61191e3503", - "isEnabled": true, - "origin": "Application", - "value": "LearningSelfInitiatedCourse.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create, update, read and delete all self-initiated courses in the organization's directory, without a signed-in user.", - "displayName": "Read and write all self-initiated courses", - "id": "7654ed61-8965-4025-846a-0856ec02b5b0", - "isEnabled": true, - "origin": "Application", - "value": "LearningSelfInitiatedCourse.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows an app to manage license assignments for users and groups, without a signed-in user.", - "displayName": "Manage all license assignments", - "id": "5facf0c1-8979-4e95-abcf-ff3d079771c0", - "isEnabled": true, - "origin": "Application", - "value": "LicenseAssignment.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.", - "displayName": "Read all lifecycle workflows resources", - "id": "7c67316a-232a-4b84-be22-cea2c0906404", - "isEnabled": true, - "origin": "Application", - "value": "LifecycleWorkflows.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.", - "displayName": "Read and write all lifecycle workflows resources", - "id": "5c505cf4-8424-4b8e-aa14-ee06e3bb23e3", - "isEnabled": true, - "origin": "Application", - "value": "LifecycleWorkflows.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read mail in all mailboxes without a signed-in user.", - "displayName": "Read mail in all mailboxes", - "id": "810c84a8-4a9e-49e6-bf7d-12d183f40d01", - "isEnabled": true, - "origin": "Application", - "value": "Mail.Read" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read basic mail properties in all mailboxes without a signed-in user. Includes all properties except body, previewBody, attachments and any extended properties.", - "displayName": "Read basic mail in all mailboxes", - "id": "6be147d2-ea4f-4b5a-a3fa-3eab6f3c140a", - "isEnabled": true, - "origin": "Application", - "value": "Mail.ReadBasic" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read basic mail properties in all mailboxes without a signed-in user. Includes all properties except body, previewBody, attachments and any extended properties.", - "displayName": "Read basic mail in all mailboxes", - "id": "693c5e45-0940-467d-9b8a-1022fb9d42ef", - "isEnabled": true, - "origin": "Application", - "value": "Mail.ReadBasic.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create, read, update, and delete mail in all mailboxes without a signed-in user. Does not include permission to send mail.", - "displayName": "Read and write mail in all mailboxes", - "id": "e2a3a72e-5f79-4c64-b1b1-878b674786c9", - "isEnabled": true, - "origin": "Application", - "value": "Mail.ReadWrite" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to send mail as any user without a signed-in user.", - "displayName": "Send mail as any user", - "id": "b633e1c5-b582-4048-a93e-9f11b44c7e96", - "isEnabled": true, - "origin": "Application", - "value": "Mail.Send" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read user's mailbox settings without a signed-in user. Does not include permission to send mail.", - "displayName": "Read all user mailbox settings", - "id": "40f97065-369a-49f4-947c-6a255697ae91", - "isEnabled": true, - "origin": "Application", - "value": "MailboxSettings.Read" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create, read, update, and delete user's mailbox settings without a signed-in user. Does not include permission to send mail.", - "displayName": "Read and write all user mailbox settings", - "id": "6931bccd-447a-43d1-b442-00a195474933", - "isEnabled": true, - "origin": "Application", - "value": "MailboxSettings.ReadWrite" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the memberships of hidden groups and administrative units without a signed-in user.", - "displayName": "Read all hidden memberships", - "id": "658aa5d8-239f-45c4-aa12-864f4fc7e490", - "isEnabled": true, - "origin": "Application", - "value": "Member.Read.Hidden" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all multi-tenant organization details and tenants, without a signed-in user.", - "displayName": "Read all multi-tenant organization details and tenants", - "id": "4f994bc0-31bb-44bb-b480-7a7c1be8c02e", - "isEnabled": true, - "origin": "Application", - "value": "MultiTenantOrganization.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read multi-tenant organization basic details and active tenants, without a signed-in user.", - "displayName": "Read multi-tenant organization basic details and active tenants", - "id": "f9c2b2a7-3895-4b2e-80f6-c924b456e50b", - "isEnabled": true, - "origin": "Application", - "value": "MultiTenantOrganization.ReadBasic.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write all multi-tenant organization details and tenants, without a signed-in user.", - "displayName": "Read and write all multi-tenant organization details and tenants", - "id": "920def01-ca61-4d2d-b3df-105b46046a70", - "isEnabled": true, - "origin": "Application", - "value": "MultiTenantOrganization.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read your organization's network access braches, without a signed-in user.", - "displayName": "Read properties of all branches for network access", - "id": "39ae4a24-1ef0-49e8-9d63-2a66f5c39edd", - "isEnabled": true, - "origin": "Application", - "value": "NetworkAccessBranch.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write your organization's network access braches, without a signed-in user.", - "displayName": "Read and write properties of all branches for network access", - "id": "8137102d-ec16-4191-aaf8-7aeda8026183", - "isEnabled": true, - "origin": "Application", - "value": "NetworkAccessBranch.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read your organization's network access policies, without a signed-in user.", - "displayName": "Read all security and routing policies for network access", - "id": "8a3d36bf-cb46-4bcc-bec9-8d92829dab84", - "isEnabled": true, - "origin": "Application", - "value": "NetworkAccessPolicy.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write your organization's network access policies, without a signed-in user.", - "displayName": "Read and write all security and routing policies for network access", - "id": "f0c341be-8348-4989-8e43-660324294538", - "isEnabled": true, - "origin": "Application", - "value": "NetworkAccessPolicy.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all the OneNote notebooks in your organization, without a signed-in user.", - "displayName": "Read all OneNote notebooks", - "id": "3aeca27b-ee3a-4c2b-8ded-80376e2134a4", - "isEnabled": true, - "origin": "Application", - "value": "Notes.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all the OneNote notebooks in your organization, without a signed-in user.", - "displayName": "Read and write all OneNote notebooks", - "id": "0c458cef-11f3-48c2-a568-c66751c238c0", - "isEnabled": true, - "origin": "Application", - "value": "Notes.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read online meeting artifacts in your organization, without a signed-in user.", - "displayName": "Read online meeting artifacts", - "id": "df01ed3b-eb61-4eca-9965-6b3d789751b2", - "isEnabled": true, - "origin": "Application", - "value": "OnlineMeetingArtifact.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all recordings of all online meetings, without a signed-in user.", - "displayName": "Read all recordings of online meetings.", - "id": "a4a08342-c95d-476b-b943-97e100569c8d", - "isEnabled": true, - "origin": "Application", - "value": "OnlineMeetingRecording.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read online meeting details in your organization, without a signed-in user.", - "displayName": "Read online meeting details", - "id": "c1684f21-1984-47fa-9d61-2dc8c296bb70", - "isEnabled": true, - "origin": "Application", - "value": "OnlineMeetings.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and create online meetings as an application in your organization.", - "displayName": "Read and create online meetings", - "id": "b8bb2037-6e08-44ac-a4ea-4674e010e2a4", - "isEnabled": true, - "origin": "Application", - "value": "OnlineMeetings.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all transcripts of all online meetings, without a signed-in user.", - "displayName": "Read all transcripts of online meetings.", - "id": "a4a80d8d-d283-4bd8-8504-555ec3870630", - "isEnabled": true, - "origin": "Application", - "value": "OnlineMeetingTranscript.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all on-premises directory synchronization information for the organization, without a signed-in user.", - "displayName": "Read all on-premises directory synchronization information", - "id": "bb70e231-92dc-4729-aff5-697b3f04be95", - "isEnabled": true, - "origin": "Application", - "value": "OnPremDirectorySynchronization.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write all on-premises directory synchronization information for the organization, without a signed-in user.", - "displayName": "Read and write all on-premises directory synchronization information", - "id": "c22a92cc-79bf-4bb1-8b6c-e0a05d3d80ce", - "isEnabled": true, - "origin": "Application", - "value": "OnPremDirectorySynchronization.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create, view, update and delete on-premises published resources, on-premises agents and agent groups, as part of a hybrid identity configuration, without a signed in user.", - "displayName": "Manage on-premises published resources", - "id": "0b57845e-aa49-4e6f-8109-ce654fffa618", - "isEnabled": true, - "origin": "Application", - "value": "OnPremisesPublishingProfiles.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.", - "displayName": "Read organization information", - "id": "498476ce-e0fe-48b0-b801-37ba7e2685c6", - "isEnabled": true, - "origin": "Application", - "value": "Organization.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.", - "displayName": "Read and write organization information", - "id": "292d869f-3427-49a8-9dab-8c70152b74e9", - "isEnabled": true, - "origin": "Application", - "value": "Organization.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.", - "displayName": "Read organizational contacts", - "id": "e1a88a34-94c4-4418-be12-c87b00e26bea", - "isEnabled": true, - "origin": "Application", - "value": "OrgContact.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read organization-wide apps and services settings, without a signed-in user.", - "displayName": "Read organization-wide apps and services settings", - "id": "56c84fa9-ea1f-4a15-90f2-90ef41ece2c9", - "isEnabled": true, - "origin": "Application", - "value": "OrgSettings-AppsAndServices.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write organization-wide apps and services settings, without a signed-in user.", - "displayName": "Read and write organization-wide apps and services settings", - "id": "4a8e4191-c1c8-45f8-b801-f9a1a5ee6ad3", - "isEnabled": true, - "origin": "Application", - "value": "OrgSettings-AppsAndServices.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read organization-wide Dynamics customer voice settings, without a signed-in user.", - "displayName": "Read organization-wide Dynamics customer voice settings", - "id": "c18ae2dc-d9f3-4495-a93f-18980a0e159f", - "isEnabled": true, - "origin": "Application", - "value": "OrgSettings-DynamicsVoice.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write organization-wide Dynamics customer voice settings, without a signed-in user.", - "displayName": "Read and write organization-wide Dynamics customer voice settings", - "id": "c3f1cc32-8bbd-4ab6-bd33-f270e0d9e041", - "isEnabled": true, - "origin": "Application", - "value": "OrgSettings-DynamicsVoice.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read organization-wide Microsoft Forms settings, without a signed-in user.", - "displayName": "Read organization-wide Microsoft Forms settings", - "id": "434d7c66-07c6-4b1f-ab21-417cf2cdaaca", - "isEnabled": true, - "origin": "Application", - "value": "OrgSettings-Forms.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write organization-wide Microsoft Forms settings, without a signed-in user.", - "displayName": "Read and write organization-wide Microsoft Forms settings", - "id": "2cb92fee-97a3-4034-8702-24a6f5d0d1e9", - "isEnabled": true, - "origin": "Application", - "value": "OrgSettings-Forms.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read organization-wide Microsoft 365 apps installation settings, without a signed-in user.", - "displayName": "Read organization-wide Microsoft 365 apps installation settings", - "id": "6cdf1fb1-b46f-424f-9493-07247caa22e2", - "isEnabled": true, - "origin": "Application", - "value": "OrgSettings-Microsoft365Install.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write organization-wide Microsoft 365 apps installation settings, without a signed-in user. ", - "displayName": "Read and write organization-wide Microsoft 365 apps installation settings", - "id": "83f7232f-763c-47b2-a097-e35d2cbe1da5", - "isEnabled": true, - "origin": "Application", - "value": "OrgSettings-Microsoft365Install.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read organization-wide Microsoft To Do settings, without a signed-in user.", - "displayName": "Read organization-wide Microsoft To Do settings", - "id": "e4d9cd09-d858-4363-9410-abb96737f0cf", - "isEnabled": true, - "origin": "Application", - "value": "OrgSettings-Todo.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write organization-wide Microsoft To Do settings, without a signed-in user.", - "displayName": "Read and write organization-wide Microsoft To Do settings", - "id": "5febc9da-e0d0-4576-bd13-ae70b2179a39", - "isEnabled": true, - "origin": "Application", - "value": "OrgSettings-Todo.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read any user's scored list of relevant people, without a signed-in user. The list can include local contacts, contacts from social networking, your organization's directory, and people from recent communications (such as email and Skype).", - "displayName": "Read all users' relevant people lists", - "id": "b528084d-ad10-4598-8b93-929746b4d7d6", - "isEnabled": true, - "origin": "Application", - "value": "People.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to read tenant-wide people settings without a signed-in user.", - "displayName": "Read all tenant-wide people settings", - "id": "ef02f2e7-e22d-4c77-8614-8f765683b86e", - "isEnabled": true, - "origin": "Application", - "value": "PeopleSettings.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to read and write tenant-wide people settings without a signed-in user.", - "displayName": "Read and write all tenant-wide people settings", - "id": "b6890674-9dd5-4e42-bb15-5af07f541ae1", - "isEnabled": true, - "origin": "Application", - "value": "PeopleSettings.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read company places (conference rooms and room lists) for calendar events and other applications, without a signed-in user.", - "displayName": "Read all company places", - "id": "913b9306-0ce1-42b8-9137-6a7df690a760", - "isEnabled": true, - "origin": "Application", - "value": "Place.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all your organization's policies without a signed in user.", - "displayName": "Read your organization's policies", - "id": "246dd0d5-5bd0-4def-940b-0421030a5b68", - "isEnabled": true, - "origin": "Application", - "value": "Policy.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read your organization's conditional access policies, without a signed-in user.", - "displayName": "Read your organization's conditional access policies", - "id": "37730810-e9ba-4e46-b07e-8ca78d182097", - "isEnabled": true, - "origin": "Application", - "value": "Policy.Read.ConditionalAccess" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read your organization’s identity protection policy without a signed-in user. ", - "displayName": "Read your organization’s identity protection policy", - "id": "b21b72f6-4e6a-4533-9112-47eea9f97b28", - "isEnabled": true, - "origin": "Application", - "value": "Policy.Read.IdentityProtection" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read policies related to consent and permission grants for applications, without a signed-in user.", - "displayName": "Read consent and permission grant policies", - "id": "9e640839-a198-48fb-8b9a-013fd6f6cbcd", - "isEnabled": true, - "origin": "Application", - "value": "Policy.Read.PermissionGrant" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write your organization's directory access review default policy without a signed-in user.", - "displayName": "Read and write your organization's directory access review default policy", - "id": "77c863fd-06c0-47ce-a7eb-49773e89d319", - "isEnabled": true, - "origin": "Application", - "value": "Policy.ReadWrite.AccessReview" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", - "displayName": "Read and write your organization's application configuration policies", - "id": "be74164b-cff1-491c-8741-e671cb536e13", - "isEnabled": true, - "origin": "Application", - "value": "Policy.ReadWrite.ApplicationConfiguration" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write all authentication flow policies for the tenant, without a signed-in user.", - "displayName": "Read and write authentication flow policies", - "id": "25f85f3c-f66c-4205-8cd5-de92dd7f0cec", - "isEnabled": true, - "origin": "Application", - "value": "Policy.ReadWrite.AuthenticationFlows" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write all authentication method policies for the tenant, without a signed-in user. ", - "displayName": "Read and write all authentication method policies ", - "id": "29c18626-4985-4dcd-85c0-193eef327366", - "isEnabled": true, - "origin": "Application", - "value": "Policy.ReadWrite.AuthenticationMethod" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write your organization's authorization policy without a signed in user. For example, authorization policies can control some of the permissions that the out-of-the-box user role has by default.", - "displayName": "Read and write your organization's authorization policy", - "id": "fb221be6-99f2-473f-bd32-01c6a0e9ca3b", - "isEnabled": true, - "origin": "Application", - "value": "Policy.ReadWrite.Authorization" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write your organization's conditional access policies, without a signed-in user.", - "displayName": "Read and write your organization's conditional access policies", - "id": "01c0a623-fc9b-48e9-b794-0756f8e8f067", - "isEnabled": true, - "origin": "Application", - "value": "Policy.ReadWrite.ConditionalAccess" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write your organization's consent requests policy without a signed-in user.", - "displayName": "Read and write your organization's consent request policy", - "id": "999f8c63-0a38-4f1b-91fd-ed1947bdd1a9", - "isEnabled": true, - "origin": "Application", - "value": "Policy.ReadWrite.ConsentRequest" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write your organization's cross tenant access policies without a signed-in user.", - "displayName": "Read and write your organization's cross tenant access policies", - "id": "338163d7-f101-4c92-94ba-ca46fe52447c", - "isEnabled": true, - "origin": "Application", - "value": "Policy.ReadWrite.CrossTenantAccess" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to read and update the organization's external identities policy without a signed-in user. For example, external identities policy controls if users invited to access resources in your organization via B2B collaboration or B2B direct connect are allowed to self-service leave.", - "displayName": "Read and write your organization's external identities policy", - "id": "03cc4f92-788e-4ede-b93f-199424d144a5", - "isEnabled": true, - "origin": "Application", - "value": "Policy.ReadWrite.ExternalIdentities" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write feature rollout policies without a signed-in user. Includes abilities to assign and remove users and groups to rollout of a specific feature.", - "displayName": "Read and write feature rollout policies", - "id": "2044e4f1-e56c-435b-925c-44cd8f6ba89a", - "isEnabled": true, - "origin": "Application", - "value": "Policy.ReadWrite.FeatureRollout" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write your organization’s identity protection policy without a signed-in user.", - "displayName": "Read and write your organization’s identity protection policy ", - "id": "2dcf8603-09eb-4078-b1ec-d30a1a76b873", - "isEnabled": true, - "origin": "Application", - "value": "Policy.ReadWrite.IdentityProtection" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to manage policies related to consent and permission grants for applications, without a signed-in user.", - "displayName": "Manage consent and permission grant policies", - "id": "a402ca1c-2696-4531-972d-6e5ee4aa11ea", - "isEnabled": true, - "origin": "Application", - "value": "Policy.ReadWrite.PermissionGrant" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write your organization's security defaults policy, without a signed-in user.", - "displayName": "Read and write your organization's security defaults policy", - "id": "1c6e93a6-28e2-4cbb-9f64-1a46a821124d", - "isEnabled": true, - "origin": "Application", - "value": "Policy.ReadWrite.SecurityDefaults" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write your organization's trust framework policies without a signed in user.", - "displayName": "Read and write your organization's trust framework policies", - "id": "79a677f7-b79d-40d0-a36a-3e6f8688dd7a", - "isEnabled": true, - "origin": "Application", - "value": "Policy.ReadWrite.TrustFramework" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all presence information and write activity and availability of all users in the directory without a signed-in user. Presence information includes activity, availability, status note, calendar out-of-office message, time zone and location.", - "displayName": "Read and write presence information for all users", - "id": "83cded22-8297-4ff6-a7fa-e97e9545a259", - "isEnabled": true, - "origin": "Application", - "value": "Presence.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to read printers without a signed-in user. ", - "displayName": "Read printers", - "id": "9709bb33-4549-49d4-8ed9-a8f65e45bb0f", - "isEnabled": true, - "origin": "Application", - "value": "Printer.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to read and update printers without a signed-in user. Does not allow creating (registering) or deleting (unregistering) printers.", - "displayName": "Read and update printers", - "id": "f5b3f73d-6247-44df-a74c-866173fddab0", - "isEnabled": true, - "origin": "Application", - "value": "Printer.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to perform advanced operations like redirecting a print job to another printer without a signed-in user. Also allows the application to read and update the metadata of print jobs.", - "displayName": "Perform advanced operations on print jobs", - "id": "58a52f47-9e36-4b17-9ebe-ce4ef7f3e6c8", - "isEnabled": true, - "origin": "Application", - "value": "PrintJob.Manage.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to read the metadata and document content of print jobs without a signed-in user. ", - "displayName": "Read print jobs", - "id": "ac6f956c-edea-44e4-bd06-64b1b4b9aec9", - "isEnabled": true, - "origin": "Application", - "value": "PrintJob.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to read the metadata of print jobs without a signed-in user. Does not allow access to print job document content.", - "displayName": "Read basic information for print jobs", - "id": "fbf67eee-e074-4ef7-b965-ab5ce1c1f689", - "isEnabled": true, - "origin": "Application", - "value": "PrintJob.ReadBasic.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to read and update the metadata and document content of print jobs without a signed-in user.", - "displayName": "Read and write print jobs", - "id": "5114b07b-2898-4de7-a541-53b0004e2e13", - "isEnabled": true, - "origin": "Application", - "value": "PrintJob.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to read and update the metadata of print jobs without a signed-in user. Does not allow access to print job document content.", - "displayName": "Read and write basic information for print jobs", - "id": "57878358-37f4-4d3a-8c20-4816e0d457b1", - "isEnabled": true, - "origin": "Application", - "value": "PrintJob.ReadWriteBasic.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to read tenant-wide print settings without a signed-in user.", - "displayName": "Read tenant-wide print settings", - "id": "b5991872-94cf-4652-9765-29535087c6d8", - "isEnabled": true, - "origin": "Application", - "value": "PrintSettings.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to read and update print task definitions without a signed-in user. ", - "displayName": "Read, write and update print task definitions", - "id": "456b71a7-0ee0-4588-9842-c123fcc8f664", - "isEnabled": true, - "origin": "Application", - "value": "PrintTaskDefinition.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read time-based assignment and just-in-time elevation (including scheduled elevation) of Azure AD built-in and custom administrative roles in your organization, without a signed-in user.", - "displayName": "Read privileged access to Azure AD roles", - "id": "4cdc2547-9148-4295-8d11-be0db1391d6b", - "isEnabled": true, - "origin": "Application", - "value": "PrivilegedAccess.Read.AzureAD" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read time-based assignment and just-in-time elevation (including scheduled elevation) of Azure AD groups in your organization, without a signed-in user.", - "displayName": "Read privileged access to Azure AD groups", - "id": "01e37dc9-c035-40bd-b438-b2879c4870a6", - "isEnabled": true, - "origin": "Application", - "value": "PrivilegedAccess.Read.AzureADGroup" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read time-based assignment and just-in-time elevation of user privileges to audit Azure resources in your organization, without a signed-in user.", - "displayName": "Read privileged access to Azure resources", - "id": "5df6fe86-1be0-44eb-b916-7bd443a71236", - "isEnabled": true, - "origin": "Application", - "value": "PrivilegedAccess.Read.AzureResources" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to request and manage time-based assignment and just-in-time elevation (including scheduled elevation) of Azure AD built-in and custom administrative roles in your organization, without a signed-in user.", - "displayName": "Read and write privileged access to Azure AD roles", - "id": "854d9ab1-6657-4ec8-be45-823027bcd009", - "isEnabled": true, - "origin": "Application", - "value": "PrivilegedAccess.ReadWrite.AzureAD" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to request and manage time-based assignment and just-in-time elevation (including scheduled elevation) of Azure AD groups in your organization, without a signed-in user.", - "displayName": "Read and write privileged access to Azure AD groups", - "id": "2f6817f8-7b12-4f0f-bc18-eeaf60705a9e", - "isEnabled": true, - "origin": "Application", - "value": "PrivilegedAccess.ReadWrite.AzureADGroup" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to request and manage time-based assignment and just-in-time elevation of Azure resources (like your subscriptions, resource groups, storage, compute) in your organization, without a signed-in user.", - "displayName": "Read and write privileged access to Azure resources", - "id": "6f9d5abc-2db6-400b-a267-7de22a40fb87", - "isEnabled": true, - "origin": "Application", - "value": "PrivilegedAccess.ReadWrite.AzureResources" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read time-based assignment schedules for access to Azure AD groups, without a signed-in user.", - "displayName": "Read assignment schedules for access to Azure AD groups", - "id": "cd4161cb-f098-48f8-a884-1eda9a42434c", - "isEnabled": true, - "origin": "Application", - "value": "PrivilegedAssignmentSchedule.Read.AzureADGroup" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read, create, and delete time-based assignment schedules for access to Azure AD groups, without a signed-in user.", - "displayName": "Read, create, and delete assignment schedules for access to Azure AD groups", - "id": "41202f2c-f7ab-45be-b001-85c9728b9d69", - "isEnabled": true, - "origin": "Application", - "value": "PrivilegedAssignmentSchedule.ReadWrite.AzureADGroup" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read time-based eligibility schedules for access to Azure AD groups, without a signed-in user.", - "displayName": "Read eligibility schedules for access to Azure AD groups", - "id": "edb419d6-7edc-42a3-9345-509bfdf5d87c", - "isEnabled": true, - "origin": "Application", - "value": "PrivilegedEligibilitySchedule.Read.AzureADGroup" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read, create, and delete time-based eligibility schedules for access to Azure AD groups, without a signed-in user.", - "displayName": "Read, create, and delete eligibility schedules for access to Azure AD groups", - "id": "618b6020-bca8-4de6-99f6-ef445fa4d857", - "isEnabled": true, - "origin": "Application", - "value": "PrivilegedEligibilitySchedule.ReadWrite.AzureADGroup" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read programs and program controls in the organization, without a signed-in user.", - "displayName": "Read all programs", - "id": "eedb7fdd-7539-4345-a38b-4839e4a84cbd", - "isEnabled": true, - "origin": "Application", - "value": "ProgramControl.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read, update, delete and perform actions on programs and program controls in the organization, without a signed-in user.", - "displayName": "Manage all programs", - "id": "60a901ed-09f7-4aa5-a16e-7dd3d6f9de36", - "isEnabled": true, - "origin": "Application", - "value": "ProgramControl.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows an app to read all question and answers, without a signed-in user.", - "displayName": "Read all Question and Answers ", - "id": "ee49e170-1dd1-4030-b44c-61ad6e98f743", - "isEnabled": true, - "origin": "Application", - "value": "QnA.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to read any data from Records Management, such as configuration, labels, and policies without the signed in user.", - "displayName": "Read Records Management configuration, labels and policies", - "id": "ac3a2b8e-03a3-4da9-9ce0-cbe28bf1accd", - "isEnabled": true, - "origin": "Application", - "value": "RecordsManagement.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allow the application to create, update and delete any data from Records Management, such as configuration, labels, and policies without the signed in user.", - "displayName": "Read and write Records Management configuration, labels and policies", - "id": "eb158f57-df43-4751-8b21-b8932adb3d34", - "isEnabled": true, - "origin": "Application", - "value": "RecordsManagement.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows an app to read all service usage reports without a signed-in user. Services that provide usage reports include Office 365 and Azure Active Directory.", - "displayName": "Read all usage reports", - "id": "230c1aed-a721-4c5d-9cb4-a90514e508ef", - "isEnabled": true, - "origin": "Application", - "value": "Reports.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all admin report settings, such as whether to display concealed information in reports, without a signed-in user.", - "displayName": "Read all admin report settings", - "id": "ee353f83-55ef-4b78-82da-555bfa2b4b95", - "isEnabled": true, - "origin": "Application", - "value": "ReportSettings.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and update all admin report settings, such as whether to display concealed information in reports, without a signed-in user.", - "displayName": "Read and write all admin report settings", - "id": "2a60023f-3219-47ad-baa4-40e17cd02a1d", - "isEnabled": true, - "origin": "Application", - "value": "ReportSettings.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all resource specific permissions granted on user accounts, without a signed-in user.", - "displayName": "Read all resource specific permissions granted on user accounts", - "id": "acfca4d5-f49f-40ed-9648-84068b474c73", - "isEnabled": true, - "origin": "Application", - "value": "ResourceSpecificPermissionGrant.ReadForUser.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the active role-based access control (RBAC) assignments and schedules for your company's directory, without a signed-in user. This includes reading directory role templates, and directory roles.", - "displayName": "Read all active role assignments and role schedules for your company's directory", - "id": "d5fe8ce8-684c-4c83-a52c-46e882ce4be1", - "isEnabled": true, - "origin": "Application", - "value": "RoleAssignmentSchedule.Read.Directory" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, without a signed-in user.", - "displayName": "Read, update, and delete all policies for privileged role assignments of your company's directory", - "id": "dd199f4a-f148-40a4-a2ec-f0069cc799ec", - "isEnabled": true, - "origin": "Application", - "value": "RoleAssignmentSchedule.ReadWrite.Directory" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the eligible role-based access control (RBAC) assignments and schedules for your company's directory, without a signed-in user. This includes reading directory role templates, and directory roles.", - "displayName": "Read all eligible role assignments and role schedules for your company's directory", - "id": "ff278e11-4a33-4d0c-83d2-d01dc58929a5", - "isEnabled": true, - "origin": "Application", - "value": "RoleEligibilitySchedule.Read.Directory" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments and schedules for your company's directory, without a signed-in user. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.", - "displayName": "Read, update, and delete all eligible role assignments and schedules for your company's directory", - "id": "fee28b28-e1f3-4841-818e-2704dc62245f", - "isEnabled": true, - "origin": "Application", - "value": "RoleEligibilitySchedule.ReadWrite.Directory" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.", - "displayName": "Read role management data for all RBAC providers", - "id": "c7fbd983-d9aa-4fa7-84b8-17382c103bc4", - "isEnabled": true, - "origin": "Application", - "value": "RoleManagement.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the Cloud PC role-based access control (RBAC) settings, without a signed-in user.", - "displayName": "Read Cloud PC RBAC settings", - "id": "031a549a-bb80-49b6-8032-2068448c6a3c", - "isEnabled": true, - "origin": "Application", - "value": "RoleManagement.Read.CloudPC" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.", - "displayName": "Read all directory RBAC settings", - "id": "483bed4a-2ad3-4361-a73b-c83ccdbdc53c", - "isEnabled": true, - "origin": "Application", - "value": "RoleManagement.Read.Directory" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the role-based access control (RBAC) configuration for your organization's Exchange Online service, without a signed-in user. This includes reading Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.", - "displayName": "Read Exchange Online RBAC configuration", - "id": "c769435f-f061-4d0b-8ff1-3d39870e5f85", - "isEnabled": true, - "origin": "Application", - "value": "RoleManagement.Read.Exchange" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and manage the Cloud PC role-based access control (RBAC) settings, without a signed-in user. This includes reading and managing Cloud PC role definitions and memberships.", - "displayName": "Read and write all Cloud PC RBAC settings", - "id": "274d0592-d1b6-44bd-af1d-26d259bcb43a", - "isEnabled": true, - "origin": "Application", - "value": "RoleManagement.ReadWrite.CloudPC" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", - "displayName": "Read and write all directory RBAC settings", - "id": "9e3f62cf-ca93-4989-b6ce-bf83c28f9fe8", - "isEnabled": true, - "origin": "Application", - "value": "RoleManagement.ReadWrite.Directory" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and manage the role-based access control (RBAC) settings for your organization's Exchange Online service, without a signed-in user. This includes reading, creating, updating, and deleting Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.", - "displayName": "Read and write Exchange Online RBAC configuration", - "id": "025d3225-3f02-4882-b4c0-cd5b541a4e80", - "isEnabled": true, - "origin": "Application", - "value": "RoleManagement.ReadWrite.Exchange" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", - "displayName": "Read all alert data for your company's directory", - "id": "ef31918f-2d50-4755-8943-b8638c0a077e", - "isEnabled": true, - "origin": "Application", - "value": "RoleManagementAlert.Read.Directory" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and manage all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes managing alert settings, initiating alert scans, dimissing alerts, remediating alert incidents, and reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", - "displayName": "Read all alert data, configure alerts, and take actions on all alerts for your company's directory", - "id": "11059518-d6a6-4851-98ed-509268489c4a", - "isEnabled": true, - "origin": "Application", - "value": "RoleManagementAlert.ReadWrite.Directory" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read policies in Privileged Identity Management for Groups, without a signed-in user.", - "displayName": "Read all policies in PIM for Groups", - "id": "69e67828-780e-47fd-b28c-7b27d14864e6", - "isEnabled": true, - "origin": "Application", - "value": "RoleManagementPolicy.Read.AzureADGroup" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, without a signed-in user.", - "displayName": "Read all policies for privileged role assignments of your company's directory", - "id": "fdc4c997-9942-4479-bfcb-75a36d1138df", - "isEnabled": true, - "origin": "Application", - "value": "RoleManagementPolicy.Read.Directory" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read, update, and delete policies in Privileged Identity Management for Groups, without a signed-in user.", - "displayName": "Read, update, and delete all policies in PIM for Groups", - "id": "b38dcc4d-a239-4ed6-aa84-6c65b284f97c", - "isEnabled": true, - "origin": "Application", - "value": "RoleManagementPolicy.ReadWrite.AzureADGroup" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, without a signed-in user.", - "displayName": "Read, update, and delete all policies for privileged role assignments of your company's directory", - "id": "31e08e0a-d3f7-4ca2-ac39-7343fb83e8ad", - "isEnabled": true, - "origin": "Application", - "value": "RoleManagementPolicy.ReadWrite.Directory" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.", - "displayName": "Read all schedule items", - "id": "7b2ebf90-d836-437f-b90d-7b62722c4456", - "isEnabled": true, - "origin": "Application", - "value": "Schedule.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to manage all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.", - "displayName": "Read and write all schedule items", - "id": "b7760610-0545-4e8a-9ec3-cce9e63db01c", - "isEnabled": true, - "origin": "Application", - "value": "Schedule.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read search configurations, without a signed-in user.", - "displayName": "Read your organization's search configuration", - "id": "ada977a5-b8b1-493b-9a91-66c206d76ecf", - "isEnabled": true, - "origin": "Application", - "value": "SearchConfiguration.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write search configurations, without a signed-in user.", - "displayName": "Read and write your organization's search configuration", - "id": "0e778b85-fefa-466d-9eec-750569d92122", - "isEnabled": true, - "origin": "Application", - "value": "SearchConfiguration.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read security actions, without a signed-in user.", - "displayName": "Read your organization's security actions", - "id": "5e0edab9-c148-49d0-b423-ac253e121825", - "isEnabled": true, - "origin": "Application", - "value": "SecurityActions.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read or update security actions, without a signed-in user.", - "displayName": "Read and update your organization's security actions", - "id": "f2bf083f-0179-402a-bedb-b2784de8a49b", - "isEnabled": true, - "origin": "Application", - "value": "SecurityActions.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all security alerts, without a signed-in user.", - "displayName": "Read all security alerts", - "id": "472e4a4d-bb4a-4026-98d1-0b0d74cb74a5", - "isEnabled": true, - "origin": "Application", - "value": "SecurityAlert.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write to all security alerts, without a signed-in user.", - "displayName": "Read and write to all security alerts", - "id": "ed4fca05-be46-441f-9803-1873825f8fdb", - "isEnabled": true, - "origin": "Application", - "value": "SecurityAlert.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Read email metadata and security detection details, without a signed-in user. ", - "displayName": "Read metadata and detection details for all emails in your organization", - "id": "b48f7ac2-044d-4281-b02f-75db744d6f5f", - "isEnabled": true, - "origin": "Application", - "value": "SecurityAnalyzedMessage.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Read email metadata and security detection details, and execute remediation actions like deleting an email, without a signed-in user.", - "displayName": "Read metadata, detection details, and execute remediation actions on all emails in your organization", - "id": "04c55753-2244-4c25-87fc-704ab82a4f69", - "isEnabled": true, - "origin": "Application", - "value": "SecurityAnalyzedMessage.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read your organization’s security events without a signed-in user.", - "displayName": "Read your organization’s security events", - "id": "bf394140-e372-4bf9-a898-299cfc7564e5", - "isEnabled": true, - "origin": "Application", - "value": "SecurityEvents.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read your organization’s security events without a signed-in user. Also allows the app to update editable properties in security events.", - "displayName": "Read and update your organization’s security events", - "id": "d903a879-88e0-4c09-b0c9-82f6a1333f84", - "isEnabled": true, - "origin": "Application", - "value": "SecurityEvents.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all security incidents, without a signed-in user.", - "displayName": "Read all security incidents", - "id": "45cc0394-e837-488b-a098-1918f48d186c", - "isEnabled": true, - "origin": "Application", - "value": "SecurityIncident.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write to all security incidents, without a signed-in user.", - "displayName": "Read and write to all security incidents", - "id": "34bf0e97-1971-4929-b999-9e2442d941d7", - "isEnabled": true, - "origin": "Application", - "value": "SecurityIncident.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read your tenant's service health information, without a signed-in user. Health information may include service issues or service health overviews.", - "displayName": "Read service health", - "id": "79c261e0-fe76-4144-aad5-bdc68fbe4037", - "isEnabled": true, - "origin": "Application", - "value": "ServiceHealth.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read your tenant's service announcement messages, without a signed-in user. Messages may include information about new or changed features.", - "displayName": "Read service messages", - "id": "1b620472-6534-4fe6-9df2-4680e8aa28ec", - "isEnabled": true, - "origin": "Application", - "value": "ServiceMessage.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read service principal endpoints", - "displayName": "Read service principal endpoints", - "id": "5256681e-b7f6-40c0-8447-2d9db68797a0", - "isEnabled": true, - "origin": "Application", - "value": "ServicePrincipalEndpoint.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to update service principal endpoints", - "displayName": "Read and update service principal endpoints", - "id": "89c8469c-83ad-45f7-8ff2-6e3d4285709e", - "isEnabled": true, - "origin": "Application", - "value": "ServicePrincipalEndpoint.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to read the tenant-level settings of SharePoint and OneDrive, without a signed-in user.", - "displayName": "Read SharePoint and OneDrive tenant settings", - "id": "83d4163d-a2d8-4d3b-9695-4ae3ca98f888", - "isEnabled": true, - "origin": "Application", - "value": "SharePointTenantSettings.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to read and change the tenant-level settings of SharePoint and OneDrive, without a signed-in user.", - "displayName": "Read and change SharePoint and OneDrive tenant settings", - "id": "19b94e34-907c-4f43-bde9-38b1909ed408", - "isEnabled": true, - "origin": "Application", - "value": "SharePointTenantSettings.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all the short notes without a signed-in user.", - "displayName": "Read all users' short notes", - "id": "0c7d31ec-31ca-4f58-b6ec-9950b6b0de69", - "isEnabled": true, - "origin": "Application", - "value": "ShortNotes.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read, create, edit, and delete all the short notes without a signed-in user.", - "displayName": "Read, create, edit, and delete all users' short notes", - "id": "842c284c-763d-4a97-838d-79787d129bab", - "isEnabled": true, - "origin": "Application", - "value": "ShortNotes.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to have full control of all site collections without a signed in user.", - "displayName": "Have full control of all site collections", - "id": "a82116e5-55eb-4c41-a434-62fe8a61c773", - "isEnabled": true, - "origin": "Application", - "value": "Sites.FullControl.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.", - "displayName": "Create, edit, and delete items and lists in all site collections", - "id": "0c0bf378-bf22-4481-8f81-9e89a9b4960a", - "isEnabled": true, - "origin": "Application", - "value": "Sites.Manage.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read documents and list items in all site collections without a signed in user.", - "displayName": "Read items in all site collections ", - "id": "332a536c-c7ef-4017-ab91-336970924f0d", - "isEnabled": true, - "origin": "Application", - "value": "Sites.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.", - "displayName": "Read and write items in all site collections", - "id": "9492366f-7969-46a4-8d15-ed1a20078fff", - "isEnabled": true, - "origin": "Application", - "value": "Sites.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allow the application to access a subset of site collections without a signed in user.  The specific site collections and the permissions granted will be configured in SharePoint Online.", - "displayName": "Access selected site collections", - "id": "883ea226-0bf2-4a8f-9f9d-92c9162a727d", - "isEnabled": true, - "origin": "Application", - "value": "Sites.Selected" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read subject rights requests without a signed-in user.", - "displayName": "Read all subject rights requests", - "id": "ee1460f0-368b-4153-870a-4e1ca7e72c42", - "isEnabled": true, - "origin": "Application", - "value": "SubjectRightsRequest.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write subject rights requests without a signed in user.", - "displayName": "Read and write all subject rights requests", - "id": "8387eaa4-1a3c-41f5-b261-f888138e6041", - "isEnabled": true, - "origin": "Application", - "value": "SubjectRightsRequest.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to read Azure AD synchronization information, without a signed-in user.", - "displayName": "Read all Azure AD synchronization data. ", - "id": "5ba43d2f-fa88-4db2-bd1c-a67c5f0fb1ce", - "isEnabled": true, - "origin": "Application", - "value": "Synchronization.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to configure the Azure AD synchronization service, without a signed-in user.", - "displayName": "Read and write all Azure AD synchronization data. ", - "id": "9b50c33d-700f-43b1-b2eb-87e89b703581", - "isEnabled": true, - "origin": "Application", - "value": "Synchronization.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to upload bulk user data to the identity synchronization service, without a signed-in user.", - "displayName": "Upload user data to the identity synchronization service", - "id": "db31e92a-b9ea-4d87-bf6a-75a37a9ca35a", - "isEnabled": true, - "origin": "Application", - "value": "SynchronizationData-User.Upload" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.", - "displayName": "Read all users’ tasks and tasklist", - "id": "f10e1f91-74ed-437f-a6fd-d6ae88e26c1f", - "isEnabled": true, - "origin": "Application", - "value": "Tasks.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user", - "displayName": "Read and write all users’ tasks and tasklists", - "id": "44e666d1-d276-445b-a5fc-8815eeb81d55", - "isEnabled": true, - "origin": "Application", - "value": "Tasks.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create teams without a signed-in user. ", - "displayName": "Create teams", - "id": "23fc2474-f741-46ce-8465-674744c5c361", - "isEnabled": true, - "origin": "Application", - "value": "Team.Create" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Get a list of all teams, without a signed-in user.", - "displayName": "Get a list of all teams", - "id": "2280dda6-0bfd-44ee-a2f4-cb867cfc4c1e", - "isEnabled": true, - "origin": "Application", - "value": "Team.ReadBasic.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Read the members of all teams, without a signed-in user.", - "displayName": "Read the members of all teams", - "id": "660b7406-55f1-41ca-a0ed-0b035e182f3e", - "isEnabled": true, - "origin": "Application", - "value": "TeamMember.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Add and remove members from all teams, without a signed-in user. Also allows changing a team member's role, for example from owner to non-owner.", - "displayName": "Add and remove members from all teams", - "id": "0121dc95-1b9f-4aed-8bac-58c5ac466691", - "isEnabled": true, - "origin": "Application", - "value": "TeamMember.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Add and remove members from all teams, without a signed-in user. Does not allow adding or removing a member with the owner role. Additionally, does not allow the app to elevate an existing member to the owner role.", - "displayName": "Add and remove members with non-owner role for all teams", - "id": "4437522e-9a86-4a41-a7da-e380edd4a97d", - "isEnabled": true, - "origin": "Application", - "value": "TeamMember.ReadWriteNonOwnerRole.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all users' teamwork activity feed, without a signed-in user.", - "displayName": "Read all users' teamwork activity feed", - "id": "70dec828-f620-4914-aa83-a29117306807", - "isEnabled": true, - "origin": "Application", - "value": "TeamsActivity.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create new notifications in users' teamwork activity feeds without a signed in user. These notifications may not be discoverable or be held or governed by compliance policies.", - "displayName": "Send a teamwork activity to any user", - "id": "a267235f-af13-44dc-8385-c1dc93023186", - "isEnabled": true, - "origin": "Application", - "value": "TeamsActivity.Send" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the Teams apps that are installed in any chat, without a signed-in user. Does not give the ability to read application-specific settings.", - "displayName": "Read installed Teams apps for all chats", - "id": "cc7e7635-2586-41d6-adaa-a8d3bcad5ee5", - "isEnabled": true, - "origin": "Application", - "value": "TeamsAppInstallation.ReadForChat.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the Teams apps that are installed in any team, without a signed-in user. Does not give the ability to read application-specific settings.", - "displayName": "Read installed Teams apps for all teams", - "id": "1f615aea-6bf9-4b05-84bd-46388e138537", - "isEnabled": true, - "origin": "Application", - "value": "TeamsAppInstallation.ReadForTeam.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the Teams apps that are installed for any user, without a signed-in user. Does not give the ability to read application-specific settings.", - "displayName": "Read installed Teams apps for all users", - "id": "9ce09611-f4f7-4abd-a629-a05450422a97", - "isEnabled": true, - "origin": "Application", - "value": "TeamsAppInstallation.ReadForUser.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read, install, upgrade, and uninstall Teams apps in any chat, without a signed-in user. Gives the ability to manage permission grants for accessing those specific chats' data.", - "displayName": "Manage installation and permission grants of Teams apps for all chats", - "id": "6e74eff9-4a21-45d6-bc03-3a20f61f8281", - "isEnabled": true, - "origin": "Application", - "value": "TeamsAppInstallation.ReadWriteAndConsentForChat.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read, install, upgrade, and uninstall Teams apps in any team, without a signed-in user. Gives the ability to manage permission grants for accessing those specific teams' data.", - "displayName": "Manage installation and permission grants of Teams apps for all teams", - "id": "b0c13be0-8e20-4bc5-8c55-963c23a39ce9", - "isEnabled": true, - "origin": "Application", - "value": "TeamsAppInstallation.ReadWriteAndConsentForTeam.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read, install, upgrade, and uninstall Teams apps in any user account, without a signed-in user. Gives the ability to manage permission grants for accessing those specific users' data.", - "displayName": "Manage installation and permission grants of Teams apps in a user account", - "id": "32ca478f-f89e-41d0-aaf8-101deb7da510", - "isEnabled": true, - "origin": "Application", - "value": "TeamsAppInstallation.ReadWriteAndConsentForUser.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows a Teams app to read, install, upgrade, and uninstall itself for any chat, without a signed-in user, and manage its permission grants for accessing those specific chats' data.", - "displayName": "Allow the Teams app to manage itself and its permission grants for all chats", - "id": "ba1ba90b-2d8f-487e-9f16-80728d85bb5c", - "isEnabled": true, - "origin": "Application", - "value": "TeamsAppInstallation.ReadWriteAndConsentSelfForChat.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows a Teams app to read, install, upgrade, and uninstall itself for any team, without a signed-in user, and manage its permission grants for accessing those specific teams' data.", - "displayName": "Allow the Teams app to manage itself and its permission grants for all teams", - "id": "1e4be56c-312e-42b8-a2c9-009600d732c0", - "isEnabled": true, - "origin": "Application", - "value": "TeamsAppInstallation.ReadWriteAndConsentSelfForTeam.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows a Teams app to read, install, upgrade, and uninstall itself for any user account, without a signed-in user, and manage its permission grants for accessing those specific users' data.", - "displayName": "Allow the Teams app to manage itself and its permission grants in all user accounts", - "id": "a87076cf-6abd-4e56-8559-4dbdf41bef96", - "isEnabled": true, - "origin": "Application", - "value": "TeamsAppInstallation.ReadWriteAndConsentSelfForUser.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read, install, upgrade, and uninstall Teams apps in any chat, without a signed-in user. Does not give the ability to read application-specific settings.", - "displayName": "Manage Teams apps for all chats", - "id": "9e19bae1-2623-4c4f-ab6e-2664615ff9a0", - "isEnabled": true, - "origin": "Application", - "value": "TeamsAppInstallation.ReadWriteForChat.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read, install, upgrade, and uninstall Teams apps in any team, without a signed-in user. Does not give the ability to read application-specific settings.", - "displayName": "Manage Teams apps for all teams", - "id": "5dad17ba-f6cc-4954-a5a2-a0dcc95154f0", - "isEnabled": true, - "origin": "Application", - "value": "TeamsAppInstallation.ReadWriteForTeam.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read, install, upgrade, and uninstall Teams apps for any user, without a signed-in user. Does not give the ability to read application-specific settings.", - "displayName": "Manage Teams apps for all users", - "id": "74ef0291-ca83-4d02-8c7e-d2391e6a444f", - "isEnabled": true, - "origin": "Application", - "value": "TeamsAppInstallation.ReadWriteForUser.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows a Teams app to read, install, upgrade, and uninstall itself for any chat, without a signed-in user.", - "displayName": "Allow the Teams app to manage itself for all chats", - "id": "73a45059-f39c-4baf-9182-4954ac0e55cf", - "isEnabled": true, - "origin": "Application", - "value": "TeamsAppInstallation.ReadWriteSelfForChat.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows a Teams app to read, install, upgrade, and uninstall itself in any team, without a signed-in user.", - "displayName": "Allow the Teams app to manage itself for all teams", - "id": "9f67436c-5415-4e7f-8ac1-3014a7132630", - "isEnabled": true, - "origin": "Application", - "value": "TeamsAppInstallation.ReadWriteSelfForTeam.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows a Teams app to read, install, upgrade, and uninstall itself to any user, without a signed-in user.", - "displayName": "Allow the app to manage itself for all users", - "id": "908de74d-f8b2-4d6b-a9ed-2a17b3b78179", - "isEnabled": true, - "origin": "Application", - "value": "TeamsAppInstallation.ReadWriteSelfForUser.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Read all team's settings, without a signed-in user.", - "displayName": "Read all teams' settings", - "id": "242607bd-1d2c-432c-82eb-bdb27baa23ab", - "isEnabled": true, - "origin": "Application", - "value": "TeamSettings.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Read and change all teams' settings, without a signed-in user.", - "displayName": "Read and change all teams' settings", - "id": "bdd80a03-d9bc-451d-b7c4-ce7c63fe3c8f", - "isEnabled": true, - "origin": "Application", - "value": "TeamSettings.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create tabs in any team in Microsoft Teams, without a signed-in user. This does not grant the ability to read, modify or delete tabs after they are created, or give access to the content inside the tabs.", - "displayName": "Create tabs in Microsoft Teams.", - "id": "49981c42-fd7b-4530-be03-e77b21aed25e", - "isEnabled": true, - "origin": "Application", - "value": "TeamsTab.Create" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Read the names and settings of tabs inside any team in Microsoft Teams, without a signed-in user. This does not give access to the content inside the tabs. ", - "displayName": "Read tabs in Microsoft Teams.", - "id": "46890524-499a-4bb2-ad64-1476b4f3e1cf", - "isEnabled": true, - "origin": "Application", - "value": "TeamsTab.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Read and write tabs in any team in Microsoft Teams, without a signed-in user. This does not give access to the content inside the tabs.", - "displayName": "Read and write tabs in Microsoft Teams.", - "id": "a96d855f-016b-47d7-b51c-1218a98d791c", - "isEnabled": true, - "origin": "Application", - "value": "TeamsTab.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows a Teams app to read, install, upgrade, and uninstall all tabs for any chat, without a signed-in user.", - "displayName": "Allow the Teams app to manage all tabs for all chats", - "id": "fd9ce730-a250-40dc-bd44-8dc8d20f39ea", - "isEnabled": true, - "origin": "Application", - "value": "TeamsTab.ReadWriteForChat.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows a Teams app to read, install, upgrade, and uninstall all tabs in any team, without a signed-in user.", - "displayName": "Allow the Teams app to manage all tabs for all teams", - "id": "6163d4f4-fbf8-43da-a7b4-060fe85ed148", - "isEnabled": true, - "origin": "Application", - "value": "TeamsTab.ReadWriteForTeam.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows a Teams app to read, install, upgrade, and uninstall all tabs for any user, without a signed-in user.", - "displayName": "Allow the app to manage all tabs for all users", - "id": "425b4b59-d5af-45c8-832f-bb0b7402348a", - "isEnabled": true, - "origin": "Application", - "value": "TeamsTab.ReadWriteForUser.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs for any chat, without a signed-in user.", - "displayName": "Allow the Teams app to manage only its own tabs for all chats", - "id": "9f62e4a2-a2d6-4350-b28b-d244728c4f86", - "isEnabled": true, - "origin": "Application", - "value": "TeamsTab.ReadWriteSelfForChat.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs in any team, without a signed-in user.", - "displayName": "Allow the Teams app to manage only its own tabs for all teams", - "id": "91c32b81-0ef0-453f-a5c7-4ce2e562f449", - "isEnabled": true, - "origin": "Application", - "value": "TeamsTab.ReadWriteSelfForTeam.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs for any user, without a signed-in user.", - "displayName": "Allow the Teams app to manage only its own tabs for all users", - "id": "3c42dec6-49e8-4a0a-b469-36cff0d9da93", - "isEnabled": true, - "origin": "Application", - "value": "TeamsTab.ReadWriteSelfForUser.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all available Teams Templates, without a signed-user.", - "displayName": "Read all available Teams Templates", - "id": "6323133e-1f6e-46d4-9372-ac33a0870636", - "isEnabled": true, - "origin": "Application", - "value": "TeamTemplates.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create chat and channel messages, without a signed in user. The app specifies which user appears as the sender, and can backdate the message to appear as if it was sent long ago. The messages can be sent to any chat or channel in the organization.", - "displayName": "Create chat and channel messages with anyone's identity and with any timestamp", - "id": "dfb0dd15-61de-45b2-be36-d6a69fba3c79", - "isEnabled": true, - "origin": "Application", - "value": "Teamwork.Migrate.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the Teams app settings without a signed-in user.", - "displayName": "Read Teams app settings", - "id": "475ebe88-f071-4bd7-af2b-642952bd4986", - "isEnabled": true, - "origin": "Application", - "value": "TeamworkAppSettings.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write the Teams app settings without a signed-in user.", - "displayName": "Read and write Teams app settings", - "id": "ab5b445e-8f10-45f4-9c79-dd3f8062cc4e", - "isEnabled": true, - "origin": "Application", - "value": "TeamworkAppSettings.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allow the app to read the management data for Teams devices, without a signed-in user.", - "displayName": "Read Teams devices", - "id": "0591bafd-7c1c-4c30-a2a5-2b9aacb1dfe8", - "isEnabled": true, - "origin": "Application", - "value": "TeamworkDevice.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allow the app to read and write the management data for Teams devices, without a signed-in user.", - "displayName": "Read and write Teams devices", - "id": "79c02f5b-bd4f-4713-bc2c-a8a4a66e127b", - "isEnabled": true, - "origin": "Application", - "value": "TeamworkDevice.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read tags in Teams without a signed-in user.", - "displayName": "Read tags in Teams", - "id": "b74fd6c4-4bde-488e-9695-eeb100e4907f", - "isEnabled": true, - "origin": "Application", - "value": "TeamworkTag.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write tags in Teams without a signed-in user.", - "displayName": "Read and write tags in Teams", - "id": "a3371ca5-911d-46d6-901c-42c8c7a937d8", - "isEnabled": true, - "origin": "Application", - "value": "TeamworkTag.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all term store data, without a signed-in user. This includes all sets, groups and terms in the term store.", - "displayName": "Read all term store data", - "id": "ea047cc2-df29-4f3e-83a3-205de61501ca", - "isEnabled": true, - "origin": "Application", - "value": "TermStore.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read, edit or write all term store data, without a signed-in user. This includes all sets, groups and terms in the term store.", - "displayName": "Read and write all term store data", - "id": "f12eb8d6-28e3-46e6-b2c0-b7e4dc69fc95", - "isEnabled": true, - "origin": "Application", - "value": "TermStore.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows an app to read your organization's threat assessment requests, without a signed-in user.", - "displayName": "Read threat assessment requests", - "id": "f8f035bb-2cce-47fb-8bf5-7baf3ecbee48", - "isEnabled": true, - "origin": "Application", - "value": "ThreatAssessment.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to run hunting queries, without a signed-in user.", - "displayName": "Run hunting queries", - "id": "dd98c7f5-2d42-42d3-a0e4-633161547251", - "isEnabled": true, - "origin": "Application", - "value": "ThreatHunting.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all the indicators for your organization, without a signed-in user.", - "displayName": "Read all threat indicators", - "id": "197ee4e9-b993-4066-898f-d6aecc55125b", - "isEnabled": true, - "origin": "Application", - "value": "ThreatIndicators.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to create threat indicators, and fully manage those threat indicators (read, update and delete), without a signed-in user.  It cannot update any threat indicators it does not own.", - "displayName": "Manage threat indicators this app creates or owns", - "id": "21792b6c-c986-4ffc-85de-df9da54b52fa", - "isEnabled": true, - "origin": "Application", - "value": "ThreatIndicators.ReadWrite.OwnedBy" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.", - "displayName": "Read all Threat Intelligence Information", - "id": "e0b77adb-e790-44a3-b0a0-257d06303687", - "isEnabled": true, - "origin": "Application", - "value": "ThreatIntelligence.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read your organization's threat submissions and to view threat submission policies without a signed-in user.", - "displayName": "Read all of the organization's threat submissions", - "id": "86632667-cd15-4845-ad89-48a88e8412e1", - "isEnabled": true, - "origin": "Application", - "value": "ThreatSubmission.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read your organization's threat submissions and threat submission policies without a signed-in user. Also allows the app to create new threat submissions without a signed-in user.", - "displayName": "Read and write all of the organization's threat submissions", - "id": "d72bdbf4-a59b-405c-8b04-5995895819ac", - "isEnabled": true, - "origin": "Application", - "value": "ThreatSubmission.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read your organization's threat submission policies without a signed-in user. Also allows the app to create new threat submission polices without a signed-in user.", - "displayName": "Read and write all of the organization's threat submission policies", - "id": "926a6798-b100-4a20-a22f-a4918f13951d", - "isEnabled": true, - "origin": "Application", - "value": "ThreatSubmissionPolicy.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read trust framework key set properties without a signed-in user.", - "displayName": "Read trust framework key sets", - "id": "fff194f1-7dce-4428-8301-1badb5518201", - "isEnabled": true, - "origin": "Application", - "value": "TrustFrameworkKeySet.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write trust framework key set properties without a signed-in user.", - "displayName": "Read and write trust framework key sets", - "id": "4a771c9a-1cf2-4609-b88e-3d3e02d539cd", - "isEnabled": true, - "origin": "Application", - "value": "TrustFrameworkKeySet.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read the lifecycle information like employeeLeaveDateTime of users in your organization, without a signed-in user.", - "displayName": "Read all users' lifecycle information", - "id": "8556a004-db57-4d7a-8b82-97a13428e96f", - "isEnabled": true, - "origin": "Application", - "value": "User-LifeCycleInfo.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write the lifecycle information like employeeLeaveDateTime of users in your organization, without a signed-in user.", - "displayName": "Read and write all users' lifecycle information", - "id": "925f1248-0f97-47b9-8ec8-538c54e01325", - "isEnabled": true, - "origin": "Application", - "value": "User-LifeCycleInfo.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to enable and disable users' accounts, without a signed-in user.", - "displayName": "Enable and disable user accounts", - "id": "3011c876-62b7-4ada-afa2-506cbbecc68c", - "isEnabled": true, - "origin": "Application", - "value": "User.EnableDisableAccount.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to export data (e.g. customer content or system-generated logs), associated with any user in your company, when the app is used by a privileged user (e.g. a Company Administrator).", - "displayName": "Export user's data", - "id": "405a51b5-8d8d-430b-9842-8be4b0e9f324", - "isEnabled": true, - "origin": "Application", - "value": "User.Export.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to invite guest users to the organization, without a signed-in user.", - "displayName": "Invite guest users to the organization", - "id": "09850681-111b-4a89-9bed-3f2cae46d706", - "isEnabled": true, - "origin": "Application", - "value": "User.Invite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read, update and delete identities that are associated with a user's account, without a signed in user. This controls the identities users can sign-in with.", - "displayName": "Manage all users' identities", - "id": "c529cfca-c91b-489c-af2b-d92990b66ce6", - "isEnabled": true, - "origin": "Application", - "value": "User.ManageIdentities.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read user profiles without a signed in user.", - "displayName": "Read all users' full profiles", - "id": "df021288-bdef-4463-88db-98f22de89214", - "isEnabled": true, - "origin": "Application", - "value": "User.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and update user profiles without a signed in user.", - "displayName": "Read and write all users' full profiles", - "id": "741f803b-c850-494e-b5df-cde7c675a1ca", - "isEnabled": true, - "origin": "Application", - "value": "User.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": " Allows the app to read authentication methods of all users in your organization, without a signed-in user. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", - "displayName": " Read all users' authentication methods", - "id": "38d9df27-64da-44fd-b7c5-a6fbac20248f", - "isEnabled": true, - "origin": "Application", - "value": "UserAuthenticationMethod.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to read and write authentication methods of all users in your organization, without a signed-in user. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods", - "displayName": "Read and write all users' authentication methods ", - "id": "50483e42-d915-4231-9639-7fdb7fd190e5", - "isEnabled": true, - "origin": "Application", - "value": "UserAuthenticationMethod.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to send, read, update and delete user’s notifications, without a signed-in user.", - "displayName": "Deliver and manage all user's notifications", - "id": "4e774092-a092-48d1-90bd-baad67c7eb47", - "isEnabled": true, - "origin": "Application", - "value": "UserNotification.ReadWrite.CreatedByApp" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all users' shift schedule preferences without a signed-in user.", - "displayName": "Read all user shift preferences", - "id": "de023814-96df-4f53-9376-1e2891ef5a18", - "isEnabled": true, - "origin": "Application", - "value": "UserShiftPreferences.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to manage all users' shift schedule preferences without a signed-in user.", - "displayName": "Read and write all user shift preferences", - "id": "d1eec298-80f3-49b0-9efb-d90e224798ac", - "isEnabled": true, - "origin": "Application", - "value": "UserShiftPreferences.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to read virtual appointments for all users, without a signed-in user. The app must also be authorized to access an individual user’s data by the online meetings application access policy.", - "displayName": "Read all virtual appointments for users, as authorized by online meetings application access policy", - "id": "d4f67ec2-59b5-4bdc-b4af-d78f6f9c1954", - "isEnabled": true, - "origin": "Application", - "value": "VirtualAppointment.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the application to read and write virtual appointments for all users, without a signed-in user. The app must also be authorized to access an individual user’s data by the online meetings application access policy.", - "displayName": "Read-write all virtual appointments for users, as authorized by online meetings app access policy", - "id": "bf46a256-f47d-448f-ab78-f226fff08d40", - "isEnabled": true, - "origin": "Application", - "value": "VirtualAppointment.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read all virtual events without a signed-in user.", - "displayName": "Read all users' virtual events", - "id": "1dccb351-c4e4-4e09-a8d1-7a9ecbf027cc", - "isEnabled": true, - "origin": "Application", - "value": "VirtualEvent.Read.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to read and write all Windows update deployment settings for the organization without a signed-in user.", - "displayName": "Read and write all Windows update deployment settings", - "id": "7dd1be58-6e76-4401-bf8d-31d1e8180d5b", - "isEnabled": true, - "origin": "Application", - "value": "WindowsUpdates.ReadWrite.All" - }, - { - "allowedMemberTypes": ["Application"], - "description": "Allows the app to manage workforce integrations to synchronize data from Microsoft Teams Shifts, without a signed-in user.", - "displayName": "Read and write workforce integrations", - "id": "202bf709-e8e6-478e-bcfd-5d63c50b68e3", - "isEnabled": true, - "origin": "Application", - "value": "WorkforceIntegration.ReadWrite.All" - }, - { - "description": "Allows the app to read access reviews, reviewers, decisions and settings that the signed-in user has access to in the organization.", - "displayName": "Read all access reviews that user can access", - "id": "ebfcd32b-babb-40f4-a14b-42706e83bd28", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read information on access reviews, reviewers, decisions and settings that you have access to.", - "userConsentDisplayName": "Read access reviews that you can access", - "value": "AccessReview.Read.All" - }, - { - "description": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings that the signed-in user has access to in the organization.", - "displayName": "Manage all access reviews that user can access", - "id": "e4aa47b9-9a69-4109-82ed-36ec70d85ff1", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, update and perform action on access reviews, reviewers, decisions and settings that you have access to.", - "userConsentDisplayName": "Manage access reviews that you can access", - "value": "AccessReview.ReadWrite.All" - }, - { - "description": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings for group and app memberships that the signed-in user has access to in the organization.", - "displayName": "Manage access reviews for group and app memberships", - "id": "5af8c3f5-baca-439a-97b0-ea58a435e269", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, update and perform action on access reviews, reviewers, decisions and settings that you have access to.", - "userConsentDisplayName": "Manage access reviews for group and app memberships", - "value": "AccessReview.ReadWrite.Membership" - }, - { - "description": "Allows an app to read all acronyms that the signed-in user can access.", - "displayName": "Read all acronyms that the user can access", - "id": "9084c10f-a2d6-4713-8732-348def50fe02", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read all acronyms you can access.", - "userConsentDisplayName": "Read all acronyms that you have access to", - "value": "Acronym.Read.All" - }, - { - "description": "Allows the app to read administrative units and administrative unit membership on behalf of the signed-in user.", - "displayName": "Read administrative units", - "id": "3361d15d-be43-4de6-b441-3c746d05163d", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read administrative units and administrative unit membership on your behalf.", - "userConsentDisplayName": "Read administrative units", - "value": "AdministrativeUnit.Read.All" - }, - { - "description": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership on behalf of the signed-in user.", - "displayName": "Read and write administrative units", - "id": "7b8a2d34-6b3f-4542-a343-54651608ad81", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership on your behalf.", - "userConsentDisplayName": "Read and write administrative units", - "value": "AdministrativeUnit.ReadWrite.All" - }, - { - "description": "Allows the app to read terms of use agreements on behalf of the signed-in user.", - "displayName": "Read all terms of use agreements", - "id": "af2819c9-df71-4dd3-ade7-4d7c9dc653b7", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read terms of use agreements on your behalf.", - "userConsentDisplayName": "Read all terms of use agreements", - "value": "Agreement.Read.All" - }, - { - "description": "Allows the app to read and write terms of use agreements on behalf of the signed-in user.", - "displayName": "Read and write all terms of use agreements", - "id": "ef4b5d93-3104-4664-9053-a5c49ab44218", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write terms of use agreements on your behalf.", - "userConsentDisplayName": "Read and write all terms of use agreements", - "value": "Agreement.ReadWrite.All" - }, - { - "description": "Allows the app to read terms of use acceptance statuses on behalf of the signed-in user.", - "displayName": "Read user terms of use acceptance statuses", - "id": "0b7643bb-5336-476f-80b5-18fbfbc91806", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your terms of use acceptance statuses.", - "userConsentDisplayName": "Read your terms of use acceptance statuses", - "value": "AgreementAcceptance.Read" - }, - { - "description": "Allows the app to read terms of use acceptance statuses on behalf of the signed-in user.", - "displayName": "Read terms of use acceptance statuses that user can access", - "id": "a66a5341-e66e-4897-9d52-c2df58c2bfb9", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read terms of use acceptance statuses on your behalf.", - "userConsentDisplayName": "Read all terms of use acceptance statuses", - "value": "AgreementAcceptance.Read.All" - }, - { - "description": "Allows the app to read the signed-in user's activity statistics, such as how much time the user has spent on emails, in meetings, or in chat sessions.", - "displayName": "Read user activity statistics", - "id": "e03cf23f-8056-446a-8994-7d93dfc8b50e", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your activity statistics, such as how much time you've spent on emails, in meetings, or in chat sessions.", - "userConsentDisplayName": "Read your activity statistics", - "value": "Analytics.Read" - }, - { - "description": "Allows the app to read the API connectors used in user authentication flows, on behalf of the signed-in user.", - "displayName": "Read API connectors for authentication flows", - "id": "1b6ff35f-31df-4332-8571-d31ea5a4893f", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the API connectors used in user authentication flows, on your behalf.", - "userConsentDisplayName": "Read API connectors for authentication flows", - "value": "APIConnectors.Read.All" - }, - { - "description": "Allows the app to read, create and manage the API connectors used in user authentication flows, on behalf of the signed-in user.", - "displayName": "Read and write API connectors for authentication flows", - "id": "c67b52c5-7c69-48b6-9d48-7b3af3ded914", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, create and manage the API connectors used in user authentication flows, on your behalf.", - "userConsentDisplayName": "Read and write API connectors for authentication flows", - "value": "APIConnectors.ReadWrite.All" - }, - { - "description": "Allows the app to read the apps in the app catalogs.", - "displayName": "Read all app catalogs", - "id": "88e58d74-d3df-44f3-ad47-e89edf4472e4", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read apps in the app catalogs.", - "userConsentDisplayName": "Read all app catalogs", - "value": "AppCatalog.Read.All" - }, - { - "description": "Allows the app to create, read, update, and delete apps in the app catalogs.", - "displayName": "Read and write to all app catalogs", - "id": "1ca167d5-1655-44a1-8adf-1414072e1ef9", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to create, read, update, and delete apps in the app catalogs.", - "userConsentDisplayName": "Read and write to all app catalogs", - "value": "AppCatalog.ReadWrite.All" - }, - { - "description": "Allows the app to submit application packages to the catalog and cancel submissions that are pending review on behalf of the signed-in user.", - "displayName": "Submit application packages to the catalog and cancel pending submissions", - "id": "3db89e36-7fa6-4012-b281-85f3d9d9fd2e", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to submit application packages to the catalog and cancel submissions that are pending review on your behalf.", - "userConsentDisplayName": "Submit application packages to your organization's catalog and cancel pending submissions", - "value": "AppCatalog.Submit" - }, - { - "description": "Allows the app to read the trusted certificate authority configuration which can be used to restrict application certificates based on their issuing authority, on behalf of the signed-in user.", - "displayName": "Read the trusted certificate authority configuration for applications", - "id": "af281d3a-030d-4122-886e-146fb30a0413", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the trusted certificate authority configuration which can be used to restrict application certificates based on their issuing authority, on your behalf.", - "userConsentDisplayName": "Read the trusted certificate authority configuration for applications", - "value": "AppCertTrustConfiguration.Read.All" - }, - { - "description": "Allows the app to create, read, update and delete the trusted certificate authority configuration which can be used to restrict application certificates based on their issuing authority, on behalf of the signed-in user.", - "displayName": "Read and write the trusted certificate authority configuration for applications", - "id": "4bae2ed4-473e-4841-a493-9829cfd51d48", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to to create, read, update and delete the trusted certificate authority configuration which can be used to restrict application certificates based on their issuing authority, on your behalf.", - "userConsentDisplayName": "Read and write the trusted certificate authority configuration for applications", - "value": "AppCertTrustConfiguration.ReadWrite.All" - }, - { - "description": "Allows the app to read and write other apps' remote desktop security configuration, on behalf of the signed-in user.", - "displayName": "Read and write the remote desktop security configuration for apps", - "id": "ffa91d43-2ad8-45cc-b592-09caddeb24bb", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write other apps' remote desktop security configuration, on your behalf.", - "userConsentDisplayName": "Read and write the remote desktop security configuration for apps", - "value": "Application-RemoteDesktopConfig.ReadWrite.All" - }, - { - "description": "Allows the app to read applications and service principals on behalf of the signed-in user.", - "displayName": "Read applications", - "id": "c79f8feb-a9db-4090-85f9-90d820caa0eb", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read applications and service principals on your behalf.", - "userConsentDisplayName": "Read applications", - "value": "Application.Read.All" - }, - { - "description": "Allows the app to create, read, update and delete applications and service principals on behalf of the signed-in user. Does not allow management of consent grants.", - "displayName": "Read and write all applications", - "id": "bdfbf15f-ee85-4955-8675-146e8e5296b5", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to create, read, update and delete applications and service principals on your behalf. Does not allow management of consent grants.", - "userConsentDisplayName": "Read and write applications", - "value": "Application.ReadWrite.All" - }, - { - "description": "Allows the app to manage permission grants for application permissions to any API (including Microsoft Graph) and application assignments for any app, on behalf of the signed-in user.", - "displayName": "Manage app permission grants and app role assignments", - "id": "84bccea3-f856-4a8a-967b-dbe0a3d53a64", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to manage permission grants for application permissions to any API (including Microsoft Graph) and application assignments for any app, on your behalf.", - "userConsentDisplayName": "Manage app permission grants and app role assignments", - "value": "AppRoleAssignment.ReadWrite.All" - }, - { - "description": "Allows the app to read attack simulation and training data for an organization for the signed-in user.", - "displayName": "Read attack simulation data of an organization", - "id": "104a7a4b-ca76-4677-b7e7-2f4bc482f381", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read attack simulation and training data for an organization on your behalf.", - "userConsentDisplayName": "Read attack simulation data of an organization", - "value": "AttackSimulation.Read.All" - }, - { - "description": "Allows the app to read, create, and update attack simulation and training data for an organization for the signed-in user.", - "displayName": "Read, create, and update attack simulation data of an organization", - "id": "27608d7c-2c66-4cad-a657-951d575f5a60", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, create, and update attack simulation and training data for an organization on your behalf.", - "userConsentDisplayName": "Read, create, and update attack simulation data of an organization", - "value": "AttackSimulation.ReadWrite.All" - }, - { - "description": "Allows the app to read and query your audit log activities, on behalf of the signed-in user.", - "displayName": "Read audit log data", - "id": "e4c9e354-4dc5-45b8-9e7c-e1393b0b1a20", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and query your audit log activities, on your behalf.", - "userConsentDisplayName": "Read audit log data", - "value": "AuditLog.Read.All" - }, - { - "description": "Allows the app to read all authentication context information in your organization on behalf of the signed-in user.", - "displayName": "Read all authentication context information", - "id": "57b030f1-8c35-469c-b0d9-e4a077debe70", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read all authentication context information in your organization on your behalf.", - "userConsentDisplayName": "Read all authentication context information", - "value": "AuthenticationContext.Read.All" - }, - { - "description": "Allows the app to read and update all authentication context information in your organization on behalf of the signed-in user.", - "displayName": "Read and write all authentication context information", - "id": "ba6d575a-1344-4516-b777-1404f5593057", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and update all authentication context information in your organization on your behalf.", - "userConsentDisplayName": "Read and write all authentication context information", - "value": "AuthenticationContext.ReadWrite.All" - }, - { - "description": "Allows the app to read and write the billing configuration on all applications on behalf of the signed-in user. ", - "displayName": "Read and write application billing configuration", - "id": "2bf6d319-dfca-4c22-9879-f88dcfaee6be", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write the billing configuration on all applications on your behalf", - "userConsentDisplayName": "Read and write application billing configuration", - "value": "BillingConfiguration.ReadWrite.All" - }, - { - "description": "Allows the app to read BitLocker keys on behalf of the signed-in user, for their owned devices. Allows read of the recovery key.", - "displayName": "Read BitLocker keys", - "id": "b27a61ec-b99c-4d6a-b126-c4375d08ae30", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read BitLocker keys for your owned devices. Allows read of the recovery key.", - "userConsentDisplayName": "Read your BitLocker keys", - "value": "BitlockerKey.Read.All" - }, - { - "description": "Allows the app to read basic BitLocker key properties on behalf of the signed-in user, for their owned devices. Does not allow read of the recovery key itself.", - "displayName": "Read BitLocker keys basic information", - "id": "5a107bfc-4f00-4e1a-b67e-66451267bc68", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read basic BitLocker key properties for your owned devices. Does not allow read of the recovery key itself.", - "userConsentDisplayName": "Read your BitLocker keys basic information", - "value": "BitlockerKey.ReadBasic.All" - }, - { - "description": "Allows an app to read, write and manage bookings appointments, businesses, customers, services, and staff on behalf of the signed-in user.", - "displayName": "Manage bookings information", - "id": "7f36b48e-542f-4d3b-9bcb-8406f0ab9fdb", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows an app to read, write and manage bookings appointments, businesses, customers, services, and staff on your behalf.", - "userConsentDisplayName": "Manage bookings information", - "value": "Bookings.Manage.All" - }, - { - "description": "Allows an app to read bookings appointments, businesses, customers, services, and staff on behalf of the signed-in user.", - "displayName": "Read bookings information", - "id": "33b1df99-4b29-4548-9339-7a7b83eaeebc", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows an app to read bookings appointments, businesses, customers, services, and staff on your behalf.", - "userConsentDisplayName": "Read bookings information", - "value": "Bookings.Read.All" - }, - { - "description": "Allows an app to read and write bookings appointments, businesses, customers, services, and staff on behalf of the signed-in user. Does not allow create, delete and publish of booking businesses.", - "displayName": "Read and write bookings information", - "id": "948eb538-f19d-4ec5-9ccc-f059e1ea4c72", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows an app to read and write Bookings appointments, businesses, customers, services, and staff on your behalf. Does not allow create, delete and publish of booking businesses.", - "userConsentDisplayName": "Read and write bookings information", - "value": "Bookings.ReadWrite.All" - }, - { - "description": "Allows an app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on behalf of the signed-in user.", - "displayName": "Read and write booking appointments", - "id": "02a5a114-36a6-46ff-a102-954d89d9ab02", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows an app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on your behalf.", - "userConsentDisplayName": "Read and write booking appointments", - "value": "BookingsAppointment.ReadWrite.All" - }, - { - "description": "Allows an app to read all bookmarks that the signed-in user can access.", - "displayName": "Read all bookmarks that the user can access", - "id": "98b17b35-f3b1-4849-a85f-9f13733002f0", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read all bookmarks you can access.", - "userConsentDisplayName": "Read all bookmarks that you have access to", - "value": "Bookmark.Read.All" - }, - { - "description": "Allows an app to read the browser site lists configured for your organization, on behalf of the signed-in user.", - "displayName": "Read browser site lists for your organization", - "id": "fb9be2b7-a7fc-4182-aec1-eda4597c43d5", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows an app to read the browser site lists configured for your organization, on your behalf.", - "userConsentDisplayName": "Read browser site lists for your organization", - "value": "BrowserSiteLists.Read.All" - }, - { - "description": "Allows an app to read and write the browser site lists configured for your organization, on behalf of the signed-in user.", - "displayName": "Read and write browser site lists for your organization", - "id": "83b34c85-95bf-497b-a04e-b58eca9d49d0", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows an app to read and write the browser site lists configured for your organization, on your behalf.", - "userConsentDisplayName": "Read and write browser site lists for your organization", - "value": "BrowserSiteLists.ReadWrite.All" - }, - { - "description": "Allows the app to read the configurations of your organization's business scenarios, on behalf of the signed-in user.", - "displayName": "Read business scenario configurations", - "id": "d16480b2-e469-4118-846b-d3d177327bee", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the configurations of your organization's business scenarios, on your behalf.", - "userConsentDisplayName": "Read business scenario configurations", - "value": "BusinessScenarioConfig.Read.All" - }, - { - "description": "Allows the app to read the configurations of business scenarios it owns, on behalf of the signed-in user.", - "displayName": "Read business scenario configurations this app creates or owns", - "id": "c47e7b6e-d6f1-4be9-9ffd-1e00f3e32892", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the configurations of business scenarios it owns, on your behalf.", - "userConsentDisplayName": "Read business scenario configurations this app creates or owns", - "value": "BusinessScenarioConfig.Read.OwnedBy" - }, - { - "description": "Allows the app to read and write the configurations of your organization's business scenarios, on behalf of the signed-in user.", - "displayName": "Read and write business scenario configurations", - "id": "755e785b-b658-446f-bb22-5a46abd029ea", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write the configurations of your organization's business scenarios, on your behalf.", - "userConsentDisplayName": "Read and write business scenario configurations", - "value": "BusinessScenarioConfig.ReadWrite.All" - }, - { - "description": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, on behalf of the signed-in user.", - "displayName": "Read and write business scenario configurations this app creates or owns", - "id": "b3b7fcff-b4d4-4230-bf6f-90bd91285395", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, on your behalf.", - "userConsentDisplayName": "Read and write business scenario configurations this app creates or owns", - "value": "BusinessScenarioConfig.ReadWrite.OwnedBy" - }, - { - "description": "Allows the app to read all data associated with the business scenarios it owns. Data access will be attributed to the signed-in user.", - "displayName": "Read all data for business scenarios this app creates or owns", - "id": "25b265c4-5d34-4e44-952d-b567f6d3b96d", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read all data associated with the business scenarios it owns. Data access will be attributed to you.", - "userConsentDisplayName": "Read data for business scenarios this app creates or owns", - "value": "BusinessScenarioData.Read.OwnedBy" - }, - { - "description": "Allows the app to fully manage all data associated with the business scenarios it owns. Data access and changes will be attributed to the signed-in user.", - "displayName": "Read and write all data for business scenarios this app creates or owns", - "id": "19932d57-2952-4c60-8634-3655c79fc527", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to fully manage all data associated with the business scenarios it owns. These changes will be attributed to you.", - "userConsentDisplayName": "Read and write data for business scenarios this app creates or owns", - "value": "BusinessScenarioData.ReadWrite.OwnedBy" - }, - { - "description": "Allows the app to read events in user calendars . ", - "displayName": "Read user calendars ", - "id": "465a38f9-76ea-45b9-9f34-9e8b0d4b0b42", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read events in your calendars. ", - "userConsentDisplayName": "Read your calendars ", - "value": "Calendars.Read" - }, - { - "description": "Allows the app to read events in all calendars that the user can access, including delegate and shared calendars.", - "displayName": "Read user and shared calendars", - "id": "2b9c4092-424d-4249-948d-b43879977640", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read events in all calendars that you can access, including delegate and shared calendars. ", - "userConsentDisplayName": "Read calendars you can access", - "value": "Calendars.Read.Shared" - }, - { - "description": "Allows the app to read events in user calendars, except for properties such as body, attachments, and extensions.", - "displayName": "Read basic details of user calendars", - "id": "662d75ba-a364-42ad-adee-f5f880ea4878", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read events in your calendars, except for properties such as body, attachments, and extensions.", - "userConsentDisplayName": "Read basic details of your calendars", - "value": "Calendars.ReadBasic" - }, - { - "description": "Allows the app to create, read, update, and delete events in user calendars. ", - "displayName": "Have full access to user calendars ", - "id": "1ec239c2-d7c9-4623-a91a-a9775856bb36", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, update, create and delete events in your calendars. ", - "userConsentDisplayName": "Have full access to your calendars ", - "value": "Calendars.ReadWrite" - }, - { - "description": "Allows the app to create, read, update and delete events in all calendars in the organization user has permissions to access. This includes delegate and shared calendars.", - "displayName": "Read and write user and shared calendars", - "id": "12466101-c9b8-439a-8589-dd09ee67e8e9", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, update, create and delete events in all calendars in your organization you have permissions to access. This includes delegate and shared calendars.", - "userConsentDisplayName": "Read and write to your and shared calendars", - "value": "Calendars.ReadWrite.Shared" - }, - { - "description": "Create channels in any team, on behalf of the signed-in user.", - "displayName": "Create channels", - "id": "101147cf-4178-4455-9d58-02b5c164e759", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Create channels in any team, on your behalf.", - "userConsentDisplayName": "Create channels", - "value": "Channel.Create" - }, - { - "description": "Delete channels in any team, on behalf of the signed-in user.", - "displayName": "Delete channels", - "id": "cc83893a-e232-4723-b5af-bd0b01bcfe65", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Delete channels in any team, on your behalf.", - "userConsentDisplayName": "Delete channels", - "value": "Channel.Delete.All" - }, - { - "description": "Read channel names and channel descriptions, on behalf of the signed-in user.", - "displayName": "Read the names and descriptions of channels", - "id": "9d8982ae-4365-4f57-95e9-d6032a4c0b87", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Read channel names and channel descriptions, on your behalf.", - "userConsentDisplayName": "Read the names and descriptions of channels", - "value": "Channel.ReadBasic.All" - }, - { - "description": "Read the members of channels, on behalf of the signed-in user.", - "displayName": "Read the members of channels", - "id": "2eadaff8-0bce-4198-a6b9-2cfc35a30075", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Read the members of channels, on your behalf.", - "userConsentDisplayName": "Read the members of teams and channels", - "value": "ChannelMember.Read.All" - }, - { - "description": "Add and remove members from channels, on behalf of the signed-in user. Also allows changing a member's role, for example from owner to non-owner.", - "displayName": "Add and remove members from channels", - "id": "0c3e411a-ce45-4cd1-8f30-f99a3efa7b11", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Add and remove members from channels, on your behalf. Also allows changing a member's role, for example from owner to non-owner.", - "userConsentDisplayName": "Add and remove members from teams and channels", - "value": "ChannelMember.ReadWrite.All" - }, - { - "description": "Allows an app to edit channel messages in Microsoft Teams, on behalf of the signed-in user.", - "displayName": "Edit user's channel messages", - "id": "2b61aa8a-6d36-4b2f-ac7b-f29867937c53", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to edit channel messages in Microsoft Teams, on your behalf.", - "userConsentDisplayName": "Edit your channel messages", - "value": "ChannelMessage.Edit" - }, - { - "description": "Allows an app to read a channel's messages in Microsoft Teams, on behalf of the signed-in user.", - "displayName": "Read user channel messages", - "id": "767156cb-16ae-4d10-8f8b-41b657c8c8c8", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read a channel's messages in Microsoft Teams, on your behalf.", - "userConsentDisplayName": "Read your channel messages", - "value": "ChannelMessage.Read.All" - }, - { - "description": "Allows the app to read and write channel messages, on behalf of the signed-in user. This doesn't allow the app to edit the policyViolation of a channel message.", - "displayName": "Read and write user channel messages", - "id": "5922d31f-46c8-4404-9eaf-2117e390a8a4", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write channel messages, on your behalf. This doesn't allow the app to edit the policyViolation of a channel message.", - "userConsentDisplayName": "Read and write user channel messages", - "value": "ChannelMessage.ReadWrite" - }, - { - "description": "Allows an app to send channel messages in Microsoft Teams, on behalf of the signed-in user.", - "displayName": "Send channel messages", - "id": "ebf0f66e-9fb1-49e4-a278-222f76911cf4", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to send channel messages in Microsoft Teams, on your behalf.", - "userConsentDisplayName": "Send channel messages", - "value": "ChannelMessage.Send" - }, - { - "description": "Read all channel names, channel descriptions, and channel settings, on behalf of the signed-in user.", - "displayName": "Read the names, descriptions, and settings of channels", - "id": "233e0cf1-dd62-48bc-b65b-b38fe87fcf8e", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Read all channel names, channel descriptions, and channel settings, on your behalf.", - "userConsentDisplayName": "Read the names, descriptions, and settings of channels", - "value": "ChannelSettings.Read.All" - }, - { - "description": "Read and write the names, descriptions, and settings of all channels, on behalf of the signed-in user.", - "displayName": "Read and write the names, descriptions, and settings of channels", - "id": "d649fb7c-72b4-4eec-b2b4-b15acf79e378", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Read and write the names, descriptions, and settings of all channels, on your behalf.", - "userConsentDisplayName": "Read and write the names, descriptions, and settings of channels", - "value": "ChannelSettings.ReadWrite.All" - }, - { - "description": "Allows the app to create chats on behalf of the signed-in user.", - "displayName": "Create chats", - "id": "38826093-1258-4dea-98f0-00003be2b8d0", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to create chats on your behalf. ", - "userConsentDisplayName": "Create chats", - "value": "Chat.Create" - }, - { - "description": "Allows the app to delete and recover deleted chats, on behalf of the signed-in user.", - "displayName": "Delete and recover deleted chats", - "id": "bb64e6fc-6b6d-4752-aea0-dd922dbba588", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to delete and recover deleted chats, on your behalf.", - "userConsentDisplayName": "Delete and recover deleted chats", - "value": "Chat.ManageDeletion.All" - }, - { - "description": "Allows an app to read 1 on 1 or group chats threads, on behalf of the signed-in user.", - "displayName": "Read user chat messages", - "id": "f501c180-9344-439a-bca0-6cbf209fd270", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.", - "userConsentDisplayName": "Read your chat messages", - "value": "Chat.Read" - }, - { - "description": "Allows an app to read the members and descriptions of one-to-one and group chat threads, on behalf of the signed-in user.", - "displayName": "Read names and members of user chat threads", - "id": "9547fcb5-d03f-419d-9948-5928bbf71b0f", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows an app to read the members and descriptions of one-to-one and group chat threads, on your behalf.", - "userConsentDisplayName": "Read names and members of your chat threads", - "value": "Chat.ReadBasic" - }, - { - "description": "Allows an app to read and write 1 on 1 or group chats threads, on behalf of the signed-in user.", - "displayName": "Read and write user chat messages", - "id": "9ff7295e-131b-4d94-90e1-69fde507ac11", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.", - "userConsentDisplayName": "Read and write your chat messages", - "value": "Chat.ReadWrite" - }, - { - "description": "Read the members of chats, on behalf of the signed-in user.", - "displayName": "Read the members of chats", - "id": "c5a9e2b1-faf6-41d4-8875-d381aa549b24", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Read the members of chats, on your behalf.", - "userConsentDisplayName": "Read the members of chats", - "value": "ChatMember.Read" - }, - { - "description": "Add and remove members from chats, on behalf of the signed-in user.", - "displayName": "Add and remove members from chats", - "id": "dea13482-7ea6-488f-8b98-eb5bbecf033d", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Add and remove members from chats, on your behalf.", - "userConsentDisplayName": "Add and remove members from chats", - "value": "ChatMember.ReadWrite" - }, - { - "description": "Allows an app to read one-to-one and group chat messages, on behalf of the signed-in user.", - "displayName": "Read user chat messages", - "id": "cdcdac3a-fd45-410d-83ef-554db620e5c7", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows an app to read one-to-one or group chat messages in Microsoft Teams, on your behalf.", - "userConsentDisplayName": "Read user chat messages", - "value": "ChatMessage.Read" - }, - { - "description": "Allows an app to send one-to-one and group chat messages in Microsoft Teams, on behalf of the signed-in user.", - "displayName": "Send user chat messages", - "id": "116b7235-7cc6-461e-b163-8e55691d839e", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows an app to send one-to-one and group chat messages in Microsoft Teams, on your behalf.", - "userConsentDisplayName": "Send chat messages", - "value": "ChatMessage.Send" - }, - { - "description": "Allows the app to read details of discovered cloud apps in the organization, on behalf of the signed in user.", - "displayName": "Read discovered cloud applications data", - "id": "ad46d60e-1027-4b75-af88-7c14ccf43a19", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read details of discovered cloud apps in the organization, on your behalf.", - "userConsentDisplayName": "Read discovered cloud application data", - "value": "CloudApp-Discovery.Read.All" - }, - { - "description": "Allows the app to read the properties of Cloud PCs on behalf of the signed-in user.", - "displayName": "Read Cloud PCs", - "id": "5252ec4e-fd40-4d92-8c68-89dd1d3c6110", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the properties of Cloud PCs, on your behalf.", - "userConsentDisplayName": "Read Cloud PCs", - "value": "CloudPC.Read.All" - }, - { - "description": "Allows the app to read and write the properties of Cloud PCs on behalf of the signed-in user.", - "displayName": "Read and write Cloud PCs", - "id": "9d77138f-f0e2-47ba-ab33-cd246c8b79d1", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.", - "userConsentDisplayName": "Read and write Cloud PCs", - "value": "CloudPC.ReadWrite.All" - }, - { - "description": "Allows the app to read consent requests and approvals on behalf of the signed-in user.", - "displayName": "Read consent requests", - "id": "f3bfad56-966e-4590-a536-82ecf548ac1e", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read consent requests and approvals, on your behalf.", - "userConsentDisplayName": "Read consent requests", - "value": "ConsentRequest.Read.All" - }, - { - "description": "Allows the app to read app consent requests and approvals, and deny or approve those requests on behalf of the signed-in user.", - "displayName": "Read and write consent requests", - "id": "497d9dfa-3bd1-481a-baab-90895e54568c", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read app consent requests for your approval, and deny or approve those request on your behalf.", - "userConsentDisplayName": "Read and write consent requests", - "value": "ConsentRequest.ReadWrite.All" - }, - { - "description": "Allows the app to read user contacts. ", - "displayName": "Read user contacts ", - "id": "ff74d97f-43af-4b68-9f2a-b77ee6968c5d", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read contacts in your contact folders. ", - "userConsentDisplayName": "Read your contacts ", - "value": "Contacts.Read" - }, - { - "description": "Allows the app to read contacts a user has permissions to access, including their own and shared contacts.", - "displayName": "Read user and shared contacts", - "id": "242b9d9e-ed24-4d09-9a52-f43769beb9d4", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read contacts you have permissions to access, including your own and shared contacts.", - "userConsentDisplayName": "Read your and shared contacts", - "value": "Contacts.Read.Shared" - }, - { - "description": "Allows the app to create, read, update, and delete user contacts. ", - "displayName": "Have full access to user contacts ", - "id": "d56682ec-c09e-4743-aaf4-1a3aac4caa21", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, update, create and delete contacts in your contact folders. ", - "userConsentDisplayName": "Have full access of your contacts ", - "value": "Contacts.ReadWrite" - }, - { - "description": "Allows the app to create, read, update, and delete contacts a user has permissions to, including their own and shared contacts.", - "displayName": "Read and write user and shared contacts", - "id": "afb6c84b-06be-49af-80bb-8f3f77004eab", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, update, create, and delete contacts you have permissions to access, including your own and shared contacts.", - "userConsentDisplayName": "Read and write to your and shared contacts", - "value": "Contacts.ReadWrite.Shared" - }, - { - "description": "Allows the application to obtain basic tenant information about another target tenant within the Azure AD ecosystem on behalf of the signed-in user.", - "displayName": "Read cross-tenant basic information", - "id": "81594d25-e88e-49cf-ac8c-fecbff49f994", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to obtain basic tenant information about another target tenant within the Azure AD ecosystem on your behalf.", - "userConsentDisplayName": "Read cross-tenant basic information", - "value": "CrossTenantInformation.ReadBasic.All" - }, - { - "description": "Allows the application to list and query user profile information associated with the current tenant on behalf of the signed-in user.  It also permits the application to export external user data (e.g. customer content or system-generated logs), associated with the current tenant on behalf of the signed-in user.", - "displayName": "Read shared cross-tenant user profile and export data", - "id": "cb1ba48f-d22b-4325-a07f-74135a62ee41", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to list and query shared user profile information associated with the current tenant on your behalf.  It also permits the application to export your external user data (e.g. customer content or system-generated logs), associated with the current tenant on your behalf.", - "userConsentDisplayName": "Read shared cross-tenant user profile and export data", - "value": "CrossTenantUserProfileSharing.Read" - }, - { - "description": "Allows the application to list and query any shared user profile information associated with the current tenant on behalf of the signed-in user.  It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on behalf of the signed-in user.", - "displayName": "Read all shared cross-tenant user profiles and export their data", - "id": "759dcd16-3c90-463c-937e-abf89f991c18", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf.  It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.", - "userConsentDisplayName": "Read any shared cross-tenant user profiles and export data", - "value": "CrossTenantUserProfileSharing.Read.All" - }, - { - "description": "Allows the application to list and query user profile information associated with the current tenant on behalf of the signed-in user.  It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), associated with the current tenant on behalf of the signed-in user.", - "displayName": "Read shared cross-tenant user profile and export or delete data", - "id": "eed0129d-dc60-4f30-8641-daf337a39ffd", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to list and query shared user profile information associated with the current tenant on your behalf.  It also permits the application to export and remove your external user data (e.g. customer content or system-generated logs), associated with the current tenant on your behalf.", - "userConsentDisplayName": "Read shared cross-tenant user profile and export or delete data", - "value": "CrossTenantUserProfileSharing.ReadWrite" - }, - { - "description": "Allows the application to list and query any shared user profile information associated with the current tenant on behalf of the signed-in user.  It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on behalf of the signed-in user.", - "displayName": "Read all shared cross-tenant user profiles and export or delete their data", - "id": "64dfa325-cbf8-48e3-938d-51224a0cac01", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf.  It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.", - "userConsentDisplayName": "Read any shared cross-tenant user profiles and export or delete data", - "value": "CrossTenantUserProfileSharing.ReadWrite.All" - }, - { - "description": "Allows the app to read your organization's custom authentication extensions on behalf of the signed-in user.", - "displayName": "Read your oganization's custom authentication extensions", - "id": "b2052569-c98c-4f36-a5fb-43e5c111e6d0", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your organization's custom authentication extensions on your behalf.", - "userConsentDisplayName": "Read your organization's custom authentication extensions", - "value": "CustomAuthenticationExtension.Read.All" - }, - { - "description": "Allows the app to read or write your organization's custom authentication extensions on behalf of the signed-in user.", - "displayName": "Read and write your organization's custom authentication extensions", - "id": "8dfcf82f-15d0-43b3-bc78-a958a13a5792", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read or write your organization's custom authentication extensions on your behalf.", - "userConsentDisplayName": "Read and write your organization's custom authentication extensions", - "value": "CustomAuthenticationExtension.ReadWrite.All" - }, - { - "description": "Allows the app to read custom security attribute assignments for all principals in the tenant on behalf of a signed in user.", - "displayName": "Read custom security attribute assignments", - "id": "b46ffa80-fe3d-4822-9a1a-c200932d54d0", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read custom security attribute assignments for all principals in the tenant on your behalf.", - "userConsentDisplayName": "Read custom security attribute assignments", - "value": "CustomSecAttributeAssignment.Read.All" - }, - { - "description": "Allows the app to read and write custom security attribute assignments for all principals in the tenant on behalf of a signed in user.", - "displayName": "Read and write custom security attribute assignments", - "id": "ca46335e-8453-47cd-a001-8459884efeae", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write custom security attribute assignments for all principals in the tenant on your behalf.", - "userConsentDisplayName": "Read and write custom security attribute assignments", - "value": "CustomSecAttributeAssignment.ReadWrite.All" - }, - { - "description": "Allows the app to read audit logs for events that contain information about custom security attributes, on behalf of the signed-in user.", - "displayName": "Read custom security attribute audit logs", - "id": "1fcdeaab-b519-44dd-bffc-ed1fd15a24e0", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read custom security attributes audit logs on your behalf.", - "userConsentDisplayName": "Read custom security attribute audit logs", - "value": "CustomSecAttributeAuditLogs.Read.All" - }, - { - "description": "Allows the app to read custom security attribute definitions for the tenant on behalf of a signed in user.", - "displayName": "Read custom security attribute definitions", - "id": "ce026878-a0ff-4745-a728-d4fedd086c07", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read custom security attribute definitions for the tenant on your behalf.", - "userConsentDisplayName": "Read custom security attribute definitions", - "value": "CustomSecAttributeDefinition.Read.All" - }, - { - "description": "Allows the app to read and write custom security attribute definitions for the tenant on behalf of a signed in user.", - "displayName": "Read and write custom security attribute definitions", - "id": "8b0160d4-5743-482b-bb27-efc0a485ca4a", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write custom security attribute definitions for the tenant on your behalf.", - "userConsentDisplayName": "Read and write custom security attribute definitions", - "value": "CustomSecAttributeDefinition.ReadWrite.All" - }, - { - "description": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups on behalf of the signed-in user.", - "displayName": "Read Delegated Admin relationships with customers", - "id": "0c0064ea-477b-4130-82a5-4c2cc4ff68aa", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read details of Delegated Admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups on your behalf.", - "userConsentDisplayName": "Read Delegated Admin relationships with customers", - "value": "DelegatedAdminRelationship.Read.All" - }, - { - "description": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers as well as role assignments to security groups for active Delegated Admin relationships on behalf of the signed-in user.", - "displayName": "Manage Delegated Admin relationships with customers", - "id": "885f682f-a990-4bad-a642-36736a74b0c7", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships on your behalf.", - "userConsentDisplayName": "Manage Delegated Admin relationships with customers", - "value": "DelegatedAdminRelationship.ReadWrite.All" - }, - { - "description": "Allows the app to read delegated permission grants, on behalf of the signed in user.", - "displayName": "Read delegated permission grants", - "id": "a197cdc4-a8e8-4d49-9d35-4ca7c83887b4", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read delegated permission grants, on your behalf.", - "userConsentDisplayName": "Read delegated permission grants", - "value": "DelegatedPermissionGrant.Read.All" - }, - { - "description": "Allows the app to manage permission grants for delegated permissions exposed by any API (including Microsoft Graph), on behalf of the signed in user.", - "displayName": "Manage all delegated permission grants", - "id": "41ce6ca6-6826-4807-84f1-1c82854f7ee5", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to manage permission grants for delegated permissions exposed by any API (including Microsoft Graph), on your behalf. ", - "userConsentDisplayName": "Manage all delegated permission grants", - "value": "DelegatedPermissionGrant.ReadWrite.All" - }, - { - "description": "Allows the app to launch another app or communicate with another app on a user's device on behalf of the signed-in user.", - "displayName": "Communicate with user devices", - "id": "bac3b9c2-b516-4ef4-bd3b-c2ef73d8d804", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to launch another app or communicate with another app on a device that you own.", - "userConsentDisplayName": "Communicate with your other devices", - "value": "Device.Command" - }, - { - "description": "Allows the app to read a user's list of devices on behalf of the signed-in user.", - "displayName": "Read user devices", - "id": "11d4cd79-5ba5-460f-803f-e22c8ab85ccd", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to see your list of devices.", - "userConsentDisplayName": "View your list of devices", - "value": "Device.Read" - }, - { - "description": "Allows the app to read your organization's devices' configuration information on behalf of the signed-in user.", - "displayName": "Read all devices", - "id": "951183d1-1a61-466f-a6d1-1fde911bfd95", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read devices' configuration information on your behalf.", - "userConsentDisplayName": "Read all devices", - "value": "Device.Read.All" - }, - { - "description": "Allows the app to read device local credential properties including passwords, on behalf of the signed-in user.", - "displayName": "Read device local credential passwords", - "id": "280b3b69-0437-44b1-bc20-3b2fca1ee3e9", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read device local credential properties including passwords, on your behalf.", - "userConsentDisplayName": "Read device local credential passwords", - "value": "DeviceLocalCredential.Read.All" - }, - { - "description": "Allows the app to read device local credential properties excluding passwords, on behalf of the signed-in user.", - "displayName": "Read device local credential properties", - "id": "9917900e-410b-4d15-846e-42a357488545", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read device local credential properties excluding passwords, on your behalf.", - "userConsentDisplayName": "Read device local credential properties", - "value": "DeviceLocalCredential.ReadBasic.All" - }, - { - "description": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", - "displayName": "Read Microsoft Intune apps", - "id": "4edf5f54-4666-44af-9de9-0144fb4b6e8c", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", - "userConsentDisplayName": "Read Microsoft Intune apps", - "value": "DeviceManagementApps.Read.All" - }, - { - "description": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", - "displayName": "Read and write Microsoft Intune apps", - "id": "7b3f05d5-f68c-4b8d-8c59-a2ecd12f24af", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.", - "userConsentDisplayName": "Read and write Microsoft Intune apps", - "value": "DeviceManagementApps.ReadWrite.All" - }, - { - "description": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", - "displayName": "Read Microsoft Intune Device Configuration and Policies", - "id": "f1493658-876a-4c87-8fa7-edb559b3476a", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", - "userConsentDisplayName": "Read Microsoft Intune Device Configuration and Policies", - "value": "DeviceManagementConfiguration.Read.All" - }, - { - "description": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", - "displayName": "Read and write Microsoft Intune Device Configuration and Policies", - "id": "0883f392-0a7a-443d-8c76-16a6d39c7b63", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.", - "userConsentDisplayName": "Read and write Microsoft Intune Device Configuration and Policies", - "value": "DeviceManagementConfiguration.ReadWrite.All" - }, - { - "description": "Allows the app to perform remote high impact actions such as wiping the device or resetting the passcode on devices managed by Microsoft Intune.", - "displayName": "Perform user-impacting remote actions on Microsoft Intune devices", - "id": "3404d2bf-2b13-457e-a330-c24615765193", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to perform remote high impact actions such as wiping the device or resetting the passcode on devices managed by Microsoft Intune.", - "userConsentDisplayName": "Perform user-impacting remote actions on Microsoft Intune devices", - "value": "DeviceManagementManagedDevices.PrivilegedOperations.All" - }, - { - "description": "Allows the app to read the properties of devices managed by Microsoft Intune.", - "displayName": "Read Microsoft Intune devices", - "id": "314874da-47d6-4978-88dc-cf0d37f0bb82", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the properties of devices managed by Microsoft Intune.", - "userConsentDisplayName": "Read devices Microsoft Intune devices", - "value": "DeviceManagementManagedDevices.Read.All" - }, - { - "description": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", - "displayName": "Read and write Microsoft Intune devices", - "id": "44642bfe-8385-4adc-8fc6-fe3cb2c375c3", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", - "userConsentDisplayName": "Read and write Microsoft Intune devices", - "value": "DeviceManagementManagedDevices.ReadWrite.All" - }, - { - "description": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", - "displayName": "Read Microsoft Intune RBAC settings", - "id": "49f0cc30-024c-4dfd-ab3e-82e137ee5431", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", - "userConsentDisplayName": "Read Microsoft Intune RBAC settings", - "value": "DeviceManagementRBAC.Read.All" - }, - { - "description": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", - "displayName": "Read and write Microsoft Intune RBAC settings", - "id": "0c5e8a55-87a6-4556-93ab-adc52c4d862d", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.", - "userConsentDisplayName": "Read and write Microsoft Intune RBAC settings", - "value": "DeviceManagementRBAC.ReadWrite.All" - }, - { - "description": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration.", - "displayName": "Read Microsoft Intune configuration", - "id": "8696daa5-bce5-4b2e-83f9-51b6defc4e1e", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration.", - "userConsentDisplayName": "Read Microsoft Intune configuration", - "value": "DeviceManagementServiceConfig.Read.All" - }, - { - "description": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", - "displayName": "Read and write Microsoft Intune configuration", - "id": "662ed50a-ac44-4eef-ad86-62eed9be2a29", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.", - "userConsentDisplayName": "Read and write Microsoft Intune configuration", - "value": "DeviceManagementServiceConfig.ReadWrite.All" - }, - { - "description": "Allows the app to have the same access to information in the directory as the signed-in user.", - "displayName": "Access directory as the signed in user", - "id": "0e263e50-5827-48a4-b97c-d940288653c7", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to have the same access to information in your work or school directory as you do.", - "userConsentDisplayName": "Access the directory as you", - "value": "Directory.AccessAsUser.All" - }, - { - "description": "Allows the app to read data in your organization's directory, such as users, groups and apps.", - "displayName": "Read directory data", - "id": "06da0dbc-49e2-44d2-8312-53f166ab848a", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read data in your organization's directory.", - "userConsentDisplayName": "Read directory data", - "value": "Directory.Read.All" - }, - { - "description": "Allows the app to read and write data in your organization's directory, such as users, and groups. It does not allow the app to delete users or groups, or reset user passwords.", - "displayName": "Read and write directory data", - "id": "c5366453-9fb0-48a5-a156-24f0c49a4b84", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", - "userConsentDisplayName": "Read and write directory data", - "value": "Directory.ReadWrite.All" - }, - { - "description": "Allows the app to manage restricted resources based on the other permissions granted to the app, on behalf of the signed-in user.", - "displayName": "Manage restricted resources in the directory", - "id": "cba5390f-ed6a-4b7f-b657-0efc2210ed20", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to manage restricted resources based on the other permissions granted to the app, on your behalf.", - "userConsentDisplayName": "Manage restricted resources in the directory", - "value": "Directory.Write.Restricted" - }, - { - "description": "Allows the app to read Azure AD recommendations, on behalf of the signed-in user.", - "displayName": "Read Azure AD recommendations", - "id": "34d3bd24-f6a6-468c-b67c-0c365c1d6410", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read Azure AD recommendations, on your behalf.", - "userConsentDisplayName": "Read Azure AD recommendations", - "value": "DirectoryRecommendations.Read.All" - }, - { - "description": "Allows the app to read and update Azure AD recommendations, on behalf of the signed-in user. ", - "displayName": "Read and update Azure AD recommendations", - "id": "f37235e8-90a0-4189-93e2-e55b53867ccd", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and update Azure AD recommendations, on your behalf.", - "userConsentDisplayName": "Read and update Azure AD recommendations", - "value": "DirectoryRecommendations.ReadWrite.All" - }, - { - "description": "Allows the app to read all domain properties on behalf of the signed-in user.", - "displayName": "Read domains.", - "id": "2f9ee017-59c1-4f1d-9472-bd5529a7b311", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read all domain properties on your behalf.", - "userConsentDisplayName": "Read domains.", - "value": "Domain.Read.All" - }, - { - "description": "Allows the app to read and write all domain properties on behalf of the signed-in user. Also allows the app to add, verify and remove domains.", - "displayName": "Read and write domains", - "id": "0b5d694c-a244-4bde-86e6-eb5cd07730fe", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write all domain properties on your behalf. Also allows the app to add, verify and remove domains.", - "userConsentDisplayName": "Read and write domains", - "value": "Domain.ReadWrite.All" - }, - { - "description": "Allows the app to have the same access to mailboxes as the signed-in user via Exchange ActiveSync.", - "displayName": "Access mailboxes via Exchange ActiveSync", - "id": "ff91d191-45a0-43fd-b837-bd682c4a0b0f", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app full access to your mailboxes on your behalf.", - "userConsentDisplayName": "Access your mailboxes", - "value": "EAS.AccessAsUser.All" - }, - { - "description": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on behalf of the signed-in user.", - "displayName": "Read all eDiscovery objects", - "id": "99201db3-7652-4d5a-809a-bdb94f85fe3c", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.", - "userConsentDisplayName": "Read all eDiscovery objects", - "value": "eDiscovery.Read.All" - }, - { - "description": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on behalf of the signed-in user.", - "displayName": "Read and write all eDiscovery objects", - "id": "acb8f680-0834-4146-b69e-4ab1b39745ad", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.", - "userConsentDisplayName": "Read and write all eDiscovery objects", - "value": "eDiscovery.ReadWrite.All" - }, - { - "description": "Read the state and settings of all Microsoft education apps on behalf of the user.", - "displayName": "Read education app settings", - "id": "8523895c-6081-45bf-8a5d-f062a2f12c9f", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to view the state and settings of all Microsoft education apps on your behalf.", - "userConsentDisplayName": "View your education app settings", - "value": "EduAdministration.Read" - }, - { - "description": "Manage the state and settings of all Microsoft education apps on behalf of the user.", - "displayName": "Manage education app settings", - "id": "63589852-04e3-46b4-bae9-15d5b1050748", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to manage the state and settings of all Microsoft education apps on your behalf.", - "userConsentDisplayName": "Manage your education app settings", - "value": "EduAdministration.ReadWrite" - }, - { - "description": "Allows the app to read assignments and their grades on behalf of the user.", - "displayName": "Read users' class assignments and their grades", - "id": "091460c9-9c4a-49b2-81ef-1f3d852acce2", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to view your assignments on your behalf including grades.", - "userConsentDisplayName": "View your assignments and grades", - "value": "EduAssignments.Read" - }, - { - "description": "Allows the app to read assignments without grades on behalf of the user.", - "displayName": "Read users' class assignments without grades", - "id": "c0b0103b-c053-4b2e-9973-9f3a544ec9b8", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to view your assignments on your behalf without seeing grades.", - "userConsentDisplayName": "View your assignments without grades", - "value": "EduAssignments.ReadBasic" - }, - { - "description": "Allows the app to read and write assignments and their grades on behalf of the user.", - "displayName": "Read and write users' class assignments and their grades", - "id": "2f233e90-164b-4501-8bce-31af2559a2d3", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to view and modify your assignments on your behalf including  grades.", - "userConsentDisplayName": "View and modify your assignments and grades", - "value": "EduAssignments.ReadWrite" - }, - { - "description": "Allows the app to read and write assignments without grades on behalf of the user.", - "displayName": "Read and write users' class assignments without grades", - "id": "2ef770a1-622a-47c4-93ee-28d6adbed3a0", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.", - "userConsentDisplayName": "View and modify your assignments without grades", - "value": "EduAssignments.ReadWriteBasic" - }, - { - "description": "Allows the app to read the user's modules and resources on behalf of the signed-in user.", - "displayName": "Read the user's class modules and resources", - "id": "484859e8-b9e2-4e92-b910-84db35dadd29", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read modules and resources on your behalf.", - "userConsentDisplayName": "Read your class modules and resources", - "value": "EduCurricula.Read" - }, - { - "description": "Allows the app to read and write user's modules and resources on behalf of the signed-in user.", - "displayName": "Read and write the user's class modules and resources", - "id": "4793c53b-df34-44fd-8d26-d15c517732f5", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write modules and resources on your behalf.", - "userConsentDisplayName": "Read and write your class modules and resources", - "value": "EduCurricula.ReadWrite" - }, - { - "description": "Allows the app to read the structure of schools and classes in an organization's roster and education-specific information about users to be read on behalf of the user.", - "displayName": "Read users' view of the roster", - "id": "a4389601-22d9-4096-ac18-36a927199112", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to view information about schools and classes in your organization and education-related information about you and other users on your behalf.", - "userConsentDisplayName": "View your school, class and user information", - "value": "EduRoster.Read" - }, - { - "description": "Allows the app to read a limited subset of the properties from the structure of schools and classes in an organization's roster and a limited subset of properties about users to be read on behalf of the user. Includes name, status, education role, email address and photo.", - "displayName": "Read a limited subset of users' view of the roster", - "id": "5d186531-d1bf-4f07-8cea-7c42119e1bd9", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", - "userConsentDisplayName": "View a limited subset of your school, class and user information", - "value": "EduRoster.ReadBasic" - }, - { - "description": "Allows the app to read and write the structure of schools and classes in an organization's roster and education-specific information about users to be read and written on behalf of the user.", - "displayName": "Read and write users' view of the roster", - "id": "359e19a6-e3fa-4d7f-bcab-d28ec592b51e", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to view and modify information about schools and classes in your organization and education-related information about you and other users on your behalf.", - "userConsentDisplayName": "View and modify your school, class and user information", - "value": "EduRoster.ReadWrite" - }, - { - "description": "Allows the app to read your users' primary email address", - "displayName": "View users' email address", - "id": "64a6cdd6-aab1-4aaf-94b8-3cc8405e90d0", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your primary email address", - "userConsentDisplayName": "View your email address", - "value": "email" - }, - { - "description": "Allows the app to read access packages and related entitlement management resources on behalf of the signed-in user.", - "displayName": "Read all entitlement management resources", - "id": "5449aa12-1393-4ea2-a7c7-d0e06c1a56b2", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read access packages and related entitlement management resources that you have access to.", - "userConsentDisplayName": "Read all entitlement management resources", - "value": "EntitlementManagement.Read.All" - }, - { - "description": "Allows the app to request access to and management of access packages and related entitlement management resources on behalf of the signed-in user.", - "displayName": "Read and write entitlement management resources", - "id": "ae7a573d-81d7-432b-ad44-4ed5c9d89038", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.", - "userConsentDisplayName": "Read and write entitlement management resources", - "value": "EntitlementManagement.ReadWrite.All" - }, - { - "description": "Allows the app to manage self-service entitlement management resources on behalf of the signed-in user. This includes operations such as requesting access and approving access of others.", - "displayName": "Read and write entitlement management resources related to self-service operations", - "id": "e9fdcbbb-8807-410f-b9ec-8d5468c7c2ac", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to create and manage self-service entitlement management resources that you have access to. This includes operations such as requesting access and approving access for others.", - "userConsentDisplayName": "Read and write self-service entitlement management resources", - "value": "EntitlementMgmt-SubjectAccess.ReadWrite" - }, - { - "description": "Allows the app to read your organization's authentication event listeners on behalf of the signed-in user.", - "displayName": "Read your organization's authentication event listeners", - "id": "f7dd3bed-5eec-48da-bc73-1c0ef50bc9a1", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your organization's authentication event listeners on your behalf.", - "userConsentDisplayName": "Read your organization's authentication event listeners", - "value": "EventListener.Read.All" - }, - { - "description": "Allows the app to read or write your organization's authentication event listeners on behalf of the signed-in user.", - "displayName": "Read and write your organization's authentication event listeners", - "id": "d11625a6-fe21-4fc6-8d3d-063eba5525ad", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read or write your organization's authentication event listeners on your behalf.", - "userConsentDisplayName": "Read and write your organization's authentication event listeners", - "value": "EventListener.ReadWrite.All" - }, - { - "description": "Allows the app to have the same access to mailboxes as the signed-in user via Exchange Web Services.", - "displayName": "Access mailboxes as the signed-in user via Exchange Web Services", - "id": "9769c687-087d-48ac-9cb3-c37dde652038", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app full access to your mailboxes on your behalf.", - "userConsentDisplayName": "Access your mailboxes", - "value": "EWS.AccessAsUser.All" - }, - { - "description": "Allows the app to read all external connections on behalf of a signed-in user. The signed-in user must be an administrator.", - "displayName": "Read all external connections", - "id": "a38267a5-26b6-4d76-9493-935b7599116b", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read all external connections on your behalf. The signed-in user must be an administrator.", - "userConsentDisplayName": "Read all external connections", - "value": "ExternalConnection.Read.All" - }, - { - "description": "Allows the app to read and write all external connections on behalf of a signed-in user. The signed-in user must be an administrator.", - "displayName": "Read and write all external connections", - "id": "bbbbd9b3-3566-4931-ac37-2b2180d9e334", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write all external connections on your behalf. The signed-in user must be an administrator.", - "userConsentDisplayName": "Read and write all external connections", - "value": "ExternalConnection.ReadWrite.All" - }, - { - "description": "Allows the app to read and write settings of external connections on behalf of a signed-in user. The signed-in user must be an administrator. The app can only read and write settings of connections that it is authorized to.", - "displayName": "Read and write external connections", - "id": "4082ad95-c812-4f02-be92-780c4c4f1830", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write external connections on your behalf. The signed-in user must be an administrator. The app can only read and write external connections that it is authorized to, or it can create new external connections. ", - "userConsentDisplayName": "Read and write external connections", - "value": "ExternalConnection.ReadWrite.OwnedBy" - }, - { - "description": "Allow the app to read external datasets and content, on behalf of the signed-in user.", - "displayName": "Read items in external datasets", - "id": "922f9392-b1b7-483c-a4be-0089be7704fb", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read external datasets and content that you have access to.", - "userConsentDisplayName": "Read items in external datasets", - "value": "ExternalItem.Read.All" - }, - { - "description": "Allows the app to read and write all external items on behalf of a signed-in user. The signed-in user must be an administrator.", - "displayName": "Read and write all external items", - "id": "b02c54f8-eb48-4c50-a9f0-a149e5a2012f", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write all external items on your behalf. The signed-in user must be an administrator.", - "userConsentDisplayName": "Read and write all external items", - "value": "ExternalItem.ReadWrite.All" - }, - { - "description": "Allows the app to read and write external items on behalf of a signed-in user. The signed-in user must be an administrator. The app can only read external items of the connection that it is authorized to.", - "displayName": "Read and write external items", - "id": "4367b9d7-cee7-4995-853c-a0bdfe95c1f9", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write external items on your behalf. The signed-in user must be an administrator. The app can only read external items of the connection that it is authorized to.", - "userConsentDisplayName": "Read and write external items", - "value": "ExternalItem.ReadWrite.OwnedBy" - }, - { - "description": "Allows the app to read your family information, members and their basic profile.", - "displayName": "Read your family info", - "id": "3a1e4806-a744-4c70-80fc-223bf8582c46", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your family information, members and their basic profile.", - "userConsentDisplayName": "Read your family info", - "value": "Family.Read" - }, - { - "description": "Allows the app to read the signed-in user's files.", - "displayName": "Read user files", - "id": "10465720-29dd-4523-a11a-6a75c743c9d9", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your files.", - "userConsentDisplayName": "Read your files", - "value": "Files.Read" - }, - { - "description": "Allows the app to read all files the signed-in user can access.", - "displayName": "Read all files that user can access", - "id": "df85f4d6-205c-4ac5-a5ea-6bf408dba283", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read all files you can access.", - "userConsentDisplayName": "Read all files that you have access to", - "value": "Files.Read.All" - }, - { - "description": "(Preview) Allows the app to read files that the user selects. The app has access for several hours after the user selects a file.", - "displayName": "Read files that the user selects (preview)", - "id": "5447fe39-cb82-4c1a-b977-520e67e724eb", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "(Preview) Allows the app to read files that you select. After you select a file, the app has access to the file for several hours.", - "userConsentDisplayName": "Read selected files", - "value": "Files.Read.Selected" - }, - { - "description": "Allows the app to read, create, update and delete the signed-in user's files.", - "displayName": "Have full access to user files", - "id": "5c28f0bf-8a70-41f1-8ab2-9032436ddb65", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, create, update, and delete your files.", - "userConsentDisplayName": "Have full access to your files", - "value": "Files.ReadWrite" - }, - { - "description": "Allows the app to read, create, update and delete all files the signed-in user can access.", - "displayName": "Have full access to all files user can access", - "id": "863451e7-0667-486c-a5d6-d135439485f0", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, create, update and delete all files that you can access.", - "userConsentDisplayName": "Have full access to all files you have access to", - "value": "Files.ReadWrite.All" - }, - { - "description": "(Preview) Allows the app to read, create, update and delete files in the application's folder.", - "displayName": "Have full access to the application's folder (preview)", - "id": "8019c312-3263-48e6-825e-2b833497195b", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "(Preview) Allows the app to read, create, update and delete files in the application's folder.", - "userConsentDisplayName": "Have full access to the application's folder", - "value": "Files.ReadWrite.AppFolder" - }, - { - "description": "(Preview) Allows the app to read and write files that the user selects. The app has access for several hours after the user selects a file.", - "displayName": "Read and write files that the user selects (preview)", - "id": "17dde5bd-8c17-420f-a486-969730c1b827", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "(Preview) Allows the app to read and write files that you select. After you select a file, the app has access to the file for several hours.", - "userConsentDisplayName": "Read and write selected files", - "value": "Files.ReadWrite.Selected" - }, - { - "description": "Allows the app to read and write financials data on behalf of the signed-in user.", - "displayName": "Read and write financials data", - "id": "f534bf13-55d4-45a9-8f3c-c92fe64d6131", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write financials data on your behalf.", - "userConsentDisplayName": "Read and write financials data", - "value": "Financials.ReadWrite.All" - }, - { - "description": "Allows the app to list groups, and to read their properties and all group memberships on behalf of the signed-in user. Also allows the app to read calendar, conversations, files, and other group content for all groups the signed-in user can access. ", - "displayName": "Read all groups", - "id": "5f8c59db-677d-491f-a6b8-5f174b11ec1d", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", - "userConsentDisplayName": "Read all groups", - "value": "Group.Read.All" - }, - { - "description": "Allows the app to create groups and read all group properties and memberships on behalf of the signed-in user. Additionally allows group owners to manage their groups and allows group members to update group content.", - "displayName": "Read and write all groups", - "id": "4e46008b-f24c-477d-8fff-7bb4ec7aafe0", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", - "userConsentDisplayName": "Read and write all groups", - "value": "Group.ReadWrite.All" - }, - { - "description": "Allows the app to list groups, read basic group properties and read membership of all groups the signed-in user has access to.", - "displayName": "Read group memberships", - "id": "bc024368-1153-4739-b217-4326f2e966d0", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.", - "userConsentDisplayName": "Read group memberships", - "value": "GroupMember.Read.All" - }, - { - "description": "Allows the app to list groups, read basic properties, read and update the membership of the groups the signed-in user has access to. Group properties and owners cannot be updated and groups cannot be deleted.", - "displayName": "Read and write group memberships", - "id": "f81125ac-d3b7-4573-a3b2-7099cc39df9e", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to list groups, read basic properties, read and update the membership of your groups. Group properties and owners cannot be updated and groups cannot be deleted.", - "userConsentDisplayName": "Read and write group memberships", - "value": "GroupMember.ReadWrite.All" - }, - { - "description": "Allows the app to read your organization’s identity (authentication) providers’ properties on behalf of the user.", - "displayName": "Read identity providers", - "id": "43781733-b5a7-4d1b-98f4-e8edff23e1a9", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your organization’s identity (authentication) providers’ properties on your behalf.", - "userConsentDisplayName": "Read identity providers", - "value": "IdentityProvider.Read.All" - }, - { - "description": "Allows the app to read and write your organization’s identity (authentication) providers’ properties on behalf of the user.", - "displayName": "Read and write identity providers", - "id": "f13ce604-1677-429f-90bd-8a10b9f01325", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write your organization’s identity (authentication) providers’ properties on your behalf.", - "userConsentDisplayName": "Read and write identity providers", - "value": "IdentityProvider.ReadWrite.All" - }, - { - "description": "Allows the app to read identity risk event information for all users in your organization on behalf of the signed-in user. ", - "displayName": "Read identity risk event information", - "id": "8f6a01e7-0391-4ee5-aa22-a3af122cef27", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read identity risk event information for all users in your organization on behalf of the signed-in user. ", - "userConsentDisplayName": "Read identity risk event information", - "value": "IdentityRiskEvent.Read.All" - }, - { - "description": "Allows the app to read and update identity risk event information for all users in your organization on behalf of the signed-in user. Update operations include confirming risk event detections. ", - "displayName": "Read and write risk event information", - "id": "9e4862a5-b68f-479e-848a-4e07e25c9916", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and update identity risk event information for all users in your organization on your behalf. Update operations include confirming risk event detections. ", - "userConsentDisplayName": "Read and write risk event information", - "value": "IdentityRiskEvent.ReadWrite.All" - }, - { - "description": "Allows the app to read all identity risky service principal information for your organization, on behalf of the signed-in user.", - "displayName": "Read all identity risky service principal information", - "id": "ea5c4ab0-5a73-4f35-8272-5d5337884e5d", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read all identity risky service principal information for your organization, on your behalf.", - "userConsentDisplayName": "Read all identity risky service principal information", - "value": "IdentityRiskyServicePrincipal.Read.All" - }, - { - "description": "Allows the app to read and update identity risky service principal information for all service principals in your organization, on behalf of the signed-in user. Update operations include dismissing risky service principals.", - "displayName": "Read and write all identity risky service principal information", - "id": "bb6f654c-d7fd-4ae3-85c3-fc380934f515", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and update identity risky service principal information for all service principals in your organization, on your behalf. Update operations include dismissing risky service principals.", - "userConsentDisplayName": "Read and write all identity risky service principal information", - "value": "IdentityRiskyServicePrincipal.ReadWrite.All" - }, - { - "description": "Allows the app to read identity risky user information for all users in your organization on behalf of the signed-in user.", - "displayName": "Read identity risky user information", - "id": "d04bb851-cb7c-4146-97c7-ca3e71baf56c", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read identity risky user information for all users in your organization on behalf of the signed-in user.", - "userConsentDisplayName": "Read identity risky user information", - "value": "IdentityRiskyUser.Read.All" - }, - { - "description": "Allows the app to read and update identity risky user information for all users in your organization on behalf of the signed-in user. Update operations include dismissing risky users.", - "displayName": "Read and write risky user information", - "id": "e0a7cdbb-08b0-4697-8264-0069786e9674", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and update identity risky user information for all users in your organization on your behalf. Update operations include dismissing risky users.", - "userConsentDisplayName": "Read and write identity risky user information", - "value": "IdentityRiskyUser.ReadWrite.All" - }, - { - "description": "Allows the app to read your organization's user flows, on behalf of the signed-in user.", - "displayName": "Read all identity user flows", - "id": "2903d63d-4611-4d43-99ce-a33f3f52e343", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your organization's user flows, on your behalf.", - "userConsentDisplayName": "Read all identity user flows", - "value": "IdentityUserFlow.Read.All" - }, - { - "description": "Allows the app to read or write your organization's user flows, on behalf of the signed-in user.", - "displayName": "Read and write all identity user flows", - "id": "281892cc-4dbf-4e3a-b6cc-b21029bb4e82", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read or write your organization's user flows, on your behalf.", - "userConsentDisplayName": "Read and write all identity user flows", - "value": "IdentityUserFlow.ReadWrite.All" - }, - { - "description": "Allows the app to have the same access to mailboxes as the signed-in user via IMAP protocol.", - "displayName": "Read and write access to mailboxes via IMAP.", - "id": "652390e4-393a-48de-9484-05f9b1212954", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail.", - "userConsentDisplayName": "Read and write access to your mail.", - "value": "IMAP.AccessAsUser.All" - }, - { - "description": "Allows the app to read data connectors on behalf of the signed-in user.", - "displayName": "View data connector definitions", - "id": "d19c0de5-7ecb-4aba-b090-da35ebcd5425", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read data connectors on your behalf.", - "userConsentDisplayName": "View data connector definitions", - "value": "IndustryData-DataConnector.Read.All" - }, - { - "description": "Allows the app to read and write data connectors on behalf of the signed-in user.", - "displayName": "Manage data connector definitions", - "id": "5ce933ac-3997-4280-aed0-cc072e5c062a", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write data connectors on your behalf.", - "userConsentDisplayName": "Manage data connector definitions", - "value": "IndustryData-DataConnector.ReadWrite.All" - }, - { - "description": "Allows the app to upload data files to a data connector on behalf of the signed-in user.", - "displayName": "Upload files to a data connector", - "id": "fc47391d-ab2c-410f-9059-5600f7af660d", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to upload data files to a data connector on your behalf.", - "userConsentDisplayName": "Upload files to a data connector", - "value": "IndustryData-DataConnector.Upload" - }, - { - "description": "Allows the app to read inbound data flows on behalf of the signed-in user.", - "displayName": "View inbound flow definitions", - "id": "cb0774da-a605-42af-959c-32f438fb38f4", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read inbound data flows on your behalf.", - "userConsentDisplayName": "View inbound flow definitions", - "value": "IndustryData-InboundFlow.Read.All" - }, - { - "description": "Allows the app to read and write inbound data flows on behalf of the signed-in user.", - "displayName": "Manage inbound flow definitions", - "id": "97044676-2cec-40ee-bd70-38df444c9e70", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write inbound data flows on your behalf.", - "userConsentDisplayName": "Manage inbound flow definitions", - "value": "IndustryData-InboundFlow.ReadWrite.All" - }, - { - "description": "Allows the app to read reference definitions on behalf of the signed-in user.", - "displayName": "View reference definitions", - "id": "a3f96ffe-cb84-40a8-ac85-582d7ef97c2a", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read reference definitions on your behalf.", - "userConsentDisplayName": "View reference definitions", - "value": "IndustryData-ReferenceDefinition.Read.All" - }, - { - "description": "Allows the app to read current and previous IndustryData runs on behalf of the signed-in user.", - "displayName": "View current and previous runs", - "id": "92685235-50c4-4702-b2c8-36043db6fa79", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read current and previous IndustryData runs on your behalf.", - "userConsentDisplayName": "View current and previous runs", - "value": "IndustryData-Run.Read.All" - }, - { - "description": "Allows the app to read source system definitions on behalf of the signed-in user.", - "displayName": "View source system definitions", - "id": "49b7016c-89ae-41e7-bd6f-b7170c5490bf", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read source system definitions on your behalf.", - "userConsentDisplayName": "View source system definitions", - "value": "IndustryData-SourceSystem.Read.All" - }, - { - "description": "Allows the app to read and write source system definitions on behalf of the signed-in user.", - "displayName": "Manage source system definitions", - "id": "9599f005-05d6-4ea7-b1b1-4929768af5d0", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write source system definitions on your behalf.", - "userConsentDisplayName": "Manage source system definitions", - "value": "IndustryData-SourceSystem.ReadWrite.All" - }, - { - "description": "Allows the app to read time period definitions on behalf of the signed-in user.", - "displayName": "Read time period definitions", - "id": "c9d51f28-8ccd-42b2-a836-fd8fe9ebf2ae", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read time period definitions on your behalf.", - "userConsentDisplayName": "Read time period definitions", - "value": "IndustryData-TimePeriod.Read.All" - }, - { - "description": "Allows the app to read and write time period definitions on behalf of the signed-in user.", - "displayName": "Manage time period definitions", - "id": "b6d56528-3032-4f9d-830f-5a24a25e6661", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write time period definitions on your behalf.", - "userConsentDisplayName": "Manage time period definitions", - "value": "IndustryData-TimePeriod.ReadWrite.All" - }, - { - "description": "Allows the app to read basic Industry Data service and resource information on behalf of the signed-in user.", - "displayName": "Read basic Industry Data service and resource definitions", - "id": "60382b96-1f5e-46ea-a544-0407e489e588", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read Industry Data basic service and resource information on your behalf.", - "userConsentDisplayName": "Read basic Industry Data service and resource definitions", - "value": "IndustryData.ReadBasic.All" - }, - { - "description": "Allows the app to read the configurations applicable to the signed-in user for protecting organizational data, on behalf of the signed-in user.", - "displayName": "Read configurations for protecting organizational data applicable to the user", - "id": "12f4bffb-b598-413c-984b-db99728f8b54", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the configurations applicable to you for protecting organizational data, on your behalf.", - "userConsentDisplayName": "Read configurations for protecting organizational data applicable to you", - "value": "InformationProtectionConfig.Read" - }, - { - "description": "Allows an app to read information protection sensitivity labels and label policy settings, on behalf of the signed-in user.", - "displayName": "Read user sensitivity labels and label policies.", - "id": "4ad84827-5578-4e18-ad7a-86530b12f884", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows an app to read information protection sensitivity labels and label policy settings, on behalf of the signed-in user.", - "userConsentDisplayName": "Read user sensitivity labels and label policies.", - "value": "InformationProtectionPolicy.Read" - }, - { - "description": "Allows the app to read insights related to guest activity, on behalf of the signed-in user.", - "displayName": "Read insights related to guest activity", - "id": "bdd9425e-296d-4e4b-9c15-0a288b4b12e1", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read insights related to guest activity, on your behalf.", - "userConsentDisplayName": "Read insights related to guest activity", - "value": "Insights-GuestActivity.Read.All" - }, - { - "description": "Allows the app to read and write insights related to guest activity, on behalf of the signed-in user.", - "displayName": "Read and write insights related to guest activity", - "id": "7e23346e-6931-45b2-b04e-6332b3905b8a", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write insights related to guest activity, on your behalf.", - "userConsentDisplayName": "Read and write insights related to guest activity", - "value": "Insights-GuestActivity.ReadWrite.All" - }, - { - "description": "Allows the app to read data for the learner's assignments in the organization's directory, on behalf of the signed-in user.", - "displayName": "Read user's assignments", - "id": "ac08cdae-e845-41db-adf9-5899a0ec9ef6", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read data for your assignments in the organization's directory, on your behalf.", - "userConsentDisplayName": "Read your assignments", - "value": "LearningAssignedCourse.Read" - }, - { - "description": "Allows the app to read learning content in the organization's directory, on behalf of the signed-in user.", - "displayName": "Read learning content", - "id": "ea4c1fd9-6a9f-4432-8e5d-86e06cc0da77", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read learning content in the organization's directory, on your behalf.", - "userConsentDisplayName": "Read learning content", - "value": "LearningContent.Read.All" - }, - { - "description": "Allows the app to manage learning content in the organization's directory, on behalf of the signed-in user.", - "displayName": "Manage learning content", - "id": "53cec1c4-a65f-4981-9dc1-ad75dbf1c077", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to manage learning content in the organization's directory, on your behalf.", - "userConsentDisplayName": "Manage learning content", - "value": "LearningContent.ReadWrite.All" - }, - { - "description": "Allows the app to read data for the learning provider in the organization's directory, on behalf of the signed-in user.", - "displayName": "Read learning provider", - "id": "dd8ce36f-9245-45ea-a99e-8ac398c22861", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read data for the learning provider in the organization's directory, on your behalf.", - "userConsentDisplayName": "Read learning provider", - "value": "LearningProvider.Read" - }, - { - "description": "Allows the app to create, update, read, and delete data for the learning provider in the organization's directory, on behalf of the signed-in user.", - "displayName": "Manage learning provider", - "id": "40c2eb57-abaf-49f5-9331-e90fd01f7130", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to create, update, read, and delete data for the learning provider in the organization's directory, on your behalf.", - "userConsentDisplayName": "Manage learning provider", - "value": "LearningProvider.ReadWrite" - }, - { - "description": "Allows the app to read data for the learner's self-initiated courses in the organization's directory, on behalf of the signed-in user.", - "displayName": "Read user's self-initiated courses", - "id": "f6403ef7-4a96-47be-a190-69ba274c3f11", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read data for your self-initiated courses in the organization's directory, on your behalf.", - "userConsentDisplayName": "Read your self-initiated courses", - "value": "LearningSelfInitiatedCourse.Read" - }, - { - "description": "Allows an app to manage license assignments for users and groups, on behalf of the signed-in user.", - "displayName": "Manage all license assignments", - "id": "f55016cc-149c-447e-8f21-7cf3ec1d6350", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to manage all license assignments, on your behalf.", - "userConsentDisplayName": "Manage all license assignments", - "value": "LicenseAssignment.ReadWrite.All" - }, - { - "description": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources on behalf of the signed-in user.", - "displayName": "Read all lifecycle workflows resources", - "id": "9bcb9916-765a-42af-bf77-02282e26b01a", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources on your behalf.", - "userConsentDisplayName": "Read all lifecycle workflows resources", - "value": "LifecycleWorkflows.Read.All" - }, - { - "description": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources on behalf of the signed-in user.", - "displayName": "Read and write all lifecycle workflows resources", - "id": "84b9d731-7db8-4454-8c90-fd9e95350179", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources on your behalf.", - "userConsentDisplayName": "Read and write all lifecycle workflows resources", - "value": "LifecycleWorkflows.ReadWrite.All" - }, - { - "description": "Allows the app to read the signed-in user's mailbox.", - "displayName": "Read user mail ", - "id": "570282fd-fa5c-430d-a7fd-fc8dc98a9dca", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read email in your mailbox. ", - "userConsentDisplayName": "Read your mail ", - "value": "Mail.Read" - }, - { - "description": "Allows the app to read mail a user can access, including their own and shared mail.", - "displayName": "Read user and shared mail", - "id": "7b9103a5-4610-446b-9670-80643382c1fa", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read mail you can access, including shared mail.", - "userConsentDisplayName": "Read mail you can access", - "value": "Mail.Read.Shared" - }, - { - "description": "Allows the app to read email in the signed-in user's mailbox except body, previewBody, attachments and any extended properties.", - "displayName": "Read user basic mail", - "id": "a4b8392a-d8d1-4954-a029-8e668a39a170", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read email in the signed-in user's mailbox except body, previewBody, attachments and any extended properties.", - "userConsentDisplayName": "Read user basic mail", - "value": "Mail.ReadBasic" - }, - { - "description": "Allows the app to read mail the signed-in user can access, including their own and shared mail, except for body, bodyPreview, uniqueBody, attachments, extensions, and any extended properties.", - "displayName": "Read user and shared basic mail", - "id": "b11fa0e7-fdb7-4dc9-b1f1-59facd463480", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read mail you can access, including shared mail except body, previewBody, uniqueBody, attachments, extensions, and any extended properties. ", - "userConsentDisplayName": "Read basic mail you can access", - "value": "Mail.ReadBasic.Shared" - }, - { - "description": "Allows the app to create, read, update, and delete email in user mailboxes. Does not include permission to send mail. ", - "displayName": "Read and write access to user mail ", - "id": "024d486e-b451-40bb-833d-3e66d98c5c73", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. ", - "userConsentDisplayName": "Read and write access to your mail ", - "value": "Mail.ReadWrite" - }, - { - "description": "Allows the app to create, read, update, and delete mail a user has permission to access, including their own and shared mail. Does not include permission to send mail.", - "displayName": "Read and write user and shared mail", - "id": "5df07973-7d5d-46ed-9847-1271055cbd51", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, update, create, and delete mail you have permission to access, including your own and shared mail. Does not allow the app to send mail on your behalf.", - "userConsentDisplayName": "Read and write mail you can access", - "value": "Mail.ReadWrite.Shared" - }, - { - "description": "Allows the app to send mail as users in the organization. ", - "displayName": "Send mail as a user ", - "id": "e383f46e-2787-4529-855e-0e479a3ffac0", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to send mail as you. ", - "userConsentDisplayName": "Send mail as you ", - "value": "Mail.Send" - }, - { - "description": "Allows the app to send mail as the signed-in user, including sending on-behalf of others.", - "displayName": "Send mail on behalf of others", - "id": "a367ab51-6b49-43bf-a716-a1fb06d2a174", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to send mail as you or on-behalf of someone else.", - "userConsentDisplayName": "Send mail on behalf of others or yourself", - "value": "Mail.Send.Shared" - }, - { - "description": "Allows the app to the read user's mailbox settings. Does not include permission to send mail.", - "displayName": "Read user mailbox settings", - "id": "87f447af-9fa4-4c32-9dfa-4a57a73d18ce", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your mailbox settings.", - "userConsentDisplayName": "Read your mailbox settings", - "value": "MailboxSettings.Read" - }, - { - "description": "Allows the app to create, read, update, and delete user's mailbox settings. Does not include permission to send mail.", - "displayName": "Read and write user mailbox settings", - "id": "818c620a-27a9-40bd-a6a5-d96f7d610b4b", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, update, create, and delete your mailbox settings.", - "userConsentDisplayName": "Read and write to your mailbox settings", - "value": "MailboxSettings.ReadWrite" - }, - { - "description": "Allows the app to read all managed tenant information on behalf of the signed-in user.", - "displayName": "Read all managed tenant information", - "id": "dc34164e-6c4a-41a0-be89-3ae2fbad7cd3", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read all managed tenant information on your behalf.", - "userConsentDisplayName": "Read all managed tenant information", - "value": "ManagedTenants.Read.All" - }, - { - "description": "Allows the app to read and write all managed tenant information on behalf of the signed-in user.", - "displayName": "Read and write all managed tenant information", - "id": "b31fa710-c9b3-4d9e-8f5e-8036eecddab9", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write all managed tenant information on your behalf.", - "userConsentDisplayName": "Read and write all managed tenant information", - "value": "ManagedTenants.ReadWrite.All" - }, - { - "description": "Allows the app to read the memberships of hidden groups and administrative units on behalf of the signed-in user, for those hidden groups and administrative units that the signed-in user has access to.", - "displayName": "Read hidden memberships", - "id": "f6a3db3e-f7e8-4ed2-a414-557c8c9830be", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the memberships of hidden groups or administrative units on your behalf, for those hidden groups or adminstrative units that you have access to.", - "userConsentDisplayName": "Read your hidden memberships", - "value": "Member.Read.Hidden" - }, - { - "description": "Allows the app to read multi-tenant organization details and tenants on behalf of the signed-in user.", - "displayName": "Read multi-tenant organization details and tenants", - "id": "526aa72a-5878-49fe-bf4e-357973af9b06", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read multi-tenant organization details and tenants on your behalf.", - "userConsentDisplayName": "Read multi-tenant organization details and tenants", - "value": "MultiTenantOrganization.Read.All" - }, - { - "description": "Allows the app to read multi-tenant organization basic details and active tenants on behalf of the signed-in user.", - "displayName": "Read multi-tenant organization basic details and active tenants", - "id": "225db56b-15b2-4daa-acb3-0eec2bbe4849", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read multi-tenant organization basic details and active tenants on your behalf.", - "userConsentDisplayName": "Read multi-tenant organization basic details and active tenants", - "value": "MultiTenantOrganization.ReadBasic.All" - }, - { - "description": "Allows the app to read and write multi-tenant organization details and tenants on behalf of the signed-in user.", - "displayName": "Read and write multi-tenant organization details and tenants", - "id": "77af1528-84f3-4023-8d90-d219cd433108", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write multi-tenant organization details and tenants on your behalf.", - "userConsentDisplayName": "Read and write multi-tenant organization details and tenants", - "value": "MultiTenantOrganization.ReadWrite.All" - }, - { - "description": "Allows the app to read your organization's branches for network access on behalf of the signed-in user.", - "displayName": "Read properties of branches for network access", - "id": "4051c7fc-b429-4804-8d80-8f1f8c24a6f7", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your organization's branches for network access on your behalf.", - "userConsentDisplayName": "Read properties of branches for network access", - "value": "NetworkAccessBranch.Read.All" - }, - { - "description": "Allows the app to read and write your organization's branches for network access on behalf of the signed-in user.", - "displayName": "Read and write properties of branches for network access", - "id": "b8a36cc2-b810-461a-baa4-a7281e50bd5c", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write your organization's branches for network access on your behalf.", - "userConsentDisplayName": "Read and write properties of branches for network access", - "value": "NetworkAccessBranch.ReadWrite.All" - }, - { - "description": "Allows the app to read your organization's security and routing network access policies on behalf of the signed-in user.", - "displayName": "Read security and routing policies for network access", - "id": "ba22922b-752c-446f-89d7-a2d92398fceb", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your organization's security and routing network access policies on your behalf.", - "userConsentDisplayName": "Read security and routing policies for network access", - "value": "NetworkAccessPolicy.Read.All" - }, - { - "description": "Allows the app to read and write your organization's security and routing network access policies on behalf of the signed-in user.", - "displayName": "Read and write security and routing policies for network access", - "id": "b1fbad0f-ef6e-42ed-8676-bca7fa3e7291", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write your organization's security and routing network access policies on your behalf.", - "userConsentDisplayName": "Read and write security and routing policies for network access", - "value": "NetworkAccessPolicy.ReadWrite.All" - }, - { - "description": "Allows the app to read the titles of OneNote notebooks and sections and to create new pages, notebooks, and sections on behalf of the signed-in user.", - "displayName": "Create user OneNote notebooks", - "id": "9d822255-d64d-4b7a-afdb-833b9a97ed02", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.", - "userConsentDisplayName": "Create your OneNote notebooks", - "value": "Notes.Create" - }, - { - "description": "Allows the app to read OneNote notebooks on behalf of the signed-in user.", - "displayName": "Read user OneNote notebooks", - "id": "371361e4-b9e2-4a3f-8315-2a301a3b0a3d", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read OneNote notebooks on your behalf.", - "userConsentDisplayName": "Read your OneNote notebooks", - "value": "Notes.Read" - }, - { - "description": "Allows the app to read OneNote notebooks that the signed-in user has access to in the organization.", - "displayName": "Read all OneNote notebooks that user can access", - "id": "dfabfca6-ee36-4db2-8208-7a28381419b3", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read all the OneNote notebooks that you have access to.", - "userConsentDisplayName": "Read all OneNote notebooks that you can access", - "value": "Notes.Read.All" - }, - { - "description": "Allows the app to read, share, and modify OneNote notebooks on behalf of the signed-in user.", - "displayName": "Read and write user OneNote notebooks", - "id": "615e26af-c38a-4150-ae3e-c3b0d4cb1d6a", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.", - "userConsentDisplayName": "Read and write your OneNote notebooks", - "value": "Notes.ReadWrite" - }, - { - "description": "Allows the app to read, share, and modify OneNote notebooks that the signed-in user has access to in the organization.", - "displayName": "Read and write all OneNote notebooks that user can access", - "id": "64ac0503-b4fa-45d9-b544-71a463f05da0", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.", - "userConsentDisplayName": "Read and write all OneNote notebooks that you can access", - "value": "Notes.ReadWrite.All" - }, - { - "description": "This is deprecated! Do not use! This permission no longer has any effect. You can safely consent to it. No additional privileges will be granted to the app.", - "displayName": "Limited notebook access (deprecated)", - "id": "ed68249d-017c-4df5-9113-e684c7f8760b", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "This permission no longer has any effect. You can safely consent to it. No additional privileges will be granted to the app.", - "userConsentDisplayName": "Limited access to your OneNote notebooks for this app (preview)", - "value": "Notes.ReadWrite.CreatedByApp" - }, - { - "description": "Allows the app to deliver its notifications on behalf of signed-in users. Also allows the app to read, update, and delete the user's notification items for this app.", - "displayName": "Deliver and manage user notifications for this app", - "id": "89497502-6e42-46a2-8cb2-427fd3df970a", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to deliver its notifications, on your behalf. Also allows the app to read, update, and delete your notification items for this app.", - "userConsentDisplayName": "Deliver and manage your notifications for this app", - "value": "Notifications.ReadWrite.CreatedByApp" - }, - { - "description": "Allows the app to see and update the data you gave it access to, even when users are not currently using the app. This does not give the app any additional permissions.", - "displayName": "Maintain access to data you have given it access to", - "id": "7427e0e9-2fba-42fe-b0c0-848c9e6a8182", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to see and update the data you gave it access to, even when you are not currently using the app. This does not give the app any additional permissions.", - "userConsentDisplayName": "Maintain access to data you have given it access to", - "value": "offline_access" - }, - { - "description": "Allows the app to read online meeting artifacts on behalf of the signed-in user.", - "displayName": "Read user's online meeting artifacts", - "id": "110e5abb-a10c-4b59-8b55-9b4daa4ef743", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read online meeting artifacts on your behalf.", - "userConsentDisplayName": "Read user's online meeting artifacts", - "value": "OnlineMeetingArtifact.Read.All" - }, - { - "description": "Allows the app to read all recordings of online meetings, on behalf of the signed-in user.", - "displayName": "Read all recordings of online meetings.", - "id": "190c2bb6-1fdd-4fec-9aa2-7d571b5e1fe3", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read all recordings of online meetings, on your behalf. ", - "userConsentDisplayName": "Read all recordings of online meetings. ", - "value": "OnlineMeetingRecording.Read.All" - }, - { - "description": "Allows the app to read online meeting details on behalf of the signed-in user.", - "displayName": "Read user's online meetings", - "id": "9be106e1-f4e3-4df5-bdff-e4bc531cbe43", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read online meeting details on your behalf.", - "userConsentDisplayName": "Read your online meetings", - "value": "OnlineMeetings.Read" - }, - { - "description": "Allows the app to read and create online meetings on behalf of the signed-in user.", - "displayName": "Read and create user's online meetings", - "id": "a65f2972-a4f8-4f5e-afd7-69ccb046d5dc", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and create online meetings on your behalf.", - "userConsentDisplayName": "Read and create your online meetings", - "value": "OnlineMeetings.ReadWrite" - }, - { - "description": "Allows the app to read all transcripts of online meetings, on behalf of the signed-in user.", - "displayName": "Read all transcripts of online meetings. ", - "id": "30b87d18-ebb1-45db-97f8-82ccb1f0190c", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read all transcripts of online meetings, on your behalf.", - "userConsentDisplayName": "Read all transcripts of online meetings.", - "value": "OnlineMeetingTranscript.Read.All" - }, - { - "description": "Allows the app to read all on-premises directory synchronization information for the organization, on behalf of the signed-in user.", - "displayName": "Read all on-premises directory synchronization information", - "id": "f6609722-4100-44eb-b747-e6ca0536989d", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read all on-premises directory synchronization information for the organization, on your behalf.", - "userConsentDisplayName": "Read all on-premises directory synchronization information", - "value": "OnPremDirectorySynchronization.Read.All" - }, - { - "description": "Allows the app to read and write all on-premises directory synchronization information for the organization, on behalf of the signed-in user.", - "displayName": "Read and write all on-premises directory synchronization information", - "id": "c2d95988-7604-4ba1-aaed-38a5f82a51c7", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write all on-premises directory synchronization information for the organization, on your behalf.", - "userConsentDisplayName": "Read and write all on-premises directory synchronization information", - "value": "OnPremDirectorySynchronization.ReadWrite.All" - }, - { - "description": "Allows the app to manage hybrid identity service configuration by creating, viewing, updating and deleting on-premises published resources, on-premises agents and agent groups, on behalf of the signed-in user.", - "displayName": "Manage on-premises published resources", - "id": "8c4d5184-71c2-4bf8-bb9d-bc3378c9ad42", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to manage hybrid identity service configuration by creating, viewing, updating and deleting on-premises published resources, on-premises agents and agent groups, on your behalf.", - "userConsentDisplayName": "Manage on-premises published resources", - "value": "OnPremisesPublishingProfiles.ReadWrite.All" - }, - { - "description": "Allows users to sign in to the app with their work or school accounts and allows the app to see basic user profile information.", - "displayName": "Sign users in", - "id": "37f7f235-527c-4136-accd-4a02d197296e", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows you to sign in to the app with your work or school account and allows the app to read your basic profile information.", - "userConsentDisplayName": "Sign in as you", - "value": "openid" - }, - { - "description": "Allows the app to read the organization and related resources, on behalf of the signed-in user. Related resources include things like subscribed skus and tenant branding information.", - "displayName": "Read organization information", - "id": "4908d5b9-3fb2-4b1e-9336-1888b7937185", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the organization and related resources, on your behalf. Related resources include things like subscribed skus and tenant branding information.", - "userConsentDisplayName": "Read organization information", - "value": "Organization.Read.All" - }, - { - "description": "Allows the app to read and write the organization and related resources, on behalf of the signed-in user. Related resources include things like subscribed skus and tenant branding information.", - "displayName": "Read and write organization information", - "id": "46ca0847-7e6b-426e-9775-ea810a948356", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write the organization and related resources, on your behalf. Related resources include things like subscribed skus and tenant branding information.", - "userConsentDisplayName": "Read and write organization information", - "value": "Organization.ReadWrite.All" - }, - { - "description": "Allows the app to read all organizational contacts on behalf of the signed-in user.  These contacts are managed by the organization and are different from a user's personal contacts.", - "displayName": "Read organizational contacts", - "id": "08432d1b-5911-483c-86df-7980af5cdee0", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read all organizational contacts on your behalf.  These contacts are managed by the organization and are different from your personal contacts.", - "userConsentDisplayName": "Read organizational contacts", - "value": "OrgContact.Read.All" - }, - { - "description": "Allows the app to read organization-wide apps and services settings on behalf of the signed-in user.", - "displayName": "Read organization-wide apps and services settings", - "id": "1e9b7a7e-4d64-44ff-acf5-2e9651c1519f", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read organization-wide apps and services settings on your behalf.", - "userConsentDisplayName": "Read organization-wide apps and services settings", - "value": "OrgSettings-AppsAndServices.Read.All" - }, - { - "description": "Allows the app to read and write organization-wide apps and services settings on behalf of the signed-in user.", - "displayName": "Read and write organization-wide apps and services settings", - "id": "c167b0e7-47c0-48e8-9eee-9892f58018fa", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write organization-wide apps and services settings on your behalf.", - "userConsentDisplayName": "Read and write organization-wide apps and services settings", - "value": "OrgSettings-AppsAndServices.ReadWrite.All" - }, - { - "description": "Allows the app to read organization-wide Dynamics customer voice settings on behalf of the signed-in user.", - "displayName": "Read organization-wide Dynamics customer voice settings", - "id": "9862d930-5aec-4a98-8d4f-7277a8db9bcb", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read organization-wide Dynamics customer voice settings on your behalf.", - "userConsentDisplayName": "Read organization-wide dynamics customer voice settings", - "value": "OrgSettings-DynamicsVoice.Read.All" - }, - { - "description": "Allows the app to read and write organization-wide Dynamics customer voice settings on behalf of the signed-in user.", - "displayName": "Read and write organization-wide Dynamics customer voice settings", - "id": "4cea26fb-6967-4234-82c4-c044414743f8", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write organization-wide Dynamics customer voice settings on your behalf.", - "userConsentDisplayName": "Read and write organization-wide Dynamics customer voice settings", - "value": "OrgSettings-DynamicsVoice.ReadWrite.All" - }, - { - "description": "Allows the app to read organization-wide Microsoft Forms settings on behalf of the signed-in user.", - "displayName": "Read organization-wide Microsoft Forms settings", - "id": "210051a0-1ffc-435c-ae76-02d226d05752", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read organization-wide Microsoft Forms settings on your behalf.", - "userConsentDisplayName": "Read organization-wide Microsoft Forms settings", - "value": "OrgSettings-Forms.Read.All" - }, - { - "description": "Allows the app to read and write organization-wide Microsoft Forms settings on behalf of the signed-in user.", - "displayName": "Read and write organization-wide Microsoft Forms settings", - "id": "346c19ff-3fb2-4e81-87a0-bac9e33990c1", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write organization-wide Microsoft Forms settings on your behalf.", - "userConsentDisplayName": "Read and write organization-wide Microsoft Forms settings", - "value": "OrgSettings-Forms.ReadWrite.All" - }, - { - "description": "Allows the app to read organization-wide Microsoft 365 apps installation settings on behalf of the signed-in user.", - "displayName": "Read organization-wide Microsoft 365 apps installation settings", - "id": "8cbdb9f6-9c2e-451a-814d-ec606e5d0212", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read organization-wide Microsoft 365 apps installation settings on your behalf.", - "userConsentDisplayName": "Read organization-wide Microsoft 365 apps installation settings", - "value": "OrgSettings-Microsoft365Install.Read.All" - }, - { - "description": "Allows the app to read and write organization-wide Microsoft 365 apps installation settings on behalf of the signed-in user.", - "displayName": "Read and write organization-wide Microsoft 365 apps installation settings", - "id": "1ff35e91-19eb-42d8-aa2d-cc9891127ae5", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write organization-wide Microsoft 365 apps installation settings on your behalf.", - "userConsentDisplayName": "Read and write organization-wide Microsoft 365 apps installation settings", - "value": "OrgSettings-Microsoft365Install.ReadWrite.All" - }, - { - "description": "Allows the app to read organization-wide Microsoft To Do settings on behalf of the signed-in user.", - "displayName": "Read organization-wide Microsoft To Do settings", - "id": "7ff96f41-f022-45ba-acd8-ef3f03063d6b", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read organization-wide Microsoft To Do settings on your behalf.", - "userConsentDisplayName": "Read organization-wide Microsoft To Do settings", - "value": "OrgSettings-Todo.Read.All" - }, - { - "description": "Allows the app to read and write organization-wide Microsoft To Do settings on behalf of the signed-in user.", - "displayName": "Read and write organization-wide Microsoft To Do settings", - "id": "087502c2-5263-433e-abe3-8f77231a0627", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write organization-wide Microsoft To Do settings on your behalf.", - "userConsentDisplayName": "Read and write organization-wide Microsoft To Do settings", - "value": "OrgSettings-Todo.ReadWrite.All" - }, - { - "description": "Allows the app to read a ranked list of relevant people of the signed-in user. The list includes local contacts, contacts from social networking, your organization's directory, and people from recent communications (such as email and Skype).", - "displayName": "Read users' relevant people lists", - "id": "ba47897c-39ec-4d83-8086-ee8256fa737d", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read a list of people in the order that's most relevant to you. This includes your local contacts, your contacts from social networking, people listed in your organization's directory, and people from recent communications.", - "userConsentDisplayName": "Read your relevant people list", - "value": "People.Read" - }, - { - "description": "Allows the app to read a scored list of relevant people of the signed-in user or other users in the signed-in user's organization. The list can include local contacts, contacts from social networking, your organization's directory, and people from recent communications (such as email and Skype).", - "displayName": "Read all users' relevant people lists", - "id": "b89f9189-71a5-4e70-b041-9887f0bc7e4a", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read a list of people in the order that is most relevant to you. Allows the app to read a list of people in the order that is most relevant to another user in your organization. These can include local contacts, contacts from social networking, people listed in your organization’s directory, and people from recent communications.", - "userConsentDisplayName": "Read all users’ relevant people lists", - "value": "People.Read.All" - }, - { - "description": "Allows the application to read tenant-wide people settings on behalf of the signed-in user.", - "displayName": "Read tenant-wide people settings", - "id": "ec762c5f-388b-4b16-8693-ac1efbc611bc", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read tenant-wide people settings on your behalf.", - "userConsentDisplayName": "Read tenant-wide people settings", - "value": "PeopleSettings.Read.All" - }, - { - "description": "Allows the application to read and write tenant-wide people settings on behalf of the signed-in user.", - "displayName": "Read and write tenant-wide people settings", - "id": "e67e6727-c080-415e-b521-e3f35d5248e9", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read and write tenant-wide people settings on your behalf.", - "userConsentDisplayName": "Read and write tenant-wide people settings", - "value": "PeopleSettings.ReadWrite.All" - }, - { - "description": "Allows the app to read your company's places (conference rooms and room lists) for calendar events and other applications, on behalf of the signed-in user.", - "displayName": "Read all company places", - "id": "cb8f45a0-5c2e-4ea1-b803-84b870a7d7ec", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your company's places (conference rooms and room lists) for calendar events and other applications, on your behalf.", - "userConsentDisplayName": "Read all company places", - "value": "Place.Read.All" - }, - { - "description": "Allows the app to manage organization places (conference rooms and room lists) for calendar events and other applications, on behalf of the signed-in user.", - "displayName": "Read and write organization places", - "id": "4c06a06a-098a-4063-868e-5dfee3827264", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to manage organization places (conference rooms and room lists) for calendar events and other applications, on your behalf.", - "userConsentDisplayName": "Read and write organization places", - "value": "Place.ReadWrite.All" - }, - { - "description": "Allows the app to read your organization's policies on behalf of the signed-in user.", - "displayName": "Read your organization's policies", - "id": "572fea84-0151-49b2-9301-11cb16974376", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your organization's policies on your behalf.", - "userConsentDisplayName": "Read your organization's policies", - "value": "Policy.Read.All" - }, - { - "description": "Allows the app to read your organization's conditional access policies on behalf of the signed-in user.", - "displayName": "Read your organization's conditional access policies", - "id": "633e0fce-8c58-4cfb-9495-12bbd5a24f7c", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your organization's conditional access policies on your behalf.", - "userConsentDisplayName": "Read your organization's conditional access policies", - "value": "Policy.Read.ConditionalAccess" - }, - { - "description": "Allows the app to read your organization’s identity protection policy on behalf of the signed-in user. ", - "displayName": "Read your organization’s identity protection policy", - "id": "d146432f-b803-4ed4-8d42-ba74193a6ede", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your organization’s identity protection policy on your behalf.", - "userConsentDisplayName": "Read your organization’s identity protection policy", - "value": "Policy.Read.IdentityProtection" - }, - { - "description": "Allows the app to read policies related to consent and permission grants for applications, on behalf of the signed-in user.", - "displayName": "Read consent and permission grant policies", - "id": "414de6ea-2d92-462f-b120-6e2a809a6d01", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read policies related to consent and permission grants for applications, on your behalf.", - "userConsentDisplayName": "Read consent and permission grant policies", - "value": "Policy.Read.PermissionGrant" - }, - { - "description": "Allows the app to read and write your organization's directory access review default policy on behalf of the signed-in user.", - "displayName": "Read and write your organization's directory access review default policy", - "id": "4f5bc9c8-ea54-4772-973a-9ca119cb0409", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write your organization's directory access review default policy on your behalf.", - "userConsentDisplayName": "Read and write your organization's directory access review default policy", - "value": "Policy.ReadWrite.AccessReview" - }, - { - "description": "Allows the app to read and write your organization's application configuration policies on behalf of the signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", - "displayName": "Read and write your organization's application configuration policies", - "id": "b27add92-efb2-4f16-84f5-8108ba77985c", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", - "userConsentDisplayName": "Read and write your organization's application configuration policies", - "value": "Policy.ReadWrite.ApplicationConfiguration" - }, - { - "description": "Allows the app to read and write the authentication flow policies, on behalf of the signed-in user. ", - "displayName": "Read and write authentication flow policies", - "id": "edb72de9-4252-4d03-a925-451deef99db7", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write the authentication flow policies for your tenant, on your behalf.", - "userConsentDisplayName": "Read and write your authentication flow policies", - "value": "Policy.ReadWrite.AuthenticationFlows" - }, - { - "description": "Allows the app to read and write the authentication method policies, on behalf of the signed-in user. ", - "displayName": "Read and write authentication method policies", - "id": "7e823077-d88e-468f-a337-e18f1f0e6c7c", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write the authentication method policies for your tenant, on your behalf.", - "userConsentDisplayName": "Read and write your authentication method policies ", - "value": "Policy.ReadWrite.AuthenticationMethod" - }, - { - "description": "Allows the app to read and write your organization's authorization policy on behalf of the signed-in user. For example, authorization policies can control some of the permissions that the out-of-the-box user role has by default.", - "displayName": "Read and write your organization's authorization policy", - "id": "edd3c878-b384-41fd-95ad-e7407dd775be", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write your organization's authorization policy on your behalf. For example, authorization policies can control some of the permissions that the out-of-the-box user role has by default.", - "userConsentDisplayName": "Read and write your organization's authorization policy", - "value": "Policy.ReadWrite.Authorization" - }, - { - "description": "Allows the app to read and write your organization's conditional access policies on behalf of the signed-in user.", - "displayName": "Read and write your organization's conditional access policies", - "id": "ad902697-1014-4ef5-81ef-2b4301988e8c", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write your organization's conditional access policies on your behalf.", - "userConsentDisplayName": "Read and write your organization's conditional access policies", - "value": "Policy.ReadWrite.ConditionalAccess" - }, - { - "description": "Allows the app to read and write your organization's consent requests policy on behalf of the signed-in user.", - "displayName": "Read and write consent request policy", - "id": "4d135e65-66b8-41a8-9f8b-081452c91774", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write your organization's consent request policy on your behalf.", - "userConsentDisplayName": "Read and write consent request policy", - "value": "Policy.ReadWrite.ConsentRequest" - }, - { - "description": "Allows the app to read and write your organization's cross tenant access policies on behalf of the signed-in user.", - "displayName": "Read and write your organization's cross tenant access policies", - "id": "014b43d0-6ed4-4fc6-84dc-4b6f7bae7d85", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write your organization's cross tenant access policies on your behalf.", - "userConsentDisplayName": "Read and write your organization's cross tenant access policies", - "value": "Policy.ReadWrite.CrossTenantAccess" - }, - { - "description": "Allows the app to read and write your organization's device configuration policies on behalf of the signed-in user. For example, device registration policy can limit initial provisioning controls using quota restrictions, additional authentication and authorization checks.", - "displayName": "Read and write your organization's device configuration policies", - "id": "40b534c3-9552-4550-901b-23879c90bcf9", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write your organization's device configuration policies on your behalf. For example, device registration policy can limit initial provisioning controls using quota restrictions, additional authentication and authorization checks.", - "userConsentDisplayName": "Read and write your organization's device configuration policies", - "value": "Policy.ReadWrite.DeviceConfiguration" - }, - { - "description": "Allows the application to read and update the organization's external identities policy on behalf of the signed-in user. For example, external identities policy controls if users invited to access resources in your organization via B2B collaboration or B2B direct connect are allowed to self-service leave.", - "displayName": "Read and write your organization's external identities policy", - "id": "b5219784-1215-45b5-b3f1-88fe1081f9c0", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read and update the organization's external identities policy on your behalf. For example, external identities policy controls if users invited to access resources in your organization via B2B collaboration or B2B direct connect are allowed to self-service leave.", - "userConsentDisplayName": "Read and write your organization's external identities policy", - "value": "Policy.ReadWrite.ExternalIdentities" - }, - { - "description": "Allows the app to read and write your organization's feature rollout policies on behalf of the signed-in user. Includes abilities to assign and remove users and groups to rollout of a specific feature.", - "displayName": "Read and write your organization's feature rollout policies", - "id": "92a38652-f13b-4875-bc77-6e1dbb63e1b2", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write your organization's feature rollout policies on your behalf. Includes abilities to assign and remove users and groups to rollout of a specific feature.", - "userConsentDisplayName": "Read and write your organization's feature rollout policies", - "value": "Policy.ReadWrite.FeatureRollout" - }, - { - "description": "Allows the app to read and write your organization’s identity protection policy on behalf of the signed-in user.", - "displayName": "Read and write your organization’s identity protection policy ", - "id": "7256e131-3efb-4323-9854-cf41c6021770", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write your organization’s identity protection policy on your behalf.", - "userConsentDisplayName": "Read and write your organization’s identity protection policy.", - "value": "Policy.ReadWrite.IdentityProtection" - }, - { - "description": "Allows the app to read and write your organization's mobility management policies on behalf of the signed-in user. For example, a mobility management policy can set the enrollment scope for a given mobility management application.", - "displayName": "Read and write your organization's mobility management policies", - "id": "a8ead177-1889-4546-9387-f25e658e2a79", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write your organization's mobility management policies on your behalf. For example, a mobility management policy can set the enrollment scope for a given mobility management application.", - "userConsentDisplayName": "Read and write your organization's mobility management policies", - "value": "Policy.ReadWrite.MobilityManagement" - }, - { - "description": "Allows the app to manage policies related to consent and permission grants for applications, on behalf of the signed-in user.", - "displayName": "Manage consent and permission grant policies", - "id": "2672f8bb-fd5e-42e0-85e1-ec764dd2614e", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to manage policies related to consent and permission grants for applications, on behalf of the signed-in user.", - "userConsentDisplayName": "Manage consent and permission grant policies", - "value": "Policy.ReadWrite.PermissionGrant" - }, - { - "description": "Allows the app to read and write your organization's security defaults policy on behalf of the signed-in user.", - "displayName": "Read and write your organization's security defaults policy", - "id": "0b2a744c-2abf-4f1e-ad7e-17a087e2be99", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write your organization's security defaults policy on your behalf.", - "userConsentDisplayName": "Read and write your organization's security defaults policy", - "value": "Policy.ReadWrite.SecurityDefaults" - }, - { - "description": "Allows the app to read and write your organization's trust framework policies on behalf of the signed-in user.", - "displayName": "Read and write your organization's trust framework policies", - "id": "cefba324-1a70-4a6e-9c1d-fd670b7ae392", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write your organization's trust framework policies on your behalf.", - "userConsentDisplayName": "Read and write trust framework policies", - "value": "Policy.ReadWrite.TrustFramework" - }, - { - "description": "Allows the app to have the same access to mailboxes as the signed-in user via POP protocol.", - "displayName": "Read and write access to mailboxes via POP.", - "id": "d7b7f2d9-0f45-4ea1-9d42-e50810c06991", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail.", - "userConsentDisplayName": "Read and write access to your mail.", - "value": "POP.AccessAsUser.All" - }, - { - "description": "Allows the app to read presence information on behalf of the signed-in user. Presence information includes activity, availability, status note, calendar out-of-office message, timezone and location.", - "displayName": "Read user's presence information", - "id": "76bc735e-aecd-4a1d-8b4c-2b915deabb79", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your presence information on your behalf. Presence information includes activity, availability, status note, calendar out-of-office message, timezone and location.", - "userConsentDisplayName": "Read your presence information", - "value": "Presence.Read" - }, - { - "description": "Allows the app to read presence information of all users in the directory on behalf of the signed-in user. Presence information includes activity, availability, status note, calendar out-of-office message, timezone and location.", - "displayName": "Read presence information of all users in your organization", - "id": "9c7a330d-35b3-4aa1-963d-cb2b9f927841", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read presence information of all users in the directory on your behalf. Presence information includes activity, availability, status note, calendar out-of-office message, timezone and location.", - "userConsentDisplayName": "Read presence information of all users in your organization", - "value": "Presence.Read.All" - }, - { - "description": "Allows the app to read the presence information and write activity and availability on behalf of the signed-in user. Presence information includes activity, availability, status note, calendar out-of-office message, timezone and location.", - "displayName": "Read and write a user's presence information", - "id": "8d3c54a7-cf58-4773-bf81-c0cd6ad522bb", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the presence information and write activity and availability on your behalf. Presence information includes activity, availability, status note, calendar out-of-office message, timezone and location.", - "userConsentDisplayName": "Read and write your presence information", - "value": "Presence.ReadWrite" - }, - { - "description": "Allows the application to read print connectors on behalf of the signed-in user.", - "displayName": "Read print connectors", - "id": "d69c2d6d-4f72-4f99-a6b9-663e32f8cf68", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read print connectors on your behalf.", - "userConsentDisplayName": "Read print connectors", - "value": "PrintConnector.Read.All" - }, - { - "description": "Allows the application to read and write print connectors on behalf of the signed-in user. ", - "displayName": "Read and write print connectors", - "id": "79ef9967-7d59-4213-9c64-4b10687637d8", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read and write print connectors on your behalf.", - "userConsentDisplayName": "Read and write print connectors", - "value": "PrintConnector.ReadWrite.All" - }, - { - "description": "Allows the application to create (register) printers on behalf of the signed-in user. ", - "displayName": "Register printers  ", - "id": "90c30bed-6fd1-4279-bf39-714069619721", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to create (register) printers on your behalf. ", - "userConsentDisplayName": "Register printers  ", - "value": "Printer.Create" - }, - { - "description": "Allows the application to create (register), read, update, and delete (unregister) printers on behalf of the signed-in user. ", - "displayName": "Register, read, update, and unregister printers", - "id": "93dae4bd-43a1-4a23-9a1a-92957e1d9121", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to create (register), read, update, and delete (unregister) printers on your behalf.  ", - "userConsentDisplayName": "Register, read, update, and unregister printers", - "value": "Printer.FullControl.All" - }, - { - "description": "Allows the application to read printers on behalf of the signed-in user. ", - "displayName": "Read printers", - "id": "3a736c8a-018e-460a-b60c-863b2683e8bf", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read printers on your behalf. ", - "userConsentDisplayName": "Read printers", - "value": "Printer.Read.All" - }, - { - "description": "Allows the application to read and update printers on behalf of the signed-in user. Does not allow creating (registering) or deleting (unregistering) printers.", - "displayName": "Read and update printers", - "id": "89f66824-725f-4b8f-928e-e1c5258dc565", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.", - "userConsentDisplayName": "Read and update printers", - "value": "Printer.ReadWrite.All" - }, - { - "description": "Allows the application to read printer shares on behalf of the signed-in user. ", - "displayName": "Read printer shares", - "id": "ed11134d-2f3f-440d-a2e1-411efada2502", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read printer shares on your behalf. ", - "userConsentDisplayName": "Read printer shares", - "value": "PrinterShare.Read.All" - }, - { - "description": "Allows the application to read basic information about printer shares on behalf of the signed-in user. Does not allow reading access control information.", - "displayName": "Read basic information about printer shares", - "id": "5fa075e9-b951-4165-947b-c63396ff0a37", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read basic information about printer shares on your behalf.", - "userConsentDisplayName": "Read basic information about printer shares", - "value": "PrinterShare.ReadBasic.All" - }, - { - "description": "Allows the application to read and update printer shares on behalf of the signed-in user. ", - "displayName": "Read and write printer shares", - "id": "06ceea37-85e2-40d7-bec3-91337a46038f", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read and update printer shares on your behalf. ", - "userConsentDisplayName": "Read and update printer shares", - "value": "PrinterShare.ReadWrite.All" - }, - { - "description": "Allows the application to create print jobs on behalf of the signed-in user and upload document content to print jobs that the signed-in user created.", - "displayName": "Create print jobs", - "id": "21f0d9c0-9f13-48b3-94e0-b6b231c7d320", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to create print jobs on your behalf and upload document content to print jobs that you created.", - "userConsentDisplayName": "Create your print jobs", - "value": "PrintJob.Create" - }, - { - "description": "Allows the application to read the metadata and document content of print jobs that the signed-in user created.", - "displayName": "Read user's print jobs", - "id": "248f5528-65c0-4c88-8326-876c7236df5e", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read the metadata and document content of print jobs that you created.", - "userConsentDisplayName": "Read your print jobs", - "value": "PrintJob.Read" - }, - { - "description": "Allows the application to read the metadata and document content of print jobs on behalf of the signed-in user. ", - "displayName": "Read print jobs", - "id": "afdd6933-a0d8-40f7-bd1a-b5d778e8624b", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ", - "userConsentDisplayName": "Read print jobs", - "value": "PrintJob.Read.All" - }, - { - "description": "Allows the application to read the metadata of print jobs that the signed-in user created. Does not allow access to print job document content.", - "displayName": "Read basic information of user's print jobs", - "id": "6a71a747-280f-4670-9ca0-a9cbf882b274", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.", - "userConsentDisplayName": "Read basic information of your print jobs", - "value": "PrintJob.ReadBasic" - }, - { - "description": "Allows the application to read the metadata of print jobs on behalf of the signed-in user. Does not allow access to print job document content.", - "displayName": "Read basic information of print jobs", - "id": "04ce8d60-72ce-4867-85cf-6d82f36922f3", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.", - "userConsentDisplayName": "Read basic information of print jobs", - "value": "PrintJob.ReadBasic.All" - }, - { - "description": "Allows the application to read and update the metadata and document content of print jobs that the signed-in user created.", - "displayName": "Read and write user's print jobs", - "id": "b81dd597-8abb-4b3f-a07a-820b0316ed04", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.", - "userConsentDisplayName": "Read and update your print jobs", - "value": "PrintJob.ReadWrite" - }, - { - "description": "Allows the application to read and update the metadata and document content of print jobs on behalf of the signed-in user. ", - "displayName": "Read and write print jobs", - "id": "036b9544-e8c5-46ef-900a-0646cc42b271", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ", - "userConsentDisplayName": "Read and update print jobs", - "value": "PrintJob.ReadWrite.All" - }, - { - "description": "Allows the application to read and update the metadata of print jobs that the signed-in user created. Does not allow access to print job document content.", - "displayName": "Read and write basic information of user's print jobs", - "id": "6f2d22f2-1cb6-412c-a17c-3336817eaa82", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.", - "userConsentDisplayName": "Read and write basic information of your print jobs", - "value": "PrintJob.ReadWriteBasic" - }, - { - "description": "Allows the application to read and update the metadata of print jobs on behalf of the signed-in user. Does not allow access to print job document content.", - "displayName": "Read and write basic information of print jobs", - "id": "3a0db2f6-0d2a-4c19-971b-49109b19ad3d", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.", - "userConsentDisplayName": "Read and write basic information of print jobs", - "value": "PrintJob.ReadWriteBasic.All" - }, - { - "description": "Allows the application to read tenant-wide print settings on behalf of the signed-in user.", - "displayName": "Read tenant-wide print settings", - "id": "490f32fd-d90f-4dd7-a601-ff6cdc1a3f6c", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read tenant-wide print settings on your behalf.", - "userConsentDisplayName": "Read tenant-wide print settings", - "value": "PrintSettings.Read.All" - }, - { - "description": "Allows the application to read and write tenant-wide print settings on behalf of the signed-in user.", - "displayName": "Read and write tenant-wide print settings", - "id": "9ccc526a-c51c-4e5c-a1fd-74726ef50b8f", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read and write tenant-wide print settings on your behalf.", - "userConsentDisplayName": "Read and write tenant-wide print settings", - "value": "PrintSettings.ReadWrite.All" - }, - { - "description": "Allows the app to read time-based assignment and just-in-time elevation (including scheduled elevation) of Azure AD built-in and custom administrative roles, on behalf of the signed-in user.", - "displayName": "Read privileged access to Azure AD", - "id": "b3a539c9-59cb-4ad5-825a-041ddbdc2bdb", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read time-based assignment and just-in-time elevation (including scheduled elevation) of Azure AD built-in and custom administrative roles, on your behalf.", - "userConsentDisplayName": "Read privileged access to Azure AD", - "value": "PrivilegedAccess.Read.AzureAD" - }, - { - "description": "Allows the app to read time-based assignment and just-in-time elevation (including scheduled elevation) of Azure AD groups, on behalf of the signed-in user.", - "displayName": "Read privileged access to Azure AD groups", - "id": "d329c81c-20ad-4772-abf9-3f6fdb7e5988", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read time-based assignment and just-in-time elevation (including scheduled elevation) of Azure AD groups, on your behalf.", - "userConsentDisplayName": "Read privileged access to Azure AD groups", - "value": "PrivilegedAccess.Read.AzureADGroup" - }, - { - "description": "Allows the app to read time-based assignment and just-in-time elevation of Azure resources (like your subscriptions, resource groups, storage, compute) on behalf of the signed-in user.", - "displayName": "Read privileged access to Azure resources", - "id": "1d89d70c-dcac-4248-b214-903c457af83a", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read time-based assignment and just-in-time elevation of Azure resources (like your subscriptions, resource groups, storage, compute) on your behalf.", - "userConsentDisplayName": "Read privileged access to your Azure resources", - "value": "PrivilegedAccess.Read.AzureResources" - }, - { - "description": "Allows the app to request and manage just in time elevation (including scheduled elevation) of users to Azure AD built-in administrative roles, on behalf of signed-in users.", - "displayName": "Read and write privileged access to Azure AD", - "id": "3c3c74f5-cdaa-4a97-b7e0-4e788bfcfb37", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to request and manage just in time elevation (including scheduled elevation) of users to Azure AD built-in administrative roles, on your behalf.", - "userConsentDisplayName": "Read and write privileged access to Azure AD", - "value": "PrivilegedAccess.ReadWrite.AzureAD" - }, - { - "description": "Allows the app to request and manage time-based assignment and just-in-time elevation (including scheduled elevation) of Azure AD groups, on behalf of the signed-in user.", - "displayName": "Read and write privileged access to Azure AD groups", - "id": "32531c59-1f32-461f-b8df-6f8a3b89f73b", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to request and manage time-based assignment and just-in-time elevation (including scheduled elevation) of Azure AD groups, on your behalf.", - "userConsentDisplayName": "Read and write privileged access to Azure AD groups", - "value": "PrivilegedAccess.ReadWrite.AzureADGroup" - }, - { - "description": "Allows the app to request and manage time-based assignment and just-in-time elevation of user privileges to manage Azure resources (like subscriptions, resource groups, storage, compute) on behalf of the signed-in users.", - "displayName": "Read and write privileged access to Azure resources", - "id": "a84a9652-ffd3-496e-a991-22ba5529156a", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to request and manage time-based assignment and just-in-time elevation of user privileges to manage  your Azure resources (like your subscriptions, resource groups, storage, compute) on your behalf.", - "userConsentDisplayName": "Read and write privileged access to Azure resources", - "value": "PrivilegedAccess.ReadWrite.AzureResources" - }, - { - "description": "Allows the app to read time-based assignment schedules for access to Azure AD groups, on behalf of the signed-in user.", - "displayName": "Read assignment schedules for access to Azure AD groups", - "id": "02a32cc4-7ab5-4b58-879a-0586e0f7c495", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read time-based assignment schedules for access to Azure AD groups, on your behalf.", - "userConsentDisplayName": "Read assignment schedules for access to Azure AD groups", - "value": "PrivilegedAssignmentSchedule.Read.AzureADGroup" - }, - { - "description": "Allows the app to read, create, and delete time-based assignment schedules for access to Azure AD groups, on behalf of the signed-in user.", - "displayName": "Read, create, and delete assignment schedules for access to Azure AD groups", - "id": "06dbc45d-6708-4ef0-a797-f797ee68bf4b", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, create, and delete time-based assignment schedules for access to Azure AD groups, on your behalf.", - "userConsentDisplayName": "Read, create, and delete assignment schedules for access to Azure AD groups", - "value": "PrivilegedAssignmentSchedule.ReadWrite.AzureADGroup" - }, - { - "description": "Allows the app to read time-based eligibility schedules for access to Azure AD groups, on behalf of the signed-in user.", - "displayName": "Read eligibility schedules for access to Azure AD groups", - "id": "8f44f93d-ecef-46ae-a9bf-338508d44d6b", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read time-based eligibility schedules for access to Azure AD groups, on your behalf.", - "userConsentDisplayName": "Read eligibility schedules for access to Azure AD groups", - "value": "PrivilegedEligibilitySchedule.Read.AzureADGroup" - }, - { - "description": "Allows the app to read, create, and delete time-based eligibility schedules for access to Azure AD groups, on behalf of the signed-in user.", - "displayName": "Read, create, and delete eligibility schedules for access to Azure AD groups", - "id": "ba974594-d163-484e-ba39-c330d5897667", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, create, and delete time-based eligibility schedules for access to Azure AD groups, on your behalf.", - "userConsentDisplayName": "Read, create, and delete eligibility schedules for access to Azure AD groups", - "value": "PrivilegedEligibilitySchedule.ReadWrite.AzureADGroup" - }, - { - "description": "Allows the app to see your users' basic profile (e.g., name, picture, user name, email address)", - "displayName": "View users' basic profile", - "id": "14dad69e-099b-42c9-810b-d002981feec1", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to see your basic profile (e.g., name, picture, user name, email address)", - "userConsentDisplayName": "View your basic profile", - "value": "profile" - }, - { - "description": "Allows the app to read programs and program controls that the signed-in user has access to in the organization.", - "displayName": "Read all programs that user can access", - "id": "c492a2e1-2f8f-4caa-b076-99bbf6e40fe4", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read information on programs and program controls that you have access to.", - "userConsentDisplayName": "Read programs that you can access", - "value": "ProgramControl.Read.All" - }, - { - "description": "Allows the app to read, update, delete and perform actions on programs and program controls that the signed-in user has access to in the organization.", - "displayName": "Manage all programs that user can access", - "id": "50fd364f-9d93-4ae1-b170-300e87cccf84", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, update and perform action on programs and program controls that you have access to.", - "userConsentDisplayName": "Manage programs that you can access", - "value": "ProgramControl.ReadWrite.All" - }, - { - "description": "Allows an app to read all question and answer sets that the signed-in user can access.", - "displayName": "Read all Questions and Answers that the user can access.", - "id": "f73fa04f-b9a5-4df9-8843-993ce928925e", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read all question and answer sets that you can access.", - "userConsentDisplayName": "Read all Questions and Answers that you can access.", - "value": "QnA.Read.All" - }, - { - "description": "Allows the application to read any data from Records Management, such as configuration, labels, and policies on behalf of the signed-in user.", - "displayName": "Read Records Management configuration, labels, and policies", - "id": "07f995eb-fc67-4522-ad66-2b8ca8ea3efd", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read any data from Records Management, such as configuration, labels and policies on your behalf.", - "userConsentDisplayName": "Read Records Management configuration, labels, and policies", - "value": "RecordsManagement.Read.All" - }, - { - "description": "Allow the application to create, update and delete any data from Records Management, such as configuration, labels, and policies on behalf of the signed-in user.", - "displayName": "Read and write Records Management configuration, labels, and policies", - "id": "f2833d75-a4e6-40ab-86d4-6dfe73c97605", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allow the application to create, update and delete any data from Records Management, such as configuration, labels, and policies on your behalf.", - "userConsentDisplayName": "Read and write Records Management configuration, labels, and policies", - "value": "RecordsManagement.ReadWrite.All" - }, - { - "description": "Allows an app to read all service usage reports on behalf of the signed-in user. Services that provide usage reports include Office 365 and Azure Active Directory.", - "displayName": "Read all usage reports", - "id": "02e97553-ed7b-43d0-ab3c-f8bace0d040c", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.", - "userConsentDisplayName": "Read all usage reports", - "value": "Reports.Read.All" - }, - { - "description": "Allows the app to read admin report settings, such as whether to display concealed information in reports, on behalf of the signed-in user", - "displayName": "Read admin report settings", - "id": "84fac5f4-33a9-4100-aa38-a20c6d29e5e7", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read admin report settings, such as whether to display concealed information in reports, on your behalf.", - "userConsentDisplayName": "Read admin report settings", - "value": "ReportSettings.Read.All" - }, - { - "description": "Allows the app to read and update admin report settings, such as whether to display concealed information in reports, on behalf of the signed-in user.", - "displayName": "Read and write admin report settings", - "id": "b955410e-7715-4a88-a940-dfd551018df3", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and update admin report settings, such as whether to display concealed information in reports, on your behalf.", - "userConsentDisplayName": "Read and write admin report settings", - "value": "ReportSettings.ReadWrite.All" - }, - { - "description": "Allows the app to read the resource specific permissions granted on a user account, on behalf of the signed-in user.", - "displayName": "Read resource specific permissions granted on a user account", - "id": "f1d91a8f-88e7-4774-8401-b668d5bca0c5", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the resource specific permission granted on your account, on your behalf.", - "userConsentDisplayName": "Read resource specific permissions granted on your user account", - "value": "ResourceSpecificPermissionGrant.ReadForUser" - }, - { - "description": "Allows the app to read the active role-based access control (RBAC) assignments for your company's directory, on behalf of the signed-in user. This includes reading directory role templates, and directory roles.", - "displayName": "Read all active role assignments for your company's directory", - "id": "344a729c-0285-42c6-9014-f12b9b8d6129", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes reading directory role templates, and directory roles.", - "userConsentDisplayName": "Read all active role assignments for your company's directory", - "value": "RoleAssignmentSchedule.Read.Directory" - }, - { - "description": "Allows the app to read and manage the active role-based access control (RBAC) assignments for your company's directory, on behalf of the signed-in user. This includes managing active directory role membership, and reading directory role templates, directory roles and active memberships.", - "displayName": "Read, update, and delete all active role assignments for your company's directory", - "id": "8c026be3-8e26-4774-9372-8d5d6f21daff", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and manage the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing active directory role membership, and reading directory role templates, directory roles and active memberships.", - "userConsentDisplayName": "Read, update, and delete all active role assignments for your company's directory", - "value": "RoleAssignmentSchedule.ReadWrite.Directory" - }, - { - "description": "Allows the app to read the eligible role-based access control (RBAC) assignments for your company's directory, on behalf of the signed-in user. This includes reading directory role templates, and directory roles.", - "displayName": "Read all eligible role assignments for your company's directory", - "id": "eb0788c2-6d4e-4658-8c9e-c0fb8053f03d", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes reading directory role templates, and directory roles.", - "userConsentDisplayName": "Read all eligible role assignments for your company's directory", - "value": "RoleEligibilitySchedule.Read.Directory" - }, - { - "description": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments for your company's directory, on behalf of the signed-in user. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.", - "displayName": "Read, update, and delete all eligible role assignments for your company's directory", - "id": "62ade113-f8e0-4bf9-a6ba-5acb31db32fd", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.", - "userConsentDisplayName": "Read, update, and delete all eligible role assignments for your company's directory", - "value": "RoleEligibilitySchedule.ReadWrite.Directory" - }, - { - "description": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on behalf of the signed-in user. This includes reading role definitions and role assignments.", - "displayName": "Read role management data for all RBAC providers", - "id": "48fec646-b2ba-4019-8681-8eb31435aded", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.", - "userConsentDisplayName": "Read role management data for all RBAC providers", - "value": "RoleManagement.Read.All" - }, - { - "description": "Allows the app to read the Cloud PC role-based access control (RBAC) settings, on behalf of the signed-in user.  This includes reading Cloud PC role definitions and role assignments.", - "displayName": "Read Cloud PC RBAC settings", - "id": "9619b88a-8a25-48a7-9571-d23be0337a79", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the Cloud PC role-based access control (RBAC) settings, on your behalf.  This includes reading Cloud PC role definitions and role assignments.", - "userConsentDisplayName": "Read Cloud PC RBAC settings", - "value": "RoleManagement.Read.CloudPC" - }, - { - "description": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on behalf of the signed-in user. This includes reading directory role templates, directory roles and memberships.", - "displayName": "Read directory RBAC settings", - "id": "741c54c3-0c1e-44a1-818b-3f97ab4e8c83", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.", - "userConsentDisplayName": "Read directory RBAC settings", - "value": "RoleManagement.Read.Directory" - }, - { - "description": "Allows the app to read the role-based access control (RBAC) settings for your organization's Exchange Online service, on behalf of the signed-in user. This includes reading Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.", - "displayName": "Read Exchange Online RBAC configuration", - "id": "3bc15058-7858-4141-b24f-ae43b4e80b52", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the role-based access control (RBAC) settings for your organization's Exchange Online service, on your behalf. This includes reading Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.", - "userConsentDisplayName": "Read Exchange Online RBAC configuration", - "value": "RoleManagement.Read.Exchange" - }, - { - "description": "Allows the app to read and manage the Cloud PC role-based access control (RBAC) settings, on behalf of the signed-in user. This includes reading and managing Cloud PC role definitions and role assignments.", - "displayName": "Read and write Cloud PC RBAC settings", - "id": "501d06f8-07b8-4f18-b5c6-c191a4af7a82", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and manage the Cloud PC role-based access control (RBAC) settings, on your behalf. This includes reading and managing Cloud PC role definitions and memberships.", - "userConsentDisplayName": "Read and write Cloud PC RBAC settings", - "value": "RoleManagement.ReadWrite.CloudPC" - }, - { - "description": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on behalf of the signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", - "displayName": "Read and write directory RBAC settings", - "id": "d01b97e9-cbc0-49fe-810a-750afd5527a3", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", - "userConsentDisplayName": "Read and write directory RBAC settings", - "value": "RoleManagement.ReadWrite.Directory" - }, - { - "description": "Allows the app to read and manage the role-based access control (RBAC) settings for your organization's Exchange Online service, on behalf of the signed-in user. This includes reading, creating, updating, and deleting Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.", - "displayName": "Read and write Exchange Online RBAC configuration", - "id": "c1499fe0-52b1-4b22-bed2-7a244e0e879f", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your organization's Exchange Online service, on your behalf. This includes reading, creating, updating, and deleting Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.", - "userConsentDisplayName": "Read and write Exchange Online RBAC configuration", - "value": "RoleManagement.ReadWrite.Exchange" - }, - { - "description": "Allows the app to read the role-based access control (RBAC) alerts for your company's directory, on behalf of the signed-in user. This includes reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", - "displayName": "Read all alert data for your company's directory", - "id": "cce71173-f76d-446e-97ff-efb2d82e11b1", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the role-based access control (RBAC) alerts for your company's directory, on your behalf. This includes reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", - "userConsentDisplayName": "Read all alert data for your company's directory", - "value": "RoleManagementAlert.Read.Directory" - }, - { - "description": "Allows the app to read and manage the role-based access control (RBAC) alerts for your company's directory, on behalf of the signed-in user. This includes managing alert settings, initiating alert scans, dimissing alerts, remediating alert incidents, and reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", - "displayName": "Read all alert data, configure alerts, and take actions on all alerts for your company's directory", - "id": "435644c6-a5b1-40bf-8f52-fe8e5b53e19c", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and manage the role-based access control (RBAC) alerts for your company's directory, on your behalf. This includes managing alert settings, initiating alert scans, dimissing alerts, remediating alert incidents, and reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", - "userConsentDisplayName": "Read all alert data, configure alerts, and take actions on all alerts for your company's directory", - "value": "RoleManagementAlert.ReadWrite.Directory" - }, - { - "description": "Allows the app to read policies in Privileged Identity Management for Groups, on behalf of the signed-in user.", - "displayName": "Read all policies in PIM for Groups", - "id": "7e26fdff-9cb1-4e56-bede-211fe0e420e8", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read policies in Privileged Identity Management for Groups, on your behalf.", - "userConsentDisplayName": "Read all policies in PIM for Groups", - "value": "RoleManagementPolicy.Read.AzureADGroup" - }, - { - "description": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on behalf of the signed-in user.", - "displayName": "Read all policies for privileged role assignments of your company's directory", - "id": "3de2cdbe-0ff5-47d5-bdee-7f45b4749ead", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.", - "userConsentDisplayName": "Read all policies for privileged role assignments of your company's directory", - "value": "RoleManagementPolicy.Read.Directory" - }, - { - "description": "Allows the app to read, update, and delete policies in Privileged Identity Management for Groups, on behalf of the signed-in user.", - "displayName": "Read, update, and delete all policies in PIM for Groups", - "id": "0da165c7-3f15-4236-b733-c0b0f6abe41d", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, update, and delete policies in Privileged Identity Management for Groups, on your behalf.", - "userConsentDisplayName": "Read, update, and delete all policies in PIM for Groups", - "value": "RoleManagementPolicy.ReadWrite.AzureADGroup" - }, - { - "description": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on behalf of the signed-in user.", - "displayName": "Read, update, and delete all policies for privileged role assignments of your company's directory", - "id": "1ff1be21-34eb-448c-9ac9-ce1f506b2a68", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.", - "userConsentDisplayName": "Read, update, and delete all policies for privileged role assignments of your company's directory", - "value": "RoleManagementPolicy.ReadWrite.Directory" - }, - { - "description": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on behalf of the signed-in user.", - "displayName": "Read user schedule items", - "id": "fccf6dd8-5706-49fa-811f-69e2e1b585d0", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", - "userConsentDisplayName": "Read your schedule items", - "value": "Schedule.Read.All" - }, - { - "description": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on behalf of the signed-in user.", - "displayName": "Read and write user schedule items", - "id": "63f27281-c9d9-4f29-94dd-6942f7f1feb0", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", - "userConsentDisplayName": "Read and write your schedule items", - "value": "Schedule.ReadWrite.All" - }, - { - "description": "Allows the app to read search configuration, on behalf of the signed-in user.", - "displayName": "Read your organization's search configuration", - "id": "7d307522-aa38-4cd0-bd60-90c6f0ac50bd", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read search configuration, on your behalf.", - "userConsentDisplayName": "Read your organization's search configuration", - "value": "SearchConfiguration.Read.All" - }, - { - "description": "Allows the app to read and write search configuration, on behalf of the signed-in user.", - "displayName": "Read and write your organization's search configuration", - "id": "b1a7d408-cab0-47d2-a2a5-a74a3733600d", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write search configuration, on your behalf.", - "userConsentDisplayName": "Read and write your organization's search configuration", - "value": "SearchConfiguration.ReadWrite.All" - }, - { - "description": "Allows the app to read security actions, on behalf of the signed-in user.", - "displayName": "Read your organization's security actions", - "id": "1638cddf-07a4-4de2-8645-69c96cacad73", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read security actions, on your behalf.", - "userConsentDisplayName": "Read your organization's security actions", - "value": "SecurityActions.Read.All" - }, - { - "description": "Allows the app to read or update security actions, on behalf of the signed-in user.", - "displayName": "Read and update your organization's security actions", - "id": "dc38509c-b87d-4da0-bd92-6bec988bac4a", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and update security actions, on your behalf.", - "userConsentDisplayName": "Read and update your organization's security actions", - "value": "SecurityActions.ReadWrite.All" - }, - { - "description": "Allows the app to read all security alerts, on behalf of the signed-in user.", - "displayName": "Read all security alerts", - "id": "bc257fb8-46b4-4b15-8713-01e91bfbe4ea", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read all security alerts that you have access to.", - "userConsentDisplayName": "Read all alerts", - "value": "SecurityAlert.Read.All" - }, - { - "description": "Allows the app to read and write to all security alerts, on behalf of the signed-in user.", - "displayName": "Read and write to all security alerts", - "id": "471f2a7f-2a42-4d45-a2bf-594d0838070d", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write all alerts that you have access to.", - "userConsentDisplayName": "Read and write all alerts", - "value": "SecurityAlert.ReadWrite.All" - }, - { - "description": "Read email metadata and security detection details on behalf of the signed in user.", - "displayName": "Read metadata and detection details for emails in your organization", - "id": "53e6783e-b127-4a35-ab3a-6a52d80a9077", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Read email metadata and security detection details on your behalf.", - "userConsentDisplayName": "Read metadata and detection details for emails in your organization", - "value": "SecurityAnalyzedMessage.Read.All" - }, - { - "description": "Read email metadata, security detection details, and execute remediation actions like deleting an email, on behalf of the signed in user.", - "displayName": "Read metadata, detection details, and execute remediation actions on emails in your organization", - "id": "48eb8c83-6e58-46e7-a6d3-8805822f5940", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Read email metadata, security detection details, and execute remediation actions like deleting an email, on your behalf.", - "userConsentDisplayName": "Read metadata, detection details, and execute remediation actions on emails in your organization", - "value": "SecurityAnalyzedMessage.ReadWrite.All" - }, - { - "description": "Allows the app to read your organization’s security events on behalf of the signed-in user.", - "displayName": "Read your organization’s security events", - "id": "64733abd-851e-478a-bffb-e47a14b18235", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your organization’s security events on your behalf.", - "userConsentDisplayName": "Read your organization’s security events", - "value": "SecurityEvents.Read.All" - }, - { - "description": "Allows the app to read your organization’s security events on behalf of the signed-in user. Also allows the app to update editable properties in security events on behalf of the signed-in user.", - "displayName": "Read and update your organization’s security events", - "id": "6aedf524-7e1c-45a7-bd76-ded8cab8d0fc", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your organization’s security events on your behalf. Also allows you to update editable properties in security events.", - "userConsentDisplayName": "Read and update your organization’s security events", - "value": "SecurityEvents.ReadWrite.All" - }, - { - "description": "Allows the app to read security incidents, on behalf of the signed-in user.", - "displayName": "Read incidents", - "id": "b9abcc4f-94fc-4457-9141-d20ce80ec952", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read all security incidents that you have access to.", - "userConsentDisplayName": "Read security incidents", - "value": "SecurityIncident.Read.All" - }, - { - "description": "Allows the app to read and write security incidents, on behalf of the signed-in user.", - "displayName": "Read and write to incidents", - "id": "128ca929-1a19-45e6-a3b8-435ec44a36ba", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write to all security incidents that you have access to.", - "userConsentDisplayName": "Read and write to security incidents", - "value": "SecurityIncident.ReadWrite.All" - }, - { - "description": "Allows the app to read your tenant's service health information on behalf of the signed-in user. Health information may include service issues or service health overviews.", - "displayName": "Read service health", - "id": "55896846-df78-47a7-aa94-8d3d4442ca7f", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your tenant's service health information on your behalf.Health information may include service issues or service health overviews.", - "userConsentDisplayName": "Read service health", - "value": "ServiceHealth.Read.All" - }, - { - "description": "Allows the app to read your tenant's service announcement messages on behalf of the signed-in user. Messages may include information about new or changed features.", - "displayName": "Read service announcement messages", - "id": "eda39fa6-f8cf-4c3c-a909-432c683e4c9b", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your tenant's service announcement messages on your behalf. Messages may include information about new or changed features.", - "userConsentDisplayName": "Read service messages", - "value": "ServiceMessage.Read.All" - }, - { - "description": "Allows the app to update service announcement messages' user status on behalf of the signed-in user. The message status can be marked as read, archive, or favorite.", - "displayName": "Update user status on service announcement messages", - "id": "636e1b0b-1cc2-4b1c-9aa9-4eeed9b9761b", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to update service announcement messages' status on your behalf. Your status for messages can be marked as read, archive, or favorite.", - "userConsentDisplayName": "Update your user status on service announcement messages", - "value": "ServiceMessageViewpoint.Write" - }, - { - "description": "Allows the app to read service principal endpoints", - "displayName": "Read service principal endpoints", - "id": "9f9ce928-e038-4e3b-8faf-7b59049a8ddc", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read service principal endpoints", - "userConsentDisplayName": "Read service principal endpoints", - "value": "ServicePrincipalEndpoint.Read.All" - }, - { - "description": "Allows the app to update service principal endpoints", - "displayName": "Read and update service principal endpoints", - "id": "7297d82c-9546-4aed-91df-3d4f0a9b3ff0", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to update service principal endpoints", - "userConsentDisplayName": "Read and update service principal endpoints", - "value": "ServicePrincipalEndpoint.ReadWrite.All" - }, - { - "description": "Allows the application to read the tenant-level settings in SharePoint and OneDrive on behalf of the signed-in user.", - "displayName": "Read SharePoint and OneDrive tenant settings", - "id": "2ef70e10-5bfd-4ede-a5f6-67720500b258", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read the tenant-level settings in SharePoint and OneDrive on your behalf.", - "userConsentDisplayName": "Read SharePoint and OneDrive tenant settings", - "value": "SharePointTenantSettings.Read.All" - }, - { - "description": "Allows the application to read and change the tenant-level settings of SharePoint and OneDrive on behalf of the signed-in user.", - "displayName": "Read and change SharePoint and OneDrive tenant settings", - "id": "aa07f155-3612-49b8-a147-6c590df35536", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the application to read and change the tenant-level settings of SharePoint and OneDrive on your behalf.", - "userConsentDisplayName": "Read and change SharePoint and OneDrive tenant settings", - "value": "SharePointTenantSettings.ReadWrite.All" - }, - { - "description": "Allows the app to read all the short notes a sign-in user has access to.", - "displayName": "Read short notes of the signed-in user", - "id": "50f66e47-eb56-45b7-aaa2-75057d9afe08", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your short notes.", - "userConsentDisplayName": "Read your short notes", - "value": "ShortNotes.Read" - }, - { - "description": "Allows the app to read, create, edit, and delete short notes of a signed-in user.", - "displayName": "Read, create, edit, and delete short notes of the signed-in user", - "id": "328438b7-4c01-4c07-a840-e625a749bb89", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, create, edit, and delete your short notes.", - "userConsentDisplayName": "Read, create, edit, and delete your short notes", - "value": "ShortNotes.ReadWrite" - }, - { - "description": "Allows the application to have full control of all site collections on behalf of the signed-in user.", - "displayName": "Have full control of all site collections", - "id": "5a54b8b3-347c-476d-8f8e-42d5c7424d29", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allow the application to have full control of all site collections on your behalf.", - "userConsentDisplayName": "Have full control of all your site collections", - "value": "Sites.FullControl.All" - }, - { - "description": "Allows the application to create or delete document libraries and lists in all site collections on behalf of the signed-in user.", - "displayName": "Create, edit, and delete items and lists in all site collections", - "id": "65e50fdc-43b7-4915-933e-e8138f11f40a", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allow the application to create or delete document libraries and lists in all site collections on your behalf.", - "userConsentDisplayName": "Create, edit, and delete items and lists in all your site collections", - "value": "Sites.Manage.All" - }, - { - "description": "Allows the application to read documents and list items in all site collections on behalf of the signed-in user", - "displayName": "Read items in all site collections", - "id": "205e70e5-aba6-4c52-a976-6d2d46c48043", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allow the application to read documents and list items in all site collections on your behalf", - "userConsentDisplayName": "Read items in all site collections", - "value": "Sites.Read.All" - }, - { - "description": "Allows the application to edit or delete documents and list items in all site collections on behalf of the signed-in user.", - "displayName": "Edit or delete items in all site collections", - "id": "89fe6a52-be36-487e-b7d8-d061c450a026", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.", - "userConsentDisplayName": "Edit or delete items in all site collections", - "value": "Sites.ReadWrite.All" - }, - { - "description": "Allows the app to be able to send emails from the user’s mailbox using the SMTP AUTH client submission protocol.", - "displayName": "Send emails from mailboxes using SMTP AUTH.", - "id": "258f6531-6087-4cc4-bb90-092c5fb3ed3f", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to send emails on your behalf from your mailbox.", - "userConsentDisplayName": "Access to sending emails from your mailbox.", - "value": "SMTP.Send" - }, - { - "description": "Allows the app to read subject rights requests on behalf of the signed-in user", - "displayName": "Read subject rights requests", - "id": "9c3af74c-fd0f-4db4-b17a-71939e2a9d77", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read subject rights requests on your behalf.", - "userConsentDisplayName": "Read data subject requests", - "value": "SubjectRightsRequest.Read.All" - }, - { - "description": "Allows the app to read and write subject rights requests on behalf of the signed-in user", - "displayName": "Read and write subject rights requests", - "id": "2b8fcc74-bce1-4ae3-a0e8-60c53739299d", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write subject rights requests on your behalf.", - "userConsentDisplayName": "Read and write data subject requests", - "value": "SubjectRightsRequest.ReadWrite.All" - }, - { - "description": "Allows the app to read all webhook subscriptions on behalf of the signed-in user.", - "displayName": "Read all webhook subscriptions ", - "id": "5f88184c-80bb-4d52-9ff2-757288b2e9b7", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read all webhook subscriptions on your behalf.", - "userConsentDisplayName": "Read all webhook subscriptions ", - "value": "Subscription.Read.All" - }, - { - "description": "Allows the app to read Azure AD synchronization information, on behalf of the signed-in user.", - "displayName": "Read all Azure AD synchronization data", - "id": "7aa02aeb-824f-4fbe-a3f7-611f751f5b55", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read Azure AD synchronization information, on your behalf.", - "userConsentDisplayName": "Read all Azure AD synchronization data", - "value": "Synchronization.Read.All" - }, - { - "description": "Allows the app to configure the Azure AD synchronization service, on behalf of the signed-in user.", - "displayName": "Read and write all Azure AD synchronization data", - "id": "7bb27fa3-ea8f-4d67-a916-87715b6188bd", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to configure the Azure AD synchronization service, on your behalf.", - "userConsentDisplayName": "Read and write all Azure AD synchronization data", - "value": "Synchronization.ReadWrite.All" - }, - { - "description": "Allows the app to upload bulk user data to the identity synchronization service, on behalf of the signed-in user.", - "displayName": "Upload user data to the identity synchronization service", - "id": "1a2e7420-4e92-4d2b-94cb-fb2952e9ddf7", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to upload bulk user data to the identity synchronization service, on your behalf.", - "userConsentDisplayName": "Bulk upload user data to identity synchronization service", - "value": "SynchronizationData-User.Upload" - }, - { - "description": "Allows the app to read the signed-in user’s tasks and task lists, including any shared with the user. Doesn't include permission to create, delete, or update anything.", - "displayName": "Read user's tasks and task lists", - "id": "f45671fb-e0fe-4b4b-be20-3d3ce43f1bcb", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.", - "userConsentDisplayName": "Read your tasks and task lists", - "value": "Tasks.Read" - }, - { - "description": "Allows the app to read tasks a user has permissions to access, including their own and shared tasks.", - "displayName": "Read user and shared tasks", - "id": "88d21fd4-8e5a-4c32-b5e2-4a1c95f34f72", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read tasks you have permissions to access, including your own and shared tasks.", - "userConsentDisplayName": "Read your and shared tasks", - "value": "Tasks.Read.Shared" - }, - { - "description": "Allows the app to create, read, update, and delete the signed-in user's tasks and task lists, including any shared with the user.", - "displayName": "Create, read, update, and delete user’s tasks and task lists", - "id": "2219042f-cab5-40cc-b0d2-16b1540b4c5f", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", - "userConsentDisplayName": "Create, read, update, and delete your tasks and task lists", - "value": "Tasks.ReadWrite" - }, - { - "description": "Allows the app to create, read, update, and delete tasks a user has permissions to, including their own and shared tasks.", - "displayName": "Read and write user and shared tasks", - "id": "c5ddf11b-c114-4886-8558-8a4e557cd52b", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, update, create, and delete tasks you have permissions to access, including your own and shared tasks.", - "userConsentDisplayName": "Read and write to your and shared tasks", - "value": "Tasks.ReadWrite.Shared" - }, - { - "description": "Allows the app to create teams on behalf of the signed-in user.", - "displayName": "Create teams", - "id": "7825d5d6-6049-4ce7-bdf6-3b8d53f4bcd0", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to create teams on your behalf. ", - "userConsentDisplayName": "Create teams", - "value": "Team.Create" - }, - { - "description": "Read the names and descriptions of teams, on behalf of the signed-in user.", - "displayName": "Read the names and descriptions of teams", - "id": "485be79e-c497-4b35-9400-0e3fa7f2a5d4", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Read the names and descriptions of teams, on your behalf.", - "userConsentDisplayName": "Read the names and descriptions of teams", - "value": "Team.ReadBasic.All" - }, - { - "description": "Read the members of teams, on behalf of the signed-in user.", - "displayName": "Read the members of teams", - "id": "2497278c-d82d-46a2-b1ce-39d4cdde5570", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Read the members of teams, on your behalf.", - "userConsentDisplayName": "Read the members of teams", - "value": "TeamMember.Read.All" - }, - { - "description": "Add and remove members from teams, on behalf of the signed-in user. Also allows changing a member's role, for example from owner to non-owner.", - "displayName": "Add and remove members from teams", - "id": "4a06efd2-f825-4e34-813e-82a57b03d1ee", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Add and remove members from teams, on your behalf. Also allows changing a member's role, for example from owner to non-owner.", - "userConsentDisplayName": "Add and remove members from teams and channels", - "value": "TeamMember.ReadWrite.All" - }, - { - "description": "Add and remove members from all teams, on behalf of the signed-in user. Does not allow adding or removing a member with the owner role. Additionally, does not allow the app to elevate an existing member to the owner role.", - "displayName": "Add and remove members with non-owner role for all teams", - "id": "2104a4db-3a2f-4ea0-9dba-143d457dc666", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Add and remove members from all teams, on your behalf. Does not allow adding or removing a member with the owner role. Additionally, does not allow the app to elevate an existing member to the owner role.", - "userConsentDisplayName": "Add and remove members with non-owner role for all teams", - "value": "TeamMember.ReadWriteNonOwnerRole.All" - }, - { - "description": "Allows the app to read the signed-in user's teamwork activity feed.", - "displayName": "Read user's teamwork activity feed", - "id": "0e755559-83fb-4b44-91d0-4cc721b9323e", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your teamwork activity feed.", - "userConsentDisplayName": "Read your teamwork activity feed", - "value": "TeamsActivity.Read" - }, - { - "description": "Allows the app to create new notifications in users' teamwork activity feeds on behalf of the signed in user. These notifications may not be discoverable or be held or governed by compliance policies.", - "displayName": "Send a teamwork activity as the user", - "id": "7ab1d787-bae7-4d5d-8db6-37ea32df9186", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to create new activities in your teamwork activity feed, and send new activities to other users' activity feed, on your behalf.", - "userConsentDisplayName": "Send a teamwork activity", - "value": "TeamsActivity.Send" - }, - { - "description": "Allows the app to read the Teams apps that are installed in chats the signed-in user can access. Does not give the ability to read application-specific settings.", - "displayName": "Read installed Teams apps in chats", - "id": "bf3fbf03-f35f-4e93-963e-47e4d874c37a", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the Teams apps that are installed in chats that you can access. Does not give the ability to read application-specific settings.", - "userConsentDisplayName": "Read installed Teams apps in chats", - "value": "TeamsAppInstallation.ReadForChat" - }, - { - "description": "Allows the app to read the Teams apps that are installed in teams the signed-in user can access. Does not give the ability to read application-specific settings.", - "displayName": "Read installed Teams apps in teams", - "id": "5248dcb1-f83b-4ec3-9f4d-a4428a961a72", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the Teams apps that are installed in teams that you can access. Does not give the ability to read application-specific settings.", - "userConsentDisplayName": "Read installed Teams apps in teams", - "value": "TeamsAppInstallation.ReadForTeam" - }, - { - "description": "Allows the app to read the Teams apps that are installed for the signed-in user. Does not give the ability to read application-specific settings.", - "displayName": "Read user's installed Teams apps", - "id": "c395395c-ff9a-4dba-bc1f-8372ba9dca84", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the Teams apps that are installed for you. Does not give the ability to read application-specific settings.", - "userConsentDisplayName": "Read your installed Teams apps", - "value": "TeamsAppInstallation.ReadForUser" - }, - { - "description": "Allows the app to read, install, upgrade, and uninstall Teams apps in chats the signed-in user can access. Gives the ability to manage permission grants for accessing those specific chats' data.", - "displayName": "Manage installed Teams apps in chats", - "id": "e1408a66-8f82-451b-a2f3-3c3e38f7413f", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in chats the signed-in user can access. Gives the ability to manage permission grants for accessing those specific chats' data.", - "userConsentDisplayName": "Manage installation and permission grants of Teams apps in chats", - "value": "TeamsAppInstallation.ReadWriteAndConsentForChat" - }, - { - "description": "Allows the app to read, install, upgrade, and uninstall Teams apps in teams the signed-in user can access. Gives the ability to manage permission grants for accessing those specific teams' data.", - "displayName": "Manage installed Teams apps in teams", - "id": "946349d5-2a9d-4535-abc0-7beeacaedd1d", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in teams the signed-in user can access. Gives the ability to manage permission grants for accessing those specific teams' data.", - "userConsentDisplayName": "Manage installation and permission grants of Teams apps in teams", - "value": "TeamsAppInstallation.ReadWriteAndConsentForTeam" - }, - { - "description": "Allows the app to read, install, upgrade, and uninstall Teams apps in user accounts, on behalf of the signed-in user. Gives the ability to manage permission grants for accessing those specific users' data.", - "displayName": "Manage installation and permission grants of Teams apps in users' personal scope", - "id": "2da62c49-dfbd-40df-ba16-fef3529d391c", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps for your account, on your behalf. Gives the ability to manage permission grants for accessing your data.", - "userConsentDisplayName": "Manage installation and permission grants of Teams apps on your user account", - "value": "TeamsAppInstallation.ReadWriteAndConsentForUser" - }, - { - "description": "Allows a Teams app to read, install, upgrade, and uninstall itself in chats the signed-in user can access, and manage its permission grants for accessing those specific chats' data.", - "displayName": "Allow the Teams app to manage itself and its permission grants in chats", - "id": "a0e0e18b-8fb2-458f-8130-da2d7cab9c75", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in chats the signed-in user can access, and manage its permission grants for accessing those specific chats' data.", - "userConsentDisplayName": "Allow the Teams app to manage itself and its permission grants in chats", - "value": "TeamsAppInstallation.ReadWriteAndConsentSelfForChat" - }, - { - "description": "Allows a Teams app to read, install, upgrade, and uninstall itself in teams the signed-in user can access, and manage its permission grants for accessing those specific teams' data.", - "displayName": "Allow the Teams app to manage itself and its permission grants in teams", - "id": "4a6bbf29-a0e1-4a4d-a7d1-cef17f772975", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in teams the signed-in user can access, and manage its permission grants for accessing those specific teams' data.", - "userConsentDisplayName": "Allow the Teams app to manage itself and its permission grants in teams", - "value": "TeamsAppInstallation.ReadWriteAndConsentSelfForTeam" - }, - { - "description": "Allows a Teams app to read, install, upgrade, and uninstall itself in user accounts, and manage its permission grants for accessing those specific users' data, on behalf of the signed-in user.", - "displayName": "Allow the Teams app to manage itself and its permission grants in user accounts", - "id": "7a349935-c54d-44ab-ab66-1b460d315be7", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in your account, and manage its permission grants for accessing your data, on your behalf.", - "userConsentDisplayName": "Allow the Teams app to manage itself and its permission grants on your user account", - "value": "TeamsAppInstallation.ReadWriteAndConsentSelfForUser" - }, - { - "description": "Allows the app to read, install, upgrade, and uninstall Teams apps in chats the signed-in user can access. Does not give the ability to read application-specific settings.", - "displayName": "Manage installed Teams apps in chats", - "id": "aa85bf13-d771-4d5d-a9e6-bca04ce44edf", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in chats you can access. Does not give the ability to read application-specific settings.", - "userConsentDisplayName": "Manage installed Teams apps in chats", - "value": "TeamsAppInstallation.ReadWriteForChat" - }, - { - "description": "Allows the app to read, install, upgrade, and uninstall Teams apps in teams the signed-in user can access. Does not give the ability to read application-specific settings.", - "displayName": "Manage installed Teams apps in teams", - "id": "2e25a044-2580-450d-8859-42eeb6e996c0", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in teams you can access. Does not give the ability to read application-specific settings.", - "userConsentDisplayName": "Manage installed Teams apps in teams", - "value": "TeamsAppInstallation.ReadWriteForTeam" - }, - { - "description": "Allows the app to read, install, upgrade, and uninstall Teams apps installed for the signed-in user. Does not give the ability to read application-specific settings.", - "displayName": "Manage user's installed Teams apps", - "id": "093f8818-d05f-49b8-95bc-9d2a73e9a43c", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps installed for you. Does not give the ability to read application-specific settings.", - "userConsentDisplayName": "Manage your installed Teams apps", - "value": "TeamsAppInstallation.ReadWriteForUser" - }, - { - "description": "Allows a Teams app to read, install, upgrade, and uninstall itself in chats the signed-in user can access.", - "displayName": "Allow the Teams app to manage itself in chats", - "id": "0ce33576-30e8-43b7-99e5-62f8569a4002", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in chats you can access.", - "userConsentDisplayName": "Allow the Teams app to manage itself in chats", - "value": "TeamsAppInstallation.ReadWriteSelfForChat" - }, - { - "description": "Allows a Teams app to read, install, upgrade, and uninstall itself to teams the signed-in user can access.", - "displayName": "Allow the app to manage itself in teams", - "id": "0f4595f7-64b1-4e13-81bc-11a249df07a9", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself to teams you can access.", - "userConsentDisplayName": "Allow the Teams app to manage itself in teams", - "value": "TeamsAppInstallation.ReadWriteSelfForTeam" - }, - { - "description": "Allows a Teams app to read, install, upgrade, and uninstall itself for the signed-in user.", - "displayName": "Allow the Teams app to manage itself for a user", - "id": "207e0cb1-3ce7-4922-b991-5a760c346ebc", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself for you.", - "userConsentDisplayName": "Allow the Teams app to manage itself for you", - "value": "TeamsAppInstallation.ReadWriteSelfForUser" - }, - { - "description": "Read all teams' settings, on behalf of the signed-in user.", - "displayName": "Read teams' settings", - "id": "48638b3c-ad68-4383-8ac4-e6880ee6ca57", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Read all teams' settings, on your behalf.", - "userConsentDisplayName": "Read teams' settings", - "value": "TeamSettings.Read.All" - }, - { - "description": "Read and change all teams' settings, on behalf of the signed-in user.", - "displayName": "Read and change teams' settings", - "id": "39d65650-9d3e-4223-80db-a335590d027e", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Read and change all teams' settings, on your behalf.", - "userConsentDisplayName": "Read and change teams' settings", - "value": "TeamSettings.ReadWrite.All" - }, - { - "description": "Allows the app to create tabs in any team in Microsoft Teams, on behalf of the signed-in user. This does not grant the ability to read, modify or delete tabs after they are created, or give access to the content inside the tabs.", - "displayName": "Create tabs in Microsoft Teams.", - "id": "a9ff19c2-f369-4a95-9a25-ba9d460efc8e", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to create tabs in any team in Microsoft Teams, on your behalf. This does not grant the ability to read, modify or delete tabs after they are created, or give access to the content inside the tabs.", - "userConsentDisplayName": "Create tabs in Microsoft Teams.", - "value": "TeamsTab.Create" - }, - { - "description": "Read the names and settings of tabs inside any team in Microsoft Teams, on behalf of the signed-in user. This does not give access to the content inside the tabs.", - "displayName": "Read tabs in Microsoft Teams.", - "id": "59dacb05-e88d-4c13-a684-59f1afc8cc98", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Read the names and settings of tabs inside any team in Microsoft Teams, on your behalf. This does not give access to the content inside the tabs.", - "userConsentDisplayName": "Read tabs in Microsoft Teams.", - "value": "TeamsTab.Read.All" - }, - { - "description": "Read and write tabs in any team in Microsoft Teams, on behalf of the signed-in user. This does not give access to the content inside the tabs.", - "displayName": "Read and write tabs in Microsoft Teams.", - "id": "b98bfd41-87c6-45cc-b104-e2de4f0dafb9", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Read and write tabs in any team in Microsoft Teams, on your behalf. This does not give access to the content inside the tabs.", - "userConsentDisplayName": "Read and write tabs in Microsoft Teams.", - "value": "TeamsTab.ReadWrite.All" - }, - { - "description": "Allows a Teams app to read, install, upgrade, and uninstall all tabs in chats the signed-in user can access.", - "displayName": "Allow the Teams app to manage all tabs in chats", - "id": "ee928332-e9c2-4747-b4a0-f8c164b68de6", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows a Teams app to read, install, upgrade, and uninstall all tabs in chats you can access.", - "userConsentDisplayName": "Allow the Teams app to manage all tabs in chats", - "value": "TeamsTab.ReadWriteForChat" - }, - { - "description": "Allows a Teams app to read, install, upgrade, and uninstall all tabs to teams the signed-in user can access.", - "displayName": "Allow the Teams app to manage all tabs in teams", - "id": "c975dd04-a06e-4fbb-9704-62daad77bb49", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows a Teams app to read, install, upgrade, and uninstall all tabs to teams you can access.", - "userConsentDisplayName": "Allow the app to manage all tabs in teams", - "value": "TeamsTab.ReadWriteForTeam" - }, - { - "description": "Allows a Teams app to read, install, upgrade, and uninstall all tabs for the signed-in user.", - "displayName": "Allow the Teams app to manage all tabs for a user", - "id": "c37c9b61-7762-4bff-a156-afc0005847a0", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows a Teams app to read, install, upgrade, and uninstall all tabs for you.", - "userConsentDisplayName": "Allow the Teams app to manage all tabs for you", - "value": "TeamsTab.ReadWriteForUser" - }, - { - "description": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs in chats the signed-in user can access.", - "displayName": "Allow the Teams app to manage only its own tabs in chats", - "id": "0c219d04-3abf-47f7-912d-5cca239e90e6", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs in chats you can access.", - "userConsentDisplayName": "Allow the Teams app to manage only its own tabs in chats", - "value": "TeamsTab.ReadWriteSelfForChat" - }, - { - "description": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs to teams the signed-in user can access.", - "displayName": "Allow the Teams app to manage only its own tabs in teams", - "id": "f266662f-120a-4314-b26a-99b08617c7ef", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs to teams you can access.", - "userConsentDisplayName": "Allow the Teams app to manage only its own tabs in teams", - "value": "TeamsTab.ReadWriteSelfForTeam" - }, - { - "description": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs for the signed-in user.", - "displayName": "Allow the Teams app to manage only its own tabs for a user", - "id": "395dfec1-a0b9-465f-a783-8250a430cb8c", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs for you.", - "userConsentDisplayName": "Allow the Teams app to manage only its own tabs for you", - "value": "TeamsTab.ReadWriteSelfForUser" - }, - { - "description": "Allows the app to read the available Teams templates, on behalf of the signed-in user.", - "displayName": "Read available Teams templates", - "id": "cd87405c-5792-4f15-92f7-debc0db6d1d6", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Read available Teams templates, on your behalf.", - "userConsentDisplayName": "Read available Teams templates", - "value": "TeamTemplates.Read" - }, - { - "description": "Allows the app to read the Teams app settings on behalf of the signed-in user.", - "displayName": "Read Teams app settings", - "id": "44e060c4-bbdc-4256-a0b9-dcc0396db368", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the Teams app settings on your behalf.", - "userConsentDisplayName": "Read Teams app settings", - "value": "TeamworkAppSettings.Read.All" - }, - { - "description": "Allows the app to read and write the Teams app settings on behalf of the signed-in user.", - "displayName": "Read and write Teams app settings", - "id": "87c556f0-2bd9-4eed-bd74-5dd8af6eaf7e", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write the Teams app settings on your behalf.", - "userConsentDisplayName": "Read and write Teams app settings", - "value": "TeamworkAppSettings.ReadWrite.All" - }, - { - "description": "Allow the app to read the management data for Teams devices on behalf of the signed-in user.", - "displayName": "Read Teams devices", - "id": "b659488b-9d28-4208-b2be-1c6652b3c970", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allow the app to read the management data for Teams devices on your behalf.", - "userConsentDisplayName": "Read Teams devices", - "value": "TeamworkDevice.Read.All" - }, - { - "description": "Allow the app to read and write the management data for Teams devices on behalf of the signed-in user.", - "displayName": "Read and write Teams devices", - "id": "ddd97ecb-5c31-43db-a235-0ee20e635c40", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allow the app to read and write the management data for Teams devices on your behalf.", - "userConsentDisplayName": "Read and write Teams devices", - "value": "TeamworkDevice.ReadWrite.All" - }, - { - "description": "Allows the app to read tags in Teams, on behalf of the signed-in user.", - "displayName": "Read tags in Teams", - "id": "57587d0b-8399-45be-b207-8050cec54575", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read tags in Teams, on your behalf.", - "userConsentDisplayName": "Read tags in Teams", - "value": "TeamworkTag.Read" - }, - { - "description": "Allows the app to read and write tags in Teams, on behalf of the signed-in user.", - "displayName": "Read and write tags in Teams", - "id": "539dabd7-b5b6-4117-b164-d60cd15a8671", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write tags in Teams, on your behalf.", - "userConsentDisplayName": "Read and write tags in Teams", - "value": "TeamworkTag.ReadWrite" - }, - { - "description": "Allows the app to read the term store data that the signed-in user has access to. This includes all sets, groups and terms in the term store.", - "displayName": "Read term store data", - "id": "297f747b-0005-475b-8fef-c890f5152b38", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the term store data that you have access to. This includes all sets, groups and terms in the term store.", - "userConsentDisplayName": "Read term store data", - "value": "TermStore.Read.All" - }, - { - "description": "Allows the app to read or modify data that the signed-in user has access to. This includes all sets, groups and terms in the term store.", - "displayName": "Read and write term store data", - "id": "6c37c71d-f50f-4bff-8fd3-8a41da390140", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.", - "userConsentDisplayName": "Read and write term store data", - "value": "TermStore.ReadWrite.All" - }, - { - "description": "Allows an app to read your organization's threat assessment requests on behalf of the signed-in user. Also allows the app to create new requests to assess threats received by your organization on behalf of the signed-in user.", - "displayName": "Read and write threat assessment requests", - "id": "cac97e40-6730-457d-ad8d-4852fddab7ad", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows an app to read your organization's threat assessment requests on your behalf. Also allows the app to create new requests to assess threats received by your organization on your behalf.", - "userConsentDisplayName": "Read and write threat assessment requests", - "value": "ThreatAssessment.ReadWrite.All" - }, - { - "description": "Allows the app to run hunting queries, on behalf of the signed-in user.", - "displayName": "Run hunting queries", - "id": "b152eca8-ea73-4a48-8c98-1a6742673d99", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to run hunting queries that you can execute.", - "userConsentDisplayName": "Run hunting queries", - "value": "ThreatHunting.Read.All" - }, - { - "description": "Allows the app to read all the indicators for your organization, on behalf of the signed-in user.", - "displayName": "Read all threat indicators", - "id": "9cc427b4-2004-41c5-aa22-757b755e9796", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read all the indicators for your organization, on your behalf.", - "userConsentDisplayName": "Read all threat indicators", - "value": "ThreatIndicators.Read.All" - }, - { - "description": "Allows the app to create threat indicators, and fully manage those threat indicators (read, update and delete), on behalf of the signed-in user.  It cannot update any threat indicators it does not own.", - "displayName": "Manage threat indicators this app creates or owns", - "id": "91e7d36d-022a-490f-a748-f8e011357b42", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to create threat indicators, and fully manage those threat indicators (read, update and delete), on your behalf.  It cannot update any threat indicators that it is not an owner of.", - "userConsentDisplayName": "Manage threat indicators this app creates or owns", - "value": "ThreatIndicators.ReadWrite.OwnedBy" - }, - { - "description": "Allows the app to read threat intelligence information, such as indicators, observations, and articles, on behalf of the signed-in user.", - "displayName": "Read all threat intelligence information", - "id": "f266d9c0-ccb9-4fb8-a228-01ac0d8d6627", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read threat intelligence information, such as indicators, observations, and articles, on your behalf.", - "userConsentDisplayName": "Read threat intelligence Information", - "value": "ThreatIntelligence.Read.All" - }, - { - "description": "Allows the app to read the threat submissions and threat submission policies owned by the signed-in user.", - "displayName": "Read threat submissions", - "id": "fd5353c6-26dd-449f-a565-c4e16b9fce78", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the threat submissions and threat submission policies that you own on your behalf.", - "userConsentDisplayName": "Read threat submissions", - "value": "ThreatSubmission.Read" - }, - { - "description": "Allows the app to read your organization's threat submissions and threat submission policies on behalf of the signed-in user.", - "displayName": "Read all threat submissions", - "id": "7083913a-4966-44b6-9886-c5822a5fd910", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.", - "userConsentDisplayName": "Read all threat submissions", - "value": "ThreatSubmission.Read.All" - }, - { - "description": "Allows the app to read the threat submissions and threat submission policies owned by the signed-in user. Also allows the app to create new threat submissions on behalf of the signed-in user.", - "displayName": "Read and write threat submissions", - "id": "68a3156e-46c9-443c-b85c-921397f082b5", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the threat submissions and threat submission policies that you own. Also allows the app to create new threat submissions on your behalf.", - "userConsentDisplayName": "Read and write threat submissions", - "value": "ThreatSubmission.ReadWrite" - }, - { - "description": "Allows the app to read your organization's threat submissions and threat submission policies on behalf of the signed-in user. Also allows the app to create new threat submissions on behalf of the signed-in user.", - "displayName": "Read and write all threat submissions", - "id": "8458e264-4eb9-4922-abe9-768d58f13c7f", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf. Also allows the app to create new threat submissions on your behalf.", - "userConsentDisplayName": "Read and write all threat submissions", - "value": "ThreatSubmission.ReadWrite.All" - }, - { - "description": "Allows the app to read your organization's threat submission policies on behalf of the signed-in user. Also allows the app to create new threat submission policies on behalf of the signed-in user.", - "displayName": "Read and write all threat submission policies", - "id": "059e5840-5353-4c68-b1da-666a033fc5e8", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your organization's threat submission policies on your behalf. Also allows the app to create new threat submission policies on your behalf.", - "userConsentDisplayName": "Read and write all threat submission policies", - "value": "ThreatSubmissionPolicy.ReadWrite.All" - }, - { - "description": "Allows the app to read trust framework key set properties on behalf of the signed-in user.", - "displayName": "Read trust framework key sets", - "id": "7ad34336-f5b1-44ce-8682-31d7dfcd9ab9", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read trust framework key sets, on your behalf.", - "userConsentDisplayName": "Read trust framework key sets", - "value": "TrustFrameworkKeySet.Read.All" - }, - { - "description": "Allows the app to read and write trust framework key set properties on behalf of the signed-in user.", - "displayName": "Read and write trust framework key sets", - "id": "39244520-1e7d-4b4a-aee0-57c65826e427", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read or write trust framework key sets, on your behalf.", - "userConsentDisplayName": "Read and write trust framework key sets", - "value": "TrustFrameworkKeySet.ReadWrite.All" - }, - { - "description": "Allows the app to read basic unified group properties, memberships and owners of the group the signed-in guest is a member of.", - "displayName": "Read unified group memberships as guest", - "id": "73e75199-7c3e-41bb-9357-167164dbb415", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read basic unified group properties, memberships and owners of the group you are a member of.", - "userConsentDisplayName": "Read unified group memberships as guest", - "value": "UnifiedGroupMember.Read.AsGuest" - }, - { - "description": "Allows the app to read the lifecycle information like employeeLeaveDateTime of users in your organization, on behalf of the signed-in user.", - "displayName": "Read all users' lifecycle information", - "id": "ed8d2a04-0374-41f1-aefe-da8ac87ccc87", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the lifecycle information like employeeLeaveDateTime of users in your organization, on behalf of the signed-in user.", - "userConsentDisplayName": "Read all users' lifecycle information", - "value": "User-LifeCycleInfo.Read.All" - }, - { - "description": "Allows the app to read and write the lifecycle information like employeeLeaveDateTime of users in your organization, on behalf of the signed-in user.", - "displayName": "Read and write all users' lifecycle information", - "id": "7ee7473e-bd4b-4c9f-987c-bd58481f5fa2", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write the lifecycle information like employeeLeaveDateTime of users in your organization, on behalf of the signed-in user.", - "userConsentDisplayName": "Read and write all users' lifecycle information", - "value": "User-LifeCycleInfo.ReadWrite.All" - }, - { - "description": "Allows the app to enable and disable users' accounts, on behalf of the signed-in user.", - "displayName": "Enable and disable user accounts", - "id": "f92e74e7-2563-467f-9dd0-902688cb5863", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to enable and disable users' accounts, on your behalf.", - "userConsentDisplayName": "Enable and disable user accounts", - "value": "User.EnableDisableAccount.All" - }, - { - "description": "Allows the app to export data (e.g. customer content or system-generated logs), associated with any user in your company, when the app is used by a privileged user (e.g. a Company Administrator).", - "displayName": "Export user's data", - "id": "405a51b5-8d8d-430b-9842-8be4b0e9f324", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to export data (e.g. customer content or system-generated logs), associated with any user in your company, when the app is used by a privileged user (e.g. a Company Administrator).", - "userConsentDisplayName": "Export user's data", - "value": "User.Export.All" - }, - { - "description": "Allows the app to invite guest users to the organization, on behalf of the signed-in user.", - "displayName": "Invite guest users to the organization", - "id": "63dd7cd9-b489-4adf-a28c-ac38b9a0f962", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to invite guest users to the organization, on your behalf.", - "userConsentDisplayName": "Invite guest users to the organization", - "value": "User.Invite.All" - }, - { - "description": "Allows the app to read, update and delete identities that are associated with a user's account that the signed-in user has access to. This controls the identities users can sign-in with.", - "displayName": "Manage user identities", - "id": "637d7bec-b31e-4deb-acc9-24275642a2c9", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read, update and delete identities that are associated with a user's account that you have access to. This controls the identities users can sign-in with.", - "userConsentDisplayName": "Manage user identities", - "value": "User.ManageIdentities.All" - }, - { - "description": "Allows users to sign-in to the app, and allows the app to read the profile of signed-in users. It also allows the app to read basic company information of signed-in users.", - "displayName": "Sign in and read user profile", - "id": "e1fe6dd8-ba31-4d61-89e7-88639da4683d", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.", - "userConsentDisplayName": "Sign you in and read your profile", - "value": "User.Read" - }, - { - "description": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on behalf of the signed-in user.", - "displayName": "Read all users' full profiles", - "id": "a154be20-db9c-4678-8ab7-66f6cc099a59", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", - "userConsentDisplayName": "Read all users' full profiles", - "value": "User.Read.All" - }, - { - "description": "Allows the app to read a basic set of profile properties of other users in your organization on behalf of the signed-in user. This includes display name, first and last name, email address and photo.", - "displayName": "Read all users' basic profiles", - "id": "b340eb25-3456-403f-be2f-af7a0d370277", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read a basic set of profile properties of other users in your organization on your behalf. Includes display name, first and last name, email address and photo.", - "userConsentDisplayName": "Read all users' basic profiles", - "value": "User.ReadBasic.All" - }, - { - "description": "Allows the app to read your profile. It also allows the app to update your profile information on your behalf.", - "displayName": "Read and write access to user profile", - "id": "b4e74841-8e56-480b-be8b-910348b18b4c", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your profile, and discover your group membership, reports and manager. It also allows the app to update your profile information on your behalf.", - "userConsentDisplayName": "Read and update your profile", - "value": "User.ReadWrite" - }, - { - "description": "Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on behalf of the signed-in user.", - "displayName": "Read and write all users' full profiles", - "id": "204e0828-b5ca-4ad8-b9f3-f32a958e7cc4", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", - "userConsentDisplayName": "Read and write all users' full profiles", - "value": "User.ReadWrite.All" - }, - { - "description": "Allows the app to read and report the signed-in user's activity in the app.", - "displayName": "Read and write app activity to users' activity feed", - "id": "47607519-5fb1-47d9-99c7-da4b48f369b1", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and report your activity in the app.", - "userConsentDisplayName": "Read and write app activity to your activity feed", - "value": "UserActivity.ReadWrite.CreatedByApp" - }, - { - "description": "Allows the app to read the signed-in user's authentication methods, including phone numbers and Authenticator app settings. This does not allow the app to see secret information like the signed-in user's passwords, or to sign-in or otherwise use the signed-in user's authentication methods.", - "displayName": "Read user authentication methods.", - "id": "1f6b61c5-2f65-4135-9c9f-31c0f8d32b52", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read your authentication methods, including phone numbers and Authenticator app settings. This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", - "userConsentDisplayName": "Read your authentication methods.", - "value": "UserAuthenticationMethod.Read" - }, - { - "description": "Allows the app to read authentication methods of all users in your organization that the signed-in user has access to. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", - "displayName": "Read all users' authentication methods", - "id": "aec28ec7-4d02-4e8c-b864-50163aea77eb", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", - "userConsentDisplayName": "Read all users' authentication methods", - "value": "UserAuthenticationMethod.Read.All" - }, - { - "description": "Allows the app to read and write the signed-in user's authentication methods, including phone numbers and Authenticator app settings. This does not allow the app to see secret information like the signed-in user's passwords, or to sign-in or otherwise use the signed-in user's authentication methods. ", - "displayName": "Read and write user authentication methods", - "id": "48971fc1-70d7-4245-af77-0beb29b53ee2", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write your authentication methods, including phone numbers and Authenticator app settings.This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", - "userConsentDisplayName": "Read and write your authentication methods", - "value": "UserAuthenticationMethod.ReadWrite" - }, - { - "description": " Allows the app to read and write authentication methods of all users in your organization that the signed-in user has access to. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", - "displayName": "Read and write all users' authentication methods.", - "id": "b7887744-6746-4312-813d-72daeaee7e2d", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", - "userConsentDisplayName": "Read and write all users' authentication methods", - "value": "UserAuthenticationMethod.ReadWrite.All" - }, - { - "description": "Allows the app to send, read, update and delete user’s notifications.", - "displayName": "Deliver and manage user's notifications", - "id": "26e2f3e8-b2a1-47fc-9620-89bb5b042024", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to send, read, update and delete your app-specific notifications.", - "userConsentDisplayName": "Deliver and manage your notifications", - "value": "UserNotification.ReadWrite.CreatedByApp" - }, - { - "description": "Allows the app to report the signed-in user's app activity information to Microsoft Timeline.", - "displayName": "Write app activity to users' timeline", - "id": "367492fc-594d-4972-a9b5-0d58c622c91c", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to report your app activity information to Microsoft Timeline.", - "userConsentDisplayName": "Write app activity to your timeline", - "value": "UserTimelineActivity.Write.CreatedByApp" - }, - { - "description": "Allows an application to read virtual appointments for the signed-in user. Only an organizer or participant user can read their virtual appointments.  ", - "displayName": "Read a user's virtual appointments", - "id": "27470298-d3b8-4b9c-aad4-6334312a3eac", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read virtual appointments on your behalf.  ", - "userConsentDisplayName": "Read your virtual appointments ", - "value": "VirtualAppointment.Read" - }, - { - "description": "Allows an application to read and write virtual appointments for the signed-in user. Only an organizer or participant user can read and write their virtual appointments. ", - "displayName": "Read and write a user's virtual appointments  ", - "id": "2ccc2926-a528-4b17-b8bb-860eed29d64c", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write virtual appointments on your behalf.  ", - "userConsentDisplayName": "Read and write your virtual appointments", - "value": "VirtualAppointment.ReadWrite" - }, - { - "description": "Allows the app to read virtual events created by the you", - "displayName": "Read your virtual events", - "id": "6b616635-ae58-433a-a918-8c45e4f304dc", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read virtual events created by the you", - "userConsentDisplayName": "Read your virtual events", - "value": "VirtualEvent.Read" - }, - { - "description": "Allows the app to read and write all Windows update deployment settings for the organization on behalf of the signed-in user.", - "displayName": "Read and write all Windows update deployment settings", - "id": "11776c0c-6138-4db3-a668-ee621bea2555", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read and write all Windows update deployment settings for the organization on your behalf.", - "userConsentDisplayName": "Read and write all Windows update deployment settings", - "value": "WindowsUpdates.ReadWrite.All" - }, - { - "description": "Allows the app to read workforce integrations, to synchronize data from Microsoft Teams Shifts, on behalf of the signed-in user.", - "displayName": "Read workforce integrations", - "id": "f1ccd5a7-6383-466a-8db8-1a656f7d06fa", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to read workforce integrations, to synchronize data from Microsoft Teams Shifts, on your behalf.", - "userConsentDisplayName": "Read workforce integrations", - "value": "WorkforceIntegration.Read.All" - }, - { - "description": "Allows the app to manage workforce integrations, to synchronize data from Microsoft Teams Shifts, on behalf of the signed-in user.", - "displayName": "Read and write workforce integrations", - "id": "08c4b377-0d23-4a8b-be2a-23c1c1d88545", - "isEnabled": true, - "origin": "Delegated", - "userConsentDescription": "Allows the app to manage workforce integrations, to synchronize data from Microsoft Teams Shifts, on your behalf.", - "userConsentDisplayName": "Read and write workforce integrations", - "value": "WorkforceIntegration.ReadWrite.All" - } -] diff --git a/public/android-chrome-192x192.png b/public/android-chrome-192x192.png deleted file mode 100644 index b1311174e895..000000000000 Binary files a/public/android-chrome-192x192.png and /dev/null differ diff --git a/public/android-chrome-512x512.png b/public/android-chrome-512x512.png deleted file mode 100644 index 9221cc217c35..000000000000 Binary files a/public/android-chrome-512x512.png and /dev/null differ diff --git a/public/apple-touch-icon-120x120-precomposed.png b/public/apple-touch-icon-120x120-precomposed.png deleted file mode 100644 index 14e2314b3c3c..000000000000 Binary files a/public/apple-touch-icon-120x120-precomposed.png and /dev/null differ diff --git a/public/apple-touch-icon-120x120.png b/public/apple-touch-icon-120x120.png deleted file mode 100644 index b324a237ccaa..000000000000 Binary files a/public/apple-touch-icon-120x120.png and /dev/null differ diff --git a/public/apple-touch-icon-152x152-precomposed.png b/public/apple-touch-icon-152x152-precomposed.png deleted file mode 100644 index 93327fb98148..000000000000 Binary files a/public/apple-touch-icon-152x152-precomposed.png and /dev/null differ diff --git a/public/apple-touch-icon-152x152.png b/public/apple-touch-icon-152x152.png deleted file mode 100644 index a2891cce3905..000000000000 Binary files a/public/apple-touch-icon-152x152.png and /dev/null differ diff --git a/public/apple-touch-icon-180x180-precomposed.png b/public/apple-touch-icon-180x180-precomposed.png deleted file mode 100644 index e221217d8be1..000000000000 Binary files a/public/apple-touch-icon-180x180-precomposed.png and /dev/null differ diff --git a/public/apple-touch-icon-180x180.png b/public/apple-touch-icon-180x180.png deleted file mode 100644 index 8c81e4e2c7c1..000000000000 Binary files a/public/apple-touch-icon-180x180.png and /dev/null differ diff --git a/public/apple-touch-icon-60x60-precomposed.png b/public/apple-touch-icon-60x60-precomposed.png deleted file mode 100644 index ebefdaf402c7..000000000000 Binary files a/public/apple-touch-icon-60x60-precomposed.png and /dev/null differ diff --git a/public/apple-touch-icon-60x60.png b/public/apple-touch-icon-60x60.png deleted file mode 100644 index c482583bfdeb..000000000000 Binary files a/public/apple-touch-icon-60x60.png and /dev/null differ diff --git a/public/apple-touch-icon-76x76-precomposed.png b/public/apple-touch-icon-76x76-precomposed.png deleted file mode 100644 index 404481afd4ea..000000000000 Binary files a/public/apple-touch-icon-76x76-precomposed.png and /dev/null differ diff --git a/public/apple-touch-icon-76x76.png b/public/apple-touch-icon-76x76.png deleted file mode 100644 index 11caae337d8e..000000000000 Binary files a/public/apple-touch-icon-76x76.png and /dev/null differ diff --git a/public/apple-touch-icon-precomposed.png b/public/apple-touch-icon-precomposed.png deleted file mode 100644 index e221217d8be1..000000000000 Binary files a/public/apple-touch-icon-precomposed.png and /dev/null differ diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png deleted file mode 100644 index 8c81e4e2c7c1..000000000000 Binary files a/public/apple-touch-icon.png and /dev/null differ diff --git a/public/browserconfig.xml b/public/browserconfig.xml deleted file mode 100644 index 1bc305525d1f..000000000000 --- a/public/browserconfig.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - #da532c - - - diff --git a/public/favicon-16x16.png b/public/favicon-16x16.png deleted file mode 100644 index 28a3adf917be..000000000000 Binary files a/public/favicon-16x16.png and /dev/null differ diff --git a/public/favicon-32x32.png b/public/favicon-32x32.png deleted file mode 100644 index bd596be60992..000000000000 Binary files a/public/favicon-32x32.png and /dev/null differ diff --git a/public/favicon.ico b/public/favicon.ico deleted file mode 100644 index 207000a51a00..000000000000 Binary files a/public/favicon.ico and /dev/null differ diff --git "a/public/img/NinjaOne\342\224\254\302\253 Logo white@4x.png" "b/public/img/NinjaOne\342\224\254\302\253 Logo white@4x.png" deleted file mode 100644 index 8654c2d79484..000000000000 Binary files "a/public/img/NinjaOne\342\224\254\302\253 Logo white@4x.png" and /dev/null differ diff --git a/public/img/augmentt-dark.png b/public/img/augmentt-dark.png deleted file mode 100644 index f32dea1cfce9..000000000000 Binary files a/public/img/augmentt-dark.png and /dev/null differ diff --git a/public/img/augmentt-light.png b/public/img/augmentt-light.png deleted file mode 100644 index 46bead134eb1..000000000000 Binary files a/public/img/augmentt-light.png and /dev/null differ diff --git a/public/img/datto.png b/public/img/datto.png deleted file mode 100644 index b0fad6f50233..000000000000 Binary files a/public/img/datto.png and /dev/null differ diff --git a/public/img/huntress_teal.png b/public/img/huntress_teal.png deleted file mode 100644 index 96562e74d99d..000000000000 Binary files a/public/img/huntress_teal.png and /dev/null differ diff --git a/public/img/ninjaone.png b/public/img/ninjaone.png deleted file mode 100644 index ca84ac5e450c..000000000000 Binary files a/public/img/ninjaone.png and /dev/null differ diff --git a/public/img/ninjaone_dark.png b/public/img/ninjaone_dark.png deleted file mode 100644 index 47bcc219ead8..000000000000 Binary files a/public/img/ninjaone_dark.png and /dev/null differ diff --git a/public/img/rewst.png b/public/img/rewst.png deleted file mode 100644 index 6d52a7838533..000000000000 Binary files a/public/img/rewst.png and /dev/null differ diff --git a/public/img/rewst_dark.png b/public/img/rewst_dark.png deleted file mode 100644 index b4b215b8ec46..000000000000 Binary files a/public/img/rewst_dark.png and /dev/null differ diff --git a/public/manifest.json b/public/manifest.json deleted file mode 100644 index d207413841e6..000000000000 --- a/public/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "name": "CIPP", - "short_name": "CIPP", - "icons": [ - { - "src": "/android-chrome-192x192.png", - "sizes": "192x192", - "type": "image/png" - }, - { - "src": "/android-chrome-512x512.png", - "sizes": "512x512", - "type": "image/png" - } - ], - "theme_color": "#ffffff", - "background_color": "#ffffff" -} diff --git a/public/mstile-310x310.png b/public/mstile-310x310.png deleted file mode 100644 index 8553cf0fe093..000000000000 Binary files a/public/mstile-310x310.png and /dev/null differ diff --git a/public/safari-pinned-tab.svg b/public/safari-pinned-tab.svg deleted file mode 100644 index 372cf4e79eb9..000000000000 --- a/public/safari-pinned-tab.svg +++ /dev/null @@ -1,37 +0,0 @@ - - - - -Created by potrace 1.14, written by Peter Selinger 2001-2017 - - - - - - - - diff --git a/public/version_latest.txt b/public/version_latest.txt deleted file mode 100644 index 798e38995c4d..000000000000 --- a/public/version_latest.txt +++ /dev/null @@ -1 +0,0 @@ -6.3.0 diff --git a/src/App.jsx b/src/App.jsx deleted file mode 100644 index 422ebac60c62..000000000000 --- a/src/App.jsx +++ /dev/null @@ -1,90 +0,0 @@ -import React, { Suspense } from 'react' -import { BrowserRouter, Route, Routes, Navigate, useLocation } from 'react-router-dom' -import { PrivateRoute, FullScreenLoading, ErrorBoundary } from 'src/components/utilities' -import 'src/scss/style.scss' -import { Helmet, HelmetProvider } from 'react-helmet-async' -import Skeleton from 'react-loading-skeleton' -import TimeAgo from 'javascript-time-ago' -import en from 'javascript-time-ago/locale/en.json' -TimeAgo.addDefaultLocale(en) -import { library } from '@fortawesome/fontawesome-svg-core' -import { fas } from '@fortawesome/free-solid-svg-icons' -import routes from 'src/routes' -import importsMap from './importsMap' - -library.add(fas) - -const dynamicImport = (path) => { - return importsMap[path] || null -} - -const DefaultLayout = React.lazy(() => import('./layout/DefaultLayout')) -const Page401 = React.lazy(() => import('./views/pages/page401/Page401')) -const Page403 = React.lazy(() => import('./views/pages/page403/Page403')) -const Page404 = React.lazy(() => import('./views/pages/page404/Page404')) -const Page500 = React.lazy(() => import('./views/pages/page500/Page500')) -const PageLogOut = React.lazy(() => import('src/views/pages/LogoutRedirect/PageLogOut')) -const Login = React.lazy(() => import('./views/pages/login/Login')) -const Logout = React.lazy(() => import('./views/pages/login/Logout')) -//we loop through the routes array, dynamicly create the component by using dynamicImport, add the component to the route array as 'component' key. - -const App = () => { - return ( - - - }> - - CIPP - - - } /> - } /> - } /> - } /> - } /> - } /> - } /> - - - - } - > - {routes.map((route, idx) => { - const allowedRoles = route.allowedRoles - const Routecomponent = dynamicImport(route.path) - //console.log('route', route) - //console.log('Routecomponent', Routecomponent) - return ( - route.component && ( - - }> - - - - - - } - /> - ) - ) - })} - } /> - - } /> - - - - - ) -} - -export default App diff --git a/src/App.test.js b/src/App.test.js deleted file mode 100644 index 8499039707b1..000000000000 --- a/src/App.test.js +++ /dev/null @@ -1,14 +0,0 @@ -import React from 'react' -import { shallow } from 'enzyme/build' -import App from './App' -import Dashboard from './views/dashboard/Dashboard.js' - -it('mounts App without crashing', () => { - const wrapper = shallow() - wrapper.unmount() -}) - -it('mounts Dashboard without crashing', () => { - const wrapper = shallow() - wrapper.unmount() -}) diff --git a/src/_nav.jsx b/src/_nav.jsx deleted file mode 100644 index bc1505aa763e..000000000000 --- a/src/_nav.jsx +++ /dev/null @@ -1,893 +0,0 @@ -import React from 'react' -import { CNavGroup, CNavItem, CNavTitle } from '@coreui/react' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { - faHome, - faWrench, - faChartBar, - faBook, - faTablet, - faShieldAlt, - faExchangeAlt, - faHdd, - faLink, - faUsers, - faWindowRestore, - faKey, - faBus, - faExclamationTriangle, - faUserShield, - faEnvelope, - faToolbox, - faDownload, -} from '@fortawesome/free-solid-svg-icons' - -const _nav = [ - { - component: CNavItem, - name: 'Dashboard', - section: 'Dashboard', - to: '/home', - icon: , - }, - { - component: CNavTitle, - name: 'Identity Management', - }, - { - component: CNavGroup, - section: 'Identity Management', - name: 'Administration', - to: '/identity/administration', - icon: , - items: [ - { - component: CNavItem, - name: 'Users', - to: '/identity/administration/users', - }, - { - component: CNavItem, - name: 'Risky Users', - to: '/identity/administration/risky-users', - }, - { - component: CNavItem, - name: 'Groups', - to: '/identity/administration/groups', - }, - { - component: CNavItem, - name: 'Devices', - to: '/identity/administration/devices', - }, - { - component: CNavItem, - name: 'Deploy Group Template', - to: '/identity/administration/deploy-group-template', - }, - { - component: CNavItem, - name: 'Group Templates', - to: '/identity/administration/group-templates', - }, - { - component: CNavItem, - name: 'Deleted Items', - to: '/identity/administration/deleted-items', - }, - { - component: CNavItem, - name: 'Roles', - to: '/identity/administration/roles', - }, - { - component: CNavItem, - name: 'JIT Admin', - to: '/identity/administration/jit-admin', - }, - { - component: CNavItem, - name: 'Offboarding Wizard', - to: '/identity/administration/offboarding-wizard', - }, - ], - }, - { - component: CNavGroup, - name: 'Reports', - section: 'Identity Management', - to: '/identity/reports', - icon: , - items: [ - { - component: CNavItem, - name: 'MFA Report', - to: '/identity/reports/mfa-report', - }, - { - component: CNavItem, - name: 'Inactive Users', - to: '/identity/reports/inactive-users-report', - }, - { - component: CNavItem, - name: 'Sign-in Report', - to: '/identity/reports/signin-report', - }, - { - component: CNavItem, - name: 'AAD Connect Report', - to: '/identity/reports/azure-ad-connect-report', - }, - { - component: CNavItem, - name: 'Risk Detections', - to: '/identity/reports/risk-detections', - }, - ], - }, - { - component: CNavTitle, - name: 'Tenant Administration', - }, - { - component: CNavGroup, - name: 'Administration', - section: 'Tenant Administration', - to: '/tenant/administration', - icon: , - items: [ - { - component: CNavItem, - name: 'Tenants', - to: '/tenant/administration/tenants', - }, - { - component: CNavItem, - name: 'Alert Configuration', - to: '/tenant/administration/alert-configuration', - }, - { - component: CNavItem, - name: 'Audit Logs', - to: '/tenant/administration/audit-logs', - }, - { - component: CNavItem, - name: 'Enterprise Applications', - to: '/tenant/administration/enterprise-apps', - }, - { - component: CNavItem, - name: 'Secure Score', - to: '/tenant/administration/securescore', - }, - { - component: CNavItem, - name: 'App Consent Requests', - to: '/tenant/administration/app-consent-requests', - }, - { - component: CNavItem, - name: 'Authentication Methods', - to: '/tenant/administration/authentication-methods', - }, - { - component: CNavItem, - name: 'Tenant Onboarding', - to: '/tenant/administration/tenant-onboarding', - }, - { - component: CNavItem, - name: 'Tenant Offboarding', - to: '/tenant/administration/tenant-offboarding-wizard', - }, - { - component: CNavItem, - name: 'Partner Relationships', - to: '/tenant/administration/partner-relationships', - }, - ], - }, - { - component: CNavGroup, - name: 'Configuration Backup', - section: 'Tenant Administration', - to: '/cipp/gdap', - icon: , - items: [ - { - component: CNavItem, - name: 'Backup Wizard', - to: '/tenant/backup/backup-wizard', - }, - { - component: CNavItem, - name: 'Restore Wizard', - to: '/tenant/backup/restore-wizard', - }, - ], - }, - { - component: CNavGroup, - name: 'Tools', - section: 'Tenant Administration', - to: '/tenant/administration', - icon: , - items: [ - { - component: CNavItem, - name: 'Graph Explorer', - to: '/tenant/administration/graph-explorer', - }, - { - component: CNavItem, - name: 'Application Approval', - to: '/tenant/administration/appapproval', - }, - { - component: CNavItem, - name: 'IP Database', - to: '/tenant/tools/geoiplookup', - }, - { - component: CNavItem, - name: 'Tenant Lookup', - to: '/tenant/administration/tenantlookup', - }, - { - component: CNavItem, - name: 'Individual Domain Check', - to: '/tenant/standards/individual-domains', - }, - { - component: CNavItem, - name: 'BPA Report Builder', - to: '/tenant/tools/bpa-report-builder', - }, - ], - }, - { - component: CNavGroup, - name: 'Standards', - section: 'Tenant Administration', - to: '/tenant/standards', - icon: , - items: [ - { - component: CNavItem, - name: 'Edit Standards', - to: '/tenant/standards/list-applied-standards', - }, - { - component: CNavItem, - name: 'List Standards', - to: '/tenant/standards/list-standards', - }, - { - component: CNavItem, - name: 'Best Practice Analyser', - to: '/tenant/standards/bpa-report', - }, - { - component: CNavItem, - name: 'Domains Analyser', - to: '/tenant/standards/domains-analyser', - }, - ], - }, - { - component: CNavGroup, - name: 'Conditional Access', - section: 'Tenant Administration', - to: '/tenant/administration', - icon: , - items: [ - { - component: CNavItem, - name: 'CA Policies', - to: '/tenant/conditional/list-policies', - }, - { - component: CNavItem, - name: 'Deploy CA Policies', - to: '/tenant/conditional/deploy', - }, - { - component: CNavItem, - name: 'CA Policy Tester', - to: '/tenant/conditional/test-policy', - }, - { - component: CNavItem, - name: 'CA Vacation Mode', - to: '/tenant/conditional/deploy-vacation', - }, - { - component: CNavItem, - name: 'CA Templates', - to: '/tenant/conditional/list-template', - }, - { - component: CNavItem, - name: 'Named Locations', - to: '/tenant/conditional/list-named-locations', - }, - { - component: CNavItem, - name: 'Deploy Named Locations', - to: '/tenant/conditional/deploy-named-location', - }, - ], - }, - { - component: CNavGroup, - name: 'GDAP Management', - section: 'Tenant Administration', - to: '/cipp/gdap', - icon: , - items: [ - { - component: CNavItem, - name: 'Invite Wizard', - to: '/tenant/administration/gdap-invite-wizard', - }, - { - component: CNavItem, - name: 'Invite List', - to: '/tenant/administration/gdap-invites', - }, - { - component: CNavItem, - name: 'GDAP Relationships', - to: '/tenant/administration/gdap-relationships', - }, - { - component: CNavItem, - name: 'Role Wizard', - to: '/tenant/administration/gdap-role-wizard', - }, - { - component: CNavItem, - name: 'GDAP Roles', - to: '/tenant/administration/gdap-roles', - }, - ], - }, - { - component: CNavGroup, - name: 'Reports', - section: 'Tenant Administration', - to: '/tenant/reports', - icon: , - items: [ - { - component: CNavItem, - name: 'Licence Report', - to: '/tenant/administration/list-licenses', - }, - { - component: CNavItem, - name: 'Consented Applications', - to: '/tenant/administration/application-consent', - }, - { - component: CNavItem, - name: 'Service Health', - to: '/tenant/administration/service-health', - }, - ], - }, - { - component: CNavTitle, - name: 'Security & Compliance', - }, - { - component: CNavGroup, - name: 'Incidents & Alerts', - section: 'Security & Compliance', - to: '/security/incidents', - icon: , - items: [ - { - component: CNavItem, - name: 'Incidents', - to: '/security/incidents/list-incidents', - }, - { - component: CNavItem, - name: 'Alerts', - to: '/security/incidents/list-alerts', - }, - ], - }, - { - component: CNavGroup, - name: 'Defender', - section: 'Security & Compliance', - to: '/security/defender', - icon: , - items: [ - { - component: CNavItem, - name: 'Defender Status', - to: '/security/defender/list-defender', - }, - { - component: CNavItem, - name: 'Defender Deployment', - to: '/security/defender/deployment', - }, - { - component: CNavItem, - name: 'Vulnerabilities', - to: '/security/defender/list-defender-tvm', - }, - ], - }, - { - component: CNavGroup, - name: 'Reports', - section: 'Security & Compliance', - to: '/security/reports', - icon: , - items: [ - { - component: CNavItem, - name: 'Device Compliance', - to: '/security/reports/list-device-compliance', - }, - ], - }, - { - component: CNavTitle, - name: 'Intune', - }, - { - component: CNavGroup, - name: 'Applications', - section: 'Intune', - to: '/endpoint/applications', - icon: , - items: [ - { - component: CNavItem, - name: 'Applications', - to: '/endpoint/applications/list', - }, - { - component: CNavItem, - name: 'Application Queue', - to: '/endpoint/applications/queue', - }, - { - component: CNavItem, - name: 'Add Choco App', - to: '/endpoint/applications/add-choco-app', - }, - { - component: CNavItem, - name: 'Add Store App', - to: '/endpoint/applications/add-winget-app', - }, - { - component: CNavItem, - name: 'Add Office App', - to: '/endpoint/applications/add-office-app', - }, - { - component: CNavItem, - name: 'Add MSP App', - to: '/endpoint/applications/add-rmm-app', - }, - ], - }, - { - component: CNavGroup, - name: 'Autopilot', - section: 'Intune', - to: '/endpoint/autopilot', - icon: , - items: [ - { - component: CNavItem, - name: 'Autopilot Devices', - to: '/endpoint/autopilot/list-devices', - }, - { - component: CNavItem, - name: 'Add Autopilot Device', - to: '/endpoint/autopilot/add-device', - }, - { - component: CNavItem, - name: 'Profiles', - to: '/endpoint/autopilot/list-profiles', - }, - { - component: CNavItem, - name: 'Add Profile', - to: '/endpoint/autopilot/add-profile', - }, - { - component: CNavItem, - name: 'Status Pages', - to: '/endpoint/autopilot/list-status-pages', - }, - { - component: CNavItem, - name: 'Add Status Page', - to: '/endpoint/autopilot/add-status-page', - }, - ], - }, - { - component: CNavGroup, - name: 'Device Management', - section: 'Intune', - to: '/endpoint/MEM', - icon: , - items: [ - { - component: CNavItem, - name: 'Devices', - to: '/endpoint/reports/devices', - }, - { - component: CNavItem, - name: 'Configuration Policies', - to: '/endpoint/MEM/list-policies', - }, - { - component: CNavItem, - name: 'Compliance Policies', - to: '/endpoint/MEM/list-compliance-policies', - }, - { - component: CNavItem, - name: 'Protection Policies', - to: '/endpoint/MEM/list-appprotection-policies', - }, - { - component: CNavItem, - name: 'Apply Policy', - to: '/endpoint/MEM/add-policy', - }, - { - component: CNavItem, - name: 'Policy Templates', - to: '/endpoint/MEM/list-templates', - }, - { - component: CNavItem, - name: 'Add Policy Template', - to: '/endpoint/MEM/add-policy-template', - }, - ], - }, - { - component: CNavTitle, - name: 'Teams & Sharepoint', - }, - { - component: CNavGroup, - name: 'OneDrive', - section: 'Teams & Sharepoint', - to: '/teams-share/onedrive', - icon: , - items: [ - { - component: CNavItem, - name: 'OneDrive', - to: '/teams-share/onedrive/list', - }, - ], - }, - { - component: CNavGroup, - name: 'SharePoint', - section: 'Teams & Sharepoint', - to: '/teams-share/sharepoint', - icon: , - items: [ - { - component: CNavItem, - name: 'SharePoint', - to: '/teams-share/sharepoint/list-sharepoint', - }, - ], - }, - { - component: CNavGroup, - name: 'Teams', - section: 'Teams & Sharepoint', - to: '/teams-share/teams', - icon: , - items: [ - { - component: CNavItem, - name: 'Teams', - to: '/teams-share/teams/list-team', - }, - { - component: CNavItem, - name: 'Add Team', - to: '/teams-share/teams/add-team', - }, - { - component: CNavItem, - name: 'Teams Activity', - to: '/teams-share/teams/teams-activity', - }, - { - component: CNavItem, - name: 'Business Voice', - to: '/teams-share/teams/business-voice', - }, - ], - }, - { - component: CNavTitle, - name: 'Email & Exchange', - }, - { - component: CNavGroup, - name: 'Administration', - section: 'Email & Exchange', - to: '/email/Administration', - icon: , - items: [ - { - component: CNavItem, - name: 'Mailboxes', - to: '/email/administration/mailboxes', - }, - { - component: CNavItem, - name: 'Deleted Mailboxes', - to: '/email/administration/deleted-mailboxes', - }, - { - component: CNavItem, - name: 'Mailbox Rules', - to: '/email/administration/mailbox-rules', - }, - { - component: CNavItem, - name: 'Contacts', - to: '/email/administration/contacts', - }, - { - component: CNavItem, - name: 'Quarantine', - to: '/email/administration/quarantine', - }, - { - component: CNavItem, - name: 'Tenant Allow/Block Lists', - to: '/email/administration/tenant-allow-block-lists', - }, - ], - }, - { - component: CNavGroup, - name: 'Tools', - section: 'Email & Exchange', - to: '/email/tools', - icon: , - items: [ - { - component: CNavItem, - name: 'Mailbox Restore Wizard', - to: '/email/tools/mailbox-restore-wizard', - }, - { - component: CNavItem, - name: 'Mailbox Restores', - to: '/email/tools/mailbox-restores', - }, - { - component: CNavItem, - name: 'Mail Test', - to: '/email/tools/mail-test', - }, - { - component: CNavItem, - name: 'Message Viewer', - to: '/email/tools/message-viewer', - }, - ], - }, - { - component: CNavGroup, - name: 'Transport', - section: 'Email & Exchange', - to: '/email/Transport', - icon: , - items: [ - { - component: CNavItem, - name: 'Transport rules', - to: '/email/transport/list-rules', - }, - { - component: CNavItem, - name: 'Deploy Transport rule', - to: '/email/transport/deploy-rules', - }, - { - component: CNavItem, - name: 'Transport Templates', - to: '/email/transport/list-templates', - }, - { - component: CNavItem, - name: 'Connectors', - to: '/email/connectors/list-connectors', - }, - { - component: CNavItem, - name: 'Deploy Connector Templates', - to: '/email/connectors/deploy-connector', - }, - { - component: CNavItem, - name: 'Connector Templates', - to: '/email/connectors/list-connector-templates', - }, - ], - }, - { - component: CNavGroup, - name: 'Spamfilter', - section: 'Email & Exchange', - to: '/email/spamfilter', - icon: , - items: [ - { - component: CNavItem, - name: 'Spamfilter', - to: '/email/spamfilter/list-spamfilter', - }, - { - component: CNavItem, - name: 'Apply Spamfilter Template', - to: '/email/spamfilter/deploy', - }, - { - component: CNavItem, - name: 'Templates', - to: '/email/spamfilter/list-templates', - }, - ], - }, - { - component: CNavGroup, - name: 'Resource Management', - section: 'Email & Exchange', - to: '/resources/management', - icon: , - items: [ - { - component: CNavItem, - name: 'Rooms', - to: '/resources/management/list-rooms', - }, - { - component: CNavItem, - name: 'Room Lists', - to: '/resources/management/room-lists', - }, - ], - }, - { - component: CNavGroup, - name: 'Reports', - section: 'Email & Exchange', - to: '/email/reports', - icon: , - items: [ - { - component: CNavItem, - name: 'Mailbox Statistics', - to: '/email/reports/mailbox-statistics', - }, - { - component: CNavItem, - name: 'Mailbox Client Access Settings', - to: '/email/reports/mailbox-cas-settings', - }, - { - component: CNavItem, - name: 'Message Trace', - to: '/email/reports/message-trace', - }, - { - component: CNavItem, - name: 'Anti-Phishing Filters', - to: '/email/reports/antiphishing-filters', - }, - { - component: CNavItem, - name: 'Malware Filters', - to: '/email/reports/malware-filters', - }, - { - component: CNavItem, - name: 'Safe Links Filters', - to: '/email/reports/safelinks-filters', - }, - { - component: CNavItem, - name: 'Safe Attachments Filters', - to: '/email/reports/safeattachments-filters', - }, - { - component: CNavItem, - name: 'Shared Mailbox with Enabled Account', - to: '/email/reports/SharedMailboxEnabledAccount', - }, - ], - }, - { - component: CNavTitle, - name: 'Settings', - }, - { - component: CNavGroup, - name: 'CIPP', - section: 'Settings', - to: '/cipp/cipp', - icon: , - items: [ - { - component: CNavItem, - name: 'Application Settings', - to: '/cipp/settings', - }, - { - component: CNavItem, - name: 'Extensions Settings', - to: '/cipp/extensions', - }, - { - component: CNavItem, - name: 'Extension Sync', - to: '/cipp/extension-sync', - }, - { - component: CNavItem, - name: 'User Settings', - to: '/cipp/user-settings', - }, - { - component: CNavItem, - name: 'Scheduler', - to: '/cipp/scheduler', - }, - { - component: CNavItem, - name: 'Logbook', - to: '/cipp/logs', - }, - { - component: CNavItem, - name: 'Statistics', - to: '/cipp/statistics', - }, - { - component: CNavItem, - name: 'SAM Setup Wizard', - to: '/cipp/setup', - }, - { - component: CNavItem, - name: 'Log Out', - to: '/logout', - }, - ], - }, -] - -export default _nav diff --git a/src/assets/images/CIPP.png b/src/assets/images/CIPP.png deleted file mode 100644 index cf279633a13f..000000000000 Binary files a/src/assets/images/CIPP.png and /dev/null differ diff --git a/src/assets/images/CIPP_Dark.png b/src/assets/images/CIPP_Dark.png deleted file mode 100644 index c270631a0d48..000000000000 Binary files a/src/assets/images/CIPP_Dark.png and /dev/null differ diff --git a/src/assets/images/avatars/0.jpg b/src/assets/images/avatars/0.jpg deleted file mode 100644 index 7eb8194d40cd..000000000000 Binary files a/src/assets/images/avatars/0.jpg and /dev/null differ diff --git a/src/assets/images/logo-square.png b/src/assets/images/logo-square.png deleted file mode 100644 index 81eff1991d19..000000000000 Binary files a/src/assets/images/logo-square.png and /dev/null differ diff --git a/src/assets/images/logo.png b/src/assets/images/logo.png deleted file mode 100644 index 8caed1332233..000000000000 Binary files a/src/assets/images/logo.png and /dev/null differ diff --git a/src/components/buttons/CsvButton.jsx b/src/components/buttons/CsvButton.jsx deleted file mode 100644 index 855ba10ea132..000000000000 --- a/src/components/buttons/CsvButton.jsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { CButton } from '@coreui/react' -import { CSVDownloader } from 'react-papaparse' -import PropTypes from 'prop-types' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faFileCsv } from '@fortawesome/free-solid-svg-icons' - -function ExportCsvButton(props) { - return ( - - - {props.nameText} - - ) -} -export default ExportCsvButton - -ExportCsvButton.propTypes = { - csvData: PropTypes.array.isRequired, - nameText: PropTypes.string, - reportName: PropTypes.oneOfType([PropTypes.element, PropTypes.string, PropTypes.number]), -} diff --git a/src/components/buttons/PdfButton.jsx b/src/components/buttons/PdfButton.jsx deleted file mode 100644 index 38c00ce6124f..000000000000 --- a/src/components/buttons/PdfButton.jsx +++ /dev/null @@ -1,58 +0,0 @@ -import React from 'react' -import { CButton, CDropdownItem } from '@coreui/react' -import jsPDF from 'jspdf' -import 'jspdf-autotable' -import PropTypes from 'prop-types' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faFilePdf } from '@fortawesome/free-solid-svg-icons' -import { useSelector } from 'react-redux' - -function ExportPDFButton(props) { - const base64 = useSelector((state) => state.app.reportImage) - const exportPDF = (pdfData, pdfHeaders, pdfSize = 'A3', reportName = 'report') => { - const unit = 'pt' - const size = pdfSize // Use A1, A2, A3 or A4 - const orientation = 'landscape' // portrait or landscape - const doc = new jsPDF(orientation, unit, size) - - doc.setFontSize(10) - let headerObj = [] - pdfHeaders.forEach((item) => { - if (item.exportSelector) { - let returnobj = { header: item.name, dataKey: item.exportSelector } - headerObj.push(returnobj) - } - }) - - let content = { - startY: 100, - columns: headerObj, - body: pdfData, - theme: 'striped', - headStyles: { fillColor: [247, 127, 0] }, - } - if (base64) { - doc.addImage(base64, 'png', 20, 20, 120, 100) - } - doc.autoTable(content) - doc.save(reportName + '.pdf') - } - - return ( - exportPDF(props.pdfData, props.pdfHeaders, props.pdfSize, props.reportName)} - > - - {props.nameText} - - ) -} -export default ExportPDFButton - -ExportPDFButton.propTypes = { - pdfData: PropTypes.oneOfType([PropTypes.element, PropTypes.string, PropTypes.array]), - pdfHeaders: PropTypes.oneOfType([PropTypes.string, PropTypes.array]), - pdfSize: PropTypes.oneOf(['A1', 'A2', 'A3', 'A4']), - reportName: PropTypes.oneOfType([PropTypes.element, PropTypes.string, PropTypes.number]), - nameText: PropTypes.string, -} diff --git a/src/components/buttons/TableModalButton.jsx b/src/components/buttons/TableModalButton.jsx deleted file mode 100644 index f18dee1afe9f..000000000000 --- a/src/components/buttons/TableModalButton.jsx +++ /dev/null @@ -1,54 +0,0 @@ -import React from 'react' -import { CButton } from '@coreui/react' -import { ModalService } from '../utilities' -import { cellGenericFormatter } from '../tables/CellGenericFormat' -import PropTypes from 'prop-types' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' - -export default function TableModalButton({ - data, - title, - className, - countOnly = false, - icon = '', - ...input -}) { - const handleTable = (data) => { - const QueryColumns = [] - const columns = Object.keys(data[0]).map((key) => { - QueryColumns.push({ - name: key, - selector: (row) => row[key], // Accessing the property using the key - sortable: true, - exportSelector: key, - cell: cellGenericFormatter(), - }) - }) - ModalService.open({ - data: data, - componentType: 'table', - componentProps: { - columns: QueryColumns, - keyField: 'id', - }, - title: title, - size: 'lg', - }) - } - const buttonClass = 'btn ' + className - - return ( - handleTable(data)}> - {icon != '' && } - <>{countOnly === true ? data.length : `${title} (${data.length})`} - - ) -} - -TableModalButton.propTypes = { - data: PropTypes.array, - title: PropTypes.string, - className: PropTypes.string, - countOnly: PropTypes.bool, - icon: PropTypes.string, -} diff --git a/src/components/buttons/TitleButton.jsx b/src/components/buttons/TitleButton.jsx deleted file mode 100644 index 24a6ef4f59b0..000000000000 --- a/src/components/buttons/TitleButton.jsx +++ /dev/null @@ -1,33 +0,0 @@ -import React from 'react' -import { CButton } from '@coreui/react' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faPlus } from '@fortawesome/free-solid-svg-icons' -import PropTypes from 'prop-types' -import { Link } from 'react-router-dom' - -export default function TitleButton({ icon, title, href = null, onClick = null }) { - if (href) { - return ( - - - - {title} - - - ) - } else if (onClick) { - return ( - - - {title} - - ) - } -} - -TitleButton.propTypes = { - icon: PropTypes.object, - title: PropTypes.string.isRequired, - href: PropTypes.string, - onClick: PropTypes.func, -} diff --git a/src/components/buttons/index.js b/src/components/buttons/index.js deleted file mode 100644 index c87617eb1456..000000000000 --- a/src/components/buttons/index.js +++ /dev/null @@ -1,6 +0,0 @@ -import ExportCsvButton from 'src/components/buttons/CsvButton' -import ExportPDFButton from 'src/components/buttons/PdfButton' -import TitleButton from 'src/components/buttons/TitleButton' -import TableModalButton from 'src/components/buttons/TableModalButton' - -export { ExportCsvButton, ExportPDFButton, TitleButton, TableModalButton } diff --git a/src/components/contentcards/ActionContentCard.jsx b/src/components/contentcards/ActionContentCard.jsx deleted file mode 100644 index a11d424a86cb..000000000000 --- a/src/components/contentcards/ActionContentCard.jsx +++ /dev/null @@ -1,63 +0,0 @@ -import React from 'react' -import PropTypes from 'prop-types' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { CippContentCard } from '../layout' -import { CButton, CButtonGroup, CSpinner } from '@coreui/react' - -export default function ActionContentCard({ - title, - icon, - content, - className = null, - isFetching, - error, - errorMessage, -}) { - return ( - - {isFetching && } - {!isFetching && error && <>{errorMessage}} - {!isFetching && !error && ( - - {content.map((item, index) => ( - - - {item.label} - - ))} - - )} - - ) -} - -ActionContentCard.propTypes = { - title: PropTypes.string.isRequired, - icon: PropTypes.object, - content: PropTypes.arrayOf( - PropTypes.shape({ - label: PropTypes.string.isRequired, - link: PropTypes.string.isRequired, - icon: PropTypes.oneOfType([PropTypes.element, PropTypes.object, PropTypes.string]), - color: PropTypes.string, - target: PropTypes.string, - onClick: PropTypes.func, - }), - ).isRequired, - className: PropTypes.string, - isFetching: PropTypes.bool, - error: PropTypes.object, - errorMessage: PropTypes.string, -} diff --git a/src/components/contentcards/CippAccordionItem.jsx b/src/components/contentcards/CippAccordionItem.jsx deleted file mode 100644 index 98090b58c0c7..000000000000 --- a/src/components/contentcards/CippAccordionItem.jsx +++ /dev/null @@ -1,49 +0,0 @@ -import React from 'react' -import { - CAccordionBody, - CAccordionHeader, - CAccordionItem, - CCard, - CCardBody, - CCardFooter, - CCardHeader, - CCardTitle, -} from '@coreui/react' -import Skeleton from 'react-loading-skeleton' -import PropTypes from 'prop-types' - -export default function CippAccordionItem({ - title, - titleType = 'normal', - CardButton, - children, - isFetching, -}) { - return ( - - {title} - - - - - {titleType === 'big' ?

{title}

: title} -
-
- - {isFetching && } - {children} - - {CardButton} -
-
-
- ) -} - -CippAccordionItem.propTypes = { - title: PropTypes.string.isRequired, - titleType: PropTypes.string, - CardButton: PropTypes.element.isRequired, - children: PropTypes.element.isRequired, - isFetching: PropTypes.bool.isRequired, -} diff --git a/src/components/contentcards/CippButtonCard.jsx b/src/components/contentcards/CippButtonCard.jsx deleted file mode 100644 index a34acbd66142..000000000000 --- a/src/components/contentcards/CippButtonCard.jsx +++ /dev/null @@ -1,37 +0,0 @@ -import React from 'react' -import { CCard, CCardBody, CCardFooter, CCardHeader, CCardTitle } from '@coreui/react' -import Skeleton from 'react-loading-skeleton' -import PropTypes from 'prop-types' - -export default function CippButtonCard({ - title, - titleType = 'normal', - CardButton, - children, - isFetching = false, - className = 'h-100', -}) { - return ( - - - - {titleType === 'big' ?

{title}

: title} -
-
- - {isFetching && } - {children} - - {CardButton && {CardButton}} -
- ) -} - -CippButtonCard.propTypes = { - title: PropTypes.string.isRequired, - titleType: PropTypes.string, - CardButton: PropTypes.element, - children: PropTypes.element.isRequired, - isFetching: PropTypes.bool, - className: PropTypes.string, -} diff --git a/src/components/contentcards/CippChartCard.jsx b/src/components/contentcards/CippChartCard.jsx deleted file mode 100644 index c708ef8e51ad..000000000000 --- a/src/components/contentcards/CippChartCard.jsx +++ /dev/null @@ -1,86 +0,0 @@ -import React from 'react' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { CButton, CCard, CCardBody, CCardHeader, CCardTitle } from '@coreui/react' -import { CChart } from '@coreui/react-chartjs' -import { getStyle } from '@coreui/utils' -import PropTypes from 'prop-types' - -export default function CippChartCard({ - title, - titleType = 'normal', - ChartData, - ChartLabels, - ChartType = 'pie', - LegendLocation = 'bottom', - isFetching, - refreshFunction, -}) { - return ( - - - - {titleType === 'big' ?

{title}

: title} - {refreshFunction ? ( - - - - ) : ( - - - - )} -
-
- - {ChartData && ( - - )} - -
- ) -} -CippChartCard.propTypes = { - title: PropTypes.string.isRequired, - titleType: PropTypes.oneOf(['normal', 'big']), - ChartData: PropTypes.array.isRequired, - ChartLabels: PropTypes.array.isRequired, - ChartType: PropTypes.oneOf(['pie', 'bar', 'line']), - LegendLocation: PropTypes.oneOf(['top', 'bottom', 'left', 'right']), - isFetching: PropTypes.bool, - refreshFunction: PropTypes.func, -} diff --git a/src/components/contentcards/CippPrettyCard.jsx b/src/components/contentcards/CippPrettyCard.jsx deleted file mode 100644 index b97516e3713c..000000000000 --- a/src/components/contentcards/CippPrettyCard.jsx +++ /dev/null @@ -1,46 +0,0 @@ -import React from 'react' -import { CCard, CCardBody, CCardFooter, CCardHeader, CCardTitle, CCol, CRow } from '@coreui/react' -import Skeleton from 'react-loading-skeleton' -import { CircularProgressbar } from 'react-circular-progressbar' -import 'react-circular-progressbar/dist/styles.css' - -export default function CippPrettyCard({ - title, - titleType = 'normal', - percentage, - topLabel, - smallLabel, - ringcolor = '#f89226', - isFetching, -}) { - return ( - - - - {titleType === 'big' ?

{title}

: title} -
-
- - {isFetching && } - {!isFetching && ( - - -
- -
-
- -

{topLabel}

- {smallLabel} -
-
- )} -
-
- ) -} diff --git a/src/components/contentcards/DatatableContentCard.jsx b/src/components/contentcards/DatatableContentCard.jsx deleted file mode 100644 index 8d36e493d4a0..000000000000 --- a/src/components/contentcards/DatatableContentCard.jsx +++ /dev/null @@ -1,51 +0,0 @@ -import React from 'react' -import PropTypes from 'prop-types' -import { CippDatatable } from 'src/components/tables' -import { CippContentCard } from 'src/components/layout' -import Skeleton from 'react-loading-skeleton' - -export default function DatatableContentCard({ - title, - icon, - datatable: { reportName, path, columns, params, ...rest }, - className = null, - isFetching, - error, - errorMessage, -}) { - return ( - - {isFetching && } - {!isFetching && error && <>{errorMessage}} - {!isFetching && !error && ( - - )} - - ) -} - -DatatableContentCard.propTypes = { - title: PropTypes.string.isRequired, - icon: PropTypes.object, - datatable: PropTypes.shape({ - reportName: PropTypes.string, - path: PropTypes.string.isRequired, - columns: PropTypes.array.isRequired, - params: PropTypes.object, - }), - className: PropTypes.string, - isFetching: PropTypes.bool, - error: PropTypes.object, - errorMessage: PropTypes.string, -} diff --git a/src/components/contentcards/ListGroupContentCard.jsx b/src/components/contentcards/ListGroupContentCard.jsx deleted file mode 100644 index eb1e20d4ad3f..000000000000 --- a/src/components/contentcards/ListGroupContentCard.jsx +++ /dev/null @@ -1,88 +0,0 @@ -import React from 'react' -import PropTypes from 'prop-types' -import { CListGroup, CListGroupItem } from '@coreui/react' -import { CippContentCard } from '../layout' -import Skeleton from 'react-loading-skeleton' -import 'react-loading-skeleton/dist/skeleton.css' -import { CellTip } from 'src/components/tables' - -export default function ListGroupContentCard({ - title, - icon, - content, - className = null, - isFetching, - error, - errorMessage, - tooltip = false, -}) { - let bodyClass = '' - if (!isFetching && !error) { - bodyClass = 'p-0' - } - function bodycontent(item) { - // Wrapping fancy objects with tooltip has bad result so we ensure we only do ones - // that produce legible results - if ( - tooltip && - (typeof item.body === 'string' || - typeof item.body === 'number' || - typeof item.body === 'boolean' || - typeof item.body === 'bigint') - ) { - return CellTip(item.body, true) - } - - return item.body - } - function classcontent(item) { - if (item.className !== undefined) { - return {bodycontent(item) ?? null} - } - return bodycontent(item) ?? null - } - return ( - - {isFetching && } - {!isFetching && error && <>{errorMessage}} - {!isFetching && !error && ( - - {content.map((item, index) => ( - - {item.heading ?
{item.heading}
: null} - {classcontent(item)} - {item.link ? {item.linkText ?? 'URL'} : null} -
- ))} -
- )} -
- ) -} - -ListGroupContentCard.propTypes = { - title: PropTypes.string.isRequired, - icon: PropTypes.object, - content: PropTypes.arrayOf( - PropTypes.shape({ - heading: PropTypes.string, - body: PropTypes.any, - link: PropTypes.string, - linkText: PropTypes.string, - className: PropTypes.string, - }), - ).isRequired, - className: PropTypes.string, - isFetching: PropTypes.bool, - error: PropTypes.object, - errorMessage: PropTypes.string, - tooltip: PropTypes.bool, -} diff --git a/src/components/contentcards/TableContentCard.jsx b/src/components/contentcards/TableContentCard.jsx deleted file mode 100644 index 4f2d408424af..000000000000 --- a/src/components/contentcards/TableContentCard.jsx +++ /dev/null @@ -1,53 +0,0 @@ -import React from 'react' -import PropTypes from 'prop-types' -import { CSpinner } from '@coreui/react' -import { CippTable } from 'src/components/tables' -import { CippContentCard } from 'src/components/layout' - -export default function TableContentCard({ - title, - icon, - table: { reportName, columns, data, ...rest }, - className = null, - isFetching, - error, - errorMessage, -}) { - return ( - - {isFetching && } - {!isFetching && error && <>{errorMessage}} - {!isFetching && !error && ( - - )} - - ) -} - -TableContentCard.propTypes = { - title: PropTypes.string.isRequired, - icon: PropTypes.object, - table: PropTypes.shape({ - reportName: PropTypes.string, - columns: PropTypes.array.isRequired, - data: PropTypes.array.isRequired, - }), - className: PropTypes.string, - isFetching: PropTypes.bool, - error: PropTypes.object, - errorMessage: PropTypes.string, -} diff --git a/src/components/contentcards/index.js b/src/components/contentcards/index.js deleted file mode 100644 index 9acf753eaea0..000000000000 --- a/src/components/contentcards/index.js +++ /dev/null @@ -1,6 +0,0 @@ -import ActionContentCard from 'src/components/contentcards/ActionContentCard' -import ListGroupContentCard from 'src/components/contentcards/ListGroupContentCard' -import DatatableContentCard from 'src/components/contentcards/DatatableContentCard' -import TableContentCard from 'src/components/contentcards/TableContentCard' - -export { ActionContentCard, ListGroupContentCard, DatatableContentCard, TableContentCard } diff --git a/src/components/forms/RFFComponents.jsx b/src/components/forms/RFFComponents.jsx deleted file mode 100644 index 30e096a71aa8..000000000000 --- a/src/components/forms/RFFComponents.jsx +++ /dev/null @@ -1,621 +0,0 @@ -import { - CButton, - CFormCheck, - CFormFeedback, - CFormInput, - CFormLabel, - CFormSelect, - CFormSwitch, - CFormTextarea, - CSpinner, - CTooltip, -} from '@coreui/react' -import Select from 'react-select' -import Creatable, { useCreatable } from 'react-select/creatable' -import { Field } from 'react-final-form' -import { FieldArray } from 'react-final-form-arrays' -import React, { useState, useMemo } from 'react' -import PropTypes from 'prop-types' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { debounce } from 'lodash-es' - -/* - wrapper classes for React Final Form with CoreUI - */ -const sharedPropTypes = { - name: PropTypes.string.isRequired, - className: PropTypes.string, - label: PropTypes.string, - validate: PropTypes.func, - disabled: PropTypes.bool, - input: PropTypes.shape({ - name: PropTypes.string, - value: PropTypes.any, - onChange: PropTypes.func, - meta: PropTypes.shape({ - touched: PropTypes.bool, - error: PropTypes.any, - }), - }), - onClick: PropTypes.func, -} - -export const RFFCFormFeedback = ({ meta }) => { - return ( - - {meta.touched && meta.error} - - ) -} - -RFFCFormFeedback.propTypes = { - meta: PropTypes.shape({ - error: PropTypes.any, - touched: PropTypes.bool, - }), -} - -export const RFFCFormCheck = ({ - name, - label, - className = 'mb-3', - validate, - disabled = false, - onClick, -}) => { - return ( - - {({ input, meta }) => ( -
- - -
- )} -
- ) -} - -RFFCFormCheck.propTypes = { - ...sharedPropTypes, -} - -function ConditionWrapper({ condition, wrapper, children }) { - return condition ? wrapper(children) : children -} - -export const RFFCFormSwitch = ({ - name, - label, - helpText, - sublabel, - className = 'mb-3', - validate, - disabled = false, - initialValue, - onClick, - defaultValue, -}) => { - return ( - - {({ meta, input }) => ( - ( - - {children} - - )} - > -
- - {input.value && } - {sublabel} -
-
- )} -
- ) -} - -RFFCFormSwitch.propTypes = { - ...sharedPropTypes, - helpText: PropTypes.string, -} - -export const RFFCFormInput = ({ - name, - label, - type = 'text', - placeholder, - className = 'mb-3', - validate, - disabled = false, - spellCheck = true, - autoFocus = false, - hiddenValue, - defaultValue, - onChange, -}) => { - return ( - - {({ input, meta }) => { - const handleChange = onChange - ? (e) => { - input.onChange(e) - onChange(e) - } - : input.onChange - return ( -
- {label && {label}} - - -
- ) - }} -
- ) -} -RFFCFormInput.propTypes = { - ...sharedPropTypes, - type: PropTypes.oneOf(['color', 'file', 'text', 'password', 'number']), - placeholder: PropTypes.string, -} - -export const RFFCFormInputArray = ({ name, label, className = 'mb-3' }) => { - return ( - <> - - {({ fields }) => ( -
-
- {label && ( - - {label} - - )} - fields.push({ Key: '', Value: '' })} - className="circular-button" - title={'+'} - > - - -
- {fields.map((name, index) => ( -
-
- - {({ input, meta }) => { - return - }} - - - {({ input, meta }) => { - return - }} - -
- fields.remove(index)} - className={`circular-button`} - title={'-'} - > - - -
- ))} -
- )} -
- - ) -} -RFFCFormInputArray.propTypes = { - ...sharedPropTypes, -} - -export const RFFCFormInputList = ({ name, label, className = 'mb-3' }) => { - return ( - <> - - {({ fields }) => ( -
-
- {label && ( - - {label} - - )} - fields.push({ Key: '', Value: '' })} - className="circular-button" - title={'+'} - > - - -
- {fields.map((name, index) => ( -
-
- - {({ input, meta }) => { - return - }} - -
- fields.remove(index)} - className={`circular-button`} - title={'-'} - > - - -
- ))} -
- )} -
- - ) -} -RFFCFormInputList.propTypes = { - ...sharedPropTypes, -} - -export const RFFCFormRadio = ({ - name, - label, - value, - className = 'mb-3', - validate, - disabled = false, - onClick, -}) => { - return ( - - {({ meta, input }) => ( -
- - -
- )} -
- ) -} - -RFFCFormRadio.propTypes = { - ...sharedPropTypes, -} - -export const RFFCFormRadioList = ({ - name, - options, - className = 'mb-3', - onClick, - inline = false, -}) => { - return ( - <> -
- {options?.map((option, key) => { - return ( - - {({ input }) => { - return ( - <> - - - ) - }} - - ) - })} -
- - ) -} - -RFFCFormRadioList.propTypes = { - ...sharedPropTypes, - inline: PropTypes.bool, -} - -export const RFFCFormTextarea = ({ - name, - label, - value, - placeholder, - className = 'mb-3', - validate, - disabled = false, -}) => { - return ( - - {({ meta, input }) => { - return ( -
- {label} - - -
- ) - }} -
- ) -} - -RFFCFormTextarea.propTypes = { - ...sharedPropTypes, - placeholder: PropTypes.string, -} - -export const RFFCFormSelect = ({ - name, - label, - values = [], - placeholder, - className = 'mb-3', - validate, - disabled = false, - props, -}) => { - // handler for ignoring the first element ('the placeholder') - const selectValidate = (value, allValues, meta) => { - if (validate) { - if (value !== placeholder) { - return validate(value, allValues, meta) - } - return null - } - } - - return ( - - {({ input, meta }) => ( -
- {label && {label}} - - - {values.map(({ label, value, ...props }, idx) => ( - - ))} - - -
- )} -
- ) -} - -RFFCFormSelect.propTypes = { - ...sharedPropTypes, - placeholder: PropTypes.string.isRequired, - values: PropTypes.arrayOf(PropTypes.shape({ label: PropTypes.string, value: PropTypes.any })), -} - -export function Condition({ when, is, children, like, regex }) { - return ( - <> - {is !== undefined && ( - - {({ input: { value } }) => { - return value === is ? children : null - }} - - )} - {like !== undefined && ( - - {({ input: { value } }) => { - return value.includes(like) ? children : null - }} - - )} - {regex !== undefined && ( - - {({ input: { value } }) => { - return value.match(regex) ? children : null - }} - - )} - - ) -} - -Condition.propTypes = { - when: PropTypes.string.isRequired, - is: PropTypes.any, - like: PropTypes.string, - regex: PropTypes.oneOfType([PropTypes.object, PropTypes.string]), - children: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.node), PropTypes.node]), -} - -export const RFFSelectSearch = ({ - name, - label, - values = [], - placeholder, - validate, - onChange, - onInputChange, - multi, - disabled = false, - retainInput = true, - isLoading = false, - allowCreate = false, - onCreateOption, - refreshFunction, - ...props -}) => { - const [inputText, setInputText] = useState('') - const selectSearchValues = values.map((val) => ({ - value: val.value, - label: val.name, - ...val.props, - })) - - const debounceOnInputChange = useMemo(() => { - if (onInputChange) { - return debounce(onInputChange, 1000) - } - }, [onInputChange]) - - const setOnInputChange = (e, action) => { - if (retainInput && action.action !== 'set-value') { - setInputText(e) - } - if (onInputChange && action.action === 'input-change') { - debounceOnInputChange(e) - } - } - - return ( - - {({ meta, input }) => { - const handleChange = (e) => { - if (onChange) { - onChange(e) - } - input.onChange(e) - } - - const selectProps = { - classNamePrefix: 'react-select', - ...input, - name, - id: name, - disabled, - options: selectSearchValues, - placeholder, - isMulti: multi, - inputValue: inputText, - isLoading, - onChange: handleChange, - onInputChange: setOnInputChange, - ...props, - //merge className from props into the default className - className: props.className - ? `${props.className} react-select-container` - : 'react-select-container', - } - - return ( -
- - {label} - {refreshFunction && ( - - - - - - )} - - {allowCreate ? ( - - ) : ( - - {dropMessage} - -
- - ) : ( -
- - - {dropMessage} - -
- )} - - ) -} - -CippDropzone.propTypes = { - title: PropTypes.string, - onDrop: PropTypes.func.isRequired, - dropMessage: PropTypes.string, - accept: PropTypes.object, - maxFiles: PropTypes.number, - returnCard: PropTypes.bool, -} - -export default CippDropzone diff --git a/src/components/utilities/CippFuzzySearch.jsx b/src/components/utilities/CippFuzzySearch.jsx deleted file mode 100644 index ec176e77d340..000000000000 --- a/src/components/utilities/CippFuzzySearch.jsx +++ /dev/null @@ -1,25 +0,0 @@ -// var _fuse = _interopRequireDefault(require('fuse.js')) -import Fuse from 'fuse.js' - -function CippfuzzySearch(options) { - const fuse = new Fuse(options, { - keys: ['name', 'groupName', 'items.name'], - threshold: 0.3, - location: 0, - ignoreLocation: true, - useExtendedSearch: true, - includeMatches: true, - includeScore: true, - }) - return function (value) { - if (!value.length) { - return options - } - const search = fuse.search(value) - return search.map((_ref) => { - let { item } = _ref - return item - }) - } -} -export default CippfuzzySearch diff --git a/src/components/utilities/CippGraphUserFilter.jsx b/src/components/utilities/CippGraphUserFilter.jsx deleted file mode 100644 index 5048796e7c34..000000000000 --- a/src/components/utilities/CippGraphUserFilter.jsx +++ /dev/null @@ -1,30 +0,0 @@ -function CippGraphUserFilter(query) { - const properties = [ - 'displayName', - 'givenName', - 'surname', - 'userPrincipalName', - 'mail', - 'mailNickname', - ] - const endsWithProperties = ['mail', 'otherMails', 'userPrincipalName', 'proxyAddresses'] - const multiValueProperties = ['proxyAddresses'] - - var filterConditions = [] - properties.map((property) => { - filterConditions.push(`startsWith(${property},'${query}')`) - if (endsWithProperties.includes(property)) { - filterConditions.push(`endsWith(${property},'${query}')`) - } - }) - multiValueProperties.map((property) => { - filterConditions.push(`${property}/any(a:startsWith(a,'${query}'))`) - if (endsWithProperties.includes(property)) { - filterConditions.push(`${property}/any(a:endsWith(a,'${query}'))`) - } - }) - - return filterConditions.join(' or ') -} - -export default CippGraphUserFilter diff --git a/src/components/utilities/CippJsonView.jsx b/src/components/utilities/CippJsonView.jsx deleted file mode 100644 index 4a738c33a600..000000000000 --- a/src/components/utilities/CippJsonView.jsx +++ /dev/null @@ -1,260 +0,0 @@ -import React, { useEffect, useState } from 'react' -import JsonView from '@uiw/react-json-view' -import { useSelector } from 'react-redux' -import { useMediaPredicate } from 'react-media-hook' -import translator from 'src/data/translator.json' -import { - CAccordion, - CAccordionBody, - CAccordionHeader, - CAccordionItem, - CButton, - CCard, - CCardBody, - CCardHeader, - CCardTitle, - CCol, - CFormSwitch, - CListGroup, - CListGroupItem, - CNav, - CNavItem, - CNavLink, - CRow, -} from '@coreui/react' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' - -const githubLightTheme = { - '--w-rjv-font-family': 'monospace', - '--w-rjv-color': '#6f42c1', - '--w-rjv-key-string': '#6f42c1', - '--w-rjv-background-color': '#ffffff', - '--w-rjv-line-color': '#ddd', - '--w-rjv-arrow-color': '#6e7781', - '--w-rjv-edit-color': 'var(--w-rjv-color)', - '--w-rjv-info-color': '#0000004d', - '--w-rjv-update-color': '#ebcb8b', - '--w-rjv-copied-color': '#002b36', - '--w-rjv-copied-success-color': '#28a745', - - '--w-rjv-curlybraces-color': '#6a737d', - '--w-rjv-colon-color': '#24292e', - '--w-rjv-brackets-color': '#6a737d', - '--w-rjv-quotes-color': 'var(--w-rjv-key-string)', - '--w-rjv-quotes-string-color': 'var(--w-rjv-type-string-color)', - - '--w-rjv-type-string-color': '#032f62', - '--w-rjv-type-int-color': '#005cc5', - '--w-rjv-type-float-color': '#005cc5', - '--w-rjv-type-bigint-color': '#005cc5', - '--w-rjv-type-boolean-color': '#d73a49', - '--w-rjv-type-date-color': '#005cc5', - '--w-rjv-type-url-color': '#0969da', - '--w-rjv-type-null-color': '#d73a49', - '--w-rjv-type-nan-color': '#859900', - '--w-rjv-type-undefined-color': '#005cc5', -} - -export const githubDarkTheme = { - '--w-rjv-font-family': 'monospace', - '--w-rjv-color': '#79c0ff', - '--w-rjv-key-string': '#79c0ff', - '--w-rjv-background-color': '#0d1117', - '--w-rjv-line-color': '#94949480', - '--w-rjv-arrow-color': '#ccc', - '--w-rjv-edit-color': 'var(--w-rjv-color)', - '--w-rjv-info-color': '#7b7b7b', - '--w-rjv-update-color': '#ebcb8b', - '--w-rjv-copied-color': '#79c0ff', - '--w-rjv-copied-success-color': '#28a745', - - '--w-rjv-curlybraces-color': '#8b949e', - '--w-rjv-colon-color': '#c9d1d9', - '--w-rjv-brackets-color': '#8b949e', - '--w-rjv-quotes-color': 'var(--w-rjv-key-string)', - '--w-rjv-quotes-string-color': 'var(--w-rjv-type-string-color)', - - '--w-rjv-type-string-color': '#a5d6ff', - '--w-rjv-type-int-color': '#79c0ff', - '--w-rjv-type-float-color': '#79c0ff', - '--w-rjv-type-bigint-color': '#79c0ff', - '--w-rjv-type-boolean-color': '#ffab70', - '--w-rjv-type-date-color': '#79c0ff', - '--w-rjv-type-url-color': '#4facff', - '--w-rjv-type-null-color': '#ff7b72', - '--w-rjv-type-nan-color': '#859900', - '--w-rjv-type-undefined-color': '#79c0ff', -} -const matchPattern = (key, patterns) => { - return patterns.some((pattern) => { - if (pattern.includes('*')) { - // Replace * with regex that matches any character sequence and create a RegExp object - const regex = new RegExp(`^${pattern.replace(/\*/g, '.*')}$`, 'i') - return regex.test(key) - } - return pattern.toLowerCase() === key.toLowerCase() - }) -} - -const removeNullOrEmpty = (obj) => { - if (Array.isArray(obj)) { - // Filter out null or undefined items and apply recursively - const filteredArray = obj.filter((item) => item != null).map(removeNullOrEmpty) - // Additionally, remove empty arrays - return filteredArray.length > 0 ? filteredArray : null - } else if (typeof obj === 'object' && obj !== null) { - const result = Object.entries(obj).reduce((acc, [key, value]) => { - const processedValue = removeNullOrEmpty(value) - if (processedValue != null) { - // Checks for both null and undefined - acc[key] = processedValue - } - return acc - }, {}) - // Additionally, remove empty objects - return Object.keys(result).length > 0 ? result : null - } - return obj -} - -const translateAndRemoveKeys = (obj, removePatterns = []) => { - obj = removeNullOrEmpty(obj) // Clean the object first - if (Array.isArray(obj)) { - return obj.map((item) => translateAndRemoveKeys(item, removePatterns)) - } else if (typeof obj === 'object' && obj !== null) { - return Object.entries(obj).reduce((acc, [key, value]) => { - // Check if the key matches any removal pattern - if (!matchPattern(key, removePatterns)) { - const translatedKey = - translator[key.toLowerCase()] || - key.replace(/([A-Z])/g, ' $1').replace(/^./, (str) => str.toUpperCase()) - acc[translatedKey] = translateAndRemoveKeys(value, removePatterns) // Recursively process - } - return acc - }, {}) - } - return obj -} -function CippJsonView({ - object = { 'No Data Selected': 'No Data Selected' }, - removeKeys = ['*@odata*', 'created*', '*modified*', 'id', 'guid'], -}) { - const currentTheme = useSelector((state) => state.app.currentTheme) - const preferredTheme = useMediaPredicate('(prefers-color-scheme: dark)') ? 'impact' : 'cyberdrain' - const theme = - currentTheme === 'impact' || (currentTheme === preferredTheme) === 'impact' - ? githubDarkTheme - : githubLightTheme - const [translatedObject, setTranslatedObject] = useState(() => - translateAndRemoveKeys(object, removeKeys), - ) - const [switchRef, setSwitchRef] = useState(false) - // Adjusting the expanded state to track selections for up to 4 levels - const [expansionPath, setExpansionPath] = useState([{ object: translatedObject }]) - - useEffect(() => { - const sortObject = (obj) => { - const order = ['displayName', 'name', 'state'] // Define the desired order - const sortedKeys = Object.keys(obj).sort((a, b) => { - const indexA = order.indexOf(a) - const indexB = order.indexOf(b) - if (indexA === -1 && indexB === -1) { - return 0 // If both keys are not in the order array, maintain the original order - } else if (indexA === -1) { - return 1 // If only key A is not in the order array, move key B to a higher position - } else if (indexB === -1) { - return -1 // If only key B is not in the order array, move key A to a higher position - } else { - return indexA - indexB // Sort based on the index in the order array - } - }) - const sortedObject = {} - sortedKeys.forEach((key) => { - sortedObject[key] = obj[key] - }) - return sortedObject - } - - const newTranslatedObject = sortObject(translateAndRemoveKeys(sortObject(object), removeKeys)) - setTranslatedObject(newTranslatedObject) - setExpansionPath([{ object: newTranslatedObject }]) // Reset the expansion path with the new object - // eslint-disable-next-line react-hooks/exhaustive-deps - }, [JSON.stringify(object), JSON.stringify(removeKeys)]) - - // Updated to handle deeper level expansions - const handleExpand = (level, content) => { - const newPath = expansionPath.slice(0, level) - newPath.push({ object: content }) - setExpansionPath(newPath) - } - const renderContent = (content, level = 0) => { - if (Array.isArray(content)) { - return ( -
    - {content.map((item, index) => ( -
  • {JSON.stringify(item, null, 2)}
  • - ))} -
- ) - } else if (typeof content === 'object') { - return Object.entries(content).map(([key, value]) => ( -
- {key}: - {typeof value === 'object' ? ( - handleExpand(level + 1, value)} variant="ghost"> - - Show More - - ) : ( - ` ${value}` - )} -
- )) - } else if (typeof content === 'string') { - return content.replace(/(^"|"$)/g, '') // Remove quotes - } - return String(content) - } - - return ( -
- - - - {object.displayName ? `${object.displayName} Settings` : 'Settings'} - - - setSwitchRef(!switchRef)} /> - {switchRef ? ( - - ) : ( - - {expansionPath.map((expansion, index) => ( - - {Object.entries(expansion.object).map(([key, value]) => ( - - - {key} - - - {renderContent(value, index)} - - ))} - - ))} - - )} - - - -
- ) -} - -export default CippJsonView diff --git a/src/components/utilities/CippLazy.jsx b/src/components/utilities/CippLazy.jsx deleted file mode 100644 index 0f376e722ee6..000000000000 --- a/src/components/utilities/CippLazy.jsx +++ /dev/null @@ -1,19 +0,0 @@ -import { useRef } from 'react' -import PropTypes from 'prop-types' - -export function CippLazy({ visible, children }) { - const rendered = useRef(visible) - - if (visible && !rendered.current) { - rendered.current = true - } - - if (!rendered.current) return null - - return
{children}
-} - -CippLazy.propTypes = { - visible: PropTypes.bool, - children: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.node), PropTypes.node]), -} diff --git a/src/components/utilities/CippListOffcanvas.jsx b/src/components/utilities/CippListOffcanvas.jsx deleted file mode 100644 index e3c3229ae394..000000000000 --- a/src/components/utilities/CippListOffcanvas.jsx +++ /dev/null @@ -1,70 +0,0 @@ -import React from 'react' -import PropTypes from 'prop-types' -import { - CCard, - CCardBody, - CCardHeader, - CCardTitle, - CListGroup, - CListGroupItem, -} from '@coreui/react' -import { CippOffcanvas } from '.' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faGlobe } from '@fortawesome/free-solid-svg-icons' -import { CippOffcanvasTable } from '../tables' - -export default function CippListOffcanvas(props) { - return ( - - {props.groups.map((group, key) => ( - - ))} - - ) -} - -CippListOffcanvas.propTypes = { - groups: PropTypes.array, - placement: PropTypes.string.isRequired, - title: PropTypes.string.isRequired, - visible: PropTypes.bool, - id: PropTypes.string.isRequired, - hideFunction: PropTypes.func.isRequired, -} - -export function OffcanvasListSection({ title, items, showCardTitle = true }) { - //console.log(items) - const mappedItems = items.map((item, key) => ({ value: item.content, label: item.heading })) - return ( - <> -

{title}

- {items.length > 0 && ( - - - - {showCardTitle && ( - <> - Extended Information - - )} - - - - - - - )} - - ) -} -OffcanvasListSection.propTypes = { - title: PropTypes.string, - items: PropTypes.array, - showCardTitle: PropTypes.bool, -} diff --git a/src/components/utilities/CippOffcanvas.jsx b/src/components/utilities/CippOffcanvas.jsx deleted file mode 100644 index 765459b71fa6..000000000000 --- a/src/components/utilities/CippOffcanvas.jsx +++ /dev/null @@ -1,54 +0,0 @@ -import React from 'react' -import PropTypes from 'prop-types' -import { CButton, COffcanvas, COffcanvasHeader, COffcanvasBody, CSpinner } from '@coreui/react' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faTimes } from '@fortawesome/free-solid-svg-icons' - -export default function CippOffcanvas(props) { - return ( - - -

{props.title}

- - {props.refreshFunction && ( - { - props.refreshFunction() - }} - > - {props.isRefreshing ? : } - - )} - - - - -
- {props.children} -
- ) -} - -export const CippOffcanvasPropTypes = { - children: PropTypes.node, - placement: PropTypes.string.isRequired, - title: PropTypes.string.isRequired, - visible: PropTypes.bool, - id: PropTypes.string, - hideFunction: PropTypes.func.isRequired, - refreshFunction: PropTypes.func, - isRefreshing: PropTypes.bool, - addedClass: PropTypes.string, -} - -CippOffcanvas.propTypes = CippOffcanvasPropTypes diff --git a/src/components/utilities/CippProfile.jsx b/src/components/utilities/CippProfile.jsx deleted file mode 100644 index 7b559bc08289..000000000000 --- a/src/components/utilities/CippProfile.jsx +++ /dev/null @@ -1,72 +0,0 @@ -import React from 'react' -import { - CRow, - CCol, - CCard, - CCardTitle, - CCardBody, - CListGroup, - CListGroupItem, - CSpinner, -} from '@coreui/react' -import { useLoadClientPrincipalQuery } from 'src/store/api/auth' -import { ThemeSwitcher, UsageLocation, PageSizeSwitcher } from 'src/components/utilities' -import ReportImage from './ReportImage' -import TenantListSelector from './TenantListSelector' - -const CippProfile = () => { - const { data: profile, isFetching, isLoading } = useLoadClientPrincipalQuery() - return ( - <> - - - - {(isFetching || isLoading) && } - {!isLoading && ( - <> - - {profile.clientPrincipal.userDetails} - - - - Identity Provider: {profile.clientPrincipal.identityProvider} - - User ID: {profile.clientPrincipal.userId} - - Roles ({profile.clientPrincipal.userRoles.length}) -
    - {profile.clientPrincipal.userRoles.map((r, index) => ( -
  • {r}
  • - ))} -
-
-
- - )} -
-
- - - - - - -
- - - - - -

- - {!isLoading && } - -

- - {!isLoading && } - - - ) -} - -export default CippProfile diff --git a/src/components/utilities/CippScheduleOffcanvas.jsx b/src/components/utilities/CippScheduleOffcanvas.jsx deleted file mode 100644 index 45d5b5a62e92..000000000000 --- a/src/components/utilities/CippScheduleOffcanvas.jsx +++ /dev/null @@ -1,276 +0,0 @@ -import React, { useState } from 'react' -import PropTypes from 'prop-types' -import { - CButton, - CCallout, - CCard, - CCardBody, - CCardHeader, - CCol, - CForm, - CRow, - CSpinner, - CTooltip, -} from '@coreui/react' -import { CippOffcanvas, TenantSelector } from '.' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { Field, Form, FormSpy } from 'react-final-form' -import arrayMutators from 'final-form-arrays' -import { - RFFCFormInput, - RFFCFormInputArray, - RFFCFormSwitch, - RFFSelectSearch, -} from 'src/components/forms' -import { useSelector } from 'react-redux' -import { useGenericGetRequestQuery, useLazyGenericPostRequestQuery } from 'src/store/api/app' -import DatePicker from 'react-datepicker' -import 'react-datepicker/dist/react-datepicker.css' - -export default function CippScheduleOffcanvas({ - state: visible, - hideFunction, - title, - placement, - ...props -}) { - const currentDate = new Date() - const [startDate, setStartDate] = useState(currentDate) - const tenantDomain = useSelector((state) => state.app.currentTenant.defaultDomainName) - const [refreshState, setRefreshState] = useState(false) - const taskName = `Scheduled Task ${currentDate.toLocaleString()}` - const { data: availableCommands = [], isLoading: isLoadingcmd } = useGenericGetRequestQuery({ - path: 'api/ListFunctionParameters?Module=CIPPCore', - }) - - const recurrenceOptions = [ - { value: '0', name: 'Only once' }, - { value: '1', name: 'Every 1 day' }, - { value: '7', name: 'Every 7 days' }, - { value: '30', name: 'Every 30 days' }, - { value: '365', name: 'Every 365 days' }, - ] - - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - const onSubmit = (values) => { - const unixTime = Math.floor(startDate.getTime() / 1000) - const shippedValues = { - TenantFilter: tenantDomain, - Name: values.taskName, - Command: values.command, - Parameters: values.parameters, - ScheduledTime: unixTime, - Recurrence: values.Recurrence, - AdditionalProperties: values.additional, - PostExecution: { - Webhook: values.webhook, - Email: values.email, - PSA: values.psa, - }, - } - genericPostRequest({ path: '/api/AddScheduledItem', values: shippedValues }).then((res) => { - setRefreshState(res.requestId) - if (props.submitFunction) { - props.submitFunction() - } - }) - } - - return ( - - - - -
{ - return ( - - - - - {(props) => } - - - - - - - - - - - setStartDate(date)} - /> - - - - - - - - - - ({ - value: cmd.Function, - name: cmd.Function, - }))} - name="command" - placeholder={ - isLoadingcmd ? ( - - ) : ( - 'Select a command or report to execute.' - ) - } - label="Command to execute" - /> - - - - {/* eslint-disable react/prop-types */} - {(props) => { - const selectedCommand = availableCommands.find( - (cmd) => cmd.Function === props.values.command?.value, - ) - return ( - - {selectedCommand?.Synopsis} - - ) - }} - - - - {/* eslint-disable react/prop-types */} - {(props) => { - const selectedCommand = availableCommands.find( - (cmd) => cmd.Function === props.values.command?.value, - ) - let paramblock = null - if (selectedCommand) { - //if the command parameter type is boolean we use else . - const parameters = selectedCommand.Parameters - if (parameters.length > 0) { - paramblock = parameters.map((param, idx) => ( - - - - {param.Type === 'System.Boolean' || - param.Type === - 'System.Management.Automation.SwitchParameter' ? ( - <> - - - - ) : ( - <> - {param.Type === 'System.Collections.Hashtable' ? ( - - ) : ( - - )} - - )} - - - - )) - } - } - return paramblock - }} - - - - - - - - - - - - - - - - - - - Add Schedule - {postResults.isFetching && ( - - )} - - - - {postResults.isSuccess && ( - -
  • {postResults.data.Results}
  • -
    - )} -
    - ) - }} - /> - - - - ) -} - -CippScheduleOffcanvas.propTypes = { - groups: PropTypes.array, - placement: PropTypes.string.isRequired, - title: PropTypes.string.isRequired, - state: PropTypes.bool, - hideFunction: PropTypes.func.isRequired, -} diff --git a/src/components/utilities/CippTableOffcanvas.jsx b/src/components/utilities/CippTableOffcanvas.jsx deleted file mode 100644 index 236ccff04b4e..000000000000 --- a/src/components/utilities/CippTableOffcanvas.jsx +++ /dev/null @@ -1,78 +0,0 @@ -import React from 'react' -import { CippOffcanvas } from 'src/components/utilities' -import PropTypes from 'prop-types' -import { CippDatatable, CippTable } from '../tables' -import { cellGenericFormatter } from '../tables/CellGenericFormat' - -function CippTableOffcanvas({ - state: visible, - hideFunction, - title = 'Table', - path, - params, - columns, - tableProps, - data = null, -}) { - if (Array.isArray(data) && data !== null && data !== undefined && data?.length > 0) { - if (!Array.isArray(data) && typeof data === 'object') { - data = Object.keys(data).map((key) => { - return { - Key: key, - Value: data[key], - } - }) - } else { - if (Array.isArray(data) && typeof data[0] !== 'object') { - data = data.map((row) => { - return { - Value: row, - } - }) - } - } - columns = [] - Object.keys(data[0]).map((key) => { - columns.push({ - name: key, - selector: (row) => row[key], - sortable: true, - exportSelector: key, - cell: cellGenericFormatter(), - }) - }) - } - - return ( - <> - - <> - {Array.isArray(data) && data !== null && data !== undefined ? ( - - ) : ( - - )} - - - - ) -} - -CippTableOffcanvas.propTypes = { - state: PropTypes.bool, - hideFunction: PropTypes.func, - title: PropTypes.string, - path: PropTypes.string, - params: PropTypes.object, - columns: PropTypes.object, - tableProps: PropTypes.object, - data: PropTypes.object, -} - -export default CippTableOffcanvas diff --git a/src/components/utilities/CippTenantOffcanvas.jsx b/src/components/utilities/CippTenantOffcanvas.jsx deleted file mode 100644 index dc9310d7aa81..000000000000 --- a/src/components/utilities/CippTenantOffcanvas.jsx +++ /dev/null @@ -1,118 +0,0 @@ -import React, { useState } from 'react' -import { CButton, CTooltip } from '@coreui/react' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faEdit, faEllipsisV, faBuilding } from '@fortawesome/free-solid-svg-icons' -import { CippActionsOffcanvas } from 'src/components/utilities' -import { useLazyGenericGetRequestQuery } from 'src/store/api/app' -import Skeleton from 'react-loading-skeleton' -import Portals from 'src/data/portals' -import PropTypes from 'prop-types' - -export const CippTenantOffcanvasRow = (row, rowIndex, formatExtraData) => { - const tenant = row - return CippTenantOffcanvas({ tenant: row }) -} - -function CippTenantOffcanvas({ tenant, buildingIcon = false }) { - const [getTenantDetails, tenantDetails] = useLazyGenericGetRequestQuery() - const [ocVisible, setOCVisible] = useState(false) - - function loadOffCanvasDetails(domainName) { - setOCVisible(true) - getTenantDetails({ path: `api/ListTenantDetails?tenantfilter=${domainName}` }) - } - - function tenantProperty(tenantDetails, propertyName) { - return ( - <> - {tenantDetails.isFetching && } - {!tenantDetails.isFetching && - tenantDetails.isSuccess && - (tenantDetails.data[propertyName]?.toString() ?? ' ')} - - ) - } - - const actions = Portals.map((portal) => ({ - icon: , - label: portal.label, - external: true, - color: 'info', - link: portal.url.replace(portal.variable, tenant[portal.variable]), - })) - return ( - <> - - loadOffCanvasDetails(tenant.defaultDomainName)} - > - - - - , - label: 'Edit Tenant', - link: `/tenant/administration/tenants/Edit?tenantFilter=${tenant.defaultDomainName}&customerId=${tenant.customerId}`, - color: 'warning', - }, - ...actions, - ]} - placement="end" - visible={ocVisible} - id={tenant.id} - hideFunction={() => setOCVisible(false)} - /> - - ) -} - -CippTenantOffcanvas.propTypes = { - tenant: PropTypes.object, - buildingIcon: PropTypes.bool, -} - -export default CippTenantOffcanvas diff --git a/src/components/utilities/CippauthCheck.jsx b/src/components/utilities/CippauthCheck.jsx deleted file mode 100644 index 338c22233bf7..000000000000 --- a/src/components/utilities/CippauthCheck.jsx +++ /dev/null @@ -1,27 +0,0 @@ -import { useLoadClientPrincipalQuery } from 'src/store/api/auth' -import { useDispatch } from 'react-redux' -import { updateAccessToken } from 'src/store/features/auth' -import { Navigate } from 'react-router-dom' - -export const useAuthCheck = (allowedRoles) => { - const dispatch = useDispatch() - const { data: profile, isFetching } = useLoadClientPrincipalQuery() - if (isFetching) { - return { isLoading: true, component: null } - } - dispatch(updateAccessToken(profile)) - let roles = profile?.clientPrincipal?.userRoles || [] - - if (!profile?.clientPrincipal) { - return { - component: ( - - ), - result: false, - } - } - if (allowedRoles && !allowedRoles.some((role) => roles.includes(role))) { - return { component: , result: true } - } - return { component: null, result: false } -} diff --git a/src/components/utilities/ErrorBoundary.jsx b/src/components/utilities/ErrorBoundary.jsx deleted file mode 100644 index 8240d09b4139..000000000000 --- a/src/components/utilities/ErrorBoundary.jsx +++ /dev/null @@ -1,32 +0,0 @@ -import React, { Suspense } from 'react' -import PropTypes from 'prop-types' -import Page500 from 'src/views/pages/page500/Page500' - -export default class ErrorBoundary extends React.Component { - constructor(props) { - super(props) - this.state = { error: null, errorInfo: null } - } - - componentDidCatch(error, errorInfo) { - // Catch errors in any components below and re-render with error message - this.setState({ - error: error, - errorInfo: errorInfo, - }) - // You can also log error messages to an error reporting service here - } - - render() { - if (this.state.errorInfo) { - //React.lazy(() => import('src/views/pages/page500/Page500')) - return - } - // Normally, just render children - return this.props.children - } -} - -ErrorBoundary.propTypes = { - children: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.node), PropTypes.node]), -} diff --git a/src/components/utilities/FastSwitcher.jsx b/src/components/utilities/FastSwitcher.jsx deleted file mode 100644 index 5067a1ee2444..000000000000 --- a/src/components/utilities/FastSwitcher.jsx +++ /dev/null @@ -1,158 +0,0 @@ -import React, { useEffect, useRef, useState } from 'react' -import { useDispatch, useSelector } from 'react-redux' -import { CFormInput, CModal, CModalBody, CModalFooter, CModalTitle } from '@coreui/react' -import { hideSwitcher, mapNav } from 'src/store/features/switcher' -import { useNavigate } from 'react-router-dom' -import PropTypes from 'prop-types' -import fuzzysort from 'fuzzysort' - -const searchItems = mapNav() - -export const FastSwitcher = React.forwardRef( - ({ onConfirm = () => {}, onChange = () => {}, maxResults = 7, value = '' }, ref) => { - const [searchValue, setSearchValue] = useState(value) - const navigate = useNavigate() - - const results = fuzzysort.go(searchValue, searchItems, { - keys: ['name', 'section', 'to'], - limit: maxResults, - scoreFn: (a) => - // rank scores name>section>url (to) - Math.max( - a[0] ? a[0].score : -1000, - a[1] ? a[1].score - 100 : -1000, - a[2] ? a[2].score - 200 : -1000, - ), - }) - - const handleChange = (event) => { - setSearchValue(event.target?.value) - onChange(event.target?.value) - } - - const handleKeyDown = (event) => { - if (event.key === 'Enter') { - // on enter key, navigate to top result - onConfirm() - navigate(results[0]?.obj?.to) - } - } - - return ( -
    -
    - -
    - -
    - ) - }, -) -FastSwitcher.displayName = 'FastSwitcher' -FastSwitcher.propTypes = { - ref: PropTypes.oneOfType([ - // Either a function - PropTypes.func, - // Or the instance of a DOM native element (see the note about SSR) - PropTypes.shape({ current: PropTypes.instanceOf(Element) }), - ]), - onConfirm: PropTypes.func, - onChange: PropTypes.func, - maxResults: PropTypes.number, - value: PropTypes.any, -} - -export function FastSwitcherModal() { - const dispatch = useDispatch() - const switcher = useSelector((store) => store.switcher) - const searchRef = useRef(null) - - useEffect(() => { - // delay focus - setTimeout(() => searchRef.current?.focus(), 100) - }, [switcher.visible]) - - if (!switcher.visible) { - return null - } - - const handleClose = () => { - dispatch(hideSwitcher()) - } - - const handleConfirm = () => { - dispatch(hideSwitcher()) - } - - return ( - - - Search for pages or tasks... - - - - Tip: Press to open the top result. - - - ) -} - -const Results = ({ items = [] }) => { - return items.map((item, key) => { - return - }) -} - -const ResultsRow = ({ match = [] }) => { - const navigate = useNavigate() - const dispatch = useDispatch() - - // eslint-disable-next-line no-unsafe-optional-chaining - const { name, section, icon, to } = match?.obj - const [nameMatch, sectionMatch, toMatch] = match - - const handleHighlight = (match, fallback) => { - if (!match) { - return fallback - } - const [start, highlight, end] = fuzzysort.highlight(match, '$$', '$$').split('$$') - return ( - <> - {start} - {highlight} - {end} - - ) - } - - const handleClick = () => { - dispatch(hideSwitcher()) - navigate(to) - } - - return ( -
    -
    -
    -
    {icon && icon}
    -
    -
    {handleHighlight(nameMatch, name)}
    -
    {handleHighlight(sectionMatch, section)}
    - {handleHighlight(toMatch, to)} -
    -
    -
    -
    - ) -} - -ResultsRow.propTypes = { - match: PropTypes.array, -} diff --git a/src/components/utilities/Loading.jsx b/src/components/utilities/Loading.jsx deleted file mode 100644 index 08369fc61287..000000000000 --- a/src/components/utilities/Loading.jsx +++ /dev/null @@ -1,37 +0,0 @@ -import React from 'react' -import PropTypes from 'prop-types' -import { CSpinner } from '@coreui/react' - -export default function Loading({ style = {}, size = 'md' }) { - return -} - -Loading.propTypes = { - style: PropTypes.object, - size: PropTypes.oneOf(['sm', 'md', 'lg']), -} - -export function FullScreenLoading() { - return ( -
    - -
    - ) -} diff --git a/src/components/utilities/ModalRoot.jsx b/src/components/utilities/ModalRoot.jsx deleted file mode 100644 index 65b95d9a26ba..000000000000 --- a/src/components/utilities/ModalRoot.jsx +++ /dev/null @@ -1,82 +0,0 @@ -import React, { useEffect, useState } from 'react' -import { SharedModal } from 'src/components/utilities' -export const ModalService = { - on(event, callback) { - document.addEventListener(event, (e) => callback(e.detail)) - }, - open({ - componentType = 'text', - componentProps = {}, - body = false, - data, - title, - size, - onConfirm = () => {}, - onClose = () => {}, - ...rest - }) { - document.dispatchEvent( - new CustomEvent('open', { - detail: { - componentType, - componentProps, - body: typeof body === 'function' ? body() : body, - data, - title, - size, - onConfirm, - onClose, - ...rest, - }, - }), - ) - }, - confirm({ body, title, size, onConfirm, confirmLabel, cancelLabel }) { - this.open({ - componentType: 'confirm', - body: typeof body === 'function' ? body : body, - title, - size, - onConfirm, - confirmLabel, - cancelLabel, - }) - }, -} - -export function ModalRoot() { - const [modal, setModal] = useState({}) - const [version, setVersion] = useState(0) // used to force re-render - - useEffect(() => { - const handleOpen = (props) => { - setModal({ - ...props, - close: () => { - setModal({}) - }, - }) - setVersion((v) => v + 1) // Increment version to force update - } - - ModalService.on('open', handleOpen) - return () => { - document.removeEventListener('open', handleOpen) - } - }, []) - - const ModalComponent = modal.componentType ? SharedModal : null - - return ( - <> - {ModalComponent && ( - - )} - - ) -} diff --git a/src/components/utilities/PageSizeSwitcher.jsx b/src/components/utilities/PageSizeSwitcher.jsx deleted file mode 100644 index 527a82b3c917..000000000000 --- a/src/components/utilities/PageSizeSwitcher.jsx +++ /dev/null @@ -1,41 +0,0 @@ -import React from 'react' -import { CButton, CCol, CRow } from '@coreui/react' -import { useDispatch, useSelector } from 'react-redux' -import { setCurrentPageSize } from 'src/store/features/app' - -const PageSizeSwitcher = () => { - const dispatch = useDispatch() - const pageSizes = useSelector((state) => state.app.pageSizes) - const currentTablePageSize = useSelector((state) => state.app.tablePageSize) - - const SwitchPageSize = (targetTablePageSize) => { - dispatch(setCurrentPageSize({ pageSize: targetTablePageSize })) - } - - return ( - <> - - - - - - - - {pageSizes.map((tablePageSize, index) => ( - SwitchPageSize(tablePageSize)} - className={`circular-button default ${ - tablePageSize === currentTablePageSize ? 'round-focus' : '' - }`} - key={index} - > - {tablePageSize} - - ))} - - - - ) -} - -export default PageSizeSwitcher diff --git a/src/components/utilities/PrivateRoute.jsx b/src/components/utilities/PrivateRoute.jsx deleted file mode 100644 index b89f0d5aa8ee..000000000000 --- a/src/components/utilities/PrivateRoute.jsx +++ /dev/null @@ -1,41 +0,0 @@ -import React from 'react' -import { Navigate } from 'react-router-dom' -import { useLoadClientPrincipalQuery } from 'src/store/api/auth' -import { FullScreenLoading } from 'src/components/utilities' -import { useDispatch } from 'react-redux' -import { updateAccessToken } from 'src/store/features/auth' -import PropTypes from 'prop-types' - -export const PrivateRoute = ({ children, routeType }) => { - const dispatch = useDispatch() - const { data: profile, error, isFetching } = useLoadClientPrincipalQuery() - //console.log() - if (isFetching) { - return - } - - dispatch(updateAccessToken(profile)) - let roles = null - if (null !== profile?.clientPrincipal) { - roles = profile?.clientPrincipal.userRoles - } else if (null === profile?.clientPrincipal) { - return - } - if (null === roles) { - return - } else { - const isAuthenticated = - roles.includes('admin') || roles.includes('editor') || (roles.includes('readonly') && !error) - const isAdmin = roles.includes('admin') - if (routeType === 'admin') { - return !isAdmin ? : children - } else { - return !isAuthenticated ? : children - } - } -} - -PrivateRoute.propTypes = { - children: PropTypes.oneOfType([PropTypes.node, PropTypes.arrayOf(PropTypes.node)]), - routeType: PropTypes.string, -} diff --git a/src/components/utilities/ReportImage.jsx b/src/components/utilities/ReportImage.jsx deleted file mode 100644 index 86c205968b4a..000000000000 --- a/src/components/utilities/ReportImage.jsx +++ /dev/null @@ -1,46 +0,0 @@ -import React from 'react' -import { CCol, CRow } from '@coreui/react' -import { useDispatch, useSelector } from 'react-redux' -import { setReportImage } from 'src/store/features/app' - -const ReportImage = () => { - const dispatch = useDispatch() - const inputRef = React.useRef(null) - const ReportImage = useSelector((state) => state.app.reportImage) - - const Switchusage = (e) => { - const reader = new FileReader() - reader.readAsDataURL(e.target.files[0]) - reader.onloadend = () => { - dispatch(setReportImage({ reportImage: reader.result })) - } - } - - return ( - <> - - - - - - - inputRef.current.click()}> - Report -
    -
    Click to Change
    -
    - Switchusage(e)} - /> -
    -
    - - ) -} - -export default ReportImage diff --git a/src/components/utilities/SharedModal.jsx b/src/components/utilities/SharedModal.jsx deleted file mode 100644 index 9167b7a2073b..000000000000 --- a/src/components/utilities/SharedModal.jsx +++ /dev/null @@ -1,138 +0,0 @@ -import React from 'react' -import { CButton, CModal, CModalBody, CModalFooter, CModalHeader, CModalTitle } from '@coreui/react' -import PropTypes from 'prop-types' -import { CippTable } from 'src/components/tables' -import CippCodeBlock from 'src/components/utilities/CippCodeBlock' - -/** - * - * @param componentType - * @param {string|array} data - * @param componentProps - * @returns {JSX.Element|string} - */ -function mapBodyComponent({ componentType, data, componentProps }) { - switch (componentType) { - case 'table': - return - case 'list': - return
    {Array.isArray(data) && data.map((el, idx) =>
    {el}
    )}
    - case 'text': - return String(data) - case 'codeblock': - return ( - - ) - default: - return String(data) - } -} - -const sharedProps = { - componentType: PropTypes.oneOf(['table', 'list', 'text', 'confirm', 'codeblock']), - componentProps: PropTypes.object, - body: PropTypes.oneOfType([PropTypes.node, PropTypes.element]), - data: PropTypes.any, - title: PropTypes.string, - visible: PropTypes.bool, - size: PropTypes.oneOf(['sm', 'lg', 'xl']), - onClose: PropTypes.func, -} - -export default function SharedModal(props) { - const { - componentType = 'text', - componentProps = {}, - body = false, - data, - title, - visible = true, - size, - onClose = () => {}, - close, - ...rest - } = props - - const handleClose = () => { - onClose() - close() - } - //console.log('show modal', { props }, { rest }) - - if (componentType === 'confirm') { - return - } - - return ( - - - {title} - - - {!body && mapBodyComponent({ componentType, data, componentProps })} - {body} - - - - Close - - - - ) -} - -SharedModal.propTypes = { - ...sharedProps, -} - -export const ConfirmModal = ({ - componentType = 'text', - componentProps = {}, - body = false, - data, - title, - visible, - size, - close, - onClose = () => {}, - onConfirm = () => {}, - confirmLabel = 'Continue', - cancelLabel = 'Cancel', -}) => { - const handleClose = () => { - onClose() - close() - } - - const handleConfirm = () => { - onConfirm() - close() - } - - return ( - - - {title} - - - {!body && mapBodyComponent({ componentType, data, componentProps })} - {body} - - - - {confirmLabel} - - - {cancelLabel} - - - - ) -} - -ConfirmModal.propTypes = { - ...sharedProps, - onConfirm: PropTypes.func, - confirmLabel: PropTypes.string, - cancelLabel: PropTypes.string, -} diff --git a/src/components/utilities/StatusIcon.jsx b/src/components/utilities/StatusIcon.jsx deleted file mode 100644 index 990d2ec8a21a..000000000000 --- a/src/components/utilities/StatusIcon.jsx +++ /dev/null @@ -1,55 +0,0 @@ -import React from 'react' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { - faCheckCircle, - faExclamationTriangle, - faTimesCircle, -} from '@fortawesome/free-solid-svg-icons' -import PropTypes from 'prop-types' - -const IconGreenCheck = () => -const IconRedX = () => -const IconWarning = () => ( - -) - -function StatusIcon(props) { - if (props.type === 'finalstate') { - const finalState = props.finalState - if (finalState === 'Pass') { - return - } else if (finalState === 'Fail') { - return - } else if (finalState === 'Warn') { - return - } else { - return '' - } - } else if (props.type === 'boolean') { - const status = props.status - if (status === true) { - return - } else if (status === false) { - return - } else { - return '' - } - } else if (props.type === 'negatedboolean') { - const status = props.status - if (status === false) { - return - } else if (status === true) { - return - } else { - return '' - } - } -} - -export default StatusIcon - -StatusIcon.propTypes = { - finalState: PropTypes.string, - status: PropTypes.bool, - type: PropTypes.string, -} diff --git a/src/components/utilities/TenantListSelector.jsx b/src/components/utilities/TenantListSelector.jsx deleted file mode 100644 index f9c23e1a0330..000000000000 --- a/src/components/utilities/TenantListSelector.jsx +++ /dev/null @@ -1,28 +0,0 @@ -import React from 'react' -import { CFormSwitch, CRow, CCol } from '@coreui/react' -import { useDispatch, useSelector } from 'react-redux' -import { setTenantList } from 'src/store/features/app' - -const TenantListSelector = () => { - const dispatch = useDispatch() - const TenantListSelector = useSelector((state) => state.app.TenantListSelector) - - const SwitchPageSize = (value) => { - dispatch(setTenantList({ TenantListSelector: value })) - } - - return ( - - - SwitchPageSize(e.target.checked)} - initialValue={TenantListSelector} - name="TenantListSelector" - label="Show compressed tenant list" - /> - - - ) -} - -export default TenantListSelector diff --git a/src/components/utilities/TenantSelector.jsx b/src/components/utilities/TenantSelector.jsx deleted file mode 100644 index 36a9bd8764e7..000000000000 --- a/src/components/utilities/TenantSelector.jsx +++ /dev/null @@ -1,146 +0,0 @@ -import React, { useCallback, useEffect } from 'react' -import SelectSearch, { fuzzySearch } from 'react-select-search' -import { useDispatch, useSelector } from 'react-redux' -import PropTypes from 'prop-types' -import { useListTenantsQuery } from 'src/store/api/tenants' -import { setCurrentTenant } from 'src/store/features/app' -import { CButton } from '@coreui/react' -import { useNavigate, useSearchParams } from 'react-router-dom' -import { queryString } from 'src/helpers' -import { faBuilding } from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import CippTenantOffcanvas from './CippTenantOffcanvas' -import CippfuzzySearch from './CippFuzzySearch' - -const TenantSelector = ({ action, showAllTenantSelector = true, NavSelector = false }) => { - const [refreshState, setRefreshState] = React.useState(false) - const currentTenant = useSelector((state) => state.app.currentTenant) - const { - data: tenants = [ - { - defaultDomainName: '', - customerId: '', - displayName: 'Did not retrieve tenants. Perform a permissions check', - }, - ], - isLoading, - isFetching, - isSuccess, - error, - } = useListTenantsQuery({ showAllTenantSelector, Refresh: refreshState }) - - const dispatch = useDispatch() - const navigate = useNavigate() - const [searchParams, setSearchParams] = useSearchParams() - - const updateSearchParams = useCallback( - (params) => { - navigate(`${queryString(params)}`, { replace: true }) - }, - [navigate], - ) - - useEffect(() => { - const Paramcount = Array.from(searchParams).length - if (Paramcount <= 1) { - const customerId = searchParams.get('customerId') - const tableFilter = searchParams.get('tableFilter') - var newSearchParams = {} - if (tableFilter) { - newSearchParams.tableFilter = tableFilter - } - if (customerId && isSuccess) { - const currentTenant = tenants.filter((tenant) => tenant.customerId === customerId) - if (currentTenant.length > 0) { - dispatch(setCurrentTenant({ tenant: currentTenant[0] })) - } - } - if (!customerId && Object.keys(currentTenant).length > 0) { - newSearchParams.customerId = currentTenant?.customerId - updateSearchParams(newSearchParams) - } - } - }, [dispatch, isSuccess, searchParams, currentTenant, tenants, updateSearchParams]) - - const activated = (customerId) => { - const selectedTenant = tenants.filter((t) => { - return t.customerId === customerId - }) - dispatch(setCurrentTenant({ tenant: selectedTenant[0] })) - if (typeof action === 'function') { - action(selectedTenant[0]) - } else { - setSearchParams({ customerId: customerId }) - } - } - - let placeholder = 'Select Tenant' - if (isLoading) { - placeholder = 'Loading...' - } else if (error) { - placeholder = 'Error loading tenants' - } - - return ( - <> - {NavSelector && ( - <> - {currentTenant?.customerId !== 'AllTenants' ? ( - - ) : ( - - - - )} -
    - ({ - value: customerId, - name: `${displayName} (${defaultDomainName})`, - }))} - /> - - //set a random number to force a refresh - setRefreshState(Math.random()) - } - variant="ghost" - className="ml-2" - > - - -
    - - )} - {!NavSelector && ( - ({ - value: customerId, - name: [displayName] + [` (${defaultDomainName})`], - }))} - /> - )} - - ) -} - -TenantSelector.propTypes = { - action: PropTypes.func, - NavSelector: PropTypes.bool, - showAllTenantSelector: PropTypes.bool, -} - -export default TenantSelector diff --git a/src/components/utilities/TenantSelectorMultiple.jsx b/src/components/utilities/TenantSelectorMultiple.jsx deleted file mode 100644 index 63f560f7f4a0..000000000000 --- a/src/components/utilities/TenantSelectorMultiple.jsx +++ /dev/null @@ -1,58 +0,0 @@ -import React from 'react' -import { useListTenantsQuery } from 'src/store/api/tenants' -import Select from 'react-select' -import PropTypes from 'prop-types' - -const TenantSelectorMultiple = React.forwardRef( - ( - { values = [], onChange = () => {}, AllTenants = false, valueIsDomain = false, ...rest }, - ref, - ) => { - const { - data: tenants = [], - isLoading, - error, - } = useListTenantsQuery({ showAllTenantSelector: AllTenants }) - - let placeholder = 'Select Tenants' - if (isLoading) { - placeholder = 'Loading...' - } else if (error) { - placeholder = 'Error loading tenants' - } - const mappedValue = values.map((val) => val.value) - return ( - ({ - value: Code, - label: Name, - }))} - isClearable={true} - name="usageLocation" - value={usagelocation} - placeholder="Type to search..." - label="Usage Location" - onChange={(value) => Switchusage(value)} - /> - - ) -} - -export default UsageLocation diff --git a/src/components/utilities/index.js b/src/components/utilities/index.js deleted file mode 100644 index 24fed1e5aecb..000000000000 --- a/src/components/utilities/index.js +++ /dev/null @@ -1,48 +0,0 @@ -import CippActionsOffcanvas from 'src/components/utilities/CippActionsOffcanvas' -import CippCodeOffCanvas from 'src/components/utilities/CippCodeOffcanvas.jsx' -import CippCodeBlock from 'src/components/utilities/CippCodeBlock' -import { CippLazy } from 'src/components/utilities/CippLazy' -import CippOffcanvas from 'src/components/utilities/CippOffcanvas' -import CippProfile from 'src/components/utilities/CippProfile' -import ErrorBoundary from 'src/components/utilities/ErrorBoundary' -import { FastSwitcher, FastSwitcherModal } from 'src/components/utilities/FastSwitcher' -import Loading, { FullScreenLoading } from 'src/components/utilities/Loading' -import { ModalRoot, ModalService } from 'src/components/utilities/ModalRoot' -import { PrivateRoute } from 'src/components/utilities/PrivateRoute' -import SharedModal from 'src/components/utilities/SharedModal' -import StatusIcon from 'src/components/utilities/StatusIcon' -import TenantSelector from 'src/components/utilities/TenantSelector' -import TenantSelectorMultiple from 'src/components/utilities/TenantSelectorMultiple' -import ThemeSwitcher from 'src/components/utilities/ThemeSwitcher' -import PageSizeSwitcher from 'src/components/utilities/PageSizeSwitcher' -import Toasts from 'src/components/utilities/Toasts' -import UsageLocation from 'src/components/utilities/UsageLocation' -import CippTableOffcanvas from './CippTableOffcanvas' -import validateAlphabeticalSort from './validateAlphabeticalSort' - -export { - CippActionsOffcanvas, - CippCodeBlock, - CippCodeOffCanvas, - CippTableOffcanvas, - CippLazy, - CippOffcanvas, - CippProfile, - ErrorBoundary, - FastSwitcher, - FastSwitcherModal, - Loading, - FullScreenLoading, - ModalRoot, - ModalService, - PrivateRoute, - SharedModal, - StatusIcon, - TenantSelector, - TenantSelectorMultiple, - ThemeSwitcher, - PageSizeSwitcher, - Toasts, - UsageLocation, - validateAlphabeticalSort, -} diff --git a/src/components/utilities/validateAlphabeticalSort.jsx b/src/components/utilities/validateAlphabeticalSort.jsx deleted file mode 100644 index ff19bc21023e..000000000000 --- a/src/components/utilities/validateAlphabeticalSort.jsx +++ /dev/null @@ -1,23 +0,0 @@ -export default function validateAlphabeticalSort(data, sortKeys) { - if (!sortKeys || sortKeys.length === 0) return data - try { - if (!data) return data - const newList = data.filter((element) => { - return sortKeys.every((key) => { - return (element) => element[key] != null && element[key] != undefined - }) - }) - return newList.sort((a, b) => { - try { - return sortKeys.reduce((acc, key) => { - if (acc !== 0) return acc - return (a[key] ?? '').toString().localeCompare(b[key] ?? '') - }, 0) - } catch (error) { - return 0 - } - }) - } catch (error) { - return data - } -} diff --git a/src/data/AuditLogSchema.json b/src/data/AuditLogSchema.json deleted file mode 100644 index 35530d0fb583..000000000000 --- a/src/data/AuditLogSchema.json +++ /dev/null @@ -1,974 +0,0 @@ -{ - "Common": { - "Id": "String", - "RecordType": "List:AuditLogRecordType", - "CreationTime": "String", - "Operation": "List:Operation", - "OrganizationId": "String", - "UserType": "List:UserType", - "UserKey": "String", - "Workload": "String", - "ResultStatus": "String", - "ObjectId": "String", - "UserId": "String", - "ClientIP": "String", - "Username": "String", - "CIPPGeoLocation": "List:countryList", - "CIPPBadRepIP": "String", - "CIPPHostedIP": "String", - "CIPPIPDetected": "String" - }, - "Audit.Exchange": { - "Id": "Combination GUID", - "RecordType": "List:AuditLogRecordType", - "CreationTime": "String", - "Operation": "List:Operation", - "OrganizationId": "Guid", - "UserType": "List:UserType", - "UserKey": "String", - "Workload": "String", - "ResultStatus": "String", - "ObjectId": "String", - "UserId": "String", - "ClientIP": "String", - "Scope": "List:AuditLogScope", - "ModifiedObjectResolvedname": "String", - "Parameters": "Common.namevaluePair", - "ExternalAccess": "Boolean", - "OriginatingServer": "String", - "Organizationname": "String", - "LogonType": "LogonType", - "InternalLogonType": "List:LogonType", - "MailboxGuid": "String", - "MailboxOwnerUPN": "String", - "MailboxOwnerSid": "String", - "MailboxOwnerMasterAccountSid": "String", - "LogonUserSid": "String", - "LogonUserDisplayname": "String", - "ClientInfoString": "String", - "ClientIPAddress": "String", - "ClientMachinename": "String", - "ClientProcessname": "String", - "ClientVersion": "String", - "MoveToFolder": "String", - "ForwardTo": "String", - "RedirectTo": "String" - }, - "Audit.AzureActiveDirectory": { - "AzureActiveDirectoryEventType": "List:AzureActiveDirectoryEventType", - "AccountEnabled": "String", - "Actor": "List:IdentityTypevaluePair", - "ActorContextId": "String", - "ActorIpAddress": "String", - "InterSystemsId": "String", - "IntraSystemsId": "String", - "SupportTicketId": "String", - "Target": "List:IdentityTypevaluePair", - "TargetContextId": "String", - "ApplicationId": "String", - "Client": "String", - "Errorvalue": "String", - "LogonError": "String" - }, - "List:Operation": [ - { "value": "UserLoggedIn", "name": "A user logged in" }, - { "value": "mailitemsaccessed", "name": "accessed mailbox items" }, - { "value": "add delegation entry.", "name": "added delegation entry" }, - { "value": "add domain to company.", "name": "added domain to company" }, - { "value": "add group.", "name": "added group" }, - { "value": "add member to group.", "name": "added member to group" }, - { "value": "add-mailboxpermission", "name": "added delegate mailbox permissions" }, - { "value": "add member to role.", "name": "added member to role" }, - { "value": "add partner to company.", "name": "added a partner to the directory" }, - { "value": "add service principal.", "name": "added service principal" }, - { - "value": "add service principal credentials.", - "name": "added credentials to a service principal" - }, - { "value": "add user.", "name": "added user" }, - { "value": "addfolderpermissions", "name": "added permissions to folder" }, - { "value": "applyrecordlabel", "name": "labeled message as a record" }, - { "value": "change user license.", "name": "changed user license" }, - { "value": "change user password.", "name": "changed user password" }, - { "value": "copy", "name": "copied messages to another folder" }, - { "value": "create", "name": "created mailbox item" }, - { "value": "delete group.", "name": "deleted group" }, - { "value": "delete user.", "name": "deleted user" }, - { "value": "harddelete", "name": "purged messages from the mailbox" }, - { "value": "mailboxlogin", "name": "user signed in to mailbox" }, - { "value": "move", "name": "moved messages to another folder" }, - { "value": "movetodeleteditems", "name": "moved messages to deleted items folder" }, - { "value": "new-inboxrule", "name": "created new inbox rule in outlook web app" }, - { "value": "remove delegation entry.", "name": "removed delegation entry" }, - { "value": "remove domain from company.", "name": "removed domain from company" }, - { "value": "remove member from group.", "name": "removed member from group" }, - { "value": "remove member from a role.", "name": "remove member from a role" }, - { "value": "Disable Strong Authentication.", "name": "Disable Strong Authentication." }, - - { - "value": "remove service principal.", - "name": "removed a service principal from the directory" - }, - { - "value": "remove service principal credentials.", - "name": "removed credentials from a service principal" - }, - { "value": "remove-mailboxpermission", "name": "removed delegate mailbox permissions" }, - { "value": "remove member from role.", "name": "removed a user from a directory role" }, - { "value": "remove partner from company.", "name": "removed a partner from the directory" }, - { "value": "removefolderpermissions", "name": "removed permissions from folder" }, - { "value": "reset user password.", "name": "reset user password" }, - { "value": "send", "name": "sent message" }, - { "value": "sendas", "name": "sent message using send as permissions" }, - { "value": "sendonbehalf", "name": "sent message using send on behalf permissions" }, - { "value": "set company contact information.", "name": "set company contact information" }, - { "value": "set company information.", "name": "set company information" }, - { "value": "set delegation entry.", "name": "set delegation entry" }, - { "value": "set dirsyncenabled flag.", "name": "turned on azure ad sync" }, - { "value": "set domain authentication.", "name": "set domain authentication" }, - { - "value": "set federation settings on domain.", - "name": "updated the federation settings for a domain" - }, - { - "value": "set force change user password.", - "name": "set property that forces user to change password" - }, - { "value": "set-inboxrule", "name": "modified inbox rule from outlook web app" }, - { "value": "set license properties.", "name": "set license properties" }, - { "value": "set password policy.", "name": "set password policy" }, - { "value": "softdelete", "name": "deleted messages from deleted items folder" }, - { "value": "update", "name": "updated message" }, - { "value": "update user.", "name": "updated user" }, - { "value": "update group.", "name": "updated group" }, - { "value": "update domain.", "name": "updated domain" }, - { - "value": "updatecalendardelegation", - "name": "added or removed user with delegate access to calendar folder" - }, - { "value": "updatefolderpermissions", "name": "modified folder permission" }, - { "value": "updateinboxrules", "name": "updated inbox rules from outlook client" }, - { "value": "verify domain.", "name": "verified domain" }, - { "value": "verify email verified domain.", "name": "verified email verified domain" }, - { - "value": "Update StsRefreshTokenValidFrom Timestamp.", - "name": "Update StsRefreshTokenValidFrom Timestamp." - } - ], - "List:LogonType": [ - { "value": 0, "Membername": "Owner", "name": "The mailbox owner." }, - { - "value": 1, - "Membername": "Admin", - "name": "A person with administrative privileges for someone's mailbox." - }, - { - "value": 2, - "Membername": "Delegated", - "name": "A person with delegate privileges for someone's mailbox." - }, - { - "value": 3, - "Membername": "Transport", - "name": "A transport service in the Microsoft datacenter." - }, - { - "value": 4, - "Membername": "SystemService", - "name": "A service account in the Microsoft datacenter" - }, - { "value": 5, "Membername": "BestAccess", "name": "Reserved for internal use." }, - { "value": 6, "Membername": "DelegatedAdmin", "name": "A delegated administrator." } - ], - "List:UserType": [ - { "value": 0, "Membername": "Regular", "name": "A regular user." }, - { "value": 1, "Membername": "Reserved", "name": "A reserved user." }, - { "value": 2, "Membername": "Admin", "name": "An administrator." }, - { "value": 3, "Membername": "DcAdmin", "name": "A Microsoft datacenter operator." }, - { "value": 4, "Membername": "System", "name": "A system account." }, - { "value": 5, "Membername": "Application", "name": "An application." }, - { "value": 6, "Membername": "ServicePrincipal", "name": "A service principal." }, - { "value": 7, "Membername": "CustomPolicy", "name": "A custom policy." }, - { "value": 8, "Membername": "SystemPolicy", "name": "A system policy." } - ], - "List:AuditLogRecordType": [ - { - "value": 1, - "Membername": "ExchangeAdmin", - "name": "Events from the Exchange admin audit log." - }, - { - "value": 2, - "Membername": "ExchangeItem", - "name": "Events from an Exchange mailbox audit log for actions that are performed on a single item, such as creating or receiving an email message." - }, - { - "value": 3, - "Membername": "ExchangeItemGroup", - "name": "Events from an Exchange mailbox audit log for actions that can be performed on multiple items, such as moving or deleted one or more email messages." - }, - { "value": 4, "Membername": "SharePoint", "name": "SharePoint events." }, - { - "value": 6, - "Membername": "SharePointFileOperation", - "name": "SharePoint file operation events." - }, - { "value": 7, "Membername": "OneDrive", "name": "OneDrive for Business events." }, - { - "value": 8, - "Membername": "AzureActiveDirectory", - "name": "Microsoft Entra ID events." - }, - { - "value": 9, - "Membername": "AzureActiveDirectoryAccountLogon", - "name": "Microsoft Entra ID OrgId logon events (deprecated)." - }, - { - "value": 10, - "Membername": "DataCenterSecurityCmdlet", - "name": "Data Center security cmdlet events." - }, - { - "value": 11, - "Membername": "ComplianceDLPSharePoint", - "name": "Data loss protection (DLP) events in SharePoint and OneDrive for Business." - }, - { - "value": 13, - "Membername": "ComplianceDLPExchange", - "name": "Data loss protection (DLP) events in Exchange, when configured via Unified DLP Policy. DLP events based on Exchange Transport Rules are not supported." - }, - { - "value": 14, - "Membername": "SharePointSharingOperation", - "name": "SharePoint sharing events." - }, - { - "value": 15, - "Membername": "AzureActiveDirectoryStsLogon", - "name": "Secure Token Service (STS) logon events in Microsoft Entra ID." - }, - { - "value": 16, - "Membername": "SkypeForBusinessPSTNUsage", - "name": "Public Switched Telephone Network (PSTN) events from Skype for Business." - }, - { - "value": 17, - "Membername": "SkypeForBusinessUsersBlocked", - "name": "Blocked user events from Skype for Business." - }, - { - "value": 18, - "Membername": "SecurityComplianceCenterEOPCmdlet", - "name": "Admin actions from the Security & Compliance Center." - }, - { - "value": 19, - "Membername": "ExchangeAggregatedOperation", - "name": "Aggregated Exchange mailbox auditing events." - }, - { "value": 20, "Membername": "PowerBIAudit", "name": "Power BI events." }, - { "value": 21, "Membername": "CRM", "name": "Dynamics 365 events." }, - { "value": 22, "Membername": "Yammer", "name": "Yammer events." }, - { - "value": 23, - "Membername": "SkypeForBusinessCmdlets", - "name": "Skype for Business events." - }, - { - "value": 24, - "Membername": "Discovery", - "name": "Events for eDiscovery activities performed by running content searches and managing eDiscovery cases in the Security & Compliance Center." - }, - { "value": 25, "Membername": "MicrosoftTeams", "name": "Events from Microsoft Teams." }, - { - "value": 28, - "Membername": "ThreatIntelligence", - "name": "Phishing and malware events from Exchange Online Protection and Microsoft Defender for Office 365." - }, - { - "value": 29, - "Membername": "MailSubmission", - "name": "Submission events from Exchange Online Protection and Microsoft Defender for Office 365." - }, - { - "value": 30, - "Membername": "MicrosoftFlow", - "name": "Microsoft Power Automate (formerly called Microsoft Flow) events." - }, - { "value": 31, "Membername": "AeD", "name": "Advanced eDiscovery events." }, - { "value": 32, "Membername": "MicrosoftStream", "name": "Microsoft Stream events." }, - { - "value": 33, - "Membername": "ComplianceDLPSharePointClassification", - "name": "Events related to DLP classification in SharePoint." - }, - { - "value": 34, - "Membername": "ThreatFinder", - "name": "Campaign-related events from Microsoft Defender for Office 365." - }, - { "value": 35, "Membername": "Project", "name": "Microsoft Project events." }, - { - "value": 36, - "Membername": "SharePointListOperation", - "name": "SharePoint List events." - }, - { - "value": 37, - "Membername": "SharePointCommentOperation", - "name": "SharePoint comment events." - }, - { - "value": 38, - "Membername": "DataGovernance", - "name": "Events related to retention policies and retention labels in the Security & Compliance Center" - }, - { "value": 39, "Membername": "Kaizala", "name": "Kaizala events." }, - { - "value": 40, - "Membername": "SecurityComplianceAlerts", - "name": "Security and compliance alert signals." - }, - { - "value": 41, - "Membername": "ThreatIntelligenceUrl", - "name": "Safe links time-of-block and block override events from Microsoft Defender for Office 365." - }, - { - "value": 42, - "Membername": "SecurityComplianceInsights", - "name": "Events related to insights and reports in the Office 365 security and compliance center." - }, - { - "value": 43, - "Membername": "MIPLabel", - "name": "Events related to the detection in the Transport pipeline of email messages that have been tagged (manually or automatically) with sensitivity labels." - }, - { - "value": 44, - "Membername": "WorkplaceAnalytics", - "name": "Workplace Analytics events." - }, - { "value": 45, "Membername": "PowerAppsApp", "name": "Power Apps events." }, - { - "value": 46, - "Membername": "PowerAppsPlan", - "name": "Subscription plan events for Power Apps." - }, - { - "value": 47, - "Membername": "ThreatIntelligenceAtpContent", - "name": "Phishing and malware events for files in SharePoint, OneDrive for Business, and Microsoft Teams from Microsoft Defender for Office 365." - }, - { - "value": 48, - "Membername": "LabelContentExplorer", - "name": "Events related to data classification content explorer." - }, - { - "value": 49, - "Membername": "TeamsHealthcare", - "name": "Events related to the Patients application in Microsoft Teams for Healthcare." - }, - { - "value": 50, - "Membername": "ExchangeItemAggregated", - "name": "Events related to the MailItemsAccessed mailbox auditing action." - }, - { - "value": 51, - "Membername": "HygieneEvent", - "name": "Events related to outbound spam protection." - }, - { - "value": 52, - "Membername": "DataInsightsRestApiAudit", - "name": "Data Insights REST API events." - }, - { - "value": 53, - "Membername": "InformationBarrierPolicyApplication", - "name": "Events related to the application of information barrier policies." - }, - { - "value": 54, - "Membername": "SharePointListItemOperation", - "name": "SharePoint list item events." - }, - { - "value": 55, - "Membername": "SharePointContentTypeOperation", - "name": "SharePoint list content type events." - }, - { - "value": 56, - "Membername": "SharePointFieldOperation", - "name": "SharePoint list field events." - }, - { "value": 57, "Membername": "MicrosoftTeamsAdmin", "name": "Teams admin events." }, - { - "value": 58, - "Membername": "HRSignal", - "name": "Events related to HR data signals that support the Insider risk management solution." - }, - { "value": 59, "Membername": "MicrosoftTeamsDevice", "name": "Teams device events." }, - { - "value": 60, - "Membername": "MicrosoftTeamsAnalytics", - "name": "Teams analytics events." - }, - { - "value": 61, - "Membername": "InformationWorkerProtection", - "name": "Events related to compromised user alerts." - }, - { - "value": 62, - "Membername": "Campaign", - "name": "Email campaign events from Microsoft Defender for Office 365." - }, - { "value": 63, "Membername": "DLPEndpoint", "name": "Endpoint DLP events." }, - { - "value": 64, - "Membername": "AirInvestigation", - "name": "Automated incident response (AIR) events." - }, - { "value": 65, "Membername": "Quarantine", "name": "Quarantine events." }, - { "value": 66, "Membername": "MicrosoftForms", "name": "Microsoft Forms events." }, - { "value": 67, "Membername": "ApplicationAudit", "name": "Application audit events." }, - { - "value": 68, - "Membername": "ComplianceSupervisionExchange", - "name": "Events tracked by the Communication compliance offensive language model." - }, - { - "value": 69, - "Membername": "CustomerKeyServiceEncryption", - "name": "Events related to the customer key encryption service." - }, - { - "value": 70, - "Membername": "OfficeNative", - "name": "Events related to sensitivity labels applied to Office documents." - }, - { - "value": 71, - "Membername": "MipAutoLabelSharePointItem", - "name": "Auto-labeling events in SharePoint." - }, - { - "value": 72, - "Membername": "MipAutoLabelSharePointPolicyLocation", - "name": "Auto-labeling policy events in SharePoint." - }, - { "value": 73, "Membername": "MicrosoftTeamsShifts", "name": "Teams Shifts events." }, - { - "value": 75, - "Membername": "MipAutoLabelExchangeItem", - "name": "Auto-labeling events in Exchange." - }, - { "value": 76, "Membername": "CortanaBriefing", "name": "Briefing email events." }, - { - "value": 78, - "Membername": "WDATPAlerts", - "name": "Events related to alerts generated by Windows Defender for Endpoint." - }, - { - "value": 82, - "Membername": "SensitivityLabelPolicyMatch", - "name": "Events generated when the file labeled with a sensitivity label is opened or renamed." - }, - { - "value": 83, - "Membername": "SensitivityLabelAction", - "name": "Event generated when sensitivity labels are applied, upStringd, or removed from a file." - }, - { - "value": 84, - "Membername": "SensitivityLabeledFileAction", - "name": "Events generated when a file labeled with a sensitivity label is opened or renamed." - }, - { - "value": 85, - "Membername": "AttackSim", - "name": "Events related to user activities in Attack Simulation & Training in Microsoft Defender for Office 365." - }, - { - "value": 86, - "Membername": "AirManualInvestigation", - "name": "Events related to manual investigations in Automated investigation and response (AIR)." - }, - { - "value": 87, - "Membername": "SecurityComplianceRBAC", - "name": "Security and compliance RBAC events." - }, - { - "value": 88, - "Membername": "UserTraining", - "name": "Events related to user training in Attack Simulation & Training in Microsoft Defender for Office 365." - }, - { - "value": 89, - "Membername": "AirAdminActionInvestigation", - "name": "Events related to admin actions in Automated investigation and response (AIR)." - }, - { - "value": 90, - "Membername": "MSTIC", - "name": "Threat intelligence events in Microsoft Defender for Office 365." - }, - { - "value": 91, - "Membername": "PhysicalBadgingSignal", - "name": "Events related to physical badging signals that support the Insider risk management solution." - }, - { "value": 93, "Membername": "AipDiscover", "name": "AIP scanner events" }, - { - "value": 94, - "Membername": "AipSensitivityLabelAction", - "name": "AIP sensitivity label events" - }, - { "value": 95, "Membername": "AipProtectionAction", "name": "AIP protection events" }, - { "value": 96, "Membername": "AipFileDeleted", "name": "AIP file deletion events" }, - { "value": 97, "Membername": "AipHeartBeat", "name": "AIP heartbeat events" }, - { - "value": 98, - "Membername": "MCASAlerts", - "name": "Events corresponding to alerts triggered by Microsoft Cloud App Security." - }, - { - "value": 99, - "Membername": "OnPremisesFileShareScannerDlp", - "name": "Events related to scanning for sensitive data on file shares." - }, - { - "value": 100, - "Membername": "OnPremisesSharePointScannerDlp", - "name": "Events related to scanning for sensitive data in SharePoint." - }, - { - "value": 101, - "Membername": "ExchangeSearch", - "name": "Events related to using Outlook on the web (OWA) to search for mailbox items." - }, - { - "value": 102, - "Membername": "SharePointSearch", - "name": "Events related to searching an organization's SharePoint home site." - }, - { "value": 103, "Membername": "PrivacyInsights", "name": "Privacy insight events." }, - { "value": 105, "Membername": "MyAnalyticsSettings", "name": "MyAnalytics events." }, - { - "value": 106, - "Membername": "SecurityComplianceUserChange", - "name": "Events related to modifying or deleting a user." - }, - { - "value": 107, - "Membername": "ComplianceDLPExchangeClassification", - "name": "Exchange DLP classification events." - }, - { - "value": 109, - "Membername": "MipExactDataMatch", - "name": "Exact Data Match (EDM) classification events." - }, - { - "value": 113, - "Membername": "MS365DCustomDetection", - "name": "Events related to custom detection actions in Microsoft 365 Defender." - }, - { - "value": 147, - "Membername": "CoreReportingSettings", - "name": "Reports settings events." - }, - { - "value": 148, - "Membername": "ComplianceConnector", - "name": "Events related to importing non-Microsoft data using data connectors in the Microsoft Purview compliance portal." - }, - { - "value": 154, - "Membername": "OMEPortal", - "name": "Encrypted message portal event logs generated by external recipients." - }, - { - "value": 174, - "Membername": "DataShareOperation", - "name": "Events related to sharing of data ingested via SystemSync." - }, - { - "value": 181, - "Membername": "EduDataLakeDownloadOperation", - "name": "Events related to the export of SystemSync ingested data from the lake." - }, - { - "value": 183, - "Membername": "MicrosoftGraphDataConnectOperation", - "name": "Events related to extractions done by Microsoft Graph Data Connect." - }, - { - "value": 186, - "Membername": "PowerPagesSite", - "name": "Activities related to Power Pages site." - }, - { "value": 188, "Membername": "PlannerPlan", "name": "Microsoft Planner plan events." }, - { - "value": 189, - "Membername": "PlannerCopyPlan", - "name": "Microsoft Planner copy plan events." - }, - { "value": 190, "Membername": "PlannerTask", "name": "Microsoft Planner task events." }, - { - "value": 191, - "Membername": "PlannerRoster", - "name": "Microsoft Planner roster and roster membership events." - }, - { - "value": 192, - "Membername": "PlannerPlanList", - "name": "Microsoft Planner plan list events." - }, - { - "value": 193, - "Membername": "PlannerTaskList", - "name": "Microsoft Planner task list events." - }, - { - "value": 194, - "Membername": "PlannerTenantSettings", - "name": "Microsoft Planner tenant settings events." - }, - { - "value": 195, - "Membername": "ProjectForThewebProject", - "name": "Microsoft Project for the web project events." - }, - { - "value": 196, - "Membername": "ProjectForThewebTask", - "name": "Microsoft Project for the web task events." - }, - { - "value": 197, - "Membername": "ProjectForThewebRoadmap", - "name": "Microsoft Project for the web roadmap events." - }, - { - "value": 198, - "Membername": "ProjectForThewebRoadmapItem", - "name": "Microsoft Project for the web roadmap item events." - }, - { - "value": 199, - "Membername": "ProjectForThewebProjectSettings", - "name": "Microsoft Project for the web project tenant settings events." - }, - { - "value": 200, - "Membername": "ProjectForThewebRoadmapSettings", - "name": "Microsoft Project for the web roadmap tenant settings events." - }, - { "value": 216, "Membername": "Viva Goals", "name": "Viva Goals events." }, - { - "value": 217, - "Membername": "MicrosoftGraphDataConnectConsent", - "name": "Events for consent actions performed by tenant admins for Microsoft Graph Data Connect applications." - }, - { - "value": 218, - "Membername": "AttackSimAdmin", - "name": "Events related to admin activities in Attack Simulation & Training in Microsoft Defender for Office 365." - }, - { "value": 230, "Membername": "TeamsUpStrings", "name": "Teams UpStrings App Events." }, - { - "value": 231, - "Membername": "PlannerRosterSensitivityLabel", - "name": "Microsoft Planner roster sensitivity label events." - }, - { - "value": 237, - "Membername": "DefenderExpertsforXDRAdmin", - "name": "Microsoft Defender Experts Administrator action events." - }, - { - "value": 251, - "Membername": "VfamCreatePolicy", - "name": "Viva Access Management policy create events." - }, - { - "value": 252, - "Membername": "VfamUpStringPolicy", - "name": "Viva Access Management policy upString events." - }, - { - "value": 253, - "Membername": "VfamDeletePolicy", - "name": "Viva Access Management policy delete events." - }, - { - "value": 261, - "Membername": "CopilotInteraction", - "name": "Copilot interaction events." - } - ], - "List:countryList": [ - { "value": "AF", "name": "Afghanistan" }, - { "value": "AX", "name": "\u00c5land Islands" }, - { "value": "AL", "name": "Albania" }, - { "value": "DZ", "name": "Algeria" }, - { "value": "AS", "name": "American Samoa" }, - { "value": "AD", "name": "Andorra" }, - { "value": "AO", "name": "Angola" }, - { "value": "AI", "name": "Anguilla" }, - { "value": "AQ", "name": "Antarctica" }, - { "value": "AG", "name": "Antigua and Barbuda" }, - { "value": "AR", "name": "Argentina" }, - { "value": "AM", "name": "Armenia" }, - { "value": "AW", "name": "Aruba" }, - { "value": "AC", "name": "Ascension Island" }, - { "value": "AU", "name": "Australia" }, - { "value": "AT", "name": "Austria" }, - { "value": "AZ", "name": "Azerbaijan" }, - { "value": "BS", "name": "Bahamas" }, - { "value": "BH", "name": "Bahrain" }, - { "value": "BD", "name": "Bangladesh" }, - { "value": "BB", "name": "Barbados" }, - { "value": "BY", "name": "Belarus" }, - { "value": "BE", "name": "Belgium" }, - { "value": "BZ", "name": "Belize" }, - { "value": "BJ", "name": "Benin" }, - { "value": "BM", "name": "Bermuda" }, - { "value": "BT", "name": "Bhutan" }, - { "value": "BO", "name": "Bolivia, Plurinational State of" }, - { "value": "BQ", "name": "Bonaire, Sint Eustatius and Saba" }, - { "value": "BA", "name": "Bosnia and Herzegovina" }, - { "value": "BW", "name": "Botswana" }, - { "value": "BV", "name": "Bouvet Island" }, - { "value": "BR", "name": "Brazil" }, - { "value": "IO", "name": "British Indian Ocean Territory" }, - { "value": "BN", "name": "Brunei Darussalam" }, - { "value": "BG", "name": "Bulgaria" }, - { "value": "BF", "name": "Burkina Faso" }, - { "value": "BI", "name": "Burundi" }, - { "value": "KH", "name": "Cambodia" }, - { "value": "CM", "name": "Cameroon" }, - { "value": "CA", "name": "Canada" }, - { "value": "CV", "name": "Cape Verde" }, - { "value": "KY", "name": "Cayman Islands" }, - { "value": "CF", "name": "Central African Republic" }, - { "value": "TD", "name": "Chad" }, - { "value": "CL", "name": "Chile" }, - { "value": "CN", "name": "China" }, - { "value": "CX", "name": "Christmas Island" }, - { "value": "CC", "name": "Cocos (Keeling) Islands" }, - { "value": "CO", "name": "Colombia" }, - { "value": "KM", "name": "Comoros" }, - { "value": "CG", "name": "Congo" }, - { "value": "CD", "name": "Congo, the Democratic Republic of the" }, - { "value": "CK", "name": "Cook Islands" }, - { "value": "CR", "name": "Costa Rica" }, - { "value": "CI", "name": "C\u00f4te d'Ivoire" }, - { "value": "HR", "name": "Croatia" }, - { "value": "CU", "name": "Cuba" }, - { "value": "CW", "name": "Cura\u00e7ao" }, - { "value": "CY", "name": "Cyprus" }, - { "value": "CZ", "name": "Czech Republic" }, - { "value": "DK", "name": "Denmark" }, - { "value": "DG", "name": "Diego Garcia" }, - { "value": "DJ", "name": "Djibouti" }, - { "value": "DM", "name": "Dominica" }, - { "value": "DO", "name": "Dominican Republic" }, - { "value": "EC", "name": "Ecuador" }, - { "value": "EG", "name": "Egypt" }, - { "value": "SV", "name": "El Salvador" }, - { "value": "GQ", "name": "Equatorial Guinea" }, - { "value": "ER", "name": "Eritrea" }, - { "value": "EE", "name": "Estonia" }, - { "value": "ET", "name": "Ethiopia" }, - { "value": "FK", "name": "Falkland Islands (Malvinas)" }, - { "value": "FO", "name": "Faroe Islands" }, - { "value": "FJ", "name": "Fiji" }, - { "value": "FI", "name": "Finland" }, - { "value": "FR", "name": "France" }, - { "value": "GF", "name": "French Guiana" }, - { "value": "PF", "name": "French Polynesia" }, - { "value": "TF", "name": "French Southern Territories" }, - { "value": "GA", "name": "Gabon" }, - { "value": "GM", "name": "Gambia" }, - { "value": "GE", "name": "Georgia" }, - { "value": "DE", "name": "Germany" }, - { "value": "GH", "name": "Ghana" }, - { "value": "GI", "name": "Gibraltar" }, - { "value": "GR", "name": "Greece" }, - { "value": "GL", "name": "Greenland" }, - { "value": "GD", "name": "Grenada" }, - { "value": "GP", "name": "Guadeloupe" }, - { "value": "GU", "name": "Guam" }, - { "value": "GT", "name": "Guatemala" }, - { "value": "GG", "name": "Guernsey" }, - { "value": "GN", "name": "Guinea" }, - { "value": "GW", "name": "Guinea-Bissau" }, - { "value": "GY", "name": "Guyana" }, - { "value": "HT", "name": "Haiti" }, - { "value": "HM", "name": "Heard Island and McDonald Islands" }, - { "value": "VA", "name": "Holy See (Vatican City State)" }, - { "value": "HN", "name": "Honduras" }, - { "value": "HK", "name": "Hong Kong" }, - { "value": "HU", "name": "Hungary" }, - { "value": "IS", "name": "Iceland" }, - { "value": "IN", "name": "India" }, - { "value": "ID", "name": "Indonesia" }, - { "value": "IR", "name": "Iran, Islamic Republic of" }, - { "value": "IQ", "name": "Iraq" }, - { "value": "IE", "name": "Ireland" }, - { "value": "IM", "name": "Isle of Man" }, - { "value": "IL", "name": "Israel" }, - { "value": "IT", "name": "Italy" }, - { "value": "JM", "name": "Jamaica" }, - { "value": "JP", "name": "Japan" }, - { "value": "JE", "name": "Jersey" }, - { "value": "JO", "name": "Jordan" }, - { "value": "KZ", "name": "Kazakhstan" }, - { "value": "KE", "name": "Kenya" }, - { "value": "KI", "name": "Kiribati" }, - { "value": "KP", "name": "Korea, Democratic People's Republic of" }, - { "value": "KR", "name": "Korea, Republic of" }, - { "value": "XK", "name": "Kosovo" }, - { "value": "KW", "name": "Kuwait" }, - { "value": "KG", "name": "Kyrgyzstan" }, - { "value": "LA", "name": "Lao People's Democratic Republic" }, - { "value": "LV", "name": "Latvia" }, - { "value": "LB", "name": "Lebanon" }, - { "value": "LS", "name": "Lesotho" }, - { "value": "LR", "name": "Liberia" }, - { "value": "LY", "name": "Libya" }, - { "value": "LI", "name": "Liechtenstein" }, - { "value": "LT", "name": "Lithuania" }, - { "value": "LU", "name": "Luxembourg" }, - { "value": "MO", "name": "Macao" }, - { "value": "MK", "name": "Macedonia, the Former Yugoslav Republic of" }, - { "value": "MG", "name": "Madagascar" }, - { "value": "MW", "name": "Malawi" }, - { "value": "MY", "name": "Malaysia" }, - { "value": "MV", "name": "Maldives" }, - { "value": "ML", "name": "Mali" }, - { "value": "MT", "name": "Malta" }, - { "value": "MH", "name": "Marshall Islands" }, - { "value": "MQ", "name": "Martinique" }, - { "value": "MR", "name": "Mauritania" }, - { "value": "MU", "name": "Mauritius" }, - { "value": "YT", "name": "Mayotte" }, - { "value": "MX", "name": "Mexico" }, - { "value": "FM", "name": "Micronesia, Federated States of" }, - { "value": "MD", "name": "Moldova, Republic of" }, - { "value": "MC", "name": "Monaco" }, - { "value": "MN", "name": "Mongolia" }, - { "value": "ME", "name": "Montenegro" }, - { "value": "MS", "name": "Montserrat" }, - { "value": "MA", "name": "Morocco" }, - { "value": "MZ", "name": "Mozambique" }, - { "value": "MM", "name": "Myanmar" }, - { "value": "NA", "name": "Namibia" }, - { "value": "NR", "name": "Nauru" }, - { "value": "NP", "name": "Nepal" }, - { "value": "NL", "name": "Netherlands" }, - { "value": "NC", "name": "New Caledonia" }, - { "value": "NZ", "name": "New Zealand" }, - { "value": "NI", "name": "Nicaragua" }, - { "value": "NE", "name": "Niger" }, - { "value": "NG", "name": "Nigeria" }, - { "value": "NU", "name": "Niue" }, - { "value": "NF", "name": "Norfolk Island" }, - { "value": "MP", "name": "Northern Mariana Islands" }, - { "value": "NO", "name": "Norway" }, - { "value": "OM", "name": "Oman" }, - { "value": "PK", "name": "Pakistan" }, - { "value": "PW", "name": "Palau" }, - { "value": "PS", "name": "Palestine, State of" }, - { "value": "PA", "name": "Panama" }, - { "value": "PG", "name": "Papua New Guinea" }, - { "value": "PY", "name": "Paraguay" }, - { "value": "PE", "name": "Peru" }, - { "value": "PH", "name": "Philippines" }, - { "value": "PN", "name": "Pitcairn" }, - { "value": "PL", "name": "Poland" }, - { "value": "PT", "name": "Portugal" }, - { "value": "PR", "name": "Puerto Rico" }, - { "value": "QA", "name": "Qatar" }, - { "value": "RE", "name": "R\u00e9union" }, - { "value": "RO", "name": "Romania" }, - { "value": "RU", "name": "Russian Federation" }, - { "value": "RW", "name": "Rwanda" }, - { "value": "BL", "name": "Saint Barth\u00e9lemy" }, - { "value": "SH", "name": "Saint Helena, Ascension and Tristan da Cunha" }, - { "value": "KN", "name": "Saint Kitts and Nevis" }, - { "value": "LC", "name": "Saint Lucia" }, - { "value": "MF", "name": "Saint Martin (French part)" }, - { "value": "PM", "name": "Saint Pierre and Miquelon" }, - { "value": "VC", "name": "Saint Vincent and the Grenadines" }, - { "value": "WS", "name": "Samoa" }, - { "value": "SM", "name": "San Marino" }, - { "value": "ST", "name": "Sao Tome and Principe" }, - { "value": "SA", "name": "Saudi Arabia" }, - { "value": "SN", "name": "Senegal" }, - { "value": "RS", "name": "Serbia" }, - { "value": "SC", "name": "Seychelles" }, - { "value": "SL", "name": "Sierra Leone" }, - { "value": "SG", "name": "Singapore" }, - { "value": "SX", "name": "Sint Maarten (Dutch part)" }, - { "value": "SK", "name": "Slovakia" }, - { "value": "SI", "name": "Slovenia" }, - { "value": "SB", "name": "Solomon Islands" }, - { "value": "SO", "name": "Somalia" }, - { "value": "ZA", "name": "South Africa" }, - { "value": "GS", "name": "South Georgia and the South Sandwich Islands" }, - { "value": "SS", "name": "South Sudan" }, - { "value": "ES", "name": "Spain" }, - { "value": "LK", "name": "Sri Lanka" }, - { "value": "SD", "name": "Sudan" }, - { "value": "SR", "name": "Suriname" }, - { "value": "SJ", "name": "Svalbard and Jan Mayen" }, - { "value": "SZ", "name": "Swaziland" }, - { "value": "SE", "name": "Sweden" }, - { "value": "CH", "name": "Switzerland" }, - { "value": "SY", "name": "Syrian Arab Republic" }, - { "value": "TW", "name": "Taiwan, Province of China" }, - { "value": "TJ", "name": "Tajikistan" }, - { "value": "TZ", "name": "Tanzania, United Republic of" }, - { "value": "TH", "name": "Thailand" }, - { "value": "TL", "name": "Timor-Leste" }, - { "value": "TG", "name": "Togo" }, - { "value": "TK", "name": "Tokelau" }, - { "value": "TO", "name": "Tonga" }, - { "value": "TT", "name": "Trinidad and Tobago" }, - { "value": "TN", "name": "Tunisia" }, - { "value": "TR", "name": "Turkey" }, - { "value": "TM", "name": "Turkmenistan" }, - { "value": "TC", "name": "Turks and Caicos Islands" }, - { "value": "TV", "name": "Tuvalu" }, - { "value": "UG", "name": "Uganda" }, - { "value": "UA", "name": "Ukraine" }, - { "value": "AE", "name": "United Arab Emirates" }, - { "value": "GB", "name": "United Kingdom" }, - { "value": "US", "name": "United States" }, - { "value": "UM", "name": "United States Minor Outlying Islands" }, - { "value": "UY", "name": "Uruguay" }, - { "value": "UZ", "name": "Uzbekistan" }, - { "value": "VU", "name": "Vanuatu" }, - { "value": "VE", "name": "Venezuela, Bolivarian Republic of" }, - { "value": "VN", "name": "Viet Nam" }, - { "value": "VG", "name": "Virgin Islands, British" }, - { "value": "VI", "name": "Virgin Islands, U.S." }, - { "value": "WF", "name": "Wallis and Futuna" }, - { "value": "EH", "name": "Western Sahara" }, - { "value": "YE", "name": "Yemen" }, - { "value": "ZM", "name": "Zambia" }, - { "value": "ZW", "name": "Zimbabwe" } - ] -} diff --git a/src/data/AuditLogTemplates.json b/src/data/AuditLogTemplates.json deleted file mode 100644 index 051f0dc16283..000000000000 --- a/src/data/AuditLogTemplates.json +++ /dev/null @@ -1,424 +0,0 @@ -[ - { - "value": "New-InboxRule", - "name": "A new Inbox rule is created", - "template": { - "preset": { "value": "New-InboxRule", "label": "A new Inbox rule is created" }, - "logbook": { "value": "Audit.Exchange", "label": "Exchange" }, - "conditions": [ - { - "Property": { "value": "List:Operation", "label": "Operation" }, - "Operator": { "value": "EQ", "label": "Equals to" }, - "Input": { - "value": "New-InboxRule", - "label": "created new inbox rule in outlook web app" - } - } - ] - } - }, - { - "value": "New-InboxRuleRSS", - "name": "A new Inbox rule is created that forwards e-mails to the RSS feeds folder", - "template": { - "preset": { - "value": "New-InboxRuleRSS", - "label": "A new Inbox rule is created that forwards e-mails to the RSS feeds folder" - }, - "logbook": { "value": "Audit.Exchange", "label": "Exchange" }, - "conditions": [ - { - "Property": { "value": "List:Operation", "label": "Operation" }, - "Operator": { "value": "EQ", "label": "Equals to" }, - "Input": { - "value": "New-InboxRule", - "label": "created new inbox rule in outlook web app" - } - }, - { - "Property": { "value": "String", "label": "MoveToFolder" }, - "Operator": { "value": "like", "label": "Like" }, - "Input": { "value": "*RSS*" } - } - ] - } - }, - { - "value": "New-InboxRuleForward", - "name": "A new Inbox rule is created that forwards e-mails to a different email address", - "template": { - "preset": { - "value": "New-InboxRuleForward", - "label": "A new Inbox rule is created that forwards e-mails to a different email address" - }, - "logbook": { "value": "Audit.Exchange", "label": "Exchange" }, - "conditions": [ - { - "Property": { "value": "List:Operation", "label": "Operation" }, - "Operator": { "value": "EQ", "label": "Equals to" }, - "Input": { - "value": "New-InboxRule", - "label": "created new inbox rule in outlook web app" - } - }, - { - "Property": { "value": "String", "label": "ForwardTo" }, - "Operator": { "value": "like", "label": "Like" }, - "Input": { "value": "*@*" } - } - ] - } - }, - { - "value": "New-InboxRuleRedirect", - "name": "A new Inbox rule is created that redirects e-mails to a different email address", - "template": { - "preset": { - "value": "New-InboxRuleRedirect", - "label": "A new Inbox rule is created that redirects e-mails to a different email address" - }, - "logbook": { "value": "Audit.Exchange", "label": "Exchange" }, - "conditions": [ - { - "Property": { "value": "List:Operation", "label": "Operation" }, - "Operator": { "value": "EQ", "label": "Equals to" }, - "Input": { - "value": "New-InboxRule", - "label": "created new inbox rule in outlook web app" - } - }, - { - "Property": { "value": "String", "label": "RedirectTo" }, - "Operator": { "value": "like", "label": "Like" }, - "Input": { "value": "*@*" } - } - ] - } - }, - { - "value": "Set-InboxRule", - "name": "A existing Inbox rule is edited", - "template": { - "preset": { "value": "Set-InboxRule", "label": "A existing Inbox rule is edited" }, - "logbook": { "value": "Audit.Exchange", "label": "Exchange" }, - "conditions": [ - { - "Property": { "value": "List:Operation", "label": "Operation" }, - "Operator": { "value": "EQ", "label": "Equals to" }, - "Input": { - "value": "Set-InboxRule", - "label": "Updated inbox rule in outlook web app" - } - } - ] - } - }, - { - "value": "Set-InboxRuleRSS", - "name": "A existing Inbox rule is edited that forwards e-mails to the RSS feeds folder", - "template": { - "preset": { - "value": "Set-InboxRuleRSS", - "label": "A existing Inbox rule is edited that forwards e-mails to the RSS feeds folder" - }, - "logbook": { "value": "Audit.Exchange", "label": "Exchange" }, - "conditions": [ - { - "Property": { "value": "List:Operation", "label": "Operation" }, - "Operator": { "value": "EQ", "label": "Equals to" }, - "Input": { - "value": "Set-InboxRule", - "label": "Updated inbox rule in outlook web app" - } - }, - { - "Property": { "value": "String", "label": "MoveToFolder" }, - "Operator": { "value": "like", "label": "Like" }, - "Input": { "value": "*RSS*" } - } - ] - } - }, - { - "value": "Set-InboxRuleForward", - "name": "A existing Inbox rule is edited that forwards e-mails to a different email address", - "template": { - "preset": { - "value": "Set-InboxRuleForward", - "label": "A existing Inbox rule is edited that forwards e-mails to a different email address" - }, - "logbook": { "value": "Audit.Exchange", "label": "Exchange" }, - "conditions": [ - { - "Property": { "value": "List:Operation", "label": "Operation" }, - "Operator": { "value": "EQ", "label": "Equals to" }, - "Input": { - "value": "Set-InboxRule", - "label": "Updated inbox rule in outlook web app" - } - }, - { - "Property": { "value": "String", "label": "ForwardTo" }, - "Operator": { "value": "like", "label": "Like" }, - "Input": { "value": "*@*" } - } - ] - } - }, - { - "value": "Set-InboxRuleRedirect", - "name": "A existing Inbox rule is edited that redirects e-mails to a different email address", - "template": { - "preset": { - "value": "Set-InboxRuleRedirect", - "label": "A existing Inbox rule is edited that redirects e-mails to a different email address" - }, - "logbook": { "value": "Audit.Exchange", "label": "Exchange" }, - "conditions": [ - { - "Property": { "value": "List:Operation", "label": "Operation" }, - "Operator": { "value": "EQ", "label": "Equals to" }, - "Input": { - "value": "Set-InboxRule", - "label": "Updated inbox rule in outlook web app" - } - }, - { - "Property": { "value": "String", "label": "RedirectTo" }, - "Operator": { "value": "like", "label": "Like" }, - "Input": { "value": "*@*" } - } - ] - } - }, - { - "value": "Add member to role.", - "name": "A user has been added to an admin role", - "template": { - "preset": { - "value": "Add member to role.", - "label": "A user has been added to an admin role" - }, - "logbook": { "value": "Audit.AzureActiveDirectory", "label": "Azure AD" }, - "conditions": [ - { - "Property": { "value": "List:Operation", "label": "Operation" }, - "Operator": { "value": "EQ", "label": "Equals to" }, - "Input": { - "value": "Add member to role.", - "label": "Add member to role." - } - } - ] - } - }, - { - "value": "Update StsRefreshTokenValidFrom Timestamp.", - "name": "A user sessions have been revoked", - "template": { - "preset": { - "value": "Update StsRefreshTokenValidFrom Timestamp.", - "label": "A user sessions have been revoked" - }, - "logbook": { "value": "Audit.AzureActiveDirectory", "label": "Azure AD" }, - "conditions": [ - { - "Property": { "value": "List:Operation", "label": "Operation" }, - "Operator": { "value": "EQ", "label": "Equals to" }, - "Input": { - "value": "Update StsRefreshTokenValidFrom Timestamp.", - "label": "Update StsRefreshTokenValidFrom Timestamp." - } - } - ] - } - }, - { - "value": "Disable Strong Authentication.", - "name": "A users MFA has been disabled", - "template": { - "preset": { - "value": "Disable Strong Authentication.", - "label": "A users MFA has been disabled" - }, - "logbook": { "value": "Audit.AzureActiveDirectory", "label": "Azure AD" }, - "conditions": [ - { - "Property": { "value": "List:Operation", "label": "Operation" }, - "Operator": { "value": "EQ", "label": "Equals to" }, - "Input": { - "value": "Disable Strong Authentication.", - "label": "Disable Strong Authentication." - } - } - ] - } - }, - { - "value": "Remove Member from a role.", - "name": "A user has been removed from a role", - "template": { - "preset": { - "value": "Remove Member from a role.", - "label": "A user has been removed from a role" - }, - "logbook": { "value": "Audit.AzureActiveDirectory", "label": "Azure AD" }, - "conditions": [ - { - "Property": { "value": "List:Operation", "label": "Operation" }, - "Operator": { "value": "EQ", "label": "Equals to" }, - "Input": { - "value": "Remove Member from a role.", - "label": "Remove Member from a role." - } - } - ] - } - }, - { - "value": "Reset user password.", - "name": "A user password has been reset", - "template": { - "preset": { - "value": "A user password has been reset", - "label": "Reset user password." - }, - "logbook": { "value": "Audit.AzureActiveDirectory", "label": "Azure AD" }, - "conditions": [ - { - "Property": { "value": "List:Operation", "label": "Operation" }, - "Operator": { "value": "EQ", "label": "Equals to" }, - "Input": { - "value": "Reset user password.", - "label": "Reset user password." - } - } - ] - } - }, - { - "value": "UserLoggedInFromUnknownLocation", - "name": "A user has logged in from a location not in the input list", - "template": { - "preset": { - "value": "UserLoggedInFromUnknownLocation", - "label": "A user has logged in from a location not in the input list" - }, - "logbook": { "value": "Audit.AzureActiveDirectory", "label": "Azure AD" }, - "conditions": [ - { - "Property": { "value": "List:Operation", "label": "Operation" }, - "Operator": { "value": "EQ", "label": "Equals to" }, - "Input": { - "value": "UserLoggedIn", - "label": "A user logged in" - } - }, - { - "Property": { "value": "List:countryList", "label": "CIPPGeoLocation", "multi": true }, - "Operator": { "value": "NotIn", "label": "Not In" } - } - ] - } - }, - { - "value": "Add service principal.", - "name": "A service principal has been created", - "template": { - "preset": { - "value": "Add service principal.", - "label": "A service principal has been created" - }, - "logbook": { "value": "Audit.AzureActiveDirectory", "label": "Azure AD" }, - "conditions": [ - { - "Property": { "value": "List:Operation", "label": "Operation" }, - "Operator": { "value": "EQ", "label": "Equals to" }, - "Input": { - "value": "Add service principal.", - "label": "Add service principal." - } - } - ] - } - }, - { - "value": "Remove service principal.", - "name": "A service principal has been removed", - "template": { - "preset": { - "value": "Remove service principal.", - "label": "A service principal has been removed" - }, - "logbook": { "value": "Audit.AzureActiveDirectory", "label": "Azure AD" }, - "conditions": [ - { - "Property": { "value": "List:Operation", "label": "Operation" }, - "Operator": { "value": "EQ", "label": "Equals to" }, - "Input": { - "value": "Remove service principal.", - "label": "Remove service principal." - } - } - ] - } - }, - { - "value": "badRepIP", - "name": "A user has logged in a using a known VPN, Proxy, Or anonymizer", - "template": { - "preset": { - "value": "badRepIP", - "label": "A user has logged in a using a known VPN, Proxy, Or anonymizer" - }, - "logbook": { "value": "Audit.AzureActiveDirectory", "label": "Azure AD" }, - "conditions": [ - { - "Property": { "value": "List:Operation", "label": "Operation" }, - "Operator": { "value": "EQ", "label": "Equals to" }, - "Input": { - "value": "UserLoggedIn", - "label": "A user logged in" - } - }, - { - "Property": { "value": "String", "label": "CIPPBadRepIP" }, - "Operator": { "value": "EQ", "label": "Equals to" }, - "Input": { - "value": "true", - "label": "true" - } - } - ] - } - }, - { - "value": "HostedIP", - "name": "A user has logged in a using a known hosting provider IP", - "template": { - "preset": { - "value": "HostedIP", - "label": "A user has logged in a using a known hosting provider IP" - }, - "logbook": { "value": "Audit.AzureActiveDirectory", "label": "Azure AD" }, - "conditions": [ - { - "Property": { "value": "List:Operation", "label": "Operation" }, - "Operator": { "value": "EQ", "label": "Equals to" }, - "Input": { - "value": "UserLoggedIn", - "label": "A user logged in" - } - }, - { - "Property": { "value": "String", "label": "CIPPHostedIP" }, - "Operator": { "value": "EQ", "label": "Equals to" }, - "Input": { - "value": "true", - "label": "true" - } - } - ] - } - } -] diff --git a/src/data/BPAField.schema.v1.json b/src/data/BPAField.schema.v1.json deleted file mode 100644 index 810329db4e16..000000000000 --- a/src/data/BPAField.schema.v1.json +++ /dev/null @@ -1,233 +0,0 @@ -{ - "title": "BPA Field Builder", - "type": "object", - "required": ["name", "API", "StoreAs"], - "properties": { - "name": { - "type": "string", - "title": "Field Name", - "description": "Identifier for each set or category of data." - }, - "UseExistingInfo": { - "type": "boolean", - "title": "Use Existing Info?", - "default": false - }, - "StoreAs": { - "type": "string", - "title": "Store As", - "description": "The format in which to store the fetched data.", - "anyOf": [ - { - "const": "JSON", - "title": "JSON - For structured data" - }, - { - "const": "bool", - "title": "Boolean - True/False values" - } - ] - }, - "ExtractFields": { - "title": "Extract Fields", - "description": "Lists the attributes or fields to extract from the returned data.", - "type": "array", - "items": { - "type": "string" - }, - "minItems": 1 - }, - "where": { - "title": "Where", - "description": "A conditional filter to determine which data gets displayed or processed. Use PowerShell's Where-Object Filterscript format.", - "type": "string" - }, - "FrontendFields": { - "type": "array", - "title": "Frontend Fields", - "description": "Describes how each data attribute will be displayed in the report.", - "items": { - "type": "object", - "properties": { - "name": { - "title": "Name", - "description": "Label for the data in the report.", - "type": "string" - }, - "value": { - "title": "Value", - "description": "Reference to the data's location or attribute.", - "type": "string" - }, - "formatter": { - "title": "Formatter", - "description": "Specifies how the data will be formatted for display.", - "type": "string", - "anyOf": [ - { - "const": "string", - "title": "Display as plain text" - }, - { - "const": "bool", - "title": "Presents as True or False" - }, - { - "const": "warnBool", - "title": "Shows boolean values with potential visual warnings" - }, - { - "const": "reverseBool", - "title": "Inverts the boolean value for display" - }, - { - "const": "table", - "title": "Represents the data in a table format" - }, - { - "const": "number", - "title": "Displays as a numerical value" - }, - { - "const": "math", - "title": "Displays as a calculated value" - } - ] - } - } - }, - "minItems": 1, - "required": ["name", "value", "formatter"] - }, - "desc": { - "title": "Field Description", - "description": "A description field shown on the end of the card on the tenant overview page", - "type": "string" - } - }, - "allOf": [ - { - "if": { - "properties": { - "UseExistingInfo": { - "enum": [false] - } - } - }, - "then": { - "properties": { - "API": { - "type": "string", - "title": "API", - "anyOf": [ - { - "const": "Graph", - "title": "Graph" - }, - { - "const": "Exchange", - "title": "Exchange" - }, - { - "const": "CIPPFunction", - "title": "CIPP Function" - } - ], - "default": "Graph", - "description": "Defines the source or type of API to fetch the data." - } - }, - "allOf": [ - { - "if": { - "properties": { - "API": { - "enum": ["CIPPFunction"] - } - } - }, - "then": { - "properties": { - "URL": { - "type": "string", - "description": "The endpoint for CIPP Function" - } - }, - "required": ["URL"] - } - }, - { - "if": { - "properties": { - "API": { - "enum": ["Exchange"] - } - } - }, - "then": { - "properties": { - "command": { - "type": "string", - "title": "Command", - "pattern": "^Get-", - "description": "Command for Exchange (Get only)" - } - }, - "required": ["command"] - } - }, - { - "if": { - "properties": { - "API": { - "enum": ["Graph"] - } - } - }, - "then": { - "properties": { - "parameters": { - "type": "object", - "title": "Parameters", - "description": "Additional settings or parameters required for the API call.", - "properties": { - "asApp": { - "title": "Use Application Permissions", - "type": "boolean" - } - }, - "additionalProperties": true - }, - "URL": { - "type": "string", - "pattern": "^https://graph.microsoft.com/", - "description": "The endpoint for Graph" - } - }, - "required": ["URL"] - } - }, - { - "if": { - "properties": { - "API": { - "enum": ["Exchange", "CIPPFunction"] - } - } - }, - "then": { - "properties": { - "parameters": { - "type": "object", - "title": "Parameters", - "description": "Additional settings or parameters required for the API call.", - "additionalProperties": true - } - } - } - } - ] - } - } - ] -} diff --git a/src/data/BPAField.uischema.v1.json b/src/data/BPAField.uischema.v1.json deleted file mode 100644 index bc36b81d44b2..000000000000 --- a/src/data/BPAField.uischema.v1.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "ui:disabled": false, - "ui:readonly": false, - "ui:order": [ - "name", - "desc", - "UseExistingInfo", - "API", - "StoreAs", - "URL", - "command", - "parameters", - "where", - "ExtractFields", - "FrontendFields", - "*" - ], - "ui:submitButtonOptions": { - "submitText": "Validate", - "norender": false, - "props": { - "disabled": false, - "className": "btn btn-primary" - } - } -} diff --git a/src/data/BPAReport.schema.v1.json b/src/data/BPAReport.schema.v1.json deleted file mode 100644 index f84418893481..000000000000 --- a/src/data/BPAReport.schema.v1.json +++ /dev/null @@ -1,257 +0,0 @@ -{ - "title": "BPA Report Builder", - "type": "object", - "required": ["name", "style", "Fields"], - "properties": { - "name": { - "type": "string", - "title": "Report Name", - "description": "The title or name of the report." - }, - "style": { - "type": "string", - "title": "Report Style", - "default": "Table", - "enum": ["Table", "Tenant"], - "description": "Specifies the layout or presentation style of the report." - }, - "Fields": { - "title": "Report Fields", - "type": "array", - "minItems": 1, - "items": { - "required": ["name"], - "properties": { - "name": { - "type": "string", - "title": "Field Name", - "description": "Identifier for each set or category of data." - }, - "UseExistingInfo": { - "type": "boolean", - "title": "Use Existing Info?", - "default": false - }, - "FrontendFields": { - "type": "array", - "title": "Frontend Fields", - "description": "Describes how each data attribute will be displayed in the report.", - "items": { - "type": "object", - "properties": { - "name": { - "title": "Name", - "description": "Label for the data in the report.", - "type": "string" - }, - "value": { - "title": "Value", - "description": "Reference to the data's location or attribute.", - "type": "string" - }, - "formatter": { - "title": "Formatter", - "description": "Specifies how the data will be formatted for display.", - "type": "string", - "anyOf": [ - { - "const": "string", - "title": "Display as plain text" - }, - { - "const": "bool", - "title": "True/False" - }, - { - "const": "warnBool", - "title": "True/False values with potential visual warnings" - }, - { - "const": "reverseBool", - "title": "Inverts the True/False value for display" - }, - { - "const": "table", - "title": "Represents the data in a table format" - }, - { - "const": "number", - "title": "Displays as a numerical value" - } - ] - } - } - }, - "minItems": 1, - "required": ["name", "value", "formatter"] - }, - "desc": { - "title": "Field Description", - "description": "A description field shown on the end of the card on the tenant overview page", - "type": "string" - } - }, - "allOf": [ - { - "if": { - "properties": { - "UseExistingInfo": { - "enum": [false] - } - } - }, - "then": { - "required": ["API", "StoreAs", "ExtractFields"], - "properties": { - "where": { - "title": "Where", - "description": "A conditional filter to determine which data gets displayed or processed. Use PowerShell's Where-Object Filterscript format.", - "type": "string" - }, - "StoreAs": { - "type": "string", - "title": "Store As", - "description": "The format in which to store the fetched data.", - "anyOf": [ - { - "const": "string", - "title": "String - For plain text" - }, - { - "const": "JSON", - "title": "JSON - For structured data" - }, - { - "const": "bool", - "title": "Boolean - True/False values" - } - ] - }, - "API": { - "type": "string", - "title": "API", - "anyOf": [ - { - "const": "Graph", - "title": "Graph" - }, - { - "const": "Exchange", - "title": "Exchange" - }, - { - "const": "CIPPFunction", - "title": "CIPP Function" - } - ], - "default": "Graph", - "description": "Defines the source or type of API to fetch the data." - }, - "ExtractFields": { - "title": "Extract Fields", - "description": "Lists the attributes or fields to extract from the returned data.", - "type": "array", - "items": { - "type": "string" - }, - "minItems": 1 - } - }, - "allOf": [ - { - "if": { - "properties": { - "API": { - "enum": ["CIPPFunction"] - } - } - }, - "then": { - "properties": { - "Command": { - "type": "string", - "pattern": "^Get-CIPP", - "description": "Command for CIPP Function (Get-CIPP)" - } - }, - "required": ["Command"] - } - }, - { - "if": { - "properties": { - "API": { - "enum": ["Exchange"] - } - } - }, - "then": { - "properties": { - "Command": { - "type": "string", - "title": "Command", - "pattern": "^Get-", - "description": "Command for Exchange (Get only)" - } - }, - "required": ["Command"] - } - }, - { - "if": { - "properties": { - "API": { - "enum": ["Graph"] - } - } - }, - "then": { - "properties": { - "parameters": { - "type": "object", - "title": "Parameters", - "description": "Additional settings or parameters required for the API call.", - "properties": { - "asApp": { - "title": "Use Application Permissions", - "type": "boolean" - } - }, - "additionalProperties": true - }, - "URL": { - "type": "string", - "pattern": "^https://graph.microsoft.com/", - "description": "The endpoint for Graph" - } - }, - "required": ["URL"] - } - }, - { - "if": { - "properties": { - "API": { - "enum": ["Exchange", "CIPPFunction"] - } - } - }, - "then": { - "properties": { - "parameters": { - "type": "object", - "title": "Parameters", - "description": "Additional settings or parameters required for the API call.", - "additionalProperties": true - } - } - } - } - ] - } - } - ] - } - } - } -} diff --git a/src/data/BPAReport.uischema.v1.json b/src/data/BPAReport.uischema.v1.json deleted file mode 100644 index 19e3c7d01237..000000000000 --- a/src/data/BPAReport.uischema.v1.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "ui:disabled": false, - "ui:readonly": false, - "ui:order": ["name", "style", "*"], - "Fields": { - "items": { - "ui:order": [ - "name", - "desc", - "UseExistingInfo", - "StoreAs", - "API", - "URL", - "Command", - "parameters", - "where", - "ExtractFields", - "FrontendFields", - "*" - ], - "FrontendFields": { - "ui:classNames": "card card-title p-4 my-4" - } - } - }, - "ui:submitButtonOptions": { - "norender": true - } -} diff --git a/src/data/Extensions.json b/src/data/Extensions.json deleted file mode 100644 index 6524c9236657..000000000000 --- a/src/data/Extensions.json +++ /dev/null @@ -1,284 +0,0 @@ -[ - { - "name": "CIPP-API", - "type": "CIPP-API", - "cat": "API", - "forceSyncButton": false, - "disableWhenhosted": true, - "helpText": "This integration allows you to enable CIPP-API access outside of CIPP. Requires Global Administrator permissions inside your tenant for activation of the API. The API credentials will only be shown once.", - "SettingOptions": [ - { - "type": "checkbox", - "name": "cippapi.ResetPassword", - "label": "Reset application secret - this will invalidate all existing API tokens" - }, - { - "type": "checkbox", - "name": "cippapi.Enabled", - "label": "Enable Integration" - } - ], - "mappingRequired": false - }, - { - "name": "Gradient", - "type": "Gradient", - "cat": "Billing & Invoicing", - "forceSyncButton": true, - "helpText": "This integration allows you to send your license counts to Gradient for billing purposes, and create tickets if your PSA supports ticket creation by Gradient.", - "SettingOptions": [ - { - "type": "input", - "fieldtype": "password", - "name": "Gradient.VendorKey", - "label": "Gradient Vendor API Key", - "placeholder": "Enter your Gradient Vendor Key." - }, - { - "type": "input", - "fieldtype": "password", - "name": "Gradient.APIKey", - "label": "Gradient Partner API Key", - "placeholder": "Enter your Gradient Partner Key. Leave blank to keep your current key." - }, - { - "type": "checkbox", - "name": "Gradient.BillingEnabled", - "label": "Enable sending all license information to Gradient" - }, - { - "type": "checkbox", - "name": "Gradient.Enabled", - "label": "Enable Integration" - } - ], - "mappingRequired": false - }, - { - "name": "Halo PSA Ticketing", - "type": "HaloPSA", - "cat": "Ticketing", - "forceSyncButton": false, - "helpText": "This integration allows you to send alerts to your ticketing system.", - "SettingOptions": [ - { - "type": "input", - "fieldtype": "input", - "name": "HaloPSA.ResourceURL", - "label": "HaloPSA Resource Server URL", - "placeholder": "Enter your HaloPSA Resource Server URL." - }, - { - "type": "input", - "fieldtype": "input", - "name": "HaloPSA.AuthURL", - "label": "HaloPSA Authorisation Endpoint URL", - "placeholder": "Enter your HaloPSA Authorisation Endpoint URL." - }, - { - "type": "input", - "fieldtype": "input", - "name": "HaloPSA.Tenant", - "label": "HaloPSA Tenant", - "placeholder": "Enter your HaloPSA Tenant (Leave blank if self-hosted" - }, - { - "type": "input", - "fieldtype": "input", - "name": "HaloPSA.TicketType", - "label": "HaloPSA Ticket Type ID", - "placeholder": "Enter your HaloPSA ticket type to use for CIPP Tickets. Leave blank for default." - }, - { - "type": "input", - "fieldtype": "input", - "name": "HaloPSA.ClientID", - "label": "HaloPSA Client ID", - "placeholder": "Enter your HaloPSA Client ID" - }, - { - "type": "input", - "fieldtype": "password", - "name": "HaloPSA.APIKey", - "label": "HaloPSA Client Secret", - "placeholder": "Enter your client Secret. Leave blank to keep your current key." - }, - { - "type": "checkbox", - "name": "HaloPSA.Enabled", - "label": "Enable Integration" - } - ], - "mappingRequired": true - }, - { - "name": "NinjaOne", - "type": "NinjaOne", - "cat": "Documentation & Monitoring", - "forceSyncButton": true, - "helpText": "This integration allows you to populate custom fields with Tenant information, monitor device compliance state, document other items and generate relationships inside NinjaOne.", - "SettingOptions": [ - { - "type": "input", - "fieldtype": "input", - "name": "NinjaOne.Instance", - "label": "Please enter your NinjaOne Instance hostname", - "placeholder": "app.ninjarmm.com, eu.ninjarmm.com, oc.ninjarmm.com, ca.ninjarmm.com, us2.ninjarmm.com" - }, - { - "type": "input", - "fieldtype": "password", - "name": "NinjaOne.ClientID", - "label": "NinjaOne API Client ID", - "placeholder": "Enter your NinjaOne API Client ID" - }, - { - "type": "input", - "fieldtype": "password", - "name": "NinjaOne.APIKey", - "label": "NinjaOne API Client Secret", - "placeholder": "Enter your NinjaOne API Client Secret" - }, - { - "type": "checkbox", - "name": "NinjaOne.LicenseDocumentsEnabled", - "label": "Sync Licenses (Requires NinjaOne Documentation)" - }, - { - "type": "checkbox", - "name": "NinjaOne.UserDocumentsEnabled", - "label": "Sync Users (Requires NinjaOne Documentation)" - }, - { - "type": "checkbox", - "name": "NinjaOne.LicensedOnly", - "label": "Only Sync Licensed Users (Requires NinjaOne Documentation)" - }, - { - "type": "checkbox", - "name": "NinjaOne.Enabled", - "label": "Enable Integration" - } - ], - "mappingRequired": true, - "fieldMapping": true, - "autoMapSyncApi": true, - "showSyncButton": true - }, - { - "name": "Hudu", - "type": "Hudu", - "cat": "Documentation", - "forceSyncButton": true, - "helpText": "This integration allows you to populate custom asset layouts with Tenant information, monitor device compliance state, document other items and generate relationships inside Hudu.", - "SettingOptions": [ - { - "type": "input", - "fieldtype": "input", - "name": "Hudu.BaseUrl", - "label": "Please enter your Hudu URL", - "placeholder": "https://yourcompany.huducloud.com" - }, - { - "type": "input", - "fieldtype": "password", - "name": "Hudu.APIKey", - "label": "Hudu API Key", - "placeholder": "Enter your Hudu API Key" - }, - { - "type": "checkbox", - "name": "Hudu.Enabled", - "label": "Enable Integration" - }, - { - "type": "checkbox", - "name": "Hudu.CreateMissingUsers", - "label": "Create missing users in Hudu" - }, - { - "type": "checkbox", - "name": "Hudu.CreateMissingDevices", - "label": "Create missing devices in Hudu" - }, - { - "type": "text", - "name": "Hudu.ExcludeSerials", - "label": "Exclude device serials (comma separated)" - }, - { - "type": "checkbox", - "name": "Hudu.ImportDomains", - "label": "Import domains from M365" - }, - { - "type": "checkbox", - "name": "Hudu.MonitorDomains", - "label": "Monitor domains in Hudu" - } - ], - "mappingRequired": true, - "fieldMapping": true, - "showSyncButton": true - }, - { - "name": "PasswordPusher", - "type": "PWPush", - "cat": "Passwords", - "forceSyncButton": false, - "helpText": "This integration allows you to generate password links instead of plain text passwords. Visit https://pwpush.com/ or https://github.com/pglombardo/PasswordPusher for more information.", - "SettingOptions": [ - { - "type": "checkbox", - "name": "PWPush.Enabled", - "label": "Replace generated passwords with PWPush links" - }, - { - "type": "input", - "fieldtype": "text", - "name": "PWPush.BaseUrl", - "label": "PWPush URL", - "placeholder": "Enter your PWPush URL. (default: https://pwpush.com)" - }, - { - "type": "input", - "fieldtype": "text", - "name": "PWPush.EmailAddress", - "label": "PWPush email address", - "placeholder": "Enter your email address for PWPush. (optional)" - }, - { - "type": "input", - "fieldtype": "password", - "name": "PWPush.APIKey", - "label": "PWPush API Key", - "placeholder": "Enter your PWPush API Key. (optional)" - }, - { - "type": "checkbox", - "name": "PWPush.RetrievalStep", - "label": "Click to retrieve password (recommended)" - }, - { - "type": "input", - "fieldtype": "number", - "name": "PWPush.ExpireAfterDays", - "label": "Expiration in Days", - "placeholder": "Expiration time in days. (optional)" - }, - { - "type": "input", - "fieldtype": "number", - "name": "PWPush.ExpireAfterViews", - "label": "Expiration after views", - "placeholder": "Expiration after views. (optional)" - }, - { - "type": "checkbox", - "name": "PWPush.DeletableByViewer", - "label": "Allow deletion of passwords" - } - ], - "mappingRequired": false - } -] diff --git a/src/data/GDAPRoles.json b/src/data/GDAPRoles.json deleted file mode 100644 index bf14e31159e5..000000000000 --- a/src/data/GDAPRoles.json +++ /dev/null @@ -1,722 +0,0 @@ -[ - { - "ExtensionData": {}, - "Description": "Can create and manage all aspects of app registrations and enterprise apps.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Application Administrator", - "ObjectId": "9b895d92-2cd3-44c7-9d02-a6ac2d5ea5c3" - }, - { - "ExtensionData": {}, - "Description": "Can create application registrations independent of the \u0027Users can register applications\u0027 setting.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Application Developer", - "ObjectId": "cf1c38e5-3621-4004-a7cb-879624dced7c" - }, - { - "ExtensionData": {}, - "Description": "Can create attack payloads that an administrator can initiate later.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Attack Payload Author", - "ObjectId": "9c6df0f2-1e7c-4dc3-b195-66dfbd24aa8f" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage all aspects of attack simulation campaigns.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Attack Simulation Administrator", - "ObjectId": "c430b396-e693-46cc-96f3-db01bf8bb62a" - }, - { - "ExtensionData": {}, - "Description": "Assign custom security attribute keys and values to supported Azure AD objects.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Attribute Assignment Administrator", - "ObjectId": "58a13ea3-c632-46ae-9ee0-9c0d43cd7f3d" - }, - { - "ExtensionData": {}, - "Description": "Read custom security attribute keys and values for supported Azure AD objects.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Attribute Assignment Reader", - "ObjectId": "ffd52fa5-98dc-465c-991d-fc073eb59f8f" - }, - { - "ExtensionData": {}, - "Description": "Define and manage the definition of custom security attributes.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Attribute Definition Administrator", - "ObjectId": "8424c6f0-a189-499e-bbd0-26c1753c96d4" - }, - { - "ExtensionData": {}, - "Description": "Read the definition of custom security attributes.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Attribute Definition Reader", - "ObjectId": "1d336d2c-4ae8-42ef-9711-b3604ce3fc2c" - }, - { - "ExtensionData": {}, - "Description": "Allowed to view, set and reset authentication method information for any non-admin user.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Authentication Administrator", - "ObjectId": "c4e39bd9-1100-46d3-8c65-fb160da0071f" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage the authentication methods policy, tenant-wide MFA settings, password protection policy, and verifiable credentials.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Authentication Policy Administrator", - "ObjectId": "0526716b-113d-4c15-b2c8-68e3c22b9f80" - }, - { - "ExtensionData": {}, - "Description": "Users assigned to this role are added to the local administrators group on Azure AD-joined devices.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Azure AD Joined Device Local Administrator", - "ObjectId": "9f06204d-73c1-4d4c-880a-6edb90606fd8" - }, - { - "ExtensionData": {}, - "Description": "Can manage Azure DevOps organization policy and settings.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Azure DevOps Administrator", - "ObjectId": "e3973bdf-4987-49ae-837a-ba8e231c7286" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the Azure Information Protection product.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Azure Information Protection Administrator", - "ObjectId": "7495fdc4-34c4-4d15-a289-98788ce399fd" - }, - { - "ExtensionData": {}, - "Description": "Can manage secrets for federation and encryption in the Identity Experience Framework (IEF).", - "IsEnabled": true, - "IsSystem": true, - "Name": "B2C IEF Keyset Administrator", - "ObjectId": "aaf43236-0c0d-4d5f-883a-6955382ac081" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage trust framework policies in the Identity Experience Framework (IEF).", - "IsEnabled": true, - "IsSystem": true, - "Name": "B2C IEF Policy Administrator", - "ObjectId": "3edaf663-341e-4475-9f94-5c398ef6c070" - }, - { - "ExtensionData": {}, - "Description": "Can perform common billing related tasks like updating payment information.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Billing Administrator", - "ObjectId": "b0f54661-2d74-4c50-afa3-1ec803f12efe" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the Cloud App Security product.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Cloud App Security Administrator", - "ObjectId": "892c5842-a9a6-463a-8041-72aa08ca3cf6" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage all aspects of app registrations and enterprise apps except App Proxy.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Cloud Application Administrator", - "ObjectId": "158c047a-c907-4556-b7ef-446551a6b5f7" - }, - { - "ExtensionData": {}, - "Description": "Full access to manage devices in Azure AD.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Cloud Device Administrator", - "ObjectId": "7698a772-787b-4ac8-901f-60d6b08affd2" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of Azure AD and Microsoft services that use Azure AD identities. This role was formerly known as Global Administrator.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Company Administrator", - "ObjectId": "62e90394-69f5-4237-9190-012177145e10" - }, - { - "ExtensionData": {}, - "Description": "Can read and manage compliance configuration and reports in Azure AD and Microsoft 365.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Compliance Administrator", - "ObjectId": "17315797-102d-40b4-93e0-432062caca18" - }, - { - "ExtensionData": {}, - "Description": "Creates and manages compliance content.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Compliance Data Administrator", - "ObjectId": "e6d1a23a-da11-4be4-9570-befc86d067a7" - }, - { - "ExtensionData": {}, - "Description": "Can manage Conditional Access capabilities.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Conditional Access Administrator", - "ObjectId": "b1be1c3e-b65d-4f19-8427-f6fa0d97feb9" - }, - { - "ExtensionData": {}, - "Description": "Can approve Microsoft support requests to access customer organizational data.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Customer LockBox Access Approver", - "ObjectId": "5c4f9dcd-47dc-4cf7-8c9a-9e4207cbfc91" - }, - { - "ExtensionData": {}, - "Description": "Can access and manage Desktop management tools and services.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Desktop Analytics Administrator", - "ObjectId": "38a96431-2bdf-4b4c-8b6e-5d3d8abac1a4" - }, - { - "ExtensionData": {}, - "Description": "Device Join", - "IsEnabled": true, - "IsSystem": true, - "Name": "Device Join", - "ObjectId": "9c094953-4995-41c8-84c8-3ebb9b32c93f" - }, - { - "ExtensionData": {}, - "Description": "Device Users", - "IsEnabled": true, - "IsSystem": true, - "Name": "Device Users", - "ObjectId": "d405c6df-0af8-4e3b-95e4-4d06e542189e" - }, - { - "ExtensionData": {}, - "Description": "Can read basic directory information. Commonly used to grant directory read access to applications and guests.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Directory Readers", - "ObjectId": "88d8e3e3-8f55-4a1e-953a-9b9898b8876b" - }, - { - "ExtensionData": {}, - "Description": "Only used by Azure AD Connect service.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Directory Synchronization Accounts", - "ObjectId": "d29b2b05-8046-44ba-8758-1e26182fcf32" - }, - { - "ExtensionData": {}, - "Description": "Can read and write basic directory information. For granting access to applications, not intended for users.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Directory Writers", - "ObjectId": "9360feb5-f418-4baa-8175-e2a00bac4301" - }, - { - "ExtensionData": {}, - "Description": "Can manage domain names in cloud and on-premises.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Domain Name Administrator", - "ObjectId": "8329153b-31d0-4727-b945-745eb3bc5f31" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the Dynamics 365 product.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Dynamics 365 Administrator", - "ObjectId": "44367163-eba1-44c3-98af-f5787879f96a" - }, - { - "ExtensionData": {}, - "Description": "Manage all aspects of Microsoft Edge.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Edge Administrator", - "ObjectId": "3f1acade-1e04-4fbc-9b69-f0302cd84aef" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the Exchange product.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Exchange Administrator", - "ObjectId": "29232cdf-9323-42fd-ade2-1d097af3e4de" - }, - { - "ExtensionData": {}, - "Description": "Can create or update Exchange Online recipients within the Exchange Online organization.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Exchange Recipient Administrator", - "ObjectId": "31392ffb-586c-42d1-9346-e59415a2cc4e" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage all aspects of user flows.", - "IsEnabled": true, - "IsSystem": true, - "Name": "External ID User Flow Administrator", - "ObjectId": "6e591065-9bad-43ed-90f3-e9424366d2f0" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage the attribute schema available to all user flows.", - "IsEnabled": true, - "IsSystem": true, - "Name": "External ID User Flow Attribute Administrator", - "ObjectId": "0f971eea-41eb-4569-a71e-57bb8a3eff1e" - }, - { - "ExtensionData": {}, - "Description": "Can configure identity providers for use in direct federation.", - "IsEnabled": true, - "IsSystem": true, - "Name": "External Identity Provider Administrator", - "ObjectId": "be2f45a1-457d-42af-a067-6ec1fa63bc45" - }, - { - "ExtensionData": {}, - "Description": "Can read everything that a Global Administrator can, but not update anything.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Global Reader", - "ObjectId": "f2ef992c-3afb-46b9-b7cf-a126ee74c451" - }, - { - "ExtensionData": {}, - "Description": "Members of this role can create/manage groups, create/manage groups settings like naming and expiration policies, and view groups activity and audit reports.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Groups Administrator", - "ObjectId": "fdd7a751-b60b-444a-984c-02652fe8fa1c" - }, - { - "ExtensionData": {}, - "Description": "Can invite guest users independent of the \u0027members can invite guests\u0027 setting.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Guest Inviter", - "ObjectId": "95e79109-95c0-4d8e-aee3-d01accf2d47b" - }, - { - "ExtensionData": {}, - "Description": "Can reset passwords for non-administrators and Helpdesk Administrators.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Helpdesk Administrator", - "ObjectId": "729827e3-9c14-49f7-bb1b-9608f156bbb8" - }, - { - "ExtensionData": {}, - "Description": "Can manage AD to Azure AD cloud provisioning, Azure AD Connect, and federation settings.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Hybrid Identity Administrator", - "ObjectId": "8ac3fc64-6eca-42ea-9e69-59f4c7b60eb2" - }, - { - "ExtensionData": {}, - "Description": "Manage access using Azure AD for identity governance scenarios.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Identity Governance Administrator", - "ObjectId": "45d8d3c5-c802-45c6-b32a-1d70b5e1e86e" - }, - { - "ExtensionData": {}, - "Description": "Has administrative access in the Microsoft 365 Insights app.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Insights Administrator", - "ObjectId": "eb1f4a8d-243a-41f0-9fbd-c7cdf6c5ef7c" - }, - { - "ExtensionData": {}, - "Description": "Access the analytical capabilities in Microsoft Viva Insights and run custom queries.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Insights Analyst", - "ObjectId": "25df335f-86eb-4119-b717-0ff02de207e9" - }, - { - "ExtensionData": {}, - "Description": "Can view and share dashboards and insights via the M365 Insights app.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Insights Business Leader", - "ObjectId": "31e939ad-9672-4796-9c2e-873181342d2d" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the Intune product.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Intune Administrator", - "ObjectId": "3a2c62db-5318-420d-8d74-23affee5d9d5" - }, - { - "ExtensionData": {}, - "Description": "Can manage settings for Microsoft Kaizala.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Kaizala Administrator", - "ObjectId": "74ef975b-6605-40af-a5d2-b9539d836353" - }, - { - "ExtensionData": {}, - "Description": "Can configure knowledge, learning, and other intelligent features.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Knowledge Administrator", - "ObjectId": "b5a8dcf3-09d5-43a9-a639-8e29ef291470" - }, - { - "ExtensionData": {}, - "Description": "Has access to topic management dashboard and can manage content.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Knowledge Manager", - "ObjectId": "744ec460-397e-42ad-a462-8b3f9747a02c" - }, - { - "ExtensionData": {}, - "Description": "Can manage product licenses on users and groups.", - "IsEnabled": true, - "IsSystem": true, - "Name": "License Administrator", - "ObjectId": "4d6ac14f-3453-41d0-bef9-a3e0c569773a" - }, - { - "ExtensionData": {}, - "Description": "Create and manage all aspects of workflows and tasks associated with Lifecycle Workflows in Azure AD.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Lifecycle Workflows Administrator", - "ObjectId": "59d46f88-662b-457b-bceb-5c3809e5908f" - }, - { - "ExtensionData": {}, - "Description": "Can read security messages and updates in Office 365 Message Center only.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Message Center Privacy Reader", - "ObjectId": "ac16e43d-7b2d-40e0-ac05-243ff356ab5b" - }, - { - "ExtensionData": {}, - "Description": "Can read messages and updates for their organization in Office 365 Message Center only.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Message Center Reader", - "ObjectId": "790c1fb9-7f7d-4f88-86a1-ef1f95c05c1b" - }, - { - "ExtensionData": {}, - "Description": "Can manage network locations and review enterprise network design insights for Microsoft 365 Software as a Service applications.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Network Administrator", - "ObjectId": "d37c8bed-0711-4417-ba38-b4abe66ce4c2" - }, - { - "ExtensionData": {}, - "Description": "Can manage Office apps cloud services, including policy and settings management, and manage the ability to select, unselect and publish \u0027what\u0027s new\u0027 feature content to end-user\u0027s devices.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Office Apps Administrator", - "ObjectId": "2b745bdf-0803-4d80-aa65-822c4493daac" - }, - { - "ExtensionData": {}, - "Description": "Do not use - not intended for general use.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Partner Tier1 Support", - "ObjectId": "4ba39ca4-527c-499a-b93d-d9b492c50246" - }, - { - "ExtensionData": {}, - "Description": "Do not use - not intended for general use.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Partner Tier2 Support", - "ObjectId": "e00e864a-17c5-4a4b-9c06-f5b95a8d5bd8" - }, - { - "ExtensionData": {}, - "Description": "Can reset passwords for non-administrators and Password Administrators.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Password Administrator", - "ObjectId": "966707d0-3269-4727-9be2-8c3a10f19b9d" - }, - { - "ExtensionData": {}, - "Description": "Manage all aspects of Entra Permissions Management.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Permissions Management Administrator", - "ObjectId": "af78dc32-cf4d-46f9-ba4e-4428526346b5" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the Power BI product.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Power BI Administrator", - "ObjectId": "a9ea8996-122f-4c74-9520-8edcd192826c" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage all aspects of Microsoft Dynamics 365, PowerApps and Microsoft Flow.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Power Platform Administrator", - "ObjectId": "11648597-926c-4cf3-9c36-bcebb0ba8dcc" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of printers and printer connectors.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Printer Administrator", - "ObjectId": "644ef478-e28f-4e28-b9dc-3fdde9aa0b1f" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of printers and printer connectors.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Printer Technician", - "ObjectId": "e8cef6f1-e4bd-4ea8-bc07-4b8d950f4477" - }, - { - "ExtensionData": {}, - "Description": "Allowed to view, set and reset authentication method information for any user (admin or non-admin).", - "IsEnabled": true, - "IsSystem": true, - "Name": "Privileged Authentication Administrator", - "ObjectId": "7be44c8a-adaf-4e2a-84d6-ab2649e08a13" - }, - { - "ExtensionData": {}, - "Description": "Can manage role assignments in Azure AD, and all aspects of Privileged Identity Management.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Privileged Role Administrator", - "ObjectId": "e8611ab8-c189-46e8-94e1-60213ab1f814" - }, - { - "ExtensionData": {}, - "Description": "Can read sign-in and audit reports.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Reports Reader", - "ObjectId": "4a5d8f65-41da-4de4-8968-e035b65339cf" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage all aspects of Microsoft Search settings.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Search Administrator", - "ObjectId": "0964bb5e-9bdb-4d7b-ac29-58e794862a40" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage the editorial content such as bookmarks, Q and As, locations, floorplan.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Search Editor", - "ObjectId": "8835291a-918c-4fd7-a9ce-faa49f0cf7d9" - }, - { - "ExtensionData": {}, - "Description": "Security Administrator allows ability to read and manage security configuration and reports.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Security Administrator", - "ObjectId": "194ae4cb-b126-40b2-bd5b-6091b380977d" - }, - { - "ExtensionData": {}, - "Description": "Creates and manages security events.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Security Operator", - "ObjectId": "5f2222b1-57c3-48ba-8ad5-d4759f1fde6f" - }, - { - "ExtensionData": {}, - "Description": "Can read security information and reports in Azure AD and Office 365.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Security Reader", - "ObjectId": "5d6b6bb7-de71-4623-b4af-96380a352509" - }, - { - "ExtensionData": {}, - "Description": "Can read service health information and manage support tickets.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Service Support Administrator", - "ObjectId": "f023fd81-a637-4b56-95fd-791ac0226033" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the SharePoint service.", - "IsEnabled": true, - "IsSystem": true, - "Name": "SharePoint Administrator", - "ObjectId": "f28a1f50-f6e7-4571-818b-6a12f2af6b6c" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the Skype for Business product.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Skype for Business Administrator", - "ObjectId": "75941009-915a-4869-abe7-691bff18279e" - }, - { - "ExtensionData": {}, - "Description": "Can manage the Microsoft Teams service.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Teams Administrator", - "ObjectId": "69091246-20e8-4a56-aa4d-066075b2a7a8" - }, - { - "ExtensionData": {}, - "Description": "Can manage calling and meetings features within the Microsoft Teams service.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Teams Communications Administrator", - "ObjectId": "baf37b3a-610e-45da-9e62-d9d1e5e8914b" - }, - { - "ExtensionData": {}, - "Description": "Can troubleshoot communications issues within Teams using advanced tools.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Teams Communications Support Engineer", - "ObjectId": "f70938a0-fc10-4177-9e90-2178f8765737" - }, - { - "ExtensionData": {}, - "Description": "Can troubleshoot communications issues within Teams using basic tools.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Teams Communications Support Specialist", - "ObjectId": "fcf91098-03e3-41a9-b5ba-6f0ec8188a12" - }, - { - "ExtensionData": {}, - "Description": "Can perform management related tasks on Teams certified devices.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Teams Devices Administrator", - "ObjectId": "3d762c5a-1b6c-493f-843e-55a3b42923d4" - }, - { - "ExtensionData": {}, - "Description": "Can see only tenant level aggregates in Microsoft 365 Usage Analytics and Productivity Score.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Usage Summary Reports Reader", - "ObjectId": "75934031-6c7e-415a-99d7-48dbd49e875e" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of users and groups, including resetting passwords for limited admins.", - "IsEnabled": true, - "IsSystem": true, - "Name": "User Administrator", - "ObjectId": "fe930be7-5e62-47db-91af-98c3a49a38b1" - }, - { - "ExtensionData": {}, - "Description": "Manage and share Virtual Visits information and metrics from admin centers or the Virtual Visits app.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Virtual Visits Administrator", - "ObjectId": "e300d9e7-4a2b-4295-9eff-f1c78b36cc98" - }, - { - "ExtensionData": {}, - "Description": "Manage and configure all aspects of Microsoft Viva Goals.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Viva Goals Administrator", - "ObjectId": "92b086b3-e367-4ef2-b869-1de128fb986e" - }, - { - "ExtensionData": {}, - "Description": "Can manage all settings for Microsoft Viva Pulse app.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Viva Pulse Administrator", - "ObjectId": "87761b17-1ed2-4af3-9acd-92a150038160" - }, - { - "ExtensionData": {}, - "Description": "Can provision and manage all aspects of Cloud PCs.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Windows 365 Administrator", - "ObjectId": "11451d60-acb2-45eb-a7d6-43d0f0125c13" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage all aspects of Windows Update deployments through the Windows Update for Business deployment service.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Windows Update Deployment Administrator", - "ObjectId": "32696413-001a-46ae-978c-ce0f6b3620d2" - }, - { - "ExtensionData": {}, - "Description": "Workplace Device Join", - "IsEnabled": true, - "IsSystem": true, - "Name": "Workplace Device Join", - "ObjectId": "c34f683f-4d5a-4403-affd-6615e00e3a7f" - }, - { - "ExtensionData": {}, - "Description": "Manage all aspects of Yammer.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Yammer Administrator", - "ObjectId": "810a2642-a034-447f-a5e8-41beaa378541" - } -] diff --git a/src/data/LicenseExamples.json b/src/data/LicenseExamples.json deleted file mode 100644 index 6e01a92e19e5..000000000000 --- a/src/data/LicenseExamples.json +++ /dev/null @@ -1,14074 +0,0 @@ -[ - { - "Product_Display_Name": "Advanced Communications", - "String_Id": "ADV_COMMS", - "GUID": "e4654015-5daf-4a48-9b37-4f309dddd88b", - "Service_Plan_Name": "TEAMS_ADVCOMMS", - "Service_Plan_Id": "604ec28a-ae18-4bc6-91b0-11da94504ba9", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Communications" - }, - { - "Product_Display_Name": "AI Builder Capacity add-on", - "String_Id": "CDSAICAPACITY", - "GUID": "d2dea78b-507c-4e56-b400-39447f4738f8", - "Service_Plan_Name": "CDSAICAPACITY", - "Service_Plan_Id": "a7c70a41-5e02-4271-93e6-d9b4184d83f5", - "Service_Plans_Included_Friendly_Names": "AI Builder capacity add-on" - }, - { - "Product_Display_Name": "AI Builder Capacity add-on", - "String_Id": "CDSAICAPACITY", - "GUID": "d2dea78b-507c-4e56-b400-39447f4738f8", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "APP CONNECT IW", - "String_Id": "SPZA_IW", - "GUID": "8f0c5670-4e56-4892-b06d-91c085d7004f", - "Service_Plan_Name": "SPZA", - "Service_Plan_Id": "0bfc98ed-1dbc-4a97-b246-701754e48b17", - "Service_Plans_Included_Friendly_Names": "APP CONNECT" - }, - { - "Product_Display_Name": "APP CONNECT IW", - "String_Id": "SPZA_IW", - "GUID": "8f0c5670-4e56-4892-b06d-91c085d7004f", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Microsoft 365 Audio Conferencing", - "String_Id": "MCOMEETADV", - "GUID": "0c266dff-15dd-4b49-8397-2bb16070ed52", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "AZURE ACTIVE DIRECTORY BASIC", - "String_Id": "AAD_BASIC", - "GUID": "2b9c8e7c-319c-43a2-a2a0-48c5c6161de7", - "Service_Plan_Name": "AAD_BASIC", - "Service_Plan_Id": "c4da7f8a-5ee2-4c99-a7e1-87d2df57f6fe", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY BASIC" - }, - { - "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P1", - "String_Id": "AAD_PREMIUM", - "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1" - }, - { - "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P1", - "String_Id": "AAD_PREMIUM", - "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "CLOUD APP SECURITY DISCOVERY" - }, - { - "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P1", - "String_Id": "AAD_PREMIUM", - "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P1", - "String_Id": "AAD_PREMIUM", - "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION" - }, - { - "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P2", - "String_Id": "AAD_PREMIUM_P2", - "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1" - }, - { - "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P2", - "String_Id": "AAD_PREMIUM_P2", - "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P2" - }, - { - "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P2", - "String_Id": "AAD_PREMIUM_P2", - "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "CLOUD APP SECURITY DISCOVERY" - }, - { - "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P2", - "String_Id": "AAD_PREMIUM_P2", - "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P2", - "String_Id": "AAD_PREMIUM_P2", - "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION" - }, - { - "Product_Display_Name": "AZURE INFORMATION PROTECTION PLAN 1", - "String_Id": "RIGHTSMANAGEMENT", - "GUID": "c52ea49f-fe5d-4e95-93ba-1de91d380f89", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1" - }, - { - "Product_Display_Name": "AZURE INFORMATION PROTECTION PLAN 1", - "String_Id": "RIGHTSMANAGEMENT", - "GUID": "c52ea49f-fe5d-4e95-93ba-1de91d380f89", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS" - }, - { - "Product_Display_Name": "Business Apps (free)", - "String_Id": "SMB_APPS", - "GUID": "90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96", - "Service_Plan_Name": "DYN365BC_MS_INVOICING", - "Service_Plan_Id": "39b5c996-467e-4e60-bd62-46066f572726", - "Service_Plans_Included_Friendly_Names": "Microsoft Invoicing" - }, - { - "Product_Display_Name": "Business Apps (free)", - "String_Id": "SMB_APPS", - "GUID": "90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "COMMON AREA PHONE", - "String_Id": "MCOCAP", - "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "COMMON AREA PHONE", - "String_Id": "MCOCAP", - "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS" - }, - { - "Product_Display_Name": "COMMON AREA PHONE", - "String_Id": "MCOCAP", - "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Common Area Phone for GCC", - "String_Id": "MCOCAP_GOV", - "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", - "Service_Plan_Name": "MCOEV_GOV", - "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government" - }, - { - "Product_Display_Name": "Common Area Phone for GCC", - "String_Id": "MCOCAP_GOV", - "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" - }, - { - "Product_Display_Name": "Common Area Phone for GCC", - "String_Id": "MCOCAP_GOV", - "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Common Data Service Database Capacity", - "String_Id": "CDS_DB_CAPACITY", - "GUID": "e612d426-6bc3-4181-9658-91aa906b0ac0", - "Service_Plan_Name": "CDS_DB_CAPACITY", - "Service_Plan_Id": "360bcc37-0c11-4264-8eed-9fa7a3297c9b", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Apps Database Capacity" - }, - { - "Product_Display_Name": "Common Data Service Database Capacity", - "String_Id": "CDS_DB_CAPACITY", - "GUID": "e612d426-6bc3-4181-9658-91aa906b0ac0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Common Data Service Log Capacity", - "String_Id": "CDS_LOG_CAPACITY", - "GUID": "448b063f-9cc6-42fc-a0e6-40e08724a395", - "Service_Plan_Name": "CDS_LOG_CAPACITY", - "Service_Plan_Id": "dc48f5c5-e87d-43d6-b884-7ac4a59e7ee9", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Apps Log Capacity" - }, - { - "Product_Display_Name": "Common Data Service Log Capacity", - "String_Id": "CDS_LOG_CAPACITY", - "GUID": "448b063f-9cc6-42fc-a0e6-40e08724a395", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "COMMUNICATIONS CREDITS", - "String_Id": "MCOPSTNC", - "GUID": "47794cd0-f0e5-45c5-9033-2eb6b5fc84e0", - "Service_Plan_Name": "MCOPSTNC", - "Service_Plan_Id": "505e180f-f7e0-4b65-91d4-00d670bbd18c", - "Service_Plans_Included_Friendly_Names": "COMMUNICATIONS CREDITS" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Database Storage (Qualified Offer)", - "String_Id": "CRMSTORAGE", - "GUID": "328dc228-00bc-48c6-8b09-1fbc8bc3435d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Database Storage (Qualified Offer)", - "String_Id": "CRMSTORAGE", - "GUID": "328dc228-00bc-48c6-8b09-1fbc8bc3435d", - "Service_Plan_Name": "CRMSTORAGE", - "Service_Plan_Id": "77866113-0f3e-4e6e-9666-b1e25c6f99b0", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Storage Add-On" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Production Instance (Qualified Offer)", - "String_Id": "CRMINSTANCE", - "GUID": "9d776713-14cb-4697-a21d-9a52455c738a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Production Instance (Qualified Offer)", - "String_Id": "CRMINSTANCE", - "GUID": "9d776713-14cb-4697-a21d-9a52455c738a", - "Service_Plan_Name": "CRMINSTANCE", - "Service_Plan_Id": "eeea837a-c885-4167-b3d5-ddde30cbd85f", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Instance" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Non-Production Instance (Qualified Offer)", - "String_Id": "CRMTESTINSTANCE", - "GUID": "e06abcc2-7ec5-4a79-b08b-d9c282376f72", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Non-Production Instance (Qualified Offer)", - "String_Id": "CRMTESTINSTANCE", - "GUID": "e06abcc2-7ec5-4a79-b08b-d9c282376f72", - "Service_Plan_Name": "CRMTESTINSTANCE", - "Service_Plan_Id": "a98b7619-66c7-4885-bdfc-1d9c8c3d279f", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Additional Test Instance" - }, - { - "Product_Display_Name": "Dynamics 365 Asset Management Addl Assets", - "String_Id": "DYN365_ASSETMANAGEMENT", - "GUID": "673afb9d-d85b-40c2-914e-7bf46cd5cd75", - "Service_Plan_Name": "D365_AssetforSCM", - "Service_Plan_Id": "90467813-5b40-40d4-835c-abd48009b1d9", - "Service_Plans_Included_Friendly_Names": "Asset Maintenance Add-in" - }, - { - "Product_Display_Name": "Dynamics 365 Asset Management Addl Assets", - "String_Id": "DYN365_ASSETMANAGEMENT", - "GUID": "673afb9d-d85b-40c2-914e-7bf46cd5cd75", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Additional Environment Addon", - "String_Id": "DYN365_BUSCENTRAL_ADD_ENV_ADDON", - "GUID": "a58f5506-b382-44d4-bfab-225b2fbf8390", - "Service_Plan_Name": "DYN365_BUSCENTRAL_ENVIRONMENT", - "Service_Plan_Id": "d397d6c6-9664-4502-b71c-66f39c400ca4", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Additional Environment Addon" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Database Capacity", - "String_Id": "DYN365_BUSCENTRAL_DB_CAPACITY", - "GUID": "7d0d4f9a-2686-4cb8-814c-eff3fdab6d74", - "Service_Plan_Name": "DYN365_BUSCENTRAL_DB_CAPACITY", - "Service_Plan_Id": "ae6b27b3-fe31-4e77-ae06-ec5fabbc103a", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Database Capacity" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Database Capacity", - "String_Id": "DYN365_BUSCENTRAL_DB_CAPACITY", - "GUID": "7d0d4f9a-2686-4cb8-814c-eff3fdab6d74", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Essentials", - "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL", - "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa", - "Service_Plan_Name": "DYN365_FINANCIALS_BUSINESS", - "Service_Plan_Id": "920656a2-7dd8-4c83-97b6-a356414dbd36", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Business Central Essentials" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Essentials", - "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL", - "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Essentials", - "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL", - "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Essentials", - "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL", - "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central External Accountant", - "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU", - "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4", - "Service_Plan_Name": "DYN365_FINANCIALS_ACCOUNTANT", - "Service_Plan_Id": "170991d7-b98e-41c5-83d4-db2052e1795f", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central External Accountant" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central External Accountant", - "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU", - "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central External Accountant", - "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU", - "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central External Accountant", - "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU", - "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central for IWs", - "String_Id": "PROJECT_MADEIRA_PREVIEW_IW_SKU", - "GUID": "6a4a1628-9b9a-424d-bed5-4118f0ede3fd", - "Service_Plan_Name": "PROJECT_MADEIRA_PREVIEW_IW", - "Service_Plan_Id": "3f2afeed-6fb5-4bf9-998f-f2912133aead", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central for IWs" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central for IWs", - "String_Id": "PROJECT_MADEIRA_PREVIEW_IW_SKU", - "GUID": "6a4a1628-9b9a-424d-bed5-4118f0ede3fd", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Premium", - "String_Id": "DYN365_BUSCENTRAL_PREMIUM", - "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029", - "Service_Plan_Name": "DYN365_BUSCENTRAL_PREMIUM", - "Service_Plan_Id": "8e9002c0-a1d8-4465-b952-817d2948e6e2", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Premium" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Premium", - "String_Id": "DYN365_BUSCENTRAL_PREMIUM", - "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Premium", - "String_Id": "DYN365_BUSCENTRAL_PREMIUM", - "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Premium", - "String_Id": "DYN365_BUSCENTRAL_PREMIUM", - "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "D365_CSI_EMBED_CE", - "Service_Plan_Id": "1412cdc1-d593-4ad1-9050-40c30ad0b023", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Insights for CE Plan" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "DYN365_ENTERPRISE_P1", - "Service_Plan_Id": "d56f3deb-50d8-465a-bedb-f079817ccac1", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 P1" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "D365_ProjectOperations", - "Service_Plan_Id": "69f07c66-bee4-4222-b051-195095efee5b", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "D365_ProjectOperationsCDS", - "Service_Plan_Id": "18fa3aba-b085-4105-87d7-55617b8585e6", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations CDS" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "FLOW_DYN_P2", - "Service_Plan_Id": "b650d915-9886-424b-a08d-633cede56f57", - "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "Forms_Pro_CE", - "Service_Plan_Id": "97f29a83-1a20-44ff-bf48-5e4ad11f3e51", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Engagement Plan" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "NBENTERPRISE", - "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", - "Service_Plans_Included_Friendly_Names": "Microsoft Social Engagement Enterprise" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "POWERAPPS_DYN_P2", - "Service_Plan_Id": "0b03f40b-c404-40c3-8651-2aceb74365fa", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "PROJECT_FOR_PROJECT_OPERATIONS", - "Service_Plan_Id": "0a05d977-a21a-45b2-91ce-61c240dbafa2", - "Service_Plans_Included_Friendly_Names": "Project for Project Operations" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "Project Online Service" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Insights Trial", - "String_Id": "DYN365_AI_SERVICE_INSIGHTS", - "GUID": "61e6bd70-fbdb-4deb-82ea-912842f39431", - "Service_Plan_Name": "DYN365_AI_SERVICE_INSIGHTS", - "Service_Plan_Id": "4ade5aa6-5959-4d2c-bf0a-f4c9e2cc00f2", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Customer Service Trial" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Trial", - "String_Id": "FORMS_PRO", - "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", - "Service_Plan_Name": "DYN365_CDS_FORMS_PRO", - "Service_Plan_Id": "363430d1-e3f7-43bc-b07b-767b6bb95e4b", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Trial", - "String_Id": "FORMS_PRO", - "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", - "Service_Plan_Name": "FORMS_PRO", - "Service_Plan_Id": "17efdd9f-c22c-4ad8-b48e-3b1f3ee1dc9a", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Voice" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Trial", - "String_Id": "FORMS_PRO", - "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Trial", - "String_Id": "FORMS_PRO", - "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Trial", - "String_Id": "FORMS_PRO", - "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", - "Service_Plan_Name": "FLOW_FORMS_PRO", - "Service_Plan_Id": "57a0746c-87b8-4405-9397-df365a9db793", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 Customer Voice" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "DYN365_CUSTOMER_SERVICE_PRO", - "Service_Plan_Id": "6929f657-b31b-4947-b4ce-5066c3214f54", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Pro" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "POWERAPPS_CUSTOMER_SERVICE_PRO", - "Service_Plan_Id": "c507b04c-a905-4940-ada6-918891e6d3ad", - "Service_Plans_Included_Friendly_Names": "Power Apps for Customer Service Pro" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "FLOW_CUSTOMER_SERVICE_PRO", - "Service_Plan_Id": "0368fc9c-3721-437f-8b7d-3d0f888cdefc", - "Service_Plans_Included_Friendly_Names": "Power Automate for Customer Service Pro" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses", - "String_Id": "Forms_Pro_AddOn", - "GUID": "446a86f8-a0cb-4095-83b3-d100eb050e3d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses", - "String_Id": "Forms_Pro_AddOn", - "GUID": "446a86f8-a0cb-4095-83b3-d100eb050e3d", - "Service_Plan_Name": "Forms_Pro_AddOn", - "Service_Plan_Id": "90a816f6-de5f-49fd-963c-df490d73b7b5", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice Add-on" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses", - "String_Id": "DYN365_CUSTOMER_VOICE_ADDON", - "GUID": "65f71586-ade3-4ce1-afc0-1b452eaf3782", - "Service_Plan_Name": "CUSTOMER_VOICE_ADDON", - "Service_Plan_Id": "e6e35e2d-2e7f-4e71-bc6f-2f40ed062f5d", - "Service_Plans_Included_Friendly_Names": "Dynamics Customer Voice Add-On" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses", - "String_Id": "DYN365_CUSTOMER_VOICE_ADDON", - "GUID": "65f71586-ade3-4ce1-afc0-1b452eaf3782", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice USL", - "String_Id": "Forms_Pro_USL", - "GUID": "e2ae107b-a571-426f-9367-6d4c8f1390ba", - "Service_Plan_Name": "CDS_FORM_PRO_USL", - "Service_Plan_Id": "e9830cfd-e65d-49dc-84fb-7d56b9aa2c89", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice USL", - "String_Id": "Forms_Pro_USL", - "GUID": "e2ae107b-a571-426f-9367-6d4c8f1390ba", - "Service_Plan_Name": "Forms_Pro_USL", - "Service_Plan_Id": "3ca0766a-643e-4304-af20-37f02726339b", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice USL" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice USL", - "String_Id": "Forms_Pro_USL", - "GUID": "e2ae107b-a571-426f-9367-6d4c8f1390ba", - "Service_Plan_Name": "FLOW_FORMS_PRO", - "Service_Plan_Id": "57a0746c-87b8-4405-9397-df365a9db793", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 Customer Voice" - }, - { - "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Portal (Qualified Offer)", - "String_Id": "CRM_ONLINE_PORTAL", - "GUID": "a4bfb28e-becc-41b0-a454-ac680dc258d3", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Portal (Qualified Offer)", - "String_Id": "CRM_ONLINE_PORTAL", - "GUID": "a4bfb28e-becc-41b0-a454-ac680dc258d3", - "Service_Plan_Name": "CRM_ONLINE_PORTAL", - "Service_Plan_Id": "1d4e9cb1-708d-449c-9f71-943aa8ed1d6a", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online - Portal Add-On" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "DYN365_CDS_FINANCE", - "Service_Plan_Id": "e95d7060-d4d9-400a-a2bd-a244bf0b609e", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Dynamics 365 Finance" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "DYN365_REGULATORY_SERVICE", - "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Finance and Operations Enterprise edition - Regulatory Service" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "D365_Finance", - "Service_Plan_Id": "9f0e1b4e-9b33-4300-b451-b2c662cd4ff7", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 for Finance" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "Service_Plan_Id": "99340b49-fb81-4b1e-976b-8f2ae8e9394f", - "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT - SERVICE DISCONTINUATION" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "NBENTERPRISE", - "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR CUSTOMER SERVICE" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR FINANCIALS BUSINESS EDITION", - "String_Id": "DYN365_FINANCIALS_BUSINESS_SKU", - "GUID": "cc13a803-544e-4464-b4e4-6d6169a138fa", - "Service_Plan_Name": "DYN365_FINANCIALS_BUSINESS", - "Service_Plan_Id": "920656a2-7dd8-4c83-97b6-a356414dbd36", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR FINANCIALS BUSINESS EDITION", - "String_Id": "DYN365_FINANCIALS_BUSINESS_SKU", - "GUID": "cc13a803-544e-4464-b4e4-6d6169a138fa", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR FINANCIALS BUSINESS EDITION", - "String_Id": "DYN365_FINANCIALS_BUSINESS_SKU", - "GUID": "cc13a803-544e-4464-b4e4-6d6169a138fa", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR FINANCIALS" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES AND CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", - "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", - "Service_Plan_Name": "DYN365_ENTERPRISE_P1", - "Service_Plan_Id": "d56f3deb-50d8-465a-bedb-f079817ccac1", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 CUSTOMER ENGAGEMENT PLAN" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES AND CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", - "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES AND CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", - "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", - "Service_Plan_Name": "NBENTERPRISE", - "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", - "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT - SERVICE DISCONTINUATION" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES AND CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", - "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES AND CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", - "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES AND CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", - "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES AND CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", - "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES", - "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", - "Service_Plan_Name": "DYN365_ENTERPRISE_SALES", - "Service_Plan_Id": "2da8e897-7791-486b-b08f-cc63c8129df7", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR SALES" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES", - "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES", - "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", - "Service_Plan_Name": "NBENTERPRISE", - "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", - "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT - SERVICE DISCONTINUATION" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES", - "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES", - "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES", - "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES", - "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "DYN365_CDS_SUPPLYCHAINMANAGEMENT", - "Service_Plan_Id": "b6a8b974-2956-4e14-ae81-f0384c363528", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR DYNAMICS 365 SUPPLY CHAIN MANAGEMENT" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "DYN365_REGULATORY_SERVICE", - "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR FINANCE AND OPERATIONS ENTERPRISE EDITION - REGULATORY SERVICE" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "D365_SCM", - "Service_Plan_Id": "1224eae4-0d91-474a-8a52-27ec96a63fe7", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "DYN365_CDS_DYN_APPS", - "Service_Plan_Id": "2d925ad8-2479-4bd8-bb76-5b80f1d48935", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "Dynamics_365_Hiring_Free_PLAN", - "Service_Plan_Id": "f815ac79-c5dd-4bcc-9b78-d97f7b817d0d", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent: Attract" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "Dynamics_365_Onboarding_Free_PLAN", - "Service_Plan_Id": "300b8114-8555-4313-b861-0c115d820f50", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent: Onboard" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "Dynamics_365_for_HCM_Trial", - "Service_Plan_Id": "5ed38b64-c3b7-4d9f-b1cd-0de18c9c4331", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for HCM Trial" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "DYN365_Enterprise_Talent_Attract_TeamMember", - "Service_Plan_Id": "643d201a-9884-45be-962a-06ba97062e5e", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT - ATTRACT EXPERIENCE TEAM MEMBER" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "DYN365_Enterprise_Talent_Onboard_TeamMember", - "Service_Plan_Id": "f2f49eef-4b3f-4853-809a-a055c6103fe0", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT - ONBOARD EXPERIENCE" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "Service_Plan_Id": "6a54b05e-4fab-40e7-9828-428db3b336fa", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TEAM MEMBERS" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "DYNAMICS_365_FOR_OPERATIONS_TEAM_MEMBERS", - "Service_Plan_Id": "f5aa7b45-8a36-4cd1-bc37-5d06dea98645", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR OPERATIONS TEAM MEMBERS" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "Dynamics_365_for_Retail_Team_members", - "Service_Plan_Id": "c0454a3d-32b5-4740-b090-78c32f48f0ad", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR RETAIL TEAM MEMBERS" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "Dynamics_365_for_Talent_Team_members", - "Service_Plan_Id": "d5156635-0704-4f66-8803-93258f8b2678", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT TEAM MEMBERS" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "FLOW_DYN_TEAM", - "Service_Plan_Id": "1ec58c70-f69c-486a-8109-4b87ce86e449", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "POWERAPPS_DYN_TEAM", - "Service_Plan_Id": "52e619e2-2730-439a-b0d3-d09ab7e8b705", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "Dynamics 365 Guides", - "String_Id": "GUIDES_USER", - "GUID": "0a389a77-9850-4dc4-b600-bc66fdfefc60", - "Service_Plan_Name": "DYN365_CDS_GUIDES", - "Service_Plan_Id": "1315ade1-0410-450d-b8e3-8050e6da320f", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Dynamics 365 Guides", - "String_Id": "GUIDES_USER", - "GUID": "0a389a77-9850-4dc4-b600-bc66fdfefc60", - "Service_Plan_Name": "GUIDES", - "Service_Plan_Id": "0b2c029c-dca0-454a-a336-887285d6ef07", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Guides" - }, - { - "Product_Display_Name": "Dynamics 365 Guides", - "String_Id": "GUIDES_USER", - "GUID": "0a389a77-9850-4dc4-b600-bc66fdfefc60", - "Service_Plan_Name": "POWERAPPS_GUIDES", - "Service_Plan_Id": "816971f4-37c5-424a-b12b-b56881f402e7", - "Service_Plans_Included_Friendly_Names": "Power Apps for Guides" - }, - { - "Product_Display_Name": "Dynamics 365 Operations - Device", - "String_Id": "Dynamics_365_for_Operations_Devices", - "GUID": "3bbd44ed-8a70-4c07-9088-6232ddbd5ddd", - "Service_Plan_Name": "DYN365_RETAIL_DEVICE", - "Service_Plan_Id": "ceb28005-d758-4df7-bb97-87a617b93d6c", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Retail Device" - }, - { - "Product_Display_Name": "Dynamics 365 Operations - Device", - "String_Id": "Dynamics_365_for_Operations_Devices", - "GUID": "3bbd44ed-8a70-4c07-9088-6232ddbd5ddd", - "Service_Plan_Name": "Dynamics_365_for_OperationsDevices", - "Service_Plan_Id": "2c9fb43e-915a-4d61-b6ca-058ece89fd66", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Operations Devices" - }, - { - "Product_Display_Name": "Dynamics 365 Operations - Device", - "String_Id": "Dynamics_365_for_Operations_Devices", - "GUID": "3bbd44ed-8a70-4c07-9088-6232ddbd5ddd", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 2:Standard Acceptance Testing", - "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier2_SKU", - "GUID": "e485d696-4c87-4aac-bf4a-91b2fb6f0fa7", - "Service_Plan_Name": "Dynamics_365_for_Operations_Sandbox_Tier2", - "Service_Plan_Id": "d8ba6fb2-c6b1-4f07-b7c8-5f2745e36b54", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Operations non-production multi-box instance for standard acceptance testing (Tier 2)" - }, - { - "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 2:Standard Acceptance Testing", - "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier2_SKU", - "GUID": "e485d696-4c87-4aac-bf4a-91b2fb6f0fa7", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 4:Standard Performance Testing", - "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier4_SKU", - "GUID": "f7ad4bca-7221-452c-bdb6-3e6089f25e06", - "Service_Plan_Name": "Dynamics_365_for_Operations_Sandbox_Tier4", - "Service_Plan_Id": "f6b5efb1-1813-426f-96d0-9b4f7438714f", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Operations Enterprise Edition - Sandbox Tier 4:Standard Performance Testing" - }, - { - "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 4:Standard Performance Testing", - "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier4_SKU", - "GUID": "f7ad4bca-7221-452c-bdb6-3e6089f25e06", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "DYNAMICS 365 P1 TRIAL FOR INFORMATION WORKERS", - "String_Id": "DYN365_ENTERPRISE_P1_IW", - "GUID": "338148b6-1b11-4102-afb9-f92b6cdc0f8d", - "Service_Plan_Name": "DYN365_ENTERPRISE_P1_IW", - "Service_Plan_Id": "056a5f80-b4e0-4983-a8be-7ad254a113c9", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 P1 TRIAL FOR INFORMATION WORKERS" - }, - { - "Product_Display_Name": "DYNAMICS 365 P1 TRIAL FOR INFORMATION WORKERS", - "String_Id": "DYN365_ENTERPRISE_P1_IW", - "GUID": "338148b6-1b11-4102-afb9-f92b6cdc0f8d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Dynamics 365 Remote Assist", - "String_Id": "MICROSOFT_REMOTE_ASSIST", - "GUID": "7a551360-26c4-4f61-84e6-ef715673e083", - "Service_Plan_Name": "CDS_REMOTE_ASSIST", - "Service_Plan_Id": "0850ebb5-64ee-4d3a-a3e1-5a97213653b5", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Remote Assist" - }, - { - "Product_Display_Name": "Dynamics 365 Remote Assist", - "String_Id": "MICROSOFT_REMOTE_ASSIST", - "GUID": "7a551360-26c4-4f61-84e6-ef715673e083", - "Service_Plan_Name": "MICROSOFT_REMOTE_ASSIST", - "Service_Plan_Id": "4f4c7800-298a-4e22-8867-96b17850d4dd", - "Service_Plans_Included_Friendly_Names": "Microsoft Remote Assist" - }, - { - "Product_Display_Name": "Dynamics 365 Remote Assist", - "String_Id": "MICROSOFT_REMOTE_ASSIST", - "GUID": "7a551360-26c4-4f61-84e6-ef715673e083", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Dynamics 365 Remote Assist HoloLens", - "String_Id": "MICROSOFT_REMOTE_ASSIST_HOLOLENS", - "GUID": "e48328a2-8e98-4484-a70f-a99f8ac9ec89", - "Service_Plan_Name": "CDS_REMOTE_ASSIST", - "Service_Plan_Id": "0850ebb5-64ee-4d3a-a3e1-5a97213653b5", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Remote Assist" - }, - { - "Product_Display_Name": "Dynamics 365 Remote Assist HoloLens", - "String_Id": "MICROSOFT_REMOTE_ASSIST_HOLOLENS", - "GUID": "e48328a2-8e98-4484-a70f-a99f8ac9ec89", - "Service_Plan_Name": "MICROSOFT_REMOTE_ASSIST", - "Service_Plan_Id": "4f4c7800-298a-4e22-8867-96b17850d4dd", - "Service_Plans_Included_Friendly_Names": "Microsoft Remote Assist" - }, - { - "Product_Display_Name": "Dynamics 365 Remote Assist HoloLens", - "String_Id": "MICROSOFT_REMOTE_ASSIST_HOLOLENS", - "GUID": "e48328a2-8e98-4484-a70f-a99f8ac9ec89", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Enterprise Attach to Qualifying Dynamics 365 Base Offer", - "String_Id": "D365_SALES_ENT_ATTACH", - "GUID": "5b22585d-1b71-4c6b-b6ec-160b1a9c2323", - "Service_Plan_Name": "D365_SALES_ENT_ATTACH", - "Service_Plan_Id": "3ae52229-572e-414f-937c-ff35a87d4f29", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Enterprise Attach" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Enterprise Attach to Qualifying Dynamics 365 Base Offer", - "String_Id": "D365_SALES_ENT_ATTACH", - "GUID": "5b22585d-1b71-4c6b-b6ec-160b1a9c2323", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "DYNAMICS 365 TALENT: ONBOARD", - "String_Id": "DYNAMICS_365_ONBOARDING_SKU", - "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0", - "Service_Plan_Name": "DYN365_CDS_DYN_APPS", - "Service_Plan_Id": "2d925ad8-2479-4bd8-bb76-5b80f1d48935", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE" - }, - { - "Product_Display_Name": "DYNAMICS 365 TALENT: ONBOARD", - "String_Id": "DYNAMICS_365_ONBOARDING_SKU", - "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0", - "Service_Plan_Name": "Dynamics_365_Onboarding_Free_PLAN", - "Service_Plan_Id": "300b8114-8555-4313-b861-0c115d820f50", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT: ONBOARD" - }, - { - "Product_Display_Name": "DYNAMICS 365 TALENT: ONBOARD", - "String_Id": "DYNAMICS_365_ONBOARDING_SKU", - "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0", - "Service_Plan_Name": "Dynamics_365_Talent_Onboard", - "Service_Plan_Id": "048a552e-c849-4027-b54c-4c7ead26150a", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT: ONBOARD" - }, - { - "Product_Display_Name": "DYNAMICS 365 TALENT: ONBOARD", - "String_Id": "DYNAMICS_365_ONBOARDING_SKU", - "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "DYNAMICS_365_FOR_RETAIL_TEAM_MEMBERS", - "Service_Plan_Id": "c0454a3d-32b5-4740-b090-78c32f48f0ad", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR RETAIL TEAM MEMBERS" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "DYN365_ENTERPRISE_TALENT_ATTRACT_TEAMMEMBER", - "Service_Plan_Id": "643d201a-9884-45be-962a-06ba97062e5e", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT - ATTRACT EXPERIENCE TEAM MEMBER" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "DYN365_ENTERPRISE_TALENT_ONBOARD_TEAMMEMBER", - "Service_Plan_Id": "f2f49eef-4b3f-4853-809a-a055c6103fe0", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT - ONBOARD EXPERIENCE" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "DYNAMICS_365_FOR_TALENT_TEAM_MEMBERS", - "Service_Plan_Id": "d5156635-0704-4f66-8803-93258f8b2678", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT TEAM MEMBERS" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "DYN365_TEAM_MEMBERS", - "Service_Plan_Id": "4092fdb5-8d81-41d3-be76-aaba4074530b", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 TEAM MEMBERS" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "DYNAMICS_365_FOR_OPERATIONS_TEAM_MEMBERS", - "Service_Plan_Id": "f5aa7b45-8a36-4cd1-bc37-5d06dea98645", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR OPERATIONS TEAM MEMBERS" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "FLOW_DYN_TEAM", - "Service_Plan_Id": "1ec58c70-f69c-486a-8109-4b87ce86e449", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE FOR THE WEB" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "POWERAPPS_DYN_TEAM", - "Service_Plan_Id": "52e619e2-2730-439a-b0d3-d09ab7e8b705", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT (PLAN 2)" - }, - { - "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "DDYN365_CDS_DYN_P2", - "Service_Plan_Id": "d1142cfd-872e-4e77-b6ff-d98ec5a51f66", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE" - }, - { - "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "DYN365_TALENT_ENTERPRISE", - "Service_Plan_Id": "65a1ebf4-6732-4f00-9dcb-3d115ffdeecd", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT" - }, - { - "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "Dynamics_365_for_Operations", - "Service_Plan_Id": "95d2cd7b-1007-484b-8595-5e97e63fe189", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR_OPERATIONS" - }, - { - "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "Dynamics_365_for_Retail", - "Service_Plan_Id": "a9e39199-8369-444b-89c1-5fe65ec45665", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR RETAIL" - }, - { - "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "DYNAMICS_365_HIRING_FREE_PLAN", - "Service_Plan_Id": "f815ac79-c5dd-4bcc-9b78-d97f7b817d0d", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 HIRING FREE PLAN" - }, - { - "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "Dynamics_365_Onboarding_Free_PLAN", - "Service_Plan_Id": "300b8114-8555-4313-b861-0c115d820f50", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT: ONBOARD" - }, - { - "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "FLOW_DYN_P2", - "Service_Plan_Id": "b650d915-9886-424b-a08d-633cede56f57", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 36" - }, - { - "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "POWERAPPS_DYN_P2", - "Service_Plan_Id": "0b03f40b-c404-40c3-8651-2aceb74365fa", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E3", - "String_Id": "EMS", - "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E3", - "String_Id": "EMS", - "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E3", - "String_Id": "EMS", - "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "CLOUD APP SECURITY DISCOVERY" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E3", - "String_Id": "EMS", - "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E3", - "String_Id": "EMS", - "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E3", - "String_Id": "EMS", - "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E3", - "String_Id": "EMS", - "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P2" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P2" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "MICROSOFT CLOUD APP SECURITY" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR IDENTITY" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", - "String_Id": "EMS_GOV", - "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", - "String_Id": "EMS_GOV", - "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", - "String_Id": "EMS_GOV", - "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", - "String_Id": "EMS_GOV", - "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", - "String_Id": "EMS_GOV", - "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", - "String_Id": "EMS_GOV", - "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", - "String_Id": "EMS_GOV", - "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "RMS_S_ENTERPRISE)", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Exchange Enterprise CAL Services (EOP DLP)", - "String_Id": "EOP_ENTERPRISE_PREMIUM", - "GUID": "e8ecdf70-47a8-4d39-9d15-093624b7f640", - "Service_Plan_Name": "EOP_ENTERPRISE_PREMIUM", - "Service_Plan_Id": "75badc48-628e-4446-8460-41344d73abd6", - "Service_Plans_Included_Friendly_Names": "Exchange Enterprise CAL Services (EOP DLP)" - }, - { - "Product_Display_Name": "Exchange Enterprise CAL Services (EOP DLP)", - "String_Id": "EOP_ENTERPRISE_PREMIUM", - "GUID": "e8ecdf70-47a8-4d39-9d15-093624b7f640", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1)", - "String_Id": "EXCHANGESTANDARD", - "GUID": "4b9405b0-7788-4568-add1-99614e613b69", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1)", - "String_Id": "EXCHANGESTANDARD", - "GUID": "4b9405b0-7788-4568-add1-99614e613b69", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1)", - "String_Id": "EXCHANGESTANDARD", - "GUID": "4b9405b0-7788-4568-add1-99614e613b69", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "EXCHANGE ONLINE (PLAN 2)", - "String_Id": "EXCHANGEENTERPRISE", - "GUID": "19ec0d23-8335-4cbd-94ac-6050e30712fa", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE ONLINE", - "String_Id": "EXCHANGEARCHIVE_ADDON", - "GUID": "ee02fd1b-340e-4a4b-b355-4a514e4c8943", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", - "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE ONLINE" - }, - { - "Product_Display_Name": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE SERVER", - "String_Id": "EXCHANGEARCHIVE", - "GUID": "90b5e015-709a-4b8b-b08e-3200f994494c", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE", - "Service_Plan_Id": "da040e0a-b393-4bea-bb76-928b3fa1cf5a", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE SERVER" - }, - { - "Product_Display_Name": "EXCHANGE ONLINE ESSENTIALS (ExO P1 BASED)", - "String_Id": "EXCHANGEESSENTIALS", - "GUID": "7fc0182e-d107-4556-8329-7caaa511197b", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "EXCHANGE ONLINE ESSENTIALS", - "String_Id": "EXCHANGE_S_ESSENTIALS", - "GUID": "e8f81a67-bd96-4074-b108-cf193eb9433b", - "Service_Plan_Name": "EXCHANGE_S_ESSENTIALS", - "Service_Plan_Id": "1126bef5-da20-4f07-b45e-ad25d2581aa8", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ESSENTIALS" - }, - { - "Product_Display_Name": "EXCHANGE ONLINE ESSENTIALS", - "String_Id": "EXCHANGE_S_ESSENTIALS", - "GUID": "e8f81a67-bd96-4074-b108-cf193eb9433b", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)" - }, - { - "Product_Display_Name": "EXCHANGE ONLINE KIOSK", - "String_Id": "EXCHANGEDESKLESS", - "GUID": "80b2d799-d2ba-4d2a-8842-fb0d0f3a4b82", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS", - "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE KIOSK" - }, - { - "Product_Display_Name": "EXCHANGE ONLINE POP", - "String_Id": "EXCHANGETELCO", - "GUID": "cb0a98a8-11bc-494c-83d9-c1b1ac65327e", - "Service_Plan_Name": "EXCHANGE_B_STANDARD", - "Service_Plan_Id": "90927877-dcff-4af6-b346-2332c0b15bb7", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE POP" - }, - { - "Product_Display_Name": "INTUNE", - "String_Id": "INTUNE_A", - "GUID": "061f9ace-7d42-4136-88ac-31dc755f143f", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "Microsoft Dynamics AX7 User Trial", - "String_Id": "AX7_USER_TRIAL", - "GUID": "fcecd1f9-a91e-488d-a918-a96cdb6ce2b0", - "Service_Plan_Name": "ERP_TRIAL_INSTANCE", - "Service_Plan_Id": "e2f705fd-2468-4090-8c58-fad6e6b1e724", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Operations Trial Environment" - }, - { - "Product_Display_Name": "Microsoft Dynamics AX7 User Trial", - "String_Id": "AX7_USER_TRIAL", - "GUID": "fcecd1f9-a91e-488d-a918-a96cdb6ce2b0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Azure Multi-Factor Authentication", - "String_Id": "MFA_STANDALONE", - "GUID": "cb2020b1-d8f6-41c0-9acd-8ff3d6d7831b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Azure Multi-Factor Authentication", - "String_Id": "MFA_STANDALONE", - "GUID": "cb2020b1-d8f6-41c0-9acd-8ff3d6d7831b", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2)", - "String_Id": "THREAT_INTELLIGENCE", - "GUID": "3dd6cf57-d688-4eed-ba52-9e40b5468c3e", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2)", - "String_Id": "THREAT_INTELLIGENCE", - "GUID": "3dd6cf57-d688-4eed-ba52-9e40b5468c3e", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2)", - "String_Id": "THREAT_INTELLIGENCE", - "GUID": "3dd6cf57-d688-4eed-ba52-9e40b5468c3e", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A1", - "String_Id": "M365EDU_A1", - "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb", - "Service_Plan_Name": "AAD_EDU", - "Service_Plan_Id": "3a3976ce-de18-4a87-a78e-5e9245e252df", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A1", - "String_Id": "M365EDU_A1", - "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A1", - "String_Id": "M365EDU_A1", - "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A1", - "String_Id": "M365EDU_A1", - "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb", - "Service_Plan_Name": "WINDOWS_STORE", - "Service_Plan_Id": "a420f25f-a7b3-4ff5-a9d0-5d58f73b537d", - "Service_Plans_Included_Friendly_Names": "Windows Store Service" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P2" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Flow for Office 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Intune for Education" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the web (Education)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "PowerApps for Office 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the web (Education)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING", - "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086", - "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "OFFICESUBSCRIPTION_unattended", - "Service_Plan_Id": "8d77e2d9-9e28-4450-8431-0def64078fc5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise (unattended)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the web (Education)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING", - "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086", - "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P3" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P3" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics -(Premium" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Premium" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_3", - "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E5 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P3" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", - "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Azure Advanced Threat Protection" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Flow for Office 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Intune for Education" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR ENDPOINT" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_3", - "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E5 SKU" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the web (Education)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "PowerApps for Office 365 Plan 3" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P3" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Premium" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the web (Education)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING", - "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086", - "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P3" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the web (Education)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING", - "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086", - "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS", - "String_Id": "O365_BUSINESS", - "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS", - "String_Id": "O365_BUSINESS", - "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3", - "Service_Plan_Name": "OFFICE_BUSINESS", - "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS", - "String_Id": "O365_BUSINESS", - "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3", - "Service_Plan_Name": "ONEDRIVESTANDARD", - "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", - "Service_Plans_Included_Friendly_Names": "ONEDRIVESTANDARD" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS", - "String_Id": "O365_BUSINESS", - "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS", - "String_Id": "O365_BUSINESS", - "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS", - "String_Id": "SMB_BUSINESS", - "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS", - "String_Id": "SMB_BUSINESS", - "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc", - "Service_Plan_Name": "OFFICE_BUSINESS", - "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS", - "String_Id": "SMB_BUSINESS", - "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc", - "Service_Plan_Name": "ONEDRIVESTANDARD", - "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", - "Service_Plans_Included_Friendly_Names": "ONEDRIVESTANDARD" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS", - "String_Id": "SMB_BUSINESS", - "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS", - "String_Id": "SMB_BUSINESS", - "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR ENTERPRISE", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR ENTERPRISE", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR ENTERPRISE", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "ONEDRIVESTANDARD", - "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", - "Service_Plans_Included_Friendly_Names": "ONEDRIVESTANDARD" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR ENTERPRISE", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR ENTERPRISE", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "MICROSOFT 365 AUDIO CONFERENCING FOR GCC", - "String_Id": "MCOMEETADV_GOC", - "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5", - "Service_Plan_Name": "EXCHANGE_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 AUDIO CONFERENCING FOR GCC", - "String_Id": "MCOMEETADV_GOC", - "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5", - "Service_Plan_Name": "MCOMEETADV_GOV", - "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 AUDIO CONFERENCING FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "OFFICEMOBILE_SUBSCRIPTION" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "OFFICEMOBILE_SUBSCRIPTION" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "YAMMER_MIDSIZE", - "Service_Plan_Id": "41bf139a-4e60-409f-9346-a1361efc6dfb", - "Service_Plans_Included_Friendly_Names": "YAMMER MIDSIZE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "MICROSOFTBOOKINGS" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "O365_SB_Relationship_Management", - "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79", - "Service_Plans_Included_Friendly_Names": "OUTLOOK CUSTOMER MANAGER" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "OFFICE_BUSINESS", - "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "MICROSOFTBOOKINGS" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "O365_SB_Relationship_Management", - "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79", - "Service_Plans_Included_Friendly_Names": "OUTLOOK CUSTOMER MANAGER" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "OFFICE_BUSINESS", - "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "YAMMER_MIDSIZE", - "Service_Plan_Id": "41bf139a-4e60-409f-9346-a1361efc6dfb", - "Service_Plans_Included_Friendly_Names": "YAMMER_MIDSIZE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "AAD_SMB", - "Service_Plan_Id": "de377cbc-0019-4ec2-b77c-3f223947e102", - "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", - "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE ONLINE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "INTUNE_SMBIZ", - "Service_Plan_Id": "8e9ff0ff-aa7a-4b20-83c1-2f636b600ac2", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "MICROSOFT BOOKINGS" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "O365_SB_Relationship_Management", - "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79", - "Service_Plans_Included_Friendly_Names": "OUTLOOK CUSTOMER MANAGER" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "OFFICE_BUSINESS", - "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "STREAM_O365_E1", - "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E1 SKU" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "WINBIZ", - "Service_Plan_Id": "8e229017-d77b-43d5-9305-903395523b99", - "Service_Plans_Included_Friendly_Names": "WINDOWS 10 BUSINESS" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice (US)", - "String_Id": "BUSINESS_VOICE_MED2_TELCO", - "GUID": "08d7bce8-6e16-490e-89db-1d508e5e9609", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice (US)", - "String_Id": "BUSINESS_VOICE_MED2_TELCO", - "GUID": "08d7bce8-6e16-490e-89db-1d508e5e9609", - "Service_Plan_Name": "MCOPSTN1", - "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice (US)", - "String_Id": "BUSINESS_VOICE_MED2_TELCO", - "GUID": "08d7bce8-6e16-490e-89db-1d508e5e9609", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice (without Calling Plan) for US", - "String_Id": "BUSINESS_VOICE_DIRECTROUTING_MED", - "GUID": "8330dae3-d349-44f7-9cad-1b23c64baabe", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice (without Calling Plan) for US", - "String_Id": "BUSINESS_VOICE_DIRECTROUTING_MED", - "GUID": "8330dae3-d349-44f7-9cad-1b23c64baabe", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "MICROSOFT 365 DOMESTIC CALLING PLAN (120 Minutes)", - "String_Id": "MCOPSTN_5", - "GUID": "11dee6af-eca8-419f-8061-6864517c1875", - "Service_Plan_Name": "MCOPSTN5", - "Service_Plan_Id": "54a152dc-90de-4996-93d2-bc47e670fc06", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 DOMESTIC CALLING PLAN (120 min)" - }, - { - "Product_Display_Name": "Microsoft 365 Domestic Calling Plan for GCC", - "String_Id": "MCOPSTN_1_GOV", - "GUID": "923f58ab-fca1-46a1-92f9-89fda21238a8", - "Service_Plan_Name": "MCOPSTN1_GOV", - "Service_Plan_Id": "3c8a8792-7866-409b-bb61-1b20ace0368b", - "Service_Plans_Included_Friendly_Names": "Domestic Calling for Government" - }, - { - "Product_Display_Name": "Microsoft 365 Domestic Calling Plan for GCC", - "String_Id": "MCOPSTN_1_GOV", - "GUID": "923f58ab-fca1-46a1-92f9-89fda21238a8", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "CLOUD APP SECURITY DISCOVERY" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "FORMS_PLAN_E3", - "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E3)" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 36" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E3 SKU" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "WINDOWS 10 ENTERPRISE" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER ENTERPRISE" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "OFFICESUBSCRIPTION_unattended", - "Service_Plan_Id": "8d77e2d9-9e28-4450-8431-0def64078fc5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise (Unattended)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "FORMS_PLAN_E3", - "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P2" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "TEAMS_AR_DOD", - "Service_Plan_Id": "fd500458-c24c-478e-856c-a6067a8376cd", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for DOD (AR)" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office Online" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "TEAMS_AR_GCCHIGH", - "Service_Plan_Id": "9953b155-8aef-4c56-92f3-72b0487fce41", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for GCCHigh (AR)" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office Online" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Azure Advanced Threat Protection" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Flow for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR ENDPOINT" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E5 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office Online" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "PowerApps for Office 365 Plan 3" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Azure Advanced Threat Protection" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR ENDPOINT" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", - "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", - "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR ENDPOINT" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", - "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", - "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", - "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", - "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", - "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", - "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", - "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "STREAM_O365_K", - "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 K SKU" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Online Kiosk" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "DYN365_CDS_O365_F1", - "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 F1" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "CDS_O365_F1", - "Service_Plan_Id": "90db65a7-bf11-4904-a79f-ef657605145b", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_F1" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS", - "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", - "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "FORMS_PLAN_K", - "Service_Plan_Id": "f07046bd-2a3c-4b96-b0be-dea79d7cbfb8", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "KAIZALA_O365_P1", - "Service_Plan_Id": "73b2a583-6a59-42e3-8e83-54db46bc3278", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "STREAM_O365_K", - "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 K SKU" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "POWERAPPS_O365_S1", - "Service_Plan_Id": "e0287f9f-e222-4f98-9a83-f379e249159a", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 K1" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "FLOW_O365_S1", - "Service_Plan_Id": "bd91b1a4-9f94-4ecf-b45b-3a65e5c8128a", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 K1" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_F1", - "Service_Plan_Id": "ba2fdb48-290b-4632-b46a-e4ecc58ac11a", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 F1" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "PROJECT_O365_F3", - "Service_Plan_Id": "7f6f28c2-34bb-4d4b-be36-48ca2e77e1ec", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan F)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "BPOS_S_TODO_FIRSTLINE", - "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5", - "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1", - "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "WIN10_ENT_LOC_F1", - "Service_Plan_Id": "e041597c-9c7f-4ed9-99b0-2663301576f7", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise E3 (local only)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "MICROSOFT FLOW FREE", - "String_Id": "FLOW_FREE", - "GUID": "f30db892-07e9-47e9-837c-80727f46fd3d", - "Service_Plan_Name": "DYN365_CDS_VIRAL", - "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE - VIRAL" - }, - { - "Product_Display_Name": "MICROSOFT FLOW FREE", - "String_Id": "FLOW_FREE", - "GUID": "f30db892-07e9-47e9-837c-80727f46fd3d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "MICROSOFT FLOW FREE", - "String_Id": "FLOW_FREE", - "GUID": "f30db892-07e9-47e9-837c-80727f46fd3d", - "Service_Plan_Name": "FLOW_P2_VIRAL", - "Service_Plan_Id": "50e68c76-46c6-4674-81f9-75456511b170", - "Service_Plans_Included_Friendly_Names": "FLOW FREE" - }, - { - "Product_Display_Name": "MICROSOFT 365 AUDIO CONFERENCING FOR GCC", - "String_Id": "MCOMEETADV_GOV", - "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 AUDIO CONFERENCING FOR GCC", - "String_Id": "MCOMEETADV_GOV", - "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5", - "Service_Plan_Name": "MCOMEETADV_GOV", - "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 AUDIO CONFERENCING FOR GOVERNMENT" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-based classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "AAD_PREMIUM" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "RMS_S_PREMIUM" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "ADALLOM_S_DISCOVERY" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "DYN365_CDS_O365_F1", - "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f", - "Service_Plans_Included_Friendly_Names": "DYN365_CDS_O365_F1" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS", - "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", - "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_DESKLESS" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "RMS_S_ENTERPRISE" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "MFA_PREMIUM" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "MICROSOFTBOOKINGS" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "INTUNE_A" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "PROJECTWORKMANAGEMENT" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "MICROSOFT_SEARCH" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "STREAM_O365_K", - "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", - "Service_Plans_Included_Friendly_Names": "STREAM_O365_K" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "INTUNE_O365" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTDESKLESS" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "MCOIMP" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", - "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", - "Service_Plans_Included_Friendly_Names": "AZURE RIGHTS MANAGEMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "RMS_S_PREMIUM_GOV", - "Service_Plan_Id": "1b66aedf-8ca1-4f73-af76-ec76c6180f98", - "Service_Plans_Included_Friendly_Names": "AZURE RIGHTS MANAGEMENT PREMIUM FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "DYN365_CDS_O365_P2_GCC", - "Service_Plan_Id": "06162da2-ebf9-4954-99a0-00fee96f95cc", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE - O365 P2 GCC" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "CDS_O365_P2_GCC", - "Service_Plan_Id": "a70bbf38-cdda-470d-adb8-5804b8770f41", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR TEAMS_P2 GCC" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", - "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", - "Service_Plans_Included_Friendly_Names": "EXCHANGE PLAN 2G" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "FORMS_GOV_E3", - "Service_Plan_Id": "24af5f65-d0f3-467b-9f78-ea798c4aeffc", - "Service_Plans_Included_Friendly_Names": "FORMS FOR GOVERNMENT (PLAN E3)" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "CONTENT_EXPLORER", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION AND GOVERNANCE ANALYTICS – PREMIUM" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "CONTENTEXPLORER_STANDARD", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION AND GOVERNANCE ANALYTICS – STANDARD" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION FOR OFFICE 365 – STANDARD" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "MYANALYTICS_P2_GOV", - "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0", - "Service_Plans_Included_Friendly_Names": "INSIGHTS BY MYANALYTICS FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV", - "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 APPS FOR ENTERPRISE G" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "MICROSOFT Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "MICROSOFT BOOKINGS" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "STREAM_O365_E3_GOV", - "Service_Plan_Id": "2c1ada27-dbaa-46f9-bda6-ecb94445f758", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 FOR GOVERNMENT (E3)" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", - "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 PLANNER FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "OFFICE FOR THE WEB (GOVERNMENT)" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "POWERAPPS_O365_P2_GOV", - "Service_Plan_Id": "0a20c815-5e81-4727-9bdc-2b5a117850c3", - "Service_Plans_Included_Friendly_Names": "POWER APPS FOR OFFICE 365 FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "FLOW_O365_P2_GOV", - "Service_Plan_Id": "c537f360-6a00-4ace-a7f5-9128d0ac1e4b", - "Service_Plans_Included_Friendly_Names": "POWER AUTOMATE FOR OFFICE 365 FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT PLAN 2G" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2) FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM", - "String_Id": "MCOEV", - "GUID": "e43b5b99-8dfb-405f-9987-dc307f34bcbd", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR DOD", - "String_Id": "MCOEV_DOD", - "GUID": "d01d9287-694b-44f3-bcc5-ada78c8d953e", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR FACULTY", - "String_Id": "MCOEV_FACULTY", - "GUID": "d979703c-028d-4de5-acbf-7955566b69b9", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTE" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR GCC", - "String_Id": "MCOEV_GOV", - "GUID": "a460366a-ade7-4791-b581-9fbff1bdaa85", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR GCC", - "String_Id": "MCOEV_GOV", - "GUID": "a460366a-ade7-4791-b581-9fbff1bdaa85", - "Service_Plan_Name": "MCOEV_GOV", - "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR GCCHIGH", - "String_Id": "MCOEV_GCCHIGH", - "GUID": "7035277a-5e49-4abc-a24f-0ec49c501bb5", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR SMALL AND MEDIUM BUSINESS", - "String_Id": "MCOEVSMB_1", - "GUID": "aa6791d3-bb09-4bc2-afed-c30c3fe26032", - "Service_Plan_Name": "MCOEVSMB", - "Service_Plan_Id": "ed777b71-af04-42ca-9798-84344c66f7c6", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS CLOUD PBX FOR SMALL AND MEDIUM BUSINESS" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR STUDENTS", - "String_Id": "MCOEV_STUDENT", - "GUID": "1f338bbc-767e-4a1e-a2d4-b73207cc5b93", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR TELSTRA", - "String_Id": "MCOEV_TELSTRA", - "GUID": "ffaf2d68-1c95-4eb3-9ddd-59b81fba0f61", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM_USGOV_DOD", - "String_Id": "MCOEV_USGOV_DOD", - "GUID": "b0e7de67-e503-4934-b729-53d595ba5cd1", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM_USGOV_GCCHIGH", - "String_Id": "MCOEV_USGOV_GCCHIGH", - "GUID": "985fcb26-7b94-475b-b512-89356697be71", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM - VIRTUAL USER", - "String_Id": "PHONESYSTEM_VIRTUALUSER", - "GUID": "440eaaa8-b3e0-484b-a8be-62870b9ba70a", - "Service_Plan_Name": "MCOEV_VIRTUALUSER", - "Service_Plan_Id": "f47330e9-c134-43b3-9993-e7f004506889", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM VIRTUAL USER" - }, - { - "Product_Display_Name": "Microsoft 365 Phone System - Virtual User for GCC", - "String_Id": "PHONESYSTEM_VIRTUALUSER_GOV", - "GUID": "2cf22bcb-0c9e-4bc6-8daf-7e7654c0f285", - "Service_Plan_Name": "MCOEV_VIRTUALUSER_GOV", - "Service_Plan_Id": "0628a73f-3b4a-4989-bd7b-0f8823144313", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System Virtual User for Government" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "BPOS_S_DlpAddOn", - "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed", - "Service_Plans_Included_Friendly_Names": "Data Loss Prevention" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", - "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", - "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving for Exchange Online" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Premium" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Premium" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "M365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender For Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-based classification" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "MICROSOFT BUSINESS CENTER", - "String_Id": "MICROSOFT_BUSINESS_CENTER", - "GUID": "726a0894-2c77-4d65-99da-9775ef05aad1", - "Service_Plan_Name": "MICROSOFT_BUSINESS_CENTER", - "Service_Plan_Id": "cca845f9-fd51-4df6-b563-976a37c56ce0", - "Service_Plans_Included_Friendly_Names": "MICROSOFT BUSINESS CENTER" - }, - { - "Product_Display_Name": "Microsoft Cloud App Security", - "String_Id": "ADALLOM_STANDALONE", - "GUID": "df845ce7-05f9-4894-b5f2-11bbfbcfd2b6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Cloud App Security", - "String_Id": "ADALLOM_STANDALONE", - "GUID": "df845ce7-05f9-4894-b5f2-11bbfbcfd2b6", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" - }, - { - "Product_Display_Name": "MICROSOFT DEFENDER FOR ENDPOINT", - "String_Id": "WIN_DEF_ATP", - "GUID": "111046dd-295b-4d6d-9724-d52ac90bd1f2", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "MICROSOFT DEFENDER FOR ENDPOINT", - "String_Id": "WIN_DEF_ATP", - "GUID": "111046dd-295b-4d6d-9724-d52ac90bd1f2", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR ENDPOINT" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint Server", - "String_Id": "MDATP_Server", - "GUID": "509e8ab6-0274-4cda-bcbd-bd164fd562c4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint Server", - "String_Id": "MDATP_Server", - "GUID": "509e8ab6-0274-4cda-bcbd-bd164fd562c4", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE BASIC", - "String_Id": "CRMPLAN2", - "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE BASIC", - "String_Id": "CRMPLAN2", - "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE BASIC", - "String_Id": "CRMPLAN2", - "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657", - "Service_Plan_Name": "CRMPLAN2", - "Service_Plan_Id": "bf36ca64-95c6-4918-9275-eb9f4ce2c04f", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DYNAMICS CRM ONLINE BASIC" - }, - { - "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE BASIC", - "String_Id": "CRMPLAN2", - "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Microsoft Defender for Identity", - "String_Id": "ATA", - "GUID": "98defdf7-f6c1-44f5-a1f6-943b6764e7a5", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Defender for Identity", - "String_Id": "ATA", - "GUID": "98defdf7-f6c1-44f5-a1f6-943b6764e7a5", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft Defender for Identity", - "String_Id": "ATA", - "GUID": "98defdf7-f6c1-44f5-a1f6-943b6764e7a5", - "Service_Plan_Name": "ADALLOM_FOR_AATP", - "Service_Plan_Id": "61d18b02-6889-479f-8f36-56e6e0fe5792", - "Service_Plans_Included_Friendly_Names": "SecOps Investigation for MDI" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2) GCC", - "String_Id": "THREAT_INTELLIGENCE_GOV", - "GUID": "56a59ffb-9df1-421b-9e61-8b568583474d", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2) GCC", - "String_Id": "THREAT_INTELLIGENCE_GOV", - "GUID": "56a59ffb-9df1-421b-9e61-8b568583474d", - "Service_Plan_Name": "ATP_ENTERPRISE_GOV", - "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2) GCC", - "String_Id": "THREAT_INTELLIGENCE_GOV", - "GUID": "56a59ffb-9df1-421b-9e61-8b568583474d", - "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV", - "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2) for Government" - }, - { - "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE", - "String_Id": "CRMSTANDARD", - "GUID": "d17b27af-3f49-4822-99f9-56a661538792", - "Service_Plan_Name": "CRMSTANDARD", - "Service_Plan_Id": "f9646fb2-e3b2-4309-95de-dc4833737456", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DYNAMICS CRM ONLINE PROFESSIONA" - }, - { - "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE", - "String_Id": "CRMSTANDARD", - "GUID": "d17b27af-3f49-4822-99f9-56a661538792", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE", - "String_Id": "CRMSTANDARD", - "GUID": "d17b27af-3f49-4822-99f9-56a661538792", - "Service_Plan_Name": "MDM_SALES_COLLABORATION", - "Service_Plan_Id": "3413916e-ee66-4071-be30-6f94d4adfeda", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DYNAMICS MARKETING SALES COLLABORATION - ELIGIBILITY CRITERIA APPLY" - }, - { - "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE", - "String_Id": "CRMSTANDARD", - "GUID": "d17b27af-3f49-4822-99f9-56a661538792", - "Service_Plan_Name": "NBPROFESSIONALFORCRM", - "Service_Plan_Id": "3e58e97c-9abe-ebab-cd5f-d543d1529634", - "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT PROFESSIONAL - ELIGIBILITY CRITERIA APPLY" - }, - { - "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE", - "String_Id": "CRMSTANDARD", - "GUID": "d17b27af-3f49-4822-99f9-56a661538792", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "MS IMAGINE ACADEMY", - "String_Id": "IT_ACADEMY_AD", - "GUID": "ba9a34de-4489-469d-879c-0f0f145321cd", - "Service_Plan_Name": "IT_ACADEMY_AD", - "Service_Plan_Id": "d736def0-1fde-43f0-a5be-e3f8b2de6e41", - "Service_Plans_Included_Friendly_Names": "MS IMAGINE ACADEMY" - }, - { - "Product_Display_Name": "Microsoft Intune Device", - "String_Id": "INTUNE_A_D", - "GUID": "2b317a4a-77a6-4188-9437-b68a77b4e2c6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Intune Device", - "String_Id": "INTUNE_A_D", - "GUID": "2b317a4a-77a6-4188-9437-b68a77b4e2c6", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "MICROSOFT INTUNE DEVICE FOR GOVERNMENT", - "String_Id": "INTUNE_A_D_GOV", - "GUID": "2c21e77a-e0d6-4570-b38a-7ff2dc17d2ca", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "MICROSOFT INTUNE DEVICE FOR GOVERNMENT", - "String_Id": "INTUNE_A_D_GOV", - "GUID": "2c21e77a-e0d6-4570-b38a-7ff2dc17d2ca", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", - "String_Id": "POWERAPPS_VIRAL", - "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", - "Service_Plan_Name": "DYN365_CDS_VIRAL", - "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0", - "Service_Plans_Included_Friendly_Names": "Common Data Service – VIRAL" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", - "String_Id": "POWERAPPS_VIRAL", - "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", - "String_Id": "POWERAPPS_VIRAL", - "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", - "Service_Plan_Name": "FLOW_P2_VIRAL", - "Service_Plan_Id": "50e68c76-46c6-4674-81f9-75456511b170", - "Service_Plans_Included_Friendly_Names": "Flow Free" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", - "String_Id": "POWERAPPS_VIRAL", - "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", - "Service_Plan_Name": "FLOW_P2_VIRAL_REAL", - "Service_Plan_Id": "d20bfa21-e9ae-43fc-93c2-20783f0840c3", - "Service_Plans_Included_Friendly_Names": "Flow P2 Viral" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", - "String_Id": "POWERAPPS_VIRAL", - "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", - "Service_Plan_Name": "POWERAPPS_P2_VIRAL", - "Service_Plan_Id": "d5368ca3-357e-4acb-9c21-8495fb025d1f", - "Service_Plans_Included_Friendly_Names": "PowerApps Trial" - }, - { - "Product_Display_Name": "MICROSOFT POWER AUTOMATE PLAN 2", - "String_Id": "FLOW_P2", - "GUID": "4755df59-3f73-41ab-a249-596ad72b5504", - "Service_Plan_Name": "DYN365_CDS_P2", - "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", - "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" - }, - { - "Product_Display_Name": "MICROSOFT POWER AUTOMATE PLAN 2", - "String_Id": "FLOW_P2", - "GUID": "4755df59-3f73-41ab-a249-596ad72b5504", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "MICROSOFT POWER AUTOMATE PLAN 2", - "String_Id": "FLOW_P2", - "GUID": "4755df59-3f73-41ab-a249-596ad72b5504", - "Service_Plan_Name": "FLOW_P2", - "Service_Plan_Id": "56be9436-e4b2-446c-bb7f-cc15d16cca4d", - "Service_Plans_Included_Friendly_Names": "Power Automate (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT INTUNE SMB", - "String_Id": "INTUNE_SMB", - "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958", - "Service_Plan_Name": "AAD_SMB", - "Service_Plan_Id": "de377cbc-0019-4ec2-b77c-3f223947e102", - "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY" - }, - { - "Product_Display_Name": "MICROSOFT INTUNE SMB", - "String_Id": "INTUNE_SMB", - "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "MICROSOFT INTUNE SMB", - "String_Id": "INTUNE_SMB", - "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958", - "Service_Plan_Name": "INTUNE_SMBIZ", - "Service_Plan_Id": "8e9ff0ff-aa7a-4b20-83c1-2f636b600ac2", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "MICROSOFT INTUNE SMB", - "String_Id": "INTUNE_SMB", - "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)", - "String_Id": "POWERFLOW_P2", - "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b", - "Service_Plan_Name": "DYN365_CDS_P2", - "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", - "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)", - "String_Id": "POWERFLOW_P2", - "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)", - "String_Id": "POWERFLOW_P2", - "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b", - "Service_Plan_Name": "POWERAPPS_P2", - "Service_Plan_Id": "00527d7f-d5bc-4c2a-8d1e-6c0de2410c81", - "Service_Plans_Included_Friendly_Names": "Power Apps (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)", - "String_Id": "POWERFLOW_P2", - "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b", - "Service_Plan_Name": "FLOW_P2", - "Service_Plan_Id": "56be9436-e4b2-446c-bb7f-cc15d16cca4d", - "Service_Plans_Included_Friendly_Names": "Power Automate (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT STREAM", - "String_Id": "STREAM", - "GUID": "1f2f344a-700d-42c9-9427-5cea1d5d7ba6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "MICROSOFT STREAM", - "String_Id": "STREAM", - "GUID": "1f2f344a-700d-42c9-9427-5cea1d5d7ba6", - "Service_Plan_Name": "MICROSOFTSTREAM", - "Service_Plan_Id": "acffdce6-c30f-4dc2-81c0-372e33c515ec", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM" - }, - { - "Product_Display_Name": "Microsoft Stream Plan 2", - "String_Id": "STREAM_P2", - "GUID": "ec156933-b85b-4c50-84ec-c9e5603709ef", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Stream Plan 2", - "String_Id": "STREAM_P2", - "GUID": "ec156933-b85b-4c50-84ec-c9e5603709ef", - "Service_Plan_Name": "STREAM_P2", - "Service_Plan_Id": "d3a458d0-f10d-48c2-9e44-86f3f684029e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream Plan 2" - }, - { - "Product_Display_Name": "Microsoft Stream Storage Add-On (500 GB)", - "String_Id": "STREAM_STORAGE", - "GUID": "9bd7c846-9556-4453-a542-191d527209e8", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Stream Storage Add-On (500 GB)", - "String_Id": "STREAM_STORAGE", - "GUID": "9bd7c846-9556-4453-a542-191d527209e8", - "Service_Plan_Name": "STREAM_STORAGE", - "Service_Plan_Id": "83bced11-77ce-4071-95bd-240133796768", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream Storage Add-On" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS (FREE)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS (FREE)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "MCOFREE", - "Service_Plan_Id": "617d9209-3b90-4879-96e6-838c42b2701d", - "Service_Plans_Included_Friendly_Names": "MCO FREE FOR MICROSOFT TEAMS (FREE)" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS (FREE)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "TEAMS_FREE", - "Service_Plan_Id": "4fa4026d-ce74-4962-a151-8e96d57ea8e4", - "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS (FREE)" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS (FREE)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT KIOSK" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS (FREE)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "TEAMS_FREE_SERVICE", - "Service_Plan_Id": "bd6f2ac2-991a-49f9-b23c-18c96a02c228", - "Service_Plans_Included_Friendly_Names": "TEAMS FREE SERVICE" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS (FREE)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1", - "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3", - "Service_Plans_Included_Friendly_Names": "WHITEBOARD (FIRSTLINE)" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "CDS_O365_P1", - "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR TEAMS_P1" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "INSIGHTS BY MYANALYTICS" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNER" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "MICROSOFT SEARCH" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "DESKLESS", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "STREAM_O365_E1", - "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E1 SKU" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "MCO_TEAMS_IW", - "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b", - "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "MOBILE DEVICE MANAGEMENT FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE FOR THE WEB" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "OFFICE MOBILE APPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWER APPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "POWER AUTOMATE FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1", - "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813", - "Service_Plans_Included_Friendly_Names": "POWER VIRTUAL AGENTS FOR OFFICE 365 P1" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT STANDARD" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "WHITEBOARD (PLAN 1)" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER ENTERPRIS" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "MCO_TEAMS_IW", - "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft Threat Experts - Experts on Demand", - "String_Id": "EXPERTS_ON_DEMAND", - "GUID": "9fa2f157-c8e4-4351-a3f2-ffa506da1406", - "Service_Plan_Name": "EXPERTS_ON_DEMAND", - "Service_Plan_Id": "b83a66d4-f05f-414d-ac0f-ea1c5239c42b", - "Service_Plans_Included_Friendly_Names": "Microsoft Threat Experts - Experts on Demand" - }, - { - "Product_Display_Name": "Multi-Geo Capabilities in Office 365", - "String_Id": "OFFICE365_MULTIGEO", - "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607", - "Service_Plan_Name": "EXCHANGEONLINE_MULTIGEO", - "Service_Plan_Id": "897d51f1-2cfa-4848-9b30-469149f5e68e", - "Service_Plans_Included_Friendly_Names": "Exchange Online Multi-Geo" - }, - { - "Product_Display_Name": "Multi-Geo Capabilities in Office 365", - "String_Id": "OFFICE365_MULTIGEO", - "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607", - "Service_Plan_Name": "SHAREPOINTONLINE_MULTIGEO", - "Service_Plan_Id": "735c1d98-dd3f-4818-b4ed-c8052e18e62d", - "Service_Plans_Included_Friendly_Names": "SharePoint Multi-Geo" - }, - { - "Product_Display_Name": "Multi-Geo Capabilities in Office 365", - "String_Id": "OFFICE365_MULTIGEO", - "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607", - "Service_Plan_Name": "TEAMSMULTIGEO", - "Service_Plan_Id": "41eda15d-6b52-453b-906f-bc4a5b25a26b", - "Service_Plans_Included_Friendly_Names": "Teams Multi-Geo" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "MMR_P1", - "Service_Plan_Id": "bdaa59a3-74fd-4137-981a-31d4f84eb8a0", - "Service_Plans_Included_Friendly_Names": "Meeting Room Managed Services" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the web (Education)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P2" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P2" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Flow for Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_3", - "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E5 SKU" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the web (Education)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "PowerApps for Office 365 Plan 3" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Flow for Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_3", - "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E5 SKU" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the web (Education)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "PowerApps for Office 365 Plan 3" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 1)", - "String_Id": "ATP_ENTERPRISE", - "GUID": "4ef96642-f096-40de-a3e9-d83fb2f90211", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 Extra File Storage for GCC", - "String_Id": "SHAREPOINTSTORAGE_GOV", - "GUID": "e5788282-6381-469f-84f0-3d7d4021d34d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_FOUNDATION_GOV" - }, - { - "Product_Display_Name": "Office 365 Extra File Storage for GCC", - "String_Id": "SHAREPOINTSTORAGE_GOV", - "GUID": "e5788282-6381-469f-84f0-3d7d4021d34d", - "Service_Plan_Name": "SHAREPOINTSTORAGE_GOV", - "Service_Plan_Id": "e5bb877f-6ac9-4461-9e43-ca581543ab16", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTORAGE_GOV" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "CDS_O365_P1", - "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P1" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "STREAM_O365_E1", - "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E1 SKU" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "MCO_TEAMS_IW", - "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1", - "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P1" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Office 365 Cloud App Security", - "String_Id": "ADALLOM_O365", - "GUID": "84d5f90f-cd0d-4864-b90b-1c7ba63b4808", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Office 365 Cloud App Security", - "String_Id": "ADALLOM_O365", - "GUID": "84d5f90f-cd0d-4864-b90b-1c7ba63b4808", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Office 365 Extra File Storage", - "String_Id": "SHAREPOINTSTORAGE", - "GUID": "99049c9c-6011-4908-bf17-15f496e6519d", - "Service_Plan_Name": "SHAREPOINTSTORAGE", - "Service_Plan_Id": "be5a7ed5-c598-4fcd-a061-5e6724c68a58", - "Service_Plans_Included_Friendly_Names": "Office 365 Extra File Storage" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_1" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "OFFICEMOBILE_SUBSCRIPTION" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNER" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "STREAM_O365_E1", - "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E1 SKU" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE " - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_1" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "STREAM_O365_E1", - "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E1 SKU" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "FORMS_PLAN_E3", - "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P2" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_3" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E5)" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 36" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "SHAREPOINT_S_DEVELOPER", - "Service_Plan_Id": "a361d6e2-509e-4e25-a8ad-950060064ef4", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT FOR DEVELOPER" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "SHAREPOINTWAC_DEVELOPER", - "Service_Plan_Id": "527f7cdd-0e86-4c47-b879-f5fd357a3ac6", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE FOR DEVELOPER" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E5 SKU" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "TEAMS_AR_DOD", - "Service_Plan_Id": "fd500458-c24c-478e-856c-a6067a8376cd", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for DOD (AR)" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office Online" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "TEAMS_AR_GCCHIGH", - "Service_Plan_Id": "9953b155-8aef-4c56-92f3-72b0487fce41", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for GCCHigh (AR)" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office Online" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_2" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "FORMS_PLAN_E3", - "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E3)" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "MCOVOICECONF", - "Service_Plan_Id": "27216c54-caf8-4d0d-97e2-517afb5c08f6", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 3)" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 36" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E3 SKU" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P3" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P3" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Premium" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Premium" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "M365 Communication Compliance" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E5 SKU" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P3" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "PowerApps for Office 365 Plan 3" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 CLOUD APP SECURITY" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "POWER BI PRO" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_3" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 ADVANCED EDISCOVERY" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "EXCHANGE_ANALYTICS" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E5)" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "LOCKBOX_ENTERPRISE" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "PHONE SYSTEM" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E5 SKU" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 ADVANCED THREAT PROTECTION (PLAN 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "DYN365_CDS_O365_F1", - "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 F1" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "CDS_O365_F1", - "Service_Plan_Id": "90db65a7-bf11-4904-a79f-ef657605145b", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_F1" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS", - "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", - "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "FORMS_PLAN_K", - "Service_Plan_Id": "f07046bd-2a3c-4b96-b0be-dea79d7cbfb8", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1)" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "KAIZALA_O365_P1", - "Service_Plan_Id": "73b2a583-6a59-42e3-8e83-54db46bc3278", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 1" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "STREAM_O365_K", - "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 F3" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "POWERAPPS_O365_S1", - "Service_Plan_Id": "e0287f9f-e222-4f98-9a83-f379e249159a", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "FLOW_O365_S1", - "Service_Plan_Id": "bd91b1a4-9f94-4ecf-b45b-3a65e5c8128a", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_F1", - "Service_Plan_Id": "ba2fdb48-290b-4632-b46a-e4ecc58ac11a", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 F1" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "PROJECT_O365_F3", - "Service_Plan_Id": "7f6f28c2-34bb-4d4b-be36-48ca2e77e1ec", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan F)" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "BPOS_S_TODO_FIRSTLINE", - "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5", - "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1", - "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", - "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", - "Service_Plans_Included_Friendly_Names": "AZURE RIGHTS MANAGEMENT" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "DYN365_CDS_O365_P2_GCC", - "Service_Plan_Id": "06162da2-ebf9-4954-99a0-00fee96f95cc", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE - O365 P2 GCC" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "CDS_O365_P2_GCC", - "Service_Plan_Id": "a70bbf38-cdda-470d-adb8-5804b8770f41", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR TEAMS_P2 GCC" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", - "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", - "Service_Plans_Included_Friendly_Names": "EXCHANGE PLAN 2G" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "FORMS_GOV_E3", - "Service_Plan_Id": "24af5f65-d0f3-467b-9f78-ea798c4aeffc", - "Service_Plans_Included_Friendly_Names": "FORMS FOR GOVERNMENT (PLAN E3)" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION AND GOVERNANCE ANALYTICS – PREMIUM" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION AND GOVERNANCE ANALYTICS – STANDARD" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION FOR OFFICE 365 – STANDARD" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "MYANALYTICS_P2_GOV", - "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0", - "Service_Plans_Included_Friendly_Names": "INSIGHTS BY MYANALYTICS FOR GOVERNMENT" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV", - "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 APPS FOR ENTERPRISE G" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "MICROSOFT BOOKINGS" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "STREAM_O365_E3_GOV", - "Service_Plan_Id": "2c1ada27-dbaa-46f9-bda6-ecb94445f758", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 FOR GOVERNMENT (E3)" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS FOR GOVERNMENT" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "MOBILE DEVICE MANAGEMENT FOR OFFICE 365" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", - "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 PLANNER FOR GOVERNMENT" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "OFFICE FOR THE WEB (GOVERNMENT)" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "POWERAPPS_O365_P2_GOV", - "Service_Plan_Id": "0a20c815-5e81-4727-9bdc-2b5a117850c3", - "Service_Plans_Included_Friendly_Names": "POWER APPS FOR OFFICE 365 FOR GOVERNMENT" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "FLOW_O365_P2_GOV", - "Service_Plan_Id": "c537f360-6a00-4ace-a7f5-9128d0ac1e4b", - "Service_Plans_Included_Friendly_Names": "POWER AUTOMATE FOR OFFICE 365 FOR GOVERNMENT" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT PLAN 2G" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2) FOR GOVERNMENT" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", - "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", - "Service_Plans_Included_Friendly_Names": "RMS_S_ENTERPRISE_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "DYN365_CDS_O365_P3_GCC", - "Service_Plan_Id": "a7d3fb37-b6df-4085-b509-50810d991a39", - "Service_Plans_Included_Friendly_Names": "DYN365_CDS_O365_P3_GCC" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "CDS_O365_P3_GCC", - "Service_Plan_Id": "bce5e5ca-c2fd-4d53-8ee2-58dfffed4c10", - "Service_Plans_Included_Friendly_Names": "CDS_O365_P3_GCC" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV", - "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526", - "Service_Plans_Included_Friendly_Names": "LOCKBOX_ENTERPRISE_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", - "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", - "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_ENTERPRISE_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "FORMS_GOV_E5", - "Service_Plan_Id": "843da3a8-d2cc-4e7a-9e90-dc46019f964c", - "Service_Plans_Included_Friendly_Names": "FORMS_GOV_E5" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "INFORMATION_BARRIERS" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Content_Explorer" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "ContentExplorer_Standard" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "MIP_S_CLP2" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "MIP_S_CLP1" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "MICROSOFT_COMMUNICATION_COMPLIANCE" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "M365_ADVANCED_AUDITING" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV", - "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af", - "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MCOMEETADV_GOV", - "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", - "Service_Plans_Included_Friendly_Names": "MCOMEETADV_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "MTP" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MCOEV_GOV", - "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", - "Service_Plans_Included_Friendly_Names": "MCOEV_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "MICROSOFTBOOKINGS" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "COMMUNICATIONS_DLP" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "CUSTOMER_KEY" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "ATP_ENTERPRISE_GOV", - "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516", - "Service_Plans_Included_Friendly_Names": "ATP_ENTERPRISE_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV", - "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6", - "Service_Plans_Included_Friendly_Names": "THREAT_INTELLIGENCE_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "INFO_GOVERNANCE" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "EXCHANGE_ANALYTICS_GOV", - "Service_Plan_Id": "208120d1-9adb-4daf-8c22-816bd5d237e7", - "Service_Plans_Included_Friendly_Names": "EXCHANGE_ANALYTICS_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "RECORDS_MANAGEMENT" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "STREAM_O365_E5_GOV", - "Service_Plan_Id": "92c2089d-9a53-49fe-b1a6-9e6bdf959547", - "Service_Plans_Included_Friendly_Names": "STREAM_O365_E5_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "TEAMS_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "INTUNE_O365" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV", - "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1", - "Service_Plans_Included_Friendly_Names": "EQUIVIO_ANALYTICS_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "ADALLOM_S_O365" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", - "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", - "Service_Plans_Included_Friendly_Names": "PROJECTWORKMANAGEMENT_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTWAC_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "POWERAPPS_O365_P3_GOV", - "Service_Plan_Id": "0eacfc38-458a-40d3-9eab-9671258f1a3e", - "Service_Plans_Included_Friendly_Names": "POWERAPPS_O365_P3_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "FLOW_O365_P3_GOV", - "Service_Plan_Id": "8055d84a-c172-42eb-b997-6c2ae4628246", - "Service_Plans_Included_Friendly_Names": "FLOW_O365_P3_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "BI_AZURE_P_2_GOV", - "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76", - "Service_Plans_Included_Friendly_Names": "BI_AZURE_P_2_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "PREMIUM_ENCRYPTION" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTENTERPRISE_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "MCOSTANDARD_GOV" - }, - { - "Product_Display_Name": "OFFICE 365 MIDSIZE BUSINESS", - "String_Id": "MIDSIZEPACK", - "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", - "Service_Plan_Name": "EXCHANGE_S_STANDARD_MIDMARKET", - "Service_Plan_Id": "fc52cc4b-ed7d-472d-bbe7-b081c23ecc56", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE PLAN " - }, - { - "Product_Display_Name": "OFFICE 365 MIDSIZE BUSINESS", - "String_Id": "MIDSIZEPACK", - "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", - "Service_Plan_Name": "MCOSTANDARD_MIDMARKET", - "Service_Plan_Id": "b2669e95-76ef-4e7e-a367-002f60a39f3e", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2) FOR MIDSIZ" - }, - { - "Product_Display_Name": "OFFICE 365 MIDSIZE BUSINESS", - "String_Id": "MIDSIZEPACK", - "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION" - }, - { - "Product_Display_Name": "OFFICE 365 MIDSIZE BUSINESS", - "String_Id": "MIDSIZEPACK", - "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_MIDMARKET", - "Service_Plan_Id": "6b5b6a67-fc72-4a1f-a2b5-beecf05de761", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT PLAN 1" - }, - { - "Product_Display_Name": "OFFICE 365 MIDSIZE BUSINESS", - "String_Id": "MIDSIZEPACK", - "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "OFFICE 365 MIDSIZE BUSINESS", - "String_Id": "MIDSIZEPACK", - "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "OFFICE 365 MIDSIZE BUSINESS", - "String_Id": "MIDSIZEPACK", - "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", - "Service_Plan_Name": "YAMMER_MIDSIZE", - "Service_Plan_Id": "41bf139a-4e60-409f-9346-a1361efc6dfb", - "Service_Plans_Included_Friendly_Names": "YAMMER_MIDSIZE" - }, - { - "Product_Display_Name": "OFFICE 365 SMALL BUSINESS", - "String_Id": "LITEPACK", - "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b", - "Service_Plan_Name": "EXCHANGE_L_STANDARD", - "Service_Plan_Id": "d42bdbd6-c335-4231-ab3d-c8f348d5aff5", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (P1)" - }, - { - "Product_Display_Name": "OFFICE 365 SMALL BUSINESS", - "String_Id": "LITEPACK", - "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b", - "Service_Plan_Name": "MCOLITE", - "Service_Plan_Id": "70710b6b-3ab4-4a38-9f6d-9f169461650a", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN P1)" - }, - { - "Product_Display_Name": "OFFICE 365 SMALL BUSINESS", - "String_Id": "LITEPACK", - "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b", - "Service_Plan_Name": "SHAREPOINTLITE", - "Service_Plan_Id": "a1f3d0a8-84c0-4ae0-bae4-685917b8ab48", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTLITE" - }, - { - "Product_Display_Name": "OFFICE 365 SMALL BUSINESS", - "String_Id": "LITEPACK", - "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "OFFICE 365 SMALL BUSINESS PREMIUM", - "String_Id": "LITEPACK_P2", - "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b", - "Service_Plan_Name": "EXCHANGE_L_STANDARD", - "Service_Plan_Id": "d42bdbd6-c335-4231-ab3d-c8f348d5aff5", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (P1)" - }, - { - "Product_Display_Name": "OFFICE 365 SMALL BUSINESS PREMIUM", - "String_Id": "LITEPACK_P2", - "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b", - "Service_Plan_Name": "MCOLITE", - "Service_Plan_Id": "70710b6b-3ab4-4a38-9f6d-9f169461650a", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN P1)" - }, - { - "Product_Display_Name": "OFFICE 365 SMALL BUSINESS PREMIUM", - "String_Id": "LITEPACK_P2", - "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b", - "Service_Plan_Name": "OFFICE_PRO_PLUS_SUBSCRIPTION_SMBIZ", - "Service_Plan_Id": "8ca59559-e2ca-470b-b7dd-afd8c0dee963", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 SMALL BUSINESS SUBSCRIPTION" - }, - { - "Product_Display_Name": "OFFICE 365 SMALL BUSINESS PREMIUM", - "String_Id": "LITEPACK_P2", - "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b", - "Service_Plan_Name": "SHAREPOINTLITE", - "Service_Plan_Id": "a1f3d0a8-84c0-4ae0-bae4-685917b8ab48", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTLITE" - }, - { - "Product_Display_Name": "OFFICE 365 SMALL BUSINESS PREMIUM", - "String_Id": "LITEPACK_P2", - "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "ONEDRIVE FOR BUSINESS (PLAN 1)", - "String_Id": "WACONEDRIVESTANDARD", - "GUID": "e6778190-713e-4e4f-9119-8b8238de25df", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "ONEDRIVE FOR BUSINESS (PLAN 1)", - "String_Id": "WACONEDRIVESTANDARD", - "GUID": "e6778190-713e-4e4f-9119-8b8238de25df", - "Service_Plan_Name": "ONEDRIVESTANDARD", - "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", - "Service_Plans_Included_Friendly_Names": "ONEDRIVESTANDARD" - }, - { - "Product_Display_Name": "ONEDRIVE FOR BUSINESS (PLAN 1)", - "String_Id": "WACONEDRIVESTANDARD", - "GUID": "e6778190-713e-4e4f-9119-8b8238de25df", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "ONEDRIVE FOR BUSINESS (PLAN 1)", - "String_Id": "WACONEDRIVESTANDARD", - "GUID": "e6778190-713e-4e4f-9119-8b8238de25df", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "ONEDRIVE FOR BUSINESS (PLAN 2)", - "String_Id": "WACONEDRIVEENTERPRISE", - "GUID": "ed01faf2-1d88-4947-ae91-45ca18703a96", - "Service_Plan_Name": "ONEDRIVEENTERPRISE", - "Service_Plan_Id": "afcafa6a-d966-4462-918c-ec0b4e0fe642", - "Service_Plans_Included_Friendly_Names": "ONEDRIVEENTERPRISE" - }, - { - "Product_Display_Name": "ONEDRIVE FOR BUSINESS (PLAN 2)", - "String_Id": "WACONEDRIVEENTERPRISE", - "GUID": "ed01faf2-1d88-4947-ae91-45ca18703a96", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "POWERAPPS AND LOGIC FLOWS", - "String_Id": "POWERAPPS_INDIVIDUAL_USER", - "GUID": "87bbbc60-4754-4998-8c88-227dca264858", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "POWERAPPS AND LOGIC FLOWS", - "String_Id": "POWERAPPS_INDIVIDUAL_USER", - "GUID": "87bbbc60-4754-4998-8c88-227dca264858", - "Service_Plan_Name": "POWERFLOWSFREE", - "Service_Plan_Id": "0b4346bb-8dc3-4079-9dfc-513696f56039", - "Service_Plans_Included_Friendly_Names": "LOGIC FLOWS" - }, - { - "Product_Display_Name": "POWERAPPS AND LOGIC FLOWS", - "String_Id": "POWERAPPS_INDIVIDUAL_USER", - "GUID": "87bbbc60-4754-4998-8c88-227dca264858", - "Service_Plan_Name": "POWERVIDEOSFREE", - "Service_Plan_Id": "2c4ec2dc-c62d-4167-a966-52a3e6374015", - "Service_Plans_Included_Friendly_Names": "MICROSOFT POWER VIDEOS BASIC" - }, - { - "Product_Display_Name": "POWERAPPS AND LOGIC FLOWS", - "String_Id": "POWERAPPS_INDIVIDUAL_USER", - "GUID": "87bbbc60-4754-4998-8c88-227dca264858", - "Service_Plan_Name": "POWERAPPSFREE", - "Service_Plan_Id": "e61a2945-1d4e-4523-b6e7-30ba39d20f32", - "Service_Plans_Included_Friendly_Names": "MICROSOFT POWERAPPS" - }, - { - "Product_Display_Name": "PowerApps per app baseline access", - "String_Id": "POWERAPPS_PER_APP_IW", - "GUID": "bf666882-9c9b-4b2e-aa2f-4789b0a52ba2", - "Service_Plan_Name": "CDS_PER_APP_IWTRIAL", - "Service_Plan_Id": "94a669d1-84d5-4e54-8462-53b0ae2c8be5", - "Service_Plans_Included_Friendly_Names": "CDS Per app baseline access" - }, - { - "Product_Display_Name": "PowerApps per app baseline access", - "String_Id": "POWERAPPS_PER_APP_IW", - "GUID": "bf666882-9c9b-4b2e-aa2f-4789b0a52ba2", - "Service_Plan_Name": "Flow_Per_APP_IWTRIAL", - "Service_Plan_Id": "dd14867e-8d31-4779-a595-304405f5ad39", - "Service_Plans_Included_Friendly_Names": "Flow per app baseline access" - }, - { - "Product_Display_Name": "PowerApps per app baseline access", - "String_Id": "POWERAPPS_PER_APP_IW", - "GUID": "bf666882-9c9b-4b2e-aa2f-4789b0a52ba2", - "Service_Plan_Name": "POWERAPPS_PER_APP_IWTRIAL", - "Service_Plan_Id": "35122886-cef5-44a3-ab36-97134eabd9ba", - "Service_Plans_Included_Friendly_Names": "PowerApps per app baseline access" - }, - { - "Product_Display_Name": "Power Apps per app plan", - "String_Id": "POWERAPPS_PER_APP", - "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206", - "Service_Plan_Name": "CDS_PER_APP", - "Service_Plan_Id": "9f2f00ad-21ae-4ceb-994b-d8bc7be90999", - "Service_Plans_Included_Friendly_Names": "CDS PowerApps per app plan" - }, - { - "Product_Display_Name": "Power Apps per app plan", - "String_Id": "POWERAPPS_PER_APP", - "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Apps per app plan", - "String_Id": "POWERAPPS_PER_APP", - "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206", - "Service_Plan_Name": "POWERAPPS_PER_APP", - "Service_Plan_Id": "b4f657ff-d83e-4053-909d-baa2b595ec97", - "Service_Plans_Included_Friendly_Names": "Power Apps per App Plan" - }, - { - "Product_Display_Name": "Power Apps per app plan", - "String_Id": "POWERAPPS_PER_APP", - "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206", - "Service_Plan_Name": "Flow_Per_APP", - "Service_Plan_Id": "c539fa36-a64e-479a-82e1-e40ff2aa83ee", - "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per App Plan" - }, - { - "Product_Display_Name": "Power Apps per user plan", - "String_Id": "POWERAPPS_PER_USER", - "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579", - "Service_Plan_Name": "DYN365_CDS_P2", - "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", - "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" - }, - { - "Product_Display_Name": "Power Apps per user plan", - "String_Id": "POWERAPPS_PER_USER", - "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Apps per user plan", - "String_Id": "POWERAPPS_PER_USER", - "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579", - "Service_Plan_Name": "POWERAPPS_PER_USER", - "Service_Plan_Id": "ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86", - "Service_Plans_Included_Friendly_Names": "Power Apps per User Plan" - }, - { - "Product_Display_Name": "Power Apps per user plan", - "String_Id": "POWERAPPS_PER_USER", - "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579", - "Service_Plan_Name": "Flow_PowerApps_PerUser", - "Service_Plan_Id": "dc789ed8-0170-4b65-a415-eb77d5bb350a", - "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per User Plan" - }, - { - "Product_Display_Name": "Power Automate per flow plan", - "String_Id": "FLOW_BUSINESS_PROCESS", - "GUID": "b3a42176-0a8c-4c3f-ba4e-f2b37fe5be6b", - "Service_Plan_Name": "CDS_Flow_Business_Process", - "Service_Plan_Id": "c84e52ae-1906-4947-ac4d-6fb3e5bf7c2e", - "Service_Plans_Included_Friendly_Names": "Common data service for Flow per business process plan" - }, - { - "Product_Display_Name": "Power Automate per flow plan", - "String_Id": "FLOW_BUSINESS_PROCESS", - "GUID": "b3a42176-0a8c-4c3f-ba4e-f2b37fe5be6b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Automate per flow plan", - "String_Id": "FLOW_BUSINESS_PROCESS", - "GUID": "b3a42176-0a8c-4c3f-ba4e-f2b37fe5be6b", - "Service_Plan_Name": "FLOW_BUSINESS_PROCESS", - "Service_Plan_Id": "7e017b61-a6e0-4bdc-861a-932846591f6e", - "Service_Plans_Included_Friendly_Names": "Flow per business process plan" - }, - { - "Product_Display_Name": "Power Automate per user plan", - "String_Id": "FLOW_PER_USER", - "GUID": "4a51bf65-409c-4a91-b845-1121b571cc9d", - "Service_Plan_Name": "DYN365_CDS_P2", - "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", - "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" - }, - { - "Product_Display_Name": "Power Automate per user plan", - "String_Id": "FLOW_PER_USER", - "GUID": "4a51bf65-409c-4a91-b845-1121b571cc9d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Automate per user plan", - "String_Id": "FLOW_PER_USER", - "GUID": "4a51bf65-409c-4a91-b845-1121b571cc9d", - "Service_Plan_Name": "FLOW_PER_USER", - "Service_Plan_Id": "c5002c70-f725-4367-b409-f0eff4fee6c0", - "Service_Plans_Included_Friendly_Names": "Flow per user plan" - }, - { - "Product_Display_Name": "Power Automate per user plan dept", - "String_Id": "FLOW_PER_USER_DEPT", - "GUID": "d80a4c5d-8f05-4b64-9926-6574b9e6aee4", - "Service_Plan_Name": "DYN365_CDS_P2", - "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", - "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" - }, - { - "Product_Display_Name": "Power Automate per user plan dept", - "String_Id": "FLOW_PER_USER_DEPT", - "GUID": "d80a4c5d-8f05-4b64-9926-6574b9e6aee4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Automate per user plan dept", - "String_Id": "FLOW_PER_USER_DEPT", - "GUID": "d80a4c5d-8f05-4b64-9926-6574b9e6aee4", - "Service_Plan_Name": "FLOW_PER_USER", - "Service_Plan_Id": "c5002c70-f725-4367-b409-f0eff4fee6c0", - "Service_Plans_Included_Friendly_Names": "Flow per user plan" - }, - { - "Product_Display_Name": "Power Automate per user with attended RPA plan", - "String_Id": "POWERAUTOMATE_ATTENDED_RPA", - "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9", - "Service_Plan_Name": "CDS_ATTENDED_RPA", - "Service_Plan_Id": "3da2fd4c-1bee-4b61-a17f-94c31e5cab93", - "Service_Plans_Included_Friendly_Names": "Common Data Service Attended RPA" - }, - { - "Product_Display_Name": "Power Automate per user with attended RPA plan", - "String_Id": "POWERAUTOMATE_ATTENDED_RPA", - "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Automate per user with attended RPA plan", - "String_Id": "POWERAUTOMATE_ATTENDED_RPA", - "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9", - "Service_Plan_Name": "POWER_AUTOMATE_ATTENDED_RPA", - "Service_Plan_Id": "375cd0ad-c407-49fd-866a-0bff4f8a9a4d", - "Service_Plans_Included_Friendly_Names": "Power Automate RPA Attended" - }, - { - "Product_Display_Name": "Power Automate unattended RPA add-on", - "String_Id": "POWERAUTOMATE_UNATTENDED_RPA", - "GUID": "3539d28c-6e35-4a30-b3a9-cd43d5d3e0e2", - "Service_Plan_Name": "CDS_UNATTENDED_RPA", - "Service_Plan_Id": "b475952f-128a-4a44-b82a-0b98a45ca7fb", - "Service_Plans_Included_Friendly_Names": "Common Data Service Unattended RPA" - }, - { - "Product_Display_Name": "Power Automate unattended RPA add-on", - "String_Id": "POWERAUTOMATE_UNATTENDED_RPA", - "GUID": "3539d28c-6e35-4a30-b3a9-cd43d5d3e0e2", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Automate unattended RPA add-on", - "String_Id": "POWERAUTOMATE_UNATTENDED_RPA", - "GUID": "3539d28c-6e35-4a30-b3a9-cd43d5d3e0e2", - "Service_Plan_Name": "POWER_AUTOMATE_UNATTENDED_RPA", - "Service_Plan_Id": "0d373a98-a27a-426f-8993-f9a425ae99c5", - "Service_Plans_Included_Friendly_Names": "Power Automate Unattended RPA add-on" - }, - { - "Product_Display_Name": "Power BI", - "String_Id": "POWER_BI_INDIVIDUAL_USER", - "GUID": "e2767865-c3c9-4f09-9f99-6eee6eef861a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI", - "String_Id": "POWER_BI_INDIVIDUAL_USER", - "GUID": "e2767865-c3c9-4f09-9f99-6eee6eef861a", - "Service_Plan_Name": "SQL_IS_SSIM", - "Service_Plan_Id": "fc0a60aa-feee-4746-a0e3-aecfe81a38dd", - "Service_Plans_Included_Friendly_Names": "Microsoft Power BI Information Services Plan 1" - }, - { - "Product_Display_Name": "Power BI", - "String_Id": "POWER_BI_INDIVIDUAL_USER", - "GUID": "e2767865-c3c9-4f09-9f99-6eee6eef861a", - "Service_Plan_Name": "BI_AZURE_P1", - "Service_Plan_Id": "2125cfd7-2110-4567-83c4-c1cd5275163d", - "Service_Plans_Included_Friendly_Names": "Microsoft Power BI Reporting and Analytics Plan 1" - }, - { - "Product_Display_Name": "Power BI (free)", - "String_Id": "POWER_BI_STANDARD", - "GUID": "a403ebcc-fae0-4ca2-8c8c-7a907fd6c235", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI (free)", - "String_Id": "POWER_BI_STANDARD", - "GUID": "a403ebcc-fae0-4ca2-8c8c-7a907fd6c235", - "Service_Plan_Name": "BI_AZURE_P0", - "Service_Plan_Id": "2049e525-b859-401b-b2a0-e0a31c4b1fe4", - "Service_Plans_Included_Friendly_Names": "Power BI (free)" - }, - { - "Product_Display_Name": "POWER BI FOR OFFICE 365 ADD-ON", - "String_Id": "POWER_BI_ADDON", - "GUID": "45bc2c81-6072-436a-9b0b-3b12eefbc402", - "Service_Plan_Name": "BI_AZURE_P1", - "Service_Plan_Id": "2125cfd7-2110-4567-83c4-c1cd5275163d", - "Service_Plans_Included_Friendly_Names": "MICROSOFT POWER BI REPORTING AND ANALYTICS PLAN 1" - }, - { - "Product_Display_Name": "POWER BI FOR OFFICE 365 ADD-ON", - "String_Id": "POWER_BI_ADDON", - "GUID": "45bc2c81-6072-436a-9b0b-3b12eefbc402", - "Service_Plan_Name": "SQL_IS_SSIM", - "Service_Plan_Id": "fc0a60aa-feee-4746-a0e3-aecfe81a38dd", - "Service_Plans_Included_Friendly_Names": "MICROSOFT POWER BI INFORMATION SERVICES PLAN " - }, - { - "Product_Display_Name": "Power BI Premium P1", - "String_Id": "PBI_PREMIUM_P1_ADDON", - "GUID": "7b26f5ab-a763-4c00-a1ac-f6c4b5506945", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Premium P1", - "String_Id": "PBI_PREMIUM_P1_ADDON", - "GUID": "7b26f5ab-a763-4c00-a1ac-f6c4b5506945", - "Service_Plan_Name": "PBI_PREMIUM_P1_ADDON", - "Service_Plan_Id": "9da49a6d-707a-48a1-b44a-53dcde5267f8", - "Service_Plans_Included_Friendly_Names": "Power BI Premium P" - }, - { - "Product_Display_Name": "Power BI Premium Per User", - "String_Id": "PBI_PREMIUM_PER_USER", - "GUID": "c1d032e0-5619-4761-9b5c-75b6831e1711", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Premium Per User", - "String_Id": "PBI_PREMIUM_PER_USER", - "GUID": "c1d032e0-5619-4761-9b5c-75b6831e1711", - "Service_Plan_Name": "BI_AZURE_P3", - "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c", - "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User" - }, - { - "Product_Display_Name": "Power BI Premium Per User", - "String_Id": "PBI_PREMIUM_PER_USER", - "GUID": "c1d032e0-5619-4761-9b5c-75b6831e1711", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Power BI Premium Per User Add-On", - "String_Id": "PBI_PREMIUM_PER_USER_ADDON", - "GUID": "de376a03-6e5b-42ec-855f-093fb50b8ca5", - "Service_Plan_Name": "BI_AZURE_P3", - "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c", - "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User" - }, - { - "Product_Display_Name": "Power BI Premium Per User Dept", - "String_Id": "PBI_PREMIUM_PER_USER_DEPT", - "GUID": "f168a3fb-7bcf-4a27-98c3-c235ea4b78b4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Premium Per User Dept", - "String_Id": "PBI_PREMIUM_PER_USER_DEPT", - "GUID": "f168a3fb-7bcf-4a27-98c3-c235ea4b78b4", - "Service_Plan_Name": "BI_AZURE_P3", - "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c", - "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User" - }, - { - "Product_Display_Name": "Power BI Premium Per User Dept", - "String_Id": "PBI_PREMIUM_PER_USER_DEPT", - "GUID": "f168a3fb-7bcf-4a27-98c3-c235ea4b78b4", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Power BI Pro", - "String_Id": "POWER_BI_PRO", - "GUID": "f8a1db68-be16-40ed-86d5-cb42ce701560", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Pro", - "String_Id": "POWER_BI_PRO", - "GUID": "f8a1db68-be16-40ed-86d5-cb42ce701560", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Power BI Pro CE", - "String_Id": "POWER_BI_PRO_CE", - "GUID": "420af87e-8177-4146-a780-3786adaffbca", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Pro CE", - "String_Id": "POWER_BI_PRO_CE", - "GUID": "420af87e-8177-4146-a780-3786adaffbca", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Power BI Pro Dept", - "String_Id": "POWER_BI_PRO_DEPT", - "GUID": "3a6a908c-09c5-406a-8170-8ebb63c42882", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Pro Dept", - "String_Id": "POWER_BI_PRO_DEPT", - "GUID": "3a6a908c-09c5-406a-8170-8ebb63c42882", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Power Virtual Agent", - "String_Id": "VIRTUAL_AGENT_BASE", - "GUID": "e4e55366-9635-46f4-a907-fc8c3b5ec81f", - "Service_Plan_Name": "CDS_VIRTUAL_AGENT_BASE", - "Service_Plan_Id": "0a0a23fa-fea1-4195-bb89-b4789cb12f7f", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Virtual Agent Base" - }, - { - "Product_Display_Name": "Power Virtual Agent", - "String_Id": "VIRTUAL_AGENT_BASE", - "GUID": "e4e55366-9635-46f4-a907-fc8c3b5ec81f", - "Service_Plan_Name": "FLOW_VIRTUAL_AGENT_BASE", - "Service_Plan_Id": "4b81a949-69a1-4409-ad34-9791a6ec88aa", - "Service_Plans_Included_Friendly_Names": "Power Automate for Virtual Agent" - }, - { - "Product_Display_Name": "Power Virtual Agent", - "String_Id": "VIRTUAL_AGENT_BASE", - "GUID": "e4e55366-9635-46f4-a907-fc8c3b5ec81f", - "Service_Plan_Name": "VIRTUAL_AGENT_BASE", - "Service_Plan_Id": "f6934f16-83d3-4f3b-ad27-c6e9c187b260", - "Service_Plans_Included_Friendly_Names": "Virtual Agent Base" - }, - { - "Product_Display_Name": "Power Virtual Agents Viral Trial", - "String_Id": "CCIBOTS_PRIVPREV_VIRAL", - "GUID": "606b54a9-78d8-4298-ad8b-df6ef4481c80", - "Service_Plan_Name": "DYN365_CDS_CCI_BOTS", - "Service_Plan_Id": "cf7034ed-348f-42eb-8bbd-dddeea43ee81", - "Service_Plans_Included_Friendly_Names": "Common Data Service for CCI Bots" - }, - { - "Product_Display_Name": "Power Virtual Agents Viral Trial", - "String_Id": "CCIBOTS_PRIVPREV_VIRAL", - "GUID": "606b54a9-78d8-4298-ad8b-df6ef4481c80", - "Service_Plan_Name": "CCIBOTS_PRIVPREV_VIRAL", - "Service_Plan_Id": "ce312d15-8fdf-44c0-9974-a25a177125ee", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Customer Service Virtual Agents Viral" - }, - { - "Product_Display_Name": "Power Virtual Agents Viral Trial", - "String_Id": "CCIBOTS_PRIVPREV_VIRAL", - "GUID": "606b54a9-78d8-4298-ad8b-df6ef4481c80", - "Service_Plan_Name": "FLOW_CCI_BOTS", - "Service_Plan_Id": "5d798708-6473-48ad-9776-3acc301c40af", - "Service_Plans_Included_Friendly_Names": "Flow for CCI Bots" - }, - { - "Product_Display_Name": "PROJECT FOR OFFICE 365", - "String_Id": "PROJECTCLIENT", - "GUID": "a10d5e58-74da-4312-95c8-76be4e5b75a0", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE DESKTOP CLIENT" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "PROJECT ONLINE PREMIUM", - "String_Id": "PROJECTPREMIUM", - "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE DESKTOP CLIENT" - }, - { - "Product_Display_Name": "PROJECT ONLINE PREMIUM", - "String_Id": "PROJECTPREMIUM", - "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT_PROJECT" - }, - { - "Product_Display_Name": "PROJECT ONLINE PREMIUM", - "String_Id": "PROJECTPREMIUM", - "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "PROJECT ONLINE PREMIUM", - "String_Id": "PROJECTPREMIUM", - "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "PROJECT ONLINE PREMIUM WITHOUT PROJECT CLIENT", - "String_Id": "PROJECTONLINE_PLAN_1", - "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "PROJECT ONLINE PREMIUM WITHOUT PROJECT CLIENT", - "String_Id": "PROJECTONLINE_PLAN_1", - "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT_PROJECT" - }, - { - "Product_Display_Name": "PROJECT ONLINE PREMIUM WITHOUT PROJECT CLIENT", - "String_Id": "PROJECTONLINE_PLAN_1", - "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "PROJECT ONLINE PREMIUM WITHOUT PROJECT CLIENT", - "String_Id": "PROJECTONLINE_PLAN_1", - "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "PROJECT ONLINE PREMIUM WITHOUT PROJECT CLIENT", - "String_Id": "PROJECTONLINE_PLAN_1", - "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "PROJECT ONLINE WITH PROJECT FOR OFFICE 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "PROJECT ONLINE WITH PROJECT FOR OFFICE 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE DESKTOP CLIENT" - }, - { - "Product_Display_Name": "PROJECT ONLINE WITH PROJECT FOR OFFICE 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT_PROJECT" - }, - { - "Product_Display_Name": "PROJECT ONLINE WITH PROJECT FOR OFFICE 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "PROJECT ONLINE WITH PROJECT FOR OFFICE 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "PROJECT ONLINE WITH PROJECT FOR OFFICE 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "PROJECT PLAN 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "DYN365_CDS_FOR_PROJECT_P1", - "Service_Plan_Id": "a6f677b3-62a6-4644-93e7-2a85d240845e", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR PROJECT P1" - }, - { - "Product_Display_Name": "PROJECT PLAN 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "PROJECT PLAN 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "Power_Automate_For_Project_P1", - "Service_Plan_Id": "00283e6b-2bd8-440f-a2d5-87358e4c89a1", - "Service_Plans_Included_Friendly_Names": "POWER AUTOMATE FOR PROJECT P1" - }, - { - "Product_Display_Name": "PROJECT PLAN 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS" - }, - { - "Product_Display_Name": "PROJECT PLAN 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "PROJECT_P1", - "Service_Plan_Id": "4a12c688-56c6-461a-87b1-30d6f32136f9", - "Service_Plans_Included_Friendly_Names": "PROJECT P1" - }, - { - "Product_Display_Name": "PROJECT PLAN 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "DYN365_CDS_FOR_PROJECT_P1", - "Service_Plan_Id": "a6f677b3-62a6-4644-93e7-2a85d240845e", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Project P1" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "Power_Automate_For_Project_P1", - "Service_Plan_Id": "00283e6b-2bd8-440f-a2d5-87358e4c89a1", - "Service_Plans_Included_Friendly_Names": "Power Automate for Project P1" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "PROJECT_P1", - "Service_Plan_Id": "4a12c688-56c6-461a-87b1-30d6f32136f9", - "Service_Plans_Included_Friendly_Names": "Project P1" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT STANDARD" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "DYN365_CDS_PROJECT", - "Service_Plan_Id": "50554c47-71d9-49fd-bc54-42a2765c555c", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Project" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "FLOW_FOR_PROJECT", - "Service_Plan_Id": "fa200448-008c-4acb-abd4-ea106ed2199d", - "Service_Plans_Included_Friendly_Names": "Flow for Project" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "Project Online Service" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "PROJECT_PROFESSIONAL", - "Service_Plan_Id": "818523f5-016b-4355-9be8-ed6944946ea7", - "Service_Plans_Included_Friendly_Names": "Project P3" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "DYN365_CDS_PROJECT", - "Service_Plan_Id": "50554c47-71d9-49fd-bc54-42a2765c555c", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Project" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "FLOW_FOR_PROJECT", - "Service_Plan_Id": "fa200448-008c-4acb-abd4-ea106ed2199d", - "Service_Plans_Included_Friendly_Names": "Flow for Project" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "Project Online Service" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "PROJECT_PROFESSIONAL", - "Service_Plan_Id": "818523f5-016b-4355-9be8-ed6944946ea7", - "Service_Plans_Included_Friendly_Names": "Project P3" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC", - "String_Id": "PROJECTPROFESSIONAL_GOV", - "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the web (Government)" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC", - "String_Id": "PROJECTPROFESSIONAL_GOV", - "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION_GOV", - "Service_Plan_Id": "45c6831b-ad74-4c7f-bd03-7c2b3fa39067", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client for Government" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC", - "String_Id": "PROJECTPROFESSIONAL_GOV", - "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", - "Service_Plan_Name": "SHAREPOINT_PROJECT_GOV", - "Service_Plan_Id": "e57afa78-1f19-4542-ba13-b32cd4d8f472", - "Service_Plans_Included_Friendly_Names": "Project Online Service for Government" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC", - "String_Id": "PROJECTPROFESSIONAL_GOV", - "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Project Plan 5 for GCC", - "String_Id": "PROJECTPREMIUM_GOV", - "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Project Plan 5 for GCC", - "String_Id": "PROJECTPREMIUM_GOV", - "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the web (Government)" - }, - { - "Product_Display_Name": "Project Plan 5 for GCC", - "String_Id": "PROJECTPREMIUM_GOV", - "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION_GOV", - "Service_Plan_Id": "45c6831b-ad74-4c7f-bd03-7c2b3fa39067", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client for Government" - }, - { - "Product_Display_Name": "Project Plan 5 for GCC", - "String_Id": "PROJECTPREMIUM_GOV", - "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", - "Service_Plan_Name": "SHAREPOINT_PROJECT_GOV", - "Service_Plan_Id": "e57afa78-1f19-4542-ba13-b32cd4d8f472", - "Service_Plans_Included_Friendly_Names": "Project Online Service for Government" - }, - { - "Product_Display_Name": "Project Plan 5 for GCC", - "String_Id": "PROJECTPREMIUM_GOV", - "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Rights Management Adhoc", - "String_Id": "RIGHTSMANAGEMENT_ADHOC", - "GUID": "8c4ce438-32a7-4ac5-91a6-e22ae08d9c8b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Rights Management Adhoc", - "String_Id": "RIGHTSMANAGEMENT_ADHOC", - "GUID": "8c4ce438-32a7-4ac5-91a6-e22ae08d9c8b", - "Service_Plan_Name": "RMS_S_ADHOC", - "Service_Plan_Id": "7a39d7dd-e456-4e09-842a-0204ee08187b", - "Service_Plans_Included_Friendly_Names": "Rights Management Adhoc" - }, - { - "Product_Display_Name": "Rights Management Service Basic Content Protection", - "String_Id": "RMSBASIC", - "GUID": "093e8d14-a334-43d9-93e3-30589a8b47d0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Rights Management Service Basic Content Protection", - "String_Id": "RMSBASIC", - "GUID": "093e8d14-a334-43d9-93e3-30589a8b47d0", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Sensor Data Intelligence Additional Machines Add-in for Dynamics 365 Supply Chain Management", - "String_Id": "DYN365_IOT_INTELLIGENCE_ADDL_MACHINES", - "GUID": "08e18479-4483-4f70-8f17-6f92156d8ea9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Sensor Data Intelligence Additional Machines Add-in for Dynamics 365 Supply Chain Management", - "String_Id": "DYN365_IOT_INTELLIGENCE_ADDL_MACHINES", - "GUID": "08e18479-4483-4f70-8f17-6f92156d8ea9", - "Service_Plan_Name": "D365_IOTFORSCM_ADDITIONAL", - "Service_Plan_Id": "a5f38206-2f48-4d83-9957-525f4e75e9c0", - "Service_Plans_Included_Friendly_Names": "IoT Intelligence Add-in Additional Machines" - }, - { - "Product_Display_Name": "Sensor Data Intelligence Scenario Add-in for Dynamics 365 Supply Chain Management", - "String_Id": "DYN365_IOT_INTELLIGENCE_SCENARIO", - "GUID": "9ea4bdef-a20b-4668-b4a7-73e1f7696e0a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Sensor Data Intelligence Scenario Add-in for Dynamics 365 Supply Chain Management", - "String_Id": "DYN365_IOT_INTELLIGENCE_SCENARIO", - "GUID": "9ea4bdef-a20b-4668-b4a7-73e1f7696e0a", - "Service_Plan_Name": "D365_IOTFORSCM", - "Service_Plan_Id": "83dd9619-c7d5-44da-9250-dc4ee79fff7e", - "Service_Plans_Included_Friendly_Names": "Iot Intelligence Add-in for D365 Supply Chain Management" - }, - { - "Product_Display_Name": "SHAREPOINT ONLINE (PLAN 1)", - "String_Id": "SHAREPOINTSTANDARD", - "GUID": "1fc08a02-8b3d-43b9-831e-f76859e04e1a", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "SHAREPOINT ONLINE (PLAN 2)", - "String_Id": "SHAREPOINTENTERPRISE", - "GUID": "a9732ec9-17d9-494c-a51c-d6b45b384dcb", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "SharePoint Syntex", - "String_Id": "Intelligent_Content_Services", - "GUID": "f61d4aba-134f-44e9-a2a0-f81a5adb26e4", - "Service_Plan_Name": "CDS_O365_E5_KM", - "Service_Plan_Id": "3069d530-e41b-421c-ad59-fb1001a23e11", - "Service_Plans_Included_Friendly_Names": "Common Data Service for SharePoint Syntex" - }, - { - "Product_Display_Name": "SharePoint Syntex", - "String_Id": "Intelligent_Content_Services", - "GUID": "f61d4aba-134f-44e9-a2a0-f81a5adb26e4", - "Service_Plan_Name": "Intelligent_Content_Services", - "Service_Plan_Id": "f00bd55e-1633-416e-97c0-03684e42bc42", - "Service_Plans_Included_Friendly_Names": "SharePoint Syntex" - }, - { - "Product_Display_Name": "SharePoint Syntex", - "String_Id": "Intelligent_Content_Services", - "GUID": "f61d4aba-134f-44e9-a2a0-f81a5adb26e4", - "Service_Plan_Name": "Intelligent_Content_Services_SPO_type", - "Service_Plan_Id": "fd2e7f90-1010-487e-a11b-d2b1ae9651fc", - "Service_Plans_Included_Friendly_Names": "SharePoint Syntex - SPO type" - }, - { - "Product_Display_Name": "SKYPE FOR BUSINESS ONLINE (PLAN 1)", - "String_Id": "MCOIMP", - "GUID": "b8b749f8-a4ef-4887-9539-c95b1eaa5db7", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "SKYPE FOR BUSINESS ONLINE (PLAN 2)", - "String_Id": "MCOSTANDARD", - "GUID": "d42c793f-6c78-4f43-92ca-e8f6a02b035f", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "SKYPE FOR BUSINESS PSTN DOMESTIC AND INTERNATIONAL CALLING", - "String_Id": "MCOPSTN2", - "GUID": "d3b4fe1f-9992-4930-8acb-ca6ec609365e", - "Service_Plan_Name": "MCOPSTN2", - "Service_Plan_Id": "5a10155d-f5c1-411a-a8ec-e99aae125390", - "Service_Plans_Included_Friendly_Names": "DOMESTIC AND INTERNATIONAL CALLING PLAN" - }, - { - "Product_Display_Name": "SKYPE FOR BUSINESS PSTN DOMESTIC CALLING", - "String_Id": "MCOPSTN1", - "GUID": "0dab259f-bf13-4952-b7f8-7db8f131b28d", - "Service_Plan_Name": "MCOPSTN1", - "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8", - "Service_Plans_Included_Friendly_Names": "DOMESTIC CALLING PLAN" - }, - { - "Product_Display_Name": "SKYPE FOR BUSINESS PSTN DOMESTIC CALLING (120 Minutes)", - "String_Id": "MCOPSTN5", - "GUID": "54a152dc-90de-4996-93d2-bc47e670fc06", - "Service_Plan_Name": "MCOPSTN5", - "Service_Plan_Id": "54a152dc-90de-4996-93d2-bc47e670fc06", - "Service_Plans_Included_Friendly_Names": "DOMESTIC CALLING PLAN" - }, - { - "Product_Display_Name": "TELSTRA CALLING FOR O365", - "String_Id": "MCOPSTNEAU2", - "GUID": "de3312e1-c7b0-46e6-a7c3-a515ff90bc86", - "Service_Plan_Name": "MCOPSTNEAU", - "Service_Plan_Id": "7861360b-dc3b-4eba-a3fc-0d323a035746", - "Service_Plans_Included_Friendly_Names": "AUSTRALIA CALLING PLAN" - }, - { - "Product_Display_Name": "Universal Print", - "String_Id": "UNIVERSAL_PRINT", - "GUID": "9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Universal Print", - "String_Id": "UNIVERSAL_PRINT", - "GUID": "9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Visio Plan 1", - "String_Id": "VISIO_PLAN1_DEPT", - "GUID": "ca7f3140-d88c-455b-9a1c-7f0679e31a76", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Visio Plan 1", - "String_Id": "VISIO_PLAN1_DEPT", - "GUID": "ca7f3140-d88c-455b-9a1c-7f0679e31a76", - "Service_Plan_Name": "ONEDRIVE_BASIC", - "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1", - "Service_Plans_Included_Friendly_Names": "OneDrive for business Basic" - }, - { - "Product_Display_Name": "Visio Plan 1", - "String_Id": "VISIO_PLAN1_DEPT", - "GUID": "ca7f3140-d88c-455b-9a1c-7f0679e31a76", - "Service_Plan_Name": "VISIOONLINE", - "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f", - "Service_Plans_Included_Friendly_Names": "Visio web app" - }, - { - "Product_Display_Name": "Visio Plan 2", - "String_Id": "VISIO_PLAN2_DEPT", - "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Visio Plan 2", - "String_Id": "VISIO_PLAN2_DEPT", - "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1", - "Service_Plan_Name": "ONEDRIVE_BASIC", - "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1", - "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Basic)" - }, - { - "Product_Display_Name": "Visio Plan 2", - "String_Id": "VISIO_PLAN2_DEPT", - "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1", - "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "663a804f-1c30-4ff0-9915-9db84f0d1cea", - "Service_Plans_Included_Friendly_Names": "Visio Desktop App" - }, - { - "Product_Display_Name": "Visio Plan 2", - "String_Id": "VISIO_PLAN2_DEPT", - "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1", - "Service_Plan_Name": "VISIOONLINE", - "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f", - "Service_Plans_Included_Friendly_Names": "Visio Web App" - }, - { - "Product_Display_Name": "VISIO ONLINE PLAN 1", - "String_Id": "VISIOONLINE_PLAN1", - "GUID": "4b244418-9658-4451-a2b8-b5e2b364e9bd", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "VISIO ONLINE PLAN 1", - "String_Id": "VISIOONLINE_PLAN1", - "GUID": "4b244418-9658-4451-a2b8-b5e2b364e9bd", - "Service_Plan_Name": "ONEDRIVE_BASIC", - "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1", - "Service_Plans_Included_Friendly_Names": "ONEDRIVE FOR BUSINESS BASIC" - }, - { - "Product_Display_Name": "VISIO ONLINE PLAN 1", - "String_Id": "VISIOONLINE_PLAN1", - "GUID": "4b244418-9658-4451-a2b8-b5e2b364e9bd", - "Service_Plan_Name": "VISIOONLINE", - "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f", - "Service_Plans_Included_Friendly_Names": "VISIO WEB APP" - }, - { - "Product_Display_Name": "VISIO ONLINE PLAN 2", - "String_Id": "VISIOCLIENT", - "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "VISIO ONLINE PLAN 2", - "String_Id": "VISIOCLIENT", - "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5", - "Service_Plan_Name": "ONEDRIVE_BASIC", - "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1", - "Service_Plans_Included_Friendly_Names": "ONEDRIVE FOR BUSINESS BASIC" - }, - { - "Product_Display_Name": "VISIO ONLINE PLAN 2", - "String_Id": "VISIOCLIENT", - "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5", - "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "663a804f-1c30-4ff0-9915-9db84f0d1cea", - "Service_Plans_Included_Friendly_Names": "VISIO DESKTOP APP" - }, - { - "Product_Display_Name": "VISIO ONLINE PLAN 2", - "String_Id": "VISIOCLIENT", - "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5", - "Service_Plan_Name": "VISIOONLINE", - "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f", - "Service_Plans_Included_Friendly_Names": "VISIO WEB APP" - }, - { - "Product_Display_Name": "VISIO PLAN 2 FOR GCC", - "String_Id": "VISIOCLIENT_GOV", - "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT" - }, - { - "Product_Display_Name": "VISIO PLAN 2 FOR GCC", - "String_Id": "VISIOCLIENT_GOV", - "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba", - "Service_Plan_Name": "ONEDRIVE_BASIC_GOV", - "Service_Plan_Id": "98709c2e-96b5-4244-95f5-a0ebe139fb8a", - "Service_Plans_Included_Friendly_Names": "ONEDRIVE FOR BUSINESS BASIC FOR GOVERNMENT" - }, - { - "Product_Display_Name": "VISIO PLAN 2 FOR GCC", - "String_Id": "VISIOCLIENT_GOV", - "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba", - "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION_GOV", - "Service_Plan_Id": "f85945f4-7a55-4009-bc39-6a5f14a8eac1", - "Service_Plans_Included_Friendly_Names": "VISIO DESKTOP APP FOR Government" - }, - { - "Product_Display_Name": "VISIO PLAN 2 FOR GCC", - "String_Id": "VISIOCLIENT_GOV", - "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba", - "Service_Plan_Name": "VISIOONLINE_GOV", - "Service_Plan_Id": "8a9ecb07-cfc0-48ab-866c-f83c4d911576", - "Service_Plans_Included_Friendly_Names": "VISIO WEB APP FOR GOVERNMENT" - }, - { - "Product_Display_Name": "Viva Topics", - "String_Id": "TOPIC_EXPERIENCES", - "GUID": "4016f256-b063-4864-816e-d818aad600c9", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX_TOPICEXP", - "Service_Plan_Id": "b74d57b2-58e9-484a-9731-aeccbba954f0", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index (Viva Topics)" - }, - { - "Product_Display_Name": "Viva Topics", - "String_Id": "TOPIC_EXPERIENCES", - "GUID": "4016f256-b063-4864-816e-d818aad600c9", - "Service_Plan_Name": "CORTEX", - "Service_Plan_Id": "c815c93d-0759-4bb8-b857-bc921a71be83", - "Service_Plans_Included_Friendly_Names": "Viva Topics" - }, - { - "Product_Display_Name": "Windows 10 Enterprise A3 for faculty", - "String_Id": "WIN10_ENT_A3_FAC", - "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 10 Enterprise A3 for faculty", - "String_Id": "WIN10_ENT_A3_FAC", - "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Windows 10 Enterprise A3 for faculty", - "String_Id": "WIN10_ENT_A3_FAC", - "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Windows 10 Enterprise A3 for faculty", - "String_Id": "WIN10_ENT_A3_FAC", - "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Windows 10 Enterprise A3 for students", - "String_Id": "WIN10_ENT_A3_STU", - "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 10 Enterprise A3 for students", - "String_Id": "WIN10_ENT_A3_STU", - "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Windows 10 Enterprise A3 for students", - "String_Id": "WIN10_ENT_A3_STU", - "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Windows 10 Enterprise A3 for students", - "String_Id": "WIN10_ENT_A3_STU", - "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "WINDOWS 10 ENTERPRISE E3", - "String_Id": "WIN10_PRO_ENT_SUB", - "GUID": "cb10e6cd-9da4-4992-867b-67546b1db821", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "WINDOWS 10 ENTERPRISE" - }, - { - "Product_Display_Name": "WINDOWS 10 ENTERPRISE E3", - "String_Id": "WIN10_VDA_E3", - "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "WINDOWS 10 ENTERPRISE E3", - "String_Id": "WIN10_VDA_E3", - "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "UNIVERSAL PRINT" - }, - { - "Product_Display_Name": "WINDOWS 10 ENTERPRISE E3", - "String_Id": "WIN10_VDA_E3", - "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "WINDOWS 10 ENTERPRISE (NEW)" - }, - { - "Product_Display_Name": "WINDOWS 10 ENTERPRISE E3", - "String_Id": "WIN10_VDA_E3", - "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "WINDOWS UPDATE FOR BUSINESS DEPLOYMENT SERVICE" - }, - { - "Product_Display_Name": "Windows 10 Enterprise E5", - "String_Id": "WIN10_VDA_E5", - "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 10 Enterprise E5", - "String_Id": "WIN10_VDA_E5", - "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender For Endpoint" - }, - { - "Product_Display_Name": "Windows 10 Enterprise E5", - "String_Id": "WIN10_VDA_E5", - "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Windows 10 Enterprise E5", - "String_Id": "WIN10_VDA_E5", - "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Windows 10 Enterprise E5", - "String_Id": "WIN10_VDA_E5", - "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Windows 10 Enterprise E5 Commercial (GCC Compatible)", - "String_Id": "WINE5_GCC_COMPAT", - "GUID": "938fd547-d794-42a4-996c-1cc206619580", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Windows 10 Enterprise E5 Commercial (GCC Compatible)", - "String_Id": "WINE5_GCC_COMPAT", - "GUID": "938fd547-d794-42a4-996c-1cc206619580", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender For Endpoint" - }, - { - "Product_Display_Name": "Windows 10 Enterprise E5 Commercial (GCC Compatible)", - "String_Id": "WINE5_GCC_COMPAT", - "GUID": "938fd547-d794-42a4-996c-1cc206619580", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 64 GB", - "String_Id": "CPC_B_2C_4RAM_64GB", - "GUID": "42e6818f-8966-444b-b7ac-0027c83fa8b5", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 64 GB", - "String_Id": "CPC_B_2C_4RAM_64GB", - "GUID": "42e6818f-8966-444b-b7ac-0027c83fa8b5", - "Service_Plan_Name": "CPC_B_2C_4RAM_64GB", - "Service_Plan_Id": "a790cd6e-a153-4461-83c7-e127037830b6", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU 4 GB 64 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB (with Windows Hybrid Benefit)", - "String_Id": "CPC_B_4C_16RAM_128GB_WHB", - "GUID": "439ac253-bfbc-49c7-acc0-6b951407b5ef", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB (with Windows Hybrid Benefit)", - "String_Id": "CPC_B_4C_16RAM_128GB_WHB", - "GUID": "439ac253-bfbc-49c7-acc0-6b951407b5ef", - "Service_Plan_Name": "CPC_B_4C_16RAM_128GB", - "Service_Plan_Id": "1d4f75d3-a19b-49aa-88cb-f1ea1690b550", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 4 vCPU 16 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 64 GB", - "String_Id": "CPC_E_2C_4GB_64GB", - "GUID": "7bb14422-3b90-4389-a7be-f1b745fc037f", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 64 GB", - "String_Id": "CPC_E_2C_4GB_64GB", - "GUID": "7bb14422-3b90-4389-a7be-f1b745fc037f", - "Service_Plan_Name": "CPC_E_2C_4GB_64GB", - "Service_Plan_Id": "23a25099-1b2f-4e07-84bd-b84606109438", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 4 GB 64 GB" - }, - { - "Product_Display_Name": "WINDOWS STORE FOR BUSINESS", - "String_Id": "WINDOWS_STORE", - "GUID": "6470687e-a428-4b7a-bef2-8a291ad947c9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "WINDOWS STORE FOR BUSINESS", - "String_Id": "WINDOWS_STORE", - "GUID": "6470687e-a428-4b7a-bef2-8a291ad947c9", - "Service_Plan_Name": "WINDOWS_STORE", - "Service_Plan_Id": "a420f25f-a7b3-4ff5-a9d0-5d58f73b537d", - "Service_Plans_Included_Friendly_Names": "WINDOWS STORE SERVICE" - }, - { - "Product_Display_Name": "Microsoft Workplace Analytics", - "String_Id": "WORKPLACE_ANALYTICS", - "GUID": "3d957427-ecdc-4df2-aacd-01cc9d519da8", - "Service_Plan_Name": "WORKPLACE_ANALYTICS", - "Service_Plan_Id": "f477b0f0-3bb1-4890-940c-40fcee6ce05f", - "Service_Plans_Included_Friendly_Names": "Microsoft Workplace Analytics" - }, - { - "Product_Display_Name": "Microsoft Workplace Analytics", - "String_Id": "WORKPLACE_ANALYTICS", - "GUID": "3d957427-ecdc-4df2-aacd-01cc9d519da8", - "Service_Plan_Name": "WORKPLACE_ANALYTICS_INSIGHTS_BACKEND", - "Service_Plan_Id": "ff7b261f-d98b-415b-827c-42a3fdf015af", - "Service_Plans_Included_Friendly_Names": "Microsoft Workplace Analytics Insights Backend" - }, - { - "Product_Display_Name": "Microsoft Workplace Analytics", - "String_Id": "WORKPLACE_ANALYTICS", - "GUID": "3d957427-ecdc-4df2-aacd-01cc9d519da8", - "Service_Plan_Name": "WORKPLACE_ANALYTICS_INSIGHTS_USER", - "Service_Plan_Id": "b622badb-1b45-48d5-920f-4b27a2c0996c", - "Service_Plans_Included_Friendly_Names": "Microsoft Workplace Analytics Insights User" - } -] diff --git a/src/data/M365Licenses.json b/src/data/M365Licenses.json deleted file mode 100644 index 1ba8fcbec6cd..000000000000 --- a/src/data/M365Licenses.json +++ /dev/null @@ -1,40850 +0,0 @@ -[ - { - "Product_Display_Name": "AI Builder Capacity add-on", - "String_Id": "CDSAICAPACITY", - "GUID": "d2dea78b-507c-4e56-b400-39447f4738f8", - "Service_Plan_Name": "CDSAICAPACITY", - "Service_Plan_Id": "a7c70a41-5e02-4271-93e6-d9b4184d83f5", - "Service_Plans_Included_Friendly_Names": "AI Builder capacity add-on" - }, - { - "Product_Display_Name": "AI Builder Capacity add-on", - "String_Id": "CDSAICAPACITY", - "GUID": "d2dea78b-507c-4e56-b400-39447f4738f8", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "App Connect IW", - "String_Id": "SPZA_IW", - "GUID": "8f0c5670-4e56-4892-b06d-91c085d7004f", - "Service_Plan_Name": "SPZA", - "Service_Plan_Id": "0bfc98ed-1dbc-4a97-b246-701754e48b17", - "Service_Plans_Included_Friendly_Names": "APP CONNECT" - }, - { - "Product_Display_Name": "App Connect IW", - "String_Id": "SPZA_IW", - "GUID": "8f0c5670-4e56-4892-b06d-91c085d7004f", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "App governance add-on to Microsoft Defender for Cloud Apps", - "String_Id": "Microsoft_Cloud_App_Security_App_Governance_Add_On", - "GUID": "9706eed9-966f-4f1b-94f6-bb2b4af99a5b", - "Service_Plan_Name": "M365_AUDIT_PLATFORM", - "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" - }, - { - "Product_Display_Name": "App governance add-on to Microsoft Defender for Cloud Apps", - "String_Id": "Microsoft_Cloud_App_Security_App_Governance_Add_On", - "GUID": "9706eed9-966f-4f1b-94f6-bb2b4af99a5b", - "Service_Plan_Name": "MICROSOFT_APPLICATION_PROTECTION_AND_GOVERNANCE_A", - "Service_Plan_Id": "5f3b1ded-75c0-4b31-8e6e-9b077eaadfd5", - "Service_Plans_Included_Friendly_Names": "Microsoft Application Protection and Governance (A)" - }, - { - "Product_Display_Name": "App governance add-on to Microsoft Defender for Cloud Apps", - "String_Id": "Microsoft_Cloud_App_Security_App_Governance_Add_On", - "GUID": "9706eed9-966f-4f1b-94f6-bb2b4af99a5b", - "Service_Plan_Name": "MICROSOFT_APPLICATION_PROTECTION_AND_GOVERNANCE_D", - "Service_Plan_Id": "2e6ffd72-52d1-4541-8f6c-938f9a8d4cdc", - "Service_Plans_Included_Friendly_Names": "Microsoft Application Protection and Governance (D)" - }, - { - "Product_Display_Name": "Career Coach for faculty", - "String_Id": "CAREERCOACH_FACULTY", - "GUID": "95de1760-7682-406d-98c9-52ef14e51e2b", - "Service_Plan_Name": "CAREERCOACH_EDU", - "Service_Plan_Id": "80f0ae31-0dfb-425c-b3fc-36f40170eb35", - "Service_Plans_Included_Friendly_Names": "Career Coach" - }, - { - "Product_Display_Name": "Career Coach for students", - "String_Id": "CAREERCOACH_STUDENTS", - "GUID": "01c8007a-57d2-41e0-a3c3-0b46ead16cc4", - "Service_Plan_Name": "CAREERCOACH_EDU", - "Service_Plan_Id": "80f0ae31-0dfb-425c-b3fc-36f40170eb35", - "Service_Plans_Included_Friendly_Names": "Career Coach" - }, - { - "Product_Display_Name": "Clipchamp Premium", - "String_Id": "Clipchamp_Premium", - "GUID": "0fe440c5-f2bf-442b-a4f4-9a7af77a200b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Clipchamp Premium", - "String_Id": "Clipchamp_Premium", - "GUID": "0fe440c5-f2bf-442b-a4f4-9a7af77a200b", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Clipchamp Premium", - "String_Id": "Clipchamp_Premium", - "GUID": "0fe440c5-f2bf-442b-a4f4-9a7af77a200b", - "Service_Plan_Name": "CLIPCHAMP_PREMIUM", - "Service_Plan_Id": "430b908f-78e1-4812-b045-cf83320e7d5d", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp Premium" - }, - { - "Product_Display_Name": "Clipchamp Premium", - "String_Id": "Clipchamp_Premium", - "GUID": "0fe440c5-f2bf-442b-a4f4-9a7af77a200b", - "Service_Plan_Name": "ONEDRIVECLIPCHAMP", - "Service_Plan_Id": "f7e5b77d-f293-410a-bae8-f941f19fe680", - "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Clipchamp)" - }, - { - "Product_Display_Name": "Clipchamp Standard", - "String_Id": "Clipchamp_Standard", - "GUID": "481f3bc2-5756-4b28-9375-5c8c86b99e6b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Clipchamp Standard", - "String_Id": "Clipchamp_Standard", - "GUID": "481f3bc2-5756-4b28-9375-5c8c86b99e6b", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Clipchamp Standard", - "String_Id": "Clipchamp_Standard", - "GUID": "481f3bc2-5756-4b28-9375-5c8c86b99e6b", - "Service_Plan_Name": "ONEDRIVECLIPCHAMP", - "Service_Plan_Id": "f7e5b77d-f293-410a-bae8-f941f19fe680", - "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Clipchamp)" - }, - { - "Product_Display_Name": "Microsoft 365 Audio Conferencing", - "String_Id": "MCOMEETADV", - "GUID": "0c266dff-15dd-4b49-8397-2bb16070ed52", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft Entra ID Basic", - "String_Id": "AAD_BASIC", - "GUID": "2b9c8e7c-319c-43a2-a2a0-48c5c6161de7", - "Service_Plan_Name": "AAD_BASIC", - "Service_Plan_Id": "c4da7f8a-5ee2-4c99-a7e1-87d2df57f6fe", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra BASIC" - }, - { - "Product_Display_Name": "Microsoft Entra ID P1", - "String_Id": "AAD_PREMIUM", - "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft Entra ID P1", - "String_Id": "AAD_PREMIUM", - "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "CLOUD APP SECURITY DISCOVERY" - }, - { - "Product_Display_Name": "Microsoft Entra ID P1", - "String_Id": "AAD_PREMIUM", - "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Microsoft Entra ID P1", - "String_Id": "AAD_PREMIUM", - "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION" - }, - { - "Product_Display_Name": "Microsoft Entra ID P1 for Faculty", - "String_Id": "AAD_PREMIUM_FACULTY", - "GUID": "30fc3c36-5a95-4956-ba57-c09c2a600bb9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Entra ID P1 for Faculty", - "String_Id": "AAD_PREMIUM_FACULTY", - "GUID": "30fc3c36-5a95-4956-ba57-c09c2a600bb9", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft Entra ID P1 for Faculty", - "String_Id": "AAD_PREMIUM_FACULTY", - "GUID": "30fc3c36-5a95-4956-ba57-c09c2a600bb9", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft Entra ID P1 for Faculty", - "String_Id": "AAD_PREMIUM_FACULTY", - "GUID": "30fc3c36-5a95-4956-ba57-c09c2a600bb9", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft Entra ID P1_USGOV_GCCHIGH", - "String_Id": "AAD_PREMIUM_USGOV_GCCHIGH ", - "GUID": "de597797-22fb-4d65-a9fe-b7dbe8893914", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Entra ID P1_USGOV_GCCHIGH", - "String_Id": "AAD_PREMIUM_USGOV_GCCHIGH ", - "GUID": "de597797-22fb-4d65-a9fe-b7dbe8893914", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft Entra ID P1_USGOV_GCCHIGH", - "String_Id": "AAD_PREMIUM_USGOV_GCCHIGH ", - "GUID": "de597797-22fb-4d65-a9fe-b7dbe8893914", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft Entra ID P1_USGOV_GCCHIGH", - "String_Id": "AAD_PREMIUM_USGOV_GCCHIGH ", - "GUID": "de597797-22fb-4d65-a9fe-b7dbe8893914", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft Entra ID P2", - "String_Id": "AAD_PREMIUM_P2", - "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft Entra ID P2", - "String_Id": "AAD_PREMIUM_P2", - "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Microsoft Entra ID P2", - "String_Id": "AAD_PREMIUM_P2", - "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "CLOUD APP SECURITY DISCOVERY" - }, - { - "Product_Display_Name": "Microsoft Entra ID P2", - "String_Id": "AAD_PREMIUM_P2", - "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Microsoft Entra ID P2", - "String_Id": "AAD_PREMIUM_P2", - "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION" - }, - { - "Product_Display_Name": "Azure Information Protection Plan 1", - "String_Id": "RIGHTSMANAGEMENT", - "GUID": "c52ea49f-fe5d-4e95-93ba-1de91d380f89", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1" - }, - { - "Product_Display_Name": "Azure Information Protection Plan 1", - "String_Id": "RIGHTSMANAGEMENT", - "GUID": "c52ea49f-fe5d-4e95-93ba-1de91d380f89", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra RIGHTS" - }, - { - "Product_Display_Name": "Azure Information Protection Plan 1", - "String_Id": "RIGHTSMANAGEMENT_CE", - "GUID": "a0e6a48f-b056-4037-af70-b9ac53504551", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Azure Information Protection Plan 1", - "String_Id": "RIGHTSMANAGEMENT_CE", - "GUID": "a0e6a48f-b056-4037-af70-b9ac53504551", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Azure Information Protection Plan 1", - "String_Id": "RIGHTSMANAGEMENT_CE", - "GUID": "a0e6a48f-b056-4037-af70-b9ac53504551", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Azure Information Protection Premium P1_USGOV_GCCHIGH", - "String_Id": "RIGHTSMANAGEMENT_CE_USGOV_GCCHIGH", - "GUID": "c57afa2a-d468-46c4-9a90-f86cb1b3c54a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Azure Information Protection Premium P1_USGOV_GCCHIGH", - "String_Id": "RIGHTSMANAGEMENT_CE_USGOV_GCCHIGH", - "GUID": "c57afa2a-d468-46c4-9a90-f86cb1b3c54a", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Azure Information Protection Premium P1_USGOV_GCCHIGH", - "String_Id": "RIGHTSMANAGEMENT_CE_USGOV_GCCHIGH", - "GUID": "c57afa2a-d468-46c4-9a90-f86cb1b3c54a", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Basic Collaboration", - "String_Id": "OFFICEBASIC", - "GUID": "4468c39a-28b2-42fb-9094-840bcf28771f", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Basic Collaboration", - "String_Id": "OFFICEBASIC", - "GUID": "4468c39a-28b2-42fb-9094-840bcf28771f", - "Service_Plan_Name": "ONEDRIVELITE_IW", - "Service_Plan_Id": "b4ac11a0-32ff-4e78-982d-e039fa803dec", - "Service_Plans_Included_Friendly_Names": "Office for the web with OneDrive for business" - }, - { - "Product_Display_Name": "Basic Collaboration", - "String_Id": "OFFICEBASIC", - "GUID": "4468c39a-28b2-42fb-9094-840bcf28771f", - "Service_Plan_Name": "MCOBASIC", - "Service_Plan_Id": "448898aa-3ae7-478c-b49a-1fac7a8a35cf", - "Service_Plans_Included_Friendly_Names": "Skype Meetings" - }, - { - "Product_Display_Name": "Basic Collaboration", - "String_Id": "OFFICEBASIC", - "GUID": "4468c39a-28b2-42fb-9094-840bcf28771f", - "Service_Plan_Name": "YAMMER_BASIC", - "Service_Plan_Id": "6db7aeea-6c4a-475d-bbb0-7338bc73d646", - "Service_Plans_Included_Friendly_Names": "Yammer" - }, - { - "Product_Display_Name": "Business Apps (free)", - "String_Id": "SMB_APPS", - "GUID": "90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96", - "Service_Plan_Name": "DYN365BC_MS_INVOICING", - "Service_Plan_Id": "39b5c996-467e-4e60-bd62-46066f572726", - "Service_Plans_Included_Friendly_Names": "Microsoft Invoicing" - }, - { - "Product_Display_Name": "Business Apps (free)", - "String_Id": "SMB_APPS", - "GUID": "90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Common Data Service for Apps File Capacity", - "String_Id": "CDS_FILE_CAPACITY", - "GUID": "631d5fb1-a668-4c2a-9427-8830665a742e", - "Service_Plan_Name": "CDS_FILE_CAPACITY", - "Service_Plan_Id": "dd12a3a8-caec-44f8-b4fb-2f1a864b51e3", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Apps File Capacity" - }, - { - "Product_Display_Name": "Common Data Service for Apps File Capacity", - "String_Id": "CDS_FILE_CAPACITY", - "GUID": "631d5fb1-a668-4c2a-9427-8830665a742e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Common Data Service Database Capacity", - "String_Id": "CDS_DB_CAPACITY", - "GUID": "e612d426-6bc3-4181-9658-91aa906b0ac0", - "Service_Plan_Name": "CDS_DB_CAPACITY", - "Service_Plan_Id": "360bcc37-0c11-4264-8eed-9fa7a3297c9b", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Apps Database Capacity" - }, - { - "Product_Display_Name": "Common Data Service Database Capacity", - "String_Id": "CDS_DB_CAPACITY", - "GUID": "e612d426-6bc3-4181-9658-91aa906b0ac0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Common Data Service Database Capacity for Government", - "String_Id": "CDS_DB_CAPACITY_GOV", - "GUID": "eddf428b-da0e-4115-accf-b29eb0b83965", - "Service_Plan_Name": "CDS_DB_CAPACITY_GOV", - "Service_Plan_Id": "1ddffef6-4f69-455e-89c7-d5d72105f915", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Apps Database Capacity for Government" - }, - { - "Product_Display_Name": "Common Data Service Database Capacity for Government", - "String_Id": "CDS_DB_CAPACITY_GOV", - "GUID": "eddf428b-da0e-4115-accf-b29eb0b83965", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Common Data Service Log Capacity", - "String_Id": "CDS_LOG_CAPACITY", - "GUID": "448b063f-9cc6-42fc-a0e6-40e08724a395", - "Service_Plan_Name": "CDS_LOG_CAPACITY", - "Service_Plan_Id": "dc48f5c5-e87d-43d6-b884-7ac4a59e7ee9", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Apps Log Capacity" - }, - { - "Product_Display_Name": "Common Data Service Log Capacity", - "String_Id": "CDS_LOG_CAPACITY", - "GUID": "448b063f-9cc6-42fc-a0e6-40e08724a395", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Communications Credits", - "String_Id": "MCOPSTNC", - "GUID": "47794cd0-f0e5-45c5-9033-2eb6b5fc84e0", - "Service_Plan_Name": "MCOPSTNC", - "Service_Plan_Id": "505e180f-f7e0-4b65-91d4-00d670bbd18c", - "Service_Plans_Included_Friendly_Names": "COMMUNICATIONS CREDITS" - }, - { - "Product_Display_Name": "Compliance Manager Premium Assessment Add-On", - "String_Id": "CMPA_addon", - "GUID": "8a5fbbed-8b8c-41e5-907e-c50c471340fd", - "Service_Plan_Name": "COMPLIANCE_MANAGER_PREMIUM_ASSESSMENT_ADDON", - "Service_Plan_Id": "3a117d30-cfac-4f00-84ac-54f8b6a18d78", - "Service_Plans_Included_Friendly_Names": "Compliance Manager Premium Assessment Add-On" - }, - { - "Product_Display_Name": "Compliance Manager Premium Assessment Add-On for GCC", - "String_Id": "CMPA_addon_GCC", - "GUID": "a9d7ef53-9bea-4a2a-9650-fa7df58fe094", - "Service_Plan_Name": "COMPLIANCE_MANAGER_PREMIUM_ASSESSMENT_ADDON", - "Service_Plan_Id": "3a117d30-cfac-4f00-84ac-54f8b6a18d78", - "Service_Plans_Included_Friendly_Names": "Compliance Manager Premium Assessment Add-On" - }, - { - "Product_Display_Name": "Defender Threat Intelligence", - "String_Id": "Defender_Threat_Intelligence", - "GUID": "a9c51c15-ffad-4c66-88c0-8771455c832d", - "Service_Plan_Name": "THREAT_INTELLIGENCE_APP", - "Service_Plan_Id": "fbdb91e6-7bfd-4a1f-8f7a-d27f4ef39702", - "Service_Plans_Included_Friendly_Names": "Defender Threat Intelligence" - }, - { - "Product_Display_Name": "Digital Messaging for GCC Test SKU", - "String_Id": "MESSAGING_GCC_TEST", - "GUID": "064a9707-9dba-4cc1-9902-38bfcfda6328", - "Service_Plan_Name": "DYN365_CS_CHAT_FPA_GOV", - "Service_Plan_Id": "b9f7ce72-67ff-4695-a9d9-5ff620232024", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Chat Application Integration for Government" - }, - { - "Product_Display_Name": "Digital Messaging for GCC Test SKU", - "String_Id": "MESSAGING_GCC_TEST", - "GUID": "064a9707-9dba-4cc1-9902-38bfcfda6328", - "Service_Plan_Name": "DYN365_CS_MESSAGING_TPS_GOV", - "Service_Plan_Id": "9d37aa61-3cc3-457c-8b54-e6f3853aa6b6", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging add-on for Government" - }, - { - "Product_Display_Name": "Digital Messaging for GCC Test SKU", - "String_Id": "MESSAGING_GCC_TEST", - "GUID": "064a9707-9dba-4cc1-9902-38bfcfda6328", - "Service_Plan_Name": "DYN365_CS_MESSAGING_GOV", - "Service_Plan_Id": "e304c3c3-f86c-4200-b174-1ade48805b22", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging application integration for Government" - }, - { - "Product_Display_Name": "Digital Messaging for GCC Test SKU", - "String_Id": "MESSAGING_GCC_TEST", - "GUID": "064a9707-9dba-4cc1-9902-38bfcfda6328", - "Service_Plan_Name": "DYN365_CS_CHAT_GOV", - "Service_Plan_Id": "ffb878a5-3184-472b-800b-65eadc63d764", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Chat for Government" - }, - { - "Product_Display_Name": "Digital Messaging for GCC Test SKU", - "String_Id": "MESSAGING_GCC_TEST", - "GUID": "064a9707-9dba-4cc1-9902-38bfcfda6328", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_CHAT_GOV", - "Service_Plan_Id": "9023fe69-f9e0-4c1e-bfde-654954469162", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Chat for Gov" - }, - { - "Product_Display_Name": "Digital Messaging for GCC Test SKU", - "String_Id": "MESSAGING_GCC_TEST", - "GUID": "064a9707-9dba-4cc1-9902-38bfcfda6328", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_MESSAGING_GOV", - "Service_Plan_Id": "e501d49b-1176-4816-aece-2563c0d995db", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Digital Messaging for Gov" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Database Storage (Qualified Offer)", - "String_Id": "CRMSTORAGE", - "GUID": "328dc228-00bc-48c6-8b09-1fbc8bc3435d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Database Storage (Qualified Offer)", - "String_Id": "CRMSTORAGE", - "GUID": "328dc228-00bc-48c6-8b09-1fbc8bc3435d", - "Service_Plan_Name": "CRMSTORAGE", - "Service_Plan_Id": "77866113-0f3e-4e6e-9666-b1e25c6f99b0", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Storage Add-On" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Production Instance (Qualified Offer)", - "String_Id": "CRMINSTANCE", - "GUID": "9d776713-14cb-4697-a21d-9a52455c738a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Production Instance (Qualified Offer)", - "String_Id": "CRMINSTANCE", - "GUID": "9d776713-14cb-4697-a21d-9a52455c738a", - "Service_Plan_Name": "CRMINSTANCE", - "Service_Plan_Id": "eeea837a-c885-4167-b3d5-ddde30cbd85f", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Instance" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Non-Production Instance (Qualified Offer)", - "String_Id": "CRMTESTINSTANCE", - "GUID": "e06abcc2-7ec5-4a79-b08b-d9c282376f72", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Non-Production Instance (Qualified Offer)", - "String_Id": "CRMTESTINSTANCE", - "GUID": "e06abcc2-7ec5-4a79-b08b-d9c282376f72", - "Service_Plan_Name": "CRMTESTINSTANCE", - "Service_Plan_Id": "a98b7619-66c7-4885-bdfc-1d9c8c3d279f", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Additional Test Instance" - }, - { - "Product_Display_Name": "Dynamics 365 AI for Market Insights (Preview)", - "String_Id": "SOCIAL_ENGAGEMENT_APP_USER", - "GUID": "c6df1e30-1c9f-427f-907c-3d913474a1c7", - "Service_Plan_Name": "SOCIAL_ENGAGEMENT_APP_USER", - "Service_Plan_Id": "339f4def-5ad8-4430-8d12-da5fd4c769a7", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Market Insights - Free" - }, - { - "Product_Display_Name": "Dynamics 365 AI for Market Insights (Preview)", - "String_Id": "SOCIAL_ENGAGEMENT_APP_USER", - "GUID": "c6df1e30-1c9f-427f-907c-3d913474a1c7", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Asset Management Addl Assets", - "String_Id": "DYN365_ASSETMANAGEMENT", - "GUID": "673afb9d-d85b-40c2-914e-7bf46cd5cd75", - "Service_Plan_Name": "D365_AssetforSCM", - "Service_Plan_Id": "90467813-5b40-40d4-835c-abd48009b1d9", - "Service_Plans_Included_Friendly_Names": "Asset Maintenance Add-in" - }, - { - "Product_Display_Name": "Dynamics 365 Asset Management Addl Assets", - "String_Id": "DYN365_ASSETMANAGEMENT", - "GUID": "673afb9d-d85b-40c2-914e-7bf46cd5cd75", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Additional Environment Addon", - "String_Id": "DYN365_BUSCENTRAL_ADD_ENV_ADDON", - "GUID": "a58f5506-b382-44d4-bfab-225b2fbf8390", - "Service_Plan_Name": "DYN365_BUSCENTRAL_ENVIRONMENT", - "Service_Plan_Id": "d397d6c6-9664-4502-b71c-66f39c400ca4", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Additional Environment Addon" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Database Capacity", - "String_Id": "DYN365_BUSCENTRAL_DB_CAPACITY", - "GUID": "7d0d4f9a-2686-4cb8-814c-eff3fdab6d74", - "Service_Plan_Name": "DYN365_BUSCENTRAL_DB_CAPACITY", - "Service_Plan_Id": "ae6b27b3-fe31-4e77-ae06-ec5fabbc103a", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Database Capacity" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Database Capacity", - "String_Id": "DYN365_BUSCENTRAL_DB_CAPACITY", - "GUID": "7d0d4f9a-2686-4cb8-814c-eff3fdab6d74", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Essentials", - "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL", - "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa", - "Service_Plan_Name": "DYN365_FINANCIALS_BUSINESS", - "Service_Plan_Id": "920656a2-7dd8-4c83-97b6-a356414dbd36", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Business Central Essentials" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Essentials", - "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL", - "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Essentials", - "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL", - "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Essentials", - "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL", - "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Essentials Attach", - "String_Id": "Dynamics_365_Business_Central_Essentials_Attach", - "GUID": "1d506c23-1702-46f1-b940-160c55f98d05", - "Service_Plan_Name": "Power_Pages_Internal_User", - "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", - "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Essentials Attach", - "String_Id": "Dynamics_365_Business_Central_Essentials_Attach", - "GUID": "1d506c23-1702-46f1-b940-160c55f98d05", - "Service_Plan_Name": "DYN365_BUSCENTRAL_ESSENTIALS_ATTACH", - "Service_Plan_Id": "17ca446c-d7a4-4d29-8dec-8e241592164b", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Essentials Attach" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Essentials Attach", - "String_Id": "Dynamics_365_Business_Central_Essentials_Attach", - "GUID": "1d506c23-1702-46f1-b940-160c55f98d05", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Essentials Attach", - "String_Id": "Dynamics_365_Business_Central_Essentials_Attach", - "GUID": "1d506c23-1702-46f1-b940-160c55f98d05", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Essentials Attach", - "String_Id": "Dynamics_365_Business_Central_Essentials_Attach", - "GUID": "1d506c23-1702-46f1-b940-160c55f98d05", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central External Accountant", - "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU", - "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4", - "Service_Plan_Name": "DYN365_FINANCIALS_ACCOUNTANT", - "Service_Plan_Id": "170991d7-b98e-41c5-83d4-db2052e1795f", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central External Accountant" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central External Accountant", - "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU", - "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central External Accountant", - "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU", - "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central External Accountant", - "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU", - "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central for IWs", - "String_Id": "PROJECT_MADEIRA_PREVIEW_IW_SKU", - "GUID": "6a4a1628-9b9a-424d-bed5-4118f0ede3fd", - "Service_Plan_Name": "PROJECT_MADEIRA_PREVIEW_IW", - "Service_Plan_Id": "3f2afeed-6fb5-4bf9-998f-f2912133aead", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central for IWs" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central for IWs", - "String_Id": "PROJECT_MADEIRA_PREVIEW_IW_SKU", - "GUID": "6a4a1628-9b9a-424d-bed5-4118f0ede3fd", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Premium", - "String_Id": "DYN365_BUSCENTRAL_PREMIUM", - "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029", - "Service_Plan_Name": "DYN365_BUSCENTRAL_PREMIUM", - "Service_Plan_Id": "8e9002c0-a1d8-4465-b952-817d2948e6e2", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Premium" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Premium", - "String_Id": "DYN365_BUSCENTRAL_PREMIUM", - "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Premium", - "String_Id": "DYN365_BUSCENTRAL_PREMIUM", - "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Premium", - "String_Id": "DYN365_BUSCENTRAL_PREMIUM", - "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Team Members", - "String_Id": "DYN365_BUSCENTRAL_TEAM_MEMBER", - "GUID": "2e3c4023-80f6-4711-aa5d-29e0ecb46835", - "Service_Plan_Name": "DYN365_FINANCIALS_TEAM_MEMBERS", - "Service_Plan_Id": "d9a6391b-8970-4976-bd94-5f205007c8d8", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Team Members" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Team Members", - "String_Id": "DYN365_BUSCENTRAL_TEAM_MEMBER", - "GUID": "2e3c4023-80f6-4711-aa5d-29e0ecb46835", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Team Members", - "String_Id": "DYN365_BUSCENTRAL_TEAM_MEMBER", - "GUID": "2e3c4023-80f6-4711-aa5d-29e0ecb46835", - "Service_Plan_Name": "POWERAPPS_DYN_TEAM", - "Service_Plan_Id": "52e619e2-2730-439a-b0d3-d09ab7e8b705", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Team Members", - "String_Id": "DYN365_BUSCENTRAL_TEAM_MEMBER", - "GUID": "2e3c4023-80f6-4711-aa5d-29e0ecb46835", - "Service_Plan_Name": "FLOW_DYN_TEAM", - "Service_Plan_Id": "1ec58c70-f69c-486a-8109-4b87ce86e449", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Commerce Trial", - "String_Id": "DYN365_RETAIL_TRIAL", - "GUID": "1508ad2d-5802-44e6-bfe8-6fb65de63d28", - "Service_Plan_Name": "DYN365_RETAIL_TRIAL", - "Service_Plan_Id": "874d6da5-2a67-45c1-8635-96e8b3e300ea", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Retail Trial" - }, - { - "Product_Display_Name": "Dynamics 365 Commerce Trial", - "String_Id": "DYN365_RETAIL_TRIAL", - "GUID": "1508ad2d-5802-44e6-bfe8-6fb65de63d28", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "DYN365_ENTERPRISE_P1", - "Service_Plan_Id": "d56f3deb-50d8-465a-bedb-f079817ccac1", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Engagement Plan" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "D365_CSI_EMBED_CE", - "Service_Plan_Id": "1412cdc1-d593-4ad1-9050-40c30ad0b023", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Insights for CE Plan" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "DYN365_ENTERPRISE_FIELD_SERVICE", - "Service_Plan_Id": "8c66ef8a-177f-4c0d-853c-d4f219331d09", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Field Service" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "D365_ProjectOperationsCDS", - "Service_Plan_Id": "18fa3aba-b085-4105-87d7-55617b8585e6", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations CDS" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "Forms_Pro_CE", - "Service_Plan_Id": "97f29a83-1a20-44ff-bf48-5e4ad11f3e51", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Engagement Plan" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "Power_Pages_Internal_User", - "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", - "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "NBENTERPRISE", - "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", - "Service_Plans_Included_Friendly_Names": "Retired - Microsoft Social Engagement" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "D365_ProjectOperations", - "Service_Plan_Id": "69f07c66-bee4-4222-b051-195095efee5b", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "DYN365_CDS_GUIDES", - "Service_Plan_Id": "1315ade1-0410-450d-b8e3-8050e6da320f", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "GUIDES", - "Service_Plan_Id": "0b2c029c-dca0-454a-a336-887285d6ef07", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Guides" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "MICROSOFT_REMOTE_ASSIST", - "Service_Plan_Id": "4f4c7800-298a-4e22-8867-96b17850d4dd", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Remote Assist" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "POWERAPPS_GUIDES", - "Service_Plan_Id": "816971f4-37c5-424a-b12b-b56881f402e7", - "Service_Plans_Included_Friendly_Names": "Power Apps for Guides" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "PROJECT_FOR_PROJECT_OPERATIONS", - "Service_Plan_Id": "0a05d977-a21a-45b2-91ce-61c240dbafa2", - "Service_Plans_Included_Friendly_Names": "Project for Project Operations" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "Project Online Service" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "POWERAPPS_DYN_P2", - "Service_Plan_Id": "0b03f40b-c404-40c3-8651-2aceb74365fa", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "FLOW_DYN_P2", - "Service_Plan_Id": "b650d915-9886-424b-a08d-633cede56f57", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights Attach", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_ATTACH", - "GUID": "a3d0cd86-8068-4071-ad40-4dc5b5908c4b", - "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS_BASE", - "Service_Plan_Id": "d04ca659-b119-4a92-b8fc-3ede584a9d65", - "Service_Plans_Included_Friendly_Names": "Dataverse for Customer Insights BASE" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights Attach", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_ATTACH", - "GUID": "a3d0cd86-8068-4071-ad40-4dc5b5908c4b", - "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS", - "Service_Plan_Id": "ca00cff5-2568-4d03-bb6c-a653a8f360ca", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Customer Insights" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights Attach", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_ATTACH", - "GUID": "a3d0cd86-8068-4071-ad40-4dc5b5908c4b", - "Service_Plan_Name": "DYN365_CUSTOMER_INSIGHTS_BASE", - "Service_Plan_Id": "ee85d528-c4b4-4a99-9b07-fb9a1365dc93", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Insights" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights Attach", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_ATTACH", - "GUID": "a3d0cd86-8068-4071-ad40-4dc5b5908c4b", - "Service_Plan_Name": "Customer_Voice_Customer_Insights", - "Service_Plan_Id": "46c5ea0a-2343-49d9-ae4f-1c268b232d53", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Insights App" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights Attach", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_ATTACH", - "GUID": "a3d0cd86-8068-4071-ad40-4dc5b5908c4b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Digital Messaging add-on for Government", - "String_Id": "DYN365_CS_MESSAGING_GOV", - "GUID": "336dfe1f-3b33-4ab4-b395-cba8f614976d", - "Service_Plan_Name": "DYN365_CS_MESSAGING_TPS_GOV", - "Service_Plan_Id": "9d37aa61-3cc3-457c-8b54-e6f3853aa6b6", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging add-on for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Digital Messaging add-on for Government", - "String_Id": "DYN365_CS_MESSAGING_GOV", - "GUID": "336dfe1f-3b33-4ab4-b395-cba8f614976d", - "Service_Plan_Name": "DYN365_CS_MESSAGING_GOV", - "Service_Plan_Id": "e304c3c3-f86c-4200-b174-1ade48805b22", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging application integration for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Digital Messaging add-on for Government", - "String_Id": "DYN365_CS_MESSAGING_GOV", - "GUID": "336dfe1f-3b33-4ab4-b395-cba8f614976d", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_MESSAGING_GOV", - "Service_Plan_Id": "e501d49b-1176-4816-aece-2563c0d995db", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Digital Messaging for Gov" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Digital Messaging add-on for Government", - "String_Id": "DYN365_CS_MESSAGING_GOV", - "GUID": "336dfe1f-3b33-4ab4-b395-cba8f614976d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Digital Messaging and Voice Add-in for Government", - "String_Id": "DYN365_CS_OC_MESSAGING_VOICE_GOV", - "GUID": "6ec542c9-2a86-4d4a-8a52-d233eb58ef0a", - "Service_Plan_Name": "DYN365_CS_MESSAGING_TPS_GOV", - "Service_Plan_Id": "9d37aa61-3cc3-457c-8b54-e6f3853aa6b6", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging add-on for Government" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Digital Messaging and Voice Add-in for Government", - "String_Id": "DYN365_CS_OC_MESSAGING_VOICE_GOV", - "GUID": "6ec542c9-2a86-4d4a-8a52-d233eb58ef0a", - "Service_Plan_Name": "DYN365_CS_VOICE_GOV", - "Service_Plan_Id": "411b0c93-8f89-455e-a663-c0a3effd12c3", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Voice Add-in for Government" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Digital Messaging and Voice Add-in for Government", - "String_Id": "DYN365_CS_OC_MESSAGING_VOICE_GOV", - "GUID": "6ec542c9-2a86-4d4a-8a52-d233eb58ef0a", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_VOICE_GOV", - "Service_Plan_Id": "cad9c719-36e0-43c7-9506-6886f272d4f0", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Customer Service Voice for Government" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Digital Messaging and Voice Add-in for Government", - "String_Id": "DYN365_CS_OC_MESSAGING_VOICE_GOV", - "GUID": "6ec542c9-2a86-4d4a-8a52-d233eb58ef0a", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_MESSAGING_GOV", - "Service_Plan_Id": "e501d49b-1176-4816-aece-2563c0d995db", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Digital Messaging for Gov" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Digital Messaging and Voice Add-in for Government", - "String_Id": "DYN365_CS_OC_MESSAGING_VOICE_GOV", - "GUID": "6ec542c9-2a86-4d4a-8a52-d233eb58ef0a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Digital Messaging and Voice Add-in for Government for Test", - "String_Id": "DYN365_CS_OC_MESSAGING_VOICE_GOV_TEST", - "GUID": "ea9ba490-50b8-474e-8671-9fec0f1268f3", - "Service_Plan_Name": "DYN365_CS_MESSAGING_TPS_GOV", - "Service_Plan_Id": "9d37aa61-3cc3-457c-8b54-e6f3853aa6b6", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging add-on for Government" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Digital Messaging and Voice Add-in for Government for Test", - "String_Id": "DYN365_CS_OC_MESSAGING_VOICE_GOV_TEST", - "GUID": "ea9ba490-50b8-474e-8671-9fec0f1268f3", - "Service_Plan_Name": "DYN365_CS_VOICE_GOV", - "Service_Plan_Id": "411b0c93-8f89-455e-a663-c0a3effd12c3", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Voice Add-in for Government" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Digital Messaging and Voice Add-in for Government for Test", - "String_Id": "DYN365_CS_OC_MESSAGING_VOICE_GOV_TEST", - "GUID": "ea9ba490-50b8-474e-8671-9fec0f1268f3", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_VOICE_GOV", - "Service_Plan_Id": "cad9c719-36e0-43c7-9506-6886f272d4f0", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Customer Service Voice for Government" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Digital Messaging and Voice Add-in for Government for Test", - "String_Id": "DYN365_CS_OC_MESSAGING_VOICE_GOV_TEST", - "GUID": "ea9ba490-50b8-474e-8671-9fec0f1268f3", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_MESSAGING_GOV", - "Service_Plan_Id": "e501d49b-1176-4816-aece-2563c0d995db", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Digital Messaging for Gov" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Digital Messaging and Voice Add-in for Government for Test", - "String_Id": "DYN365_CS_OC_MESSAGING_VOICE_GOV_TEST", - "GUID": "ea9ba490-50b8-474e-8671-9fec0f1268f3", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Chat for Government", - "String_Id": "DYN365_CS_CHAT_GOV", - "GUID": "1b399f66-be2a-479c-a79d-84a43a46f79e", - "Service_Plan_Name": "DYN365_CS_CHAT_FPA_GOV", - "Service_Plan_Id": "b9f7ce72-67ff-4695-a9d9-5ff620232024", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Chat Application Integration for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Chat for Government", - "String_Id": "DYN365_CS_CHAT_GOV", - "GUID": "1b399f66-be2a-479c-a79d-84a43a46f79e", - "Service_Plan_Name": "DYN365_CS_CHAT_GOV", - "Service_Plan_Id": "ffb878a5-3184-472b-800b-65eadc63d764", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Chat for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Chat for Government", - "String_Id": "DYN365_CS_CHAT_GOV", - "GUID": "1b399f66-be2a-479c-a79d-84a43a46f79e", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_CHAT_GOV", - "Service_Plan_Id": "9023fe69-f9e0-4c1e-bfde-654954469162", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Chat for Gov" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Chat for Government", - "String_Id": "DYN365_CS_CHAT_GOV", - "GUID": "1b399f66-be2a-479c-a79d-84a43a46f79e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", - "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", - "Service_Plan_Name": "CUSTOMER_VOICE_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "dbe07046-af68-4861-a20d-1c8cbda9194f", - "Service_Plans_Included_Friendly_Names": "Customer Voice for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", - "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", - "Service_Plan_Name": "DYN365_CS_MESSAGING_TPS", - "Service_Plan_Id": "47c2b191-a5fb-4129-b690-00c474d2f623", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging add-on" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", - "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", - "Service_Plan_Name": "D365_CSI_EMBED_CSEnterprise", - "Service_Plan_Id": "5b1e5982-0e88-47bb-a95e-ae6085eda612", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Insights for CS Enterprise" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", - "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", - "Service_Plan_Name": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "Service_Plan_Id": "99340b49-fb81-4b1e-976b-8f2ae8e9394f", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", - "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", - "Service_Plan_Name": "DYN365_CS_VOICE", - "Service_Plan_Id": "f6ec6dfa-2402-468d-a455-89be11116d43", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Voice Add-in" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", - "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_VOICE", - "Service_Plan_Id": "a3dce1be-e9ca-453a-9483-e69a5b46ce98", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Customer Service Voice" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", - "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_MESSAGING", - "Service_Plan_Id": "2d2f174c-c3cc-4abe-9ce8-4dd86f469ab1", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Digital Messaging" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", - "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", - "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", - "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights Standalone", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE", - "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2", - "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS_BASE", - "Service_Plan_Id": "d04ca659-b119-4a92-b8fc-3ede584a9d65", - "Service_Plans_Included_Friendly_Names": "Dataverse for Cust Insights BASE" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights Standalone", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE", - "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2", - "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS", - "Service_Plan_Id": "ca00cff5-2568-4d03-bb6c-a653a8f360ca", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Customer Insights" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights Standalone", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE", - "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2", - "Service_Plan_Name": "DYN365_CUSTOMER_INSIGHTS_BASE", - "Service_Plan_Id": "ee85d528-c4b4-4a99-9b07-fb9a1365dc93", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Insights" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights Standalone", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE", - "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2", - "Service_Plan_Name": "DYN365_CUSTOMER_INSIGHTS_ENGAGEMENT_INSIGHTS_BASE", - "Service_Plan_Id": "b3c26516-3b8d-492f-a5a3-64d70ad3f8d0", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Insights Engagement Insights" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights Standalone", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE", - "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2", - "Service_Plan_Name": "Customer_Voice_Customer_Insights", - "Service_Plan_Id": "46c5ea0a-2343-49d9-ae4f-1c268b232d53", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Insights App" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights Standalone", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE", - "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights vTrial", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_VIRAL", - "GUID": "036c2481-aa8a-47cd-ab43-324f0c157c2d", - "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS_TRIAL", - "Service_Plan_Id": "94e5cbf6-d843-4ee8-a2ec-8b15eb52019e", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Customer Insights Trial" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights vTrial", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_VIRAL", - "GUID": "036c2481-aa8a-47cd-ab43-324f0c157c2d", - "Service_Plan_Name": "DYN365_CUSTOMER_INSIGHTS_ENGAGEMENT_INSIGHTS_BASE_TRIAL", - "Service_Plan_Id": "e2bdea63-235e-44c6-9f5e-5b0e783f07dd", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Insights Engagement Insights Viral" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights vTrial", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_VIRAL", - "GUID": "036c2481-aa8a-47cd-ab43-324f0c157c2d", - "Service_Plan_Name": "DYN365_CUSTOMER_INSIGHTS_VIRAL", - "Service_Plan_Id": "ed8e8769-94c5-4132-a3e7-7543b713d51f", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Insights Viral Plan" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights vTrial", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_VIRAL", - "GUID": "036c2481-aa8a-47cd-ab43-324f0c157c2d", - "Service_Plan_Name": "Forms_Pro_Customer_Insights", - "Service_Plan_Id": "fe581650-cf61-4a09-8814-4bd77eca9cb5", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Insights" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Attach to Qualifying Dynamics 365 Base Offer A", - "String_Id": "D365_CUSTOMER_SERVICE_ENT_ATTACH", - "GUID": "eb18b715-ea9d-4290-9994-2ebf4b5042d2", - "Service_Plan_Name": "D365_CUSTOMER_SERVICE_ENT_ATTACH", - "Service_Plan_Id": "61a2665f-1873-488c-9199-c3d0bc213fdf", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Enterprise Attach" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Attach to Qualifying Dynamics 365 Base Offer A", - "String_Id": "D365_CUSTOMER_SERVICE_ENT_ATTACH", - "GUID": "eb18b715-ea9d-4290-9994-2ebf4b5042d2", - "Service_Plan_Name": "Power_Pages_Internal_User", - "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", - "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Attach to Qualifying Dynamics 365 Base Offer A", - "String_Id": "D365_CUSTOMER_SERVICE_ENT_ATTACH", - "GUID": "eb18b715-ea9d-4290-9994-2ebf4b5042d2", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise for Government", - "String_Id": "D365_ENTERPRISE_CUSTOMER_SERVICE_GOV", - "GUID": "65758a5f-2e16-43b3-a8cb-296cd8f69e09", - "Service_Plan_Name": "DYN365_ENTERPRISE_CUSTOMER_SERVICE_GOV", - "Service_Plan_Id": "dc6643d9-1e72-4dce-9f64-1d6eac1f1c5a", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise for Government", - "String_Id": "D365_ENTERPRISE_CUSTOMER_SERVICE_GOV", - "GUID": "65758a5f-2e16-43b3-a8cb-296cd8f69e09", - "Service_Plan_Name": "Forms_Pro_Service_GCC", - "Service_Plan_Id": "bb681a9b-58f5-42ee-9926-674325be8aaa", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Service Enterprise for GCC" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise for Government", - "String_Id": "D365_ENTERPRISE_CUSTOMER_SERVICE_GOV", - "GUID": "65758a5f-2e16-43b3-a8cb-296cd8f69e09", - "Service_Plan_Name": "Power_Pages_Internal_User", - "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", - "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise for Government", - "String_Id": "D365_ENTERPRISE_CUSTOMER_SERVICE_GOV", - "GUID": "65758a5f-2e16-43b3-a8cb-296cd8f69e09", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise for Government", - "String_Id": "D365_ENTERPRISE_CUSTOMER_SERVICE_GOV", - "GUID": "65758a5f-2e16-43b3-a8cb-296cd8f69e09", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise for Government", - "String_Id": "D365_ENTERPRISE_CUSTOMER_SERVICE_GOV", - "GUID": "65758a5f-2e16-43b3-a8cb-296cd8f69e09", - "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", - "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise for Government", - "String_Id": "D365_ENTERPRISE_CUSTOMER_SERVICE_GOV", - "GUID": "65758a5f-2e16-43b3-a8cb-296cd8f69e09", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise for Government", - "String_Id": "D365_ENTERPRISE_CUSTOMER_SERVICE_GOV", - "GUID": "65758a5f-2e16-43b3-a8cb-296cd8f69e09", - "Service_Plan_Name": "FLOW_DYN_APPS_GOV", - "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise for Government", - "String_Id": "D365_ENTERPRISE_CUSTOMER_SERVICE_GOV", - "GUID": "65758a5f-2e16-43b3-a8cb-296cd8f69e09", - "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", - "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", - "GUID": "1e615a51-59db-4807-9957-aa83c3657351", - "Service_Plan_Name": "CUSTOMER_VOICE_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "dbe07046-af68-4861-a20d-1c8cbda9194f", - "Service_Plans_Included_Friendly_Names": "Customer Voice for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", - "GUID": "1e615a51-59db-4807-9957-aa83c3657351", - "Service_Plan_Name": "CCIBOTS_PRIVPREV_VIRAL", - "Service_Plan_Id": "ce312d15-8fdf-44c0-9974-a25a177125ee", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Customer Service Virtual Agents Viral" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", - "GUID": "1e615a51-59db-4807-9957-aa83c3657351", - "Service_Plan_Name": "DYN365_CS_MESSAGING_VIRAL_TRIAL", - "Service_Plan_Id": "3bf52bdf-5226-4a97-829e-5cca9b3f3392", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", - "GUID": "1e615a51-59db-4807-9957-aa83c3657351", - "Service_Plan_Name": "DYN365_CS_ENTERPRISE_VIRAL_TRIAL", - "Service_Plan_Id": "94fb67d3-465f-4d1f-a50a-952da079a564", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Enterprise vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", - "GUID": "1e615a51-59db-4807-9957-aa83c3657351", - "Service_Plan_Name": "DYNB365_CSI_VIRAL_TRIAL", - "Service_Plan_Id": "33f1466e-63a6-464c-bf6a-d1787928a56a", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Insights vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", - "GUID": "1e615a51-59db-4807-9957-aa83c3657351", - "Service_Plan_Name": "DYN365_CS_VOICE_VIRAL_TRIAL", - "Service_Plan_Id": "3de81e39-4ce1-47f7-a77f-8473d4eb6d7c", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Voice vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", - "GUID": "1e615a51-59db-4807-9957-aa83c3657351", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", - "GUID": "1e615a51-59db-4807-9957-aa83c3657351", - "Service_Plan_Name": "POWER_APPS_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "54b37829-818e-4e3c-a08a-3ea66ab9b45d", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", - "GUID": "1e615a51-59db-4807-9957-aa83c3657351", - "Service_Plan_Name": "POWER_AUTOMATE_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "81d4ecb8-0481-42fb-8868-51536c5aceeb", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Insights Trial", - "String_Id": "DYN365_AI_SERVICE_INSIGHTS", - "GUID": "61e6bd70-fbdb-4deb-82ea-912842f39431", - "Service_Plan_Name": "DYN365_AI_SERVICE_INSIGHTS", - "Service_Plan_Id": "4ade5aa6-5959-4d2c-bf0a-f4c9e2cc00f2", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Customer Service Trial" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Trial", - "String_Id": "FORMS_PRO", - "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", - "Service_Plan_Name": "DYN365_CDS_FORMS_PRO", - "Service_Plan_Id": "363430d1-e3f7-43bc-b07b-767b6bb95e4b", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Trial", - "String_Id": "FORMS_PRO", - "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", - "Service_Plan_Name": "FORMS_PRO", - "Service_Plan_Id": "17efdd9f-c22c-4ad8-b48e-3b1f3ee1dc9a", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Voice" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Trial", - "String_Id": "FORMS_PRO", - "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Trial", - "String_Id": "FORMS_PRO", - "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Trial", - "String_Id": "FORMS_PRO", - "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", - "Service_Plan_Name": "FLOW_FORMS_PRO", - "Service_Plan_Id": "57a0746c-87b8-4405-9397-df365a9db793", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 Customer Voice" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "DYN365_CUSTOMER_SERVICE_PRO", - "Service_Plan_Id": "6929f657-b31b-4947-b4ce-5066c3214f54", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Pro" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "POWERAPPS_CUSTOMER_SERVICE_PRO", - "Service_Plan_Id": "c507b04c-a905-4940-ada6-918891e6d3ad", - "Service_Plans_Included_Friendly_Names": "Power Apps for Customer Service Pro" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "FLOW_CUSTOMER_SERVICE_PRO", - "Service_Plan_Id": "0368fc9c-3721-437f-8b7d-3d0f888cdefc", - "Service_Plans_Included_Friendly_Names": "Power Automate for Customer Service Pro" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Professional Attach to Qualifying Dynamics 365 Base Offer", - "String_Id": "D365_CUSTOMER_SERVICE_PRO_ATTACH", - "GUID": "19dec69d-d9f3-4792-8a39-d8ecdf51937b", - "Service_Plan_Name": "D365_CUSTOMER_SERVICE_PRO_ATTACH", - "Service_Plan_Id": "a9dd2dca-10ae-4da2-aaf0-d3fe8a825110", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Pro Attach" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Professional Attach to Qualifying Dynamics 365 Base Offer", - "String_Id": "D365_CUSTOMER_SERVICE_PRO_ATTACH", - "GUID": "19dec69d-d9f3-4792-8a39-d8ecdf51937b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice", - "String_Id": "DYN365_CUSTOMER_VOICE_BASE", - "GUID": "359ea3e6-8130-4a57-9f8f-ad897a0342f1", - "Service_Plan_Name": "Customer_Voice_Base", - "Service_Plan_Id": "296820fe-dce5-40f4-a4f2-e14b8feef383", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Voice Base Plan" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice", - "String_Id": "DYN365_CUSTOMER_VOICE_BASE", - "GUID": "359ea3e6-8130-4a57-9f8f-ad897a0342f1", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses", - "String_Id": "Forms_Pro_AddOn", - "GUID": "446a86f8-a0cb-4095-83b3-d100eb050e3d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses", - "String_Id": "Forms_Pro_AddOn", - "GUID": "446a86f8-a0cb-4095-83b3-d100eb050e3d", - "Service_Plan_Name": "Forms_Pro_AddOn", - "Service_Plan_Id": "90a816f6-de5f-49fd-963c-df490d73b7b5", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice Add-on" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses", - "String_Id": "DYN365_CUSTOMER_VOICE_ADDON", - "GUID": "65f71586-ade3-4ce1-afc0-1b452eaf3782", - "Service_Plan_Name": "CUSTOMER_VOICE_ADDON", - "Service_Plan_Id": "e6e35e2d-2e7f-4e71-bc6f-2f40ed062f5d", - "Service_Plans_Included_Friendly_Names": "Dynamics Customer Voice Add-On" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses", - "String_Id": "DYN365_CUSTOMER_VOICE_ADDON", - "GUID": "65f71586-ade3-4ce1-afc0-1b452eaf3782", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice USL", - "String_Id": "Forms_Pro_USL", - "GUID": "e2ae107b-a571-426f-9367-6d4c8f1390ba", - "Service_Plan_Name": "CDS_FORM_PRO_USL", - "Service_Plan_Id": "e9830cfd-e65d-49dc-84fb-7d56b9aa2c89", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice USL", - "String_Id": "Forms_Pro_USL", - "GUID": "e2ae107b-a571-426f-9367-6d4c8f1390ba", - "Service_Plan_Name": "Forms_Pro_USL", - "Service_Plan_Id": "3ca0766a-643e-4304-af20-37f02726339b", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice USL" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice USL", - "String_Id": "Forms_Pro_USL", - "GUID": "e2ae107b-a571-426f-9367-6d4c8f1390ba", - "Service_Plan_Name": "FLOW_FORMS_PRO", - "Service_Plan_Id": "57a0746c-87b8-4405-9397-df365a9db793", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 Customer Voice" - }, - { - "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Database Storage for Government", - "String_Id": "CRMSTORAGE_GCC", - "GUID": "4aed5dd6-eb9c-4143-8f14-368d70287121", - "Service_Plan_Name": "CRMSTORAGE_GCC", - "Service_Plan_Id": "62edd427-6067-4274-93c4-29afdeb30707", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Storage Add-On" - }, - { - "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Database Storage for Government", - "String_Id": "CRMSTORAGE_GCC", - "GUID": "4aed5dd6-eb9c-4143-8f14-368d70287121", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Portal for Government", - "String_Id": "CRM_ONLINE_PORTAL_GCC", - "GUID": "cb9bc974-a47b-4123-998d-a383390168cc", - "Service_Plan_Name": "CRM_ONLINE_PORTAL_GCC", - "Service_Plan_Id": "eac6b45b-aa89-429f-a37b-c8ce00e8367e", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online - Portal Add-On" - }, - { - "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Portal for Government", - "String_Id": "CRM_ONLINE_PORTAL_GCC", - "GUID": "cb9bc974-a47b-4123-998d-a383390168cc", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Portal for Government", - "String_Id": "CRM_ONLINE_PORTAL_NOPREREQ", - "GUID": "67f58b51-af53-4344-9663-9a2beb1d8a8e", - "Service_Plan_Name": "CRM_ONLINE_PORTAL_GCC", - "Service_Plan_Id": "eac6b45b-aa89-429f-a37b-c8ce00e8367e", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online - Portal Add-On" - }, - { - "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Portal for Government", - "String_Id": "CRM_ONLINE_PORTAL_NOPREREQ", - "GUID": "67f58b51-af53-4344-9663-9a2beb1d8a8e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Portal (Qualified Offer)", - "String_Id": "CRM_ONLINE_PORTAL", - "GUID": "a4bfb28e-becc-41b0-a454-ac680dc258d3", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Portal (Qualified Offer)", - "String_Id": "CRM_ONLINE_PORTAL", - "GUID": "a4bfb28e-becc-41b0-a454-ac680dc258d3", - "Service_Plan_Name": "CRM_ONLINE_PORTAL", - "Service_Plan_Id": "1d4e9cb1-708d-449c-9f71-943aa8ed1d6a", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online - Portal Add-On" - }, - { - "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Non-Production Instance for Government", - "String_Id": "CRMTESTINSTANCE_GCC", - "GUID": "1d2756cb-2147-4b05-b4d5-f013c022dcb9", - "Service_Plan_Name": "CRMTESTINSTANCE_GCC", - "Service_Plan_Id": "6d99eb83-7b5f-4947-8e99-cc12f1adb399", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Additional Non-production Instance" - }, - { - "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Non-Production Instance for Government", - "String_Id": "CRMTESTINSTANCE_GCC", - "GUID": "1d2756cb-2147-4b05-b4d5-f013c022dcb9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Non-Production Instance for Government", - "String_Id": "CRMTESTINSTANCE_NOPREREQ", - "GUID": "2cf302fe-62db-4e20-b573-e0998b1208b5", - "Service_Plan_Name": "CRMTESTINSTANCE_GCC", - "Service_Plan_Id": "6d99eb83-7b5f-4947-8e99-cc12f1adb399", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Additional Non-production Instance" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Non-Production Instance for Government", - "String_Id": "CRMTESTINSTANCE_NOPREREQ", - "GUID": "2cf302fe-62db-4e20-b573-e0998b1208b5", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Production Instance for Government", - "String_Id": "CRMINSTANCE_GCC", - "GUID": "2bd3cb20-1bb6-446b-b4d0-089af3a05c52", - "Service_Plan_Name": "CRMINSTANCE_GCC", - "Service_Plan_Id": "483cc331-f4df-4a3b-b8ca-fe1a247569f6", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Instance" - }, - { - "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Production Instance for Government", - "String_Id": "CRMINSTANCE_GCC", - "GUID": "2bd3cb20-1bb6-446b-b4d0-089af3a05c52", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Field Service, Enterprise Edition - Resource Scheduling Optimization", - "String_Id": "CRM_AUTO_ROUTING_ADDON", - "GUID": "977464c4-bfaf-4b67-b761-a9bb735a2196", - "Service_Plan_Name": "CRM_AUTO_ROUTING_ENGINE_ADDON", - "Service_Plan_Id": "24435e4b-87d0-4d7d-8beb-63a9b1573022", - "Service_Plans_Included_Friendly_Names": "Field Service – Automated Routing Engine Add-On" - }, - { - "Product_Display_Name": "Dynamics 365 Field Service, Enterprise Edition - Resource Scheduling Optimization", - "String_Id": "CRM_AUTO_ROUTING_ADDON", - "GUID": "977464c4-bfaf-4b67-b761-a9bb735a2196", - "Service_Plan_Name": "CRM_AUTO_ROUTING_ADDON", - "Service_Plan_Id": "2ba394e0-6f18-4b77-b45f-a5663bbab540", - "Service_Plans_Included_Friendly_Names": "RETIRED - Field Service – Automated Routing Engine Add-On" - }, - { - "Product_Display_Name": "Dynamics 365 Field Service, Enterprise Edition - Resource Scheduling Optimization", - "String_Id": "CRM_AUTO_ROUTING_ADDON", - "GUID": "977464c4-bfaf-4b67-b761-a9bb735a2196", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Field Service Contractor for Government", - "String_Id": "D365_FIELD_SERVICE_CONTRACTOR_GOV", - "GUID": "e7965e3a-1f49-4d67-a3de-ad1ce460bbcc", - "Service_Plan_Name": "CDS_FIELD_SERVICE_CONTRACTOR_GCC", - "Service_Plan_Id": "2457fe40-65be-48a1-935f-924ad6e62dba", - "Service_Plans_Included_Friendly_Names": "Common Data Service Field service Part Time Contractors for Government" - }, - { - "Product_Display_Name": "Dynamics 365 Field Service Contractor for Government", - "String_Id": "D365_FIELD_SERVICE_CONTRACTOR_GOV", - "GUID": "e7965e3a-1f49-4d67-a3de-ad1ce460bbcc", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Dynamics 365 Field Service Contractor for Government", - "String_Id": "D365_FIELD_SERVICE_CONTRACTOR_GOV", - "GUID": "e7965e3a-1f49-4d67-a3de-ad1ce460bbcc", - "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", - "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Dynamics 365 Field Service Viral Trial", - "String_Id": "Dynamics_365_Field_Service_Enterprise_viral_trial", - "GUID": "29fcd665-d8d1-4f34-8eed-3811e3fca7b3", - "Service_Plan_Name": "CUSTOMER_VOICE_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "dbe07046-af68-4861-a20d-1c8cbda9194f", - "Service_Plans_Included_Friendly_Names": "Customer Voice for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Field Service Viral Trial", - "String_Id": "Dynamics_365_Field_Service_Enterprise_viral_trial", - "GUID": "29fcd665-d8d1-4f34-8eed-3811e3fca7b3", - "Service_Plan_Name": "DYN365_FS_ENTERPRISE_VIRAL_TRIAL", - "Service_Plan_Id": "20d1455b-72b2-4725-8354-a177845ab77d", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Field Service Enterprise vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Field Service Viral Trial", - "String_Id": "Dynamics_365_Field_Service_Enterprise_viral_trial", - "GUID": "29fcd665-d8d1-4f34-8eed-3811e3fca7b3", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Field Service Viral Trial", - "String_Id": "Dynamics_365_Field_Service_Enterprise_viral_trial", - "GUID": "29fcd665-d8d1-4f34-8eed-3811e3fca7b3", - "Service_Plan_Name": "POWER_APPS_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "54b37829-818e-4e3c-a08a-3ea66ab9b45d", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Field Service Viral Trial", - "String_Id": "Dynamics_365_Field_Service_Enterprise_viral_trial", - "GUID": "29fcd665-d8d1-4f34-8eed-3811e3fca7b3", - "Service_Plan_Name": "POWER_AUTOMATE_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "81d4ecb8-0481-42fb-8868-51536c5aceeb", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "DYN365_CDS_FINANCE", - "Service_Plan_Id": "e95d7060-d4d9-400a-a2bd-a244bf0b609e", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Dynamics 365 Finance" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "DYN365_REGULATORY_SERVICE", - "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Finance and Operations Enterprise edition - Regulatory Service" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "D365_Finance", - "Service_Plan_Id": "9f0e1b4e-9b33-4300-b451-b2c662cd4ff7", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 for Finance" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", - "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", - "Service_Plan_Name": "DYN365_ENTERPRISE_CASE_MANAGEMENT", - "Service_Plan_Id": "2822a3a1-9b8f-4432-8989-e11669a60dc8", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Case Management" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", - "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", - "Service_Plan_Name": "NBENTERPRISE", - "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", - "Service_Plans_Included_Friendly_Names": "Retired - Microsoft Social Engagement" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", - "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", - "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", - "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", - "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", - "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", - "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", - "String_Id": "D365_ENTERPRISE_CASE_MANAGEMENT_GOV", - "GUID": "5cd0b796-9ac8-4792-9f0b-796ca9044e4a", - "Service_Plan_Name": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV", - "Service_Plan_Id": "79bb0a8d-e686-4e16-ac59-2b3fd0014a61", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Case Management for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", - "String_Id": "D365_ENTERPRISE_CASE_MANAGEMENT_GOV", - "GUID": "5cd0b796-9ac8-4792-9f0b-796ca9044e4a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", - "String_Id": "D365_ENTERPRISE_CASE_MANAGEMENT_GOV", - "GUID": "5cd0b796-9ac8-4792-9f0b-796ca9044e4a", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", - "String_Id": "D365_ENTERPRISE_CASE_MANAGEMENT_GOV", - "GUID": "5cd0b796-9ac8-4792-9f0b-796ca9044e4a", - "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", - "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", - "String_Id": "D365_ENTERPRISE_CASE_MANAGEMENT_GOV", - "GUID": "5cd0b796-9ac8-4792-9f0b-796ca9044e4a", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", - "String_Id": "D365_ENTERPRISE_CASE_MANAGEMENT_GOV", - "GUID": "5cd0b796-9ac8-4792-9f0b-796ca9044e4a", - "Service_Plan_Name": "FLOW_DYN_APPS_GOV", - "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", - "String_Id": "D365_ENTERPRISE_CASE_MANAGEMENT_GOV", - "GUID": "5cd0b796-9ac8-4792-9f0b-796ca9044e4a", - "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", - "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV", - "GUID": "ff5a82be-1edd-4d48-94e0-52527825b589", - "Service_Plan_Name": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV", - "Service_Plan_Id": "79bb0a8d-e686-4e16-ac59-2b3fd0014a61", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Case Management for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV", - "GUID": "ff5a82be-1edd-4d48-94e0-52527825b589", - "Service_Plan_Name": "Power_Pages_Internal_User", - "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", - "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV", - "GUID": "ff5a82be-1edd-4d48-94e0-52527825b589", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV", - "GUID": "ff5a82be-1edd-4d48-94e0-52527825b589", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV", - "GUID": "ff5a82be-1edd-4d48-94e0-52527825b589", - "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", - "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV", - "GUID": "ff5a82be-1edd-4d48-94e0-52527825b589", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV", - "GUID": "ff5a82be-1edd-4d48-94e0-52527825b589", - "Service_Plan_Name": "FLOW_DYN_APPS_GOV", - "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV", - "GUID": "ff5a82be-1edd-4d48-94e0-52527825b589", - "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", - "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Dynamics 365 Commerce", - "String_Id": "DYN365_RETAIL", - "GUID": "79909bd8-4c69-4202-939e-11bc4385b134", - "Service_Plan_Name": "Power_Pages_Internal_User", - "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", - "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" - }, - { - "Product_Display_Name": "Dynamics 365 Commerce", - "String_Id": "DYN365_RETAIL", - "GUID": "79909bd8-4c69-4202-939e-11bc4385b134", - "Service_Plan_Name": "DYN365_CDS_RETAIL", - "Service_Plan_Id": "93cc200d-a47f-4c56-aec1-83f8b0d0425a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Dynamics 365 Retail" - }, - { - "Product_Display_Name": "Dynamics 365 Commerce", - "String_Id": "DYN365_RETAIL", - "GUID": "79909bd8-4c69-4202-939e-11bc4385b134", - "Service_Plan_Name": "FLOW_FOR_IOM_USL", - "Service_Plan_Id": "9e6d1620-dce9-4655-8933-af8fa5bccc9c", - "Service_Plans_Included_Friendly_Names": "Data Integration for IOM with Power Automate USL" - }, - { - "Product_Display_Name": "Dynamics 365 Commerce", - "String_Id": "DYN365_RETAIL", - "GUID": "79909bd8-4c69-4202-939e-11bc4385b134", - "Service_Plan_Name": "CDS_FOR_IOM", - "Service_Plan_Id": "2bb89402-51e9-4c5a-be33-e954a9dd1ba6", - "Service_Plans_Included_Friendly_Names": "Dataverse for IOM" - }, - { - "Product_Display_Name": "Dynamics 365 Commerce", - "String_Id": "DYN365_RETAIL", - "GUID": "79909bd8-4c69-4202-939e-11bc4385b134", - "Service_Plan_Name": "DYN365_RETAIL", - "Service_Plan_Id": "117e3aa0-8d08-4a19-a6a5-90b7a96e2128", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Commerce" - }, - { - "Product_Display_Name": "Dynamics 365 Commerce", - "String_Id": "DYN365_RETAIL", - "GUID": "79909bd8-4c69-4202-939e-11bc4385b134", - "Service_Plan_Name": "DYN365_REGULATORY_SERVICE", - "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Finance and Operations, Enterprise edition - Regulatory Service" - }, - { - "Product_Display_Name": "Dynamics 365 Commerce", - "String_Id": "DYN365_RETAIL", - "GUID": "79909bd8-4c69-4202-939e-11bc4385b134", - "Service_Plan_Name": "DYN365_FP_ACC_PROTECTION", - "Service_Plan_Id": "4c00c16c-0304-4421-b598-555c3e78edcb", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Fraud Protection - Account Protection" - }, - { - "Product_Display_Name": "Dynamics 365 Commerce", - "String_Id": "DYN365_RETAIL", - "GUID": "79909bd8-4c69-4202-939e-11bc4385b134", - "Service_Plan_Name": "DYN365_FP_LOSS_PREVENTION", - "Service_Plan_Id": "ecc62904-fa88-4552-a62c-fe582fb31444", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Fraud Protection - Loss Prevention" - }, - { - "Product_Display_Name": "Dynamics 365 Commerce", - "String_Id": "DYN365_RETAIL", - "GUID": "79909bd8-4c69-4202-939e-11bc4385b134", - "Service_Plan_Name": "DYN365_FP_PURCH_PROTECTION", - "Service_Plan_Id": "d703990f-006e-459b-b8dd-1267c4533a22", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Fraud Protection - Purchase Protection" - }, - { - "Product_Display_Name": "Dynamics 365 Commerce", - "String_Id": "DYN365_RETAIL", - "GUID": "79909bd8-4c69-4202-939e-11bc4385b134", - "Service_Plan_Name": "DYN365_IOM", - "Service_Plan_Id": "616cf6e2-f52f-4738-b463-10003061fcd3", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Intelligent Order Management" - }, - { - "Product_Display_Name": "Dynamics 365 Commerce", - "String_Id": "DYN365_RETAIL", - "GUID": "79909bd8-4c69-4202-939e-11bc4385b134", - "Service_Plan_Name": "DYN365_IOM_USER", - "Service_Plan_Id": "81375e2f-5ef7-4773-96aa-e3279f50bd21", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Intelligent Order Management USL" - }, - { - "Product_Display_Name": "Dynamics 365 Commerce", - "String_Id": "DYN365_RETAIL", - "GUID": "79909bd8-4c69-4202-939e-11bc4385b134", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Commerce", - "String_Id": "DYN365_RETAIL", - "GUID": "79909bd8-4c69-4202-939e-11bc4385b134", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Commerce", - "String_Id": "DYN365_RETAIL", - "GUID": "79909bd8-4c69-4202-939e-11bc4385b134", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Chat", - "String_Id": "DYN365_CS_CHAT", - "GUID": "7d7af6c2-0be6-46df-84d1-c181b0272909", - "Service_Plan_Name": "DYN365_CS_CHAT_FPA", - "Service_Plan_Id": "426ec19c-d5b1-4548-b894-6fe75028c30d", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Chat Application Integration" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Chat", - "String_Id": "DYN365_CS_CHAT", - "GUID": "7d7af6c2-0be6-46df-84d1-c181b0272909", - "Service_Plan_Name": "DYN365_CS_CHAT", - "Service_Plan_Id": "f69129db-6dc1-4107-855e-0aaebbcd9dd4", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Chat" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Chat", - "String_Id": "DYN365_CS_CHAT", - "GUID": "7d7af6c2-0be6-46df-84d1-c181b0272909", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_CHAT", - "Service_Plan_Id": "19e4c3a8-3ebe-455f-a294-4f3479873ae3", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Chat" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Chat", - "String_Id": "DYN365_CS_CHAT", - "GUID": "7d7af6c2-0be6-46df-84d1-c181b0272909", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "D365_CSI_EMBED_CSEnterprise", - "Service_Plan_Id": "5b1e5982-0e88-47bb-a95e-ae6085eda612", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Insights for CS Enterprise" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "Service_Plan_Id": "99340b49-fb81-4b1e-976b-8f2ae8e9394f", - "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT - SERVICE DISCONTINUATION" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "Forms_Pro_Service", - "Service_Plan_Id": "67bf4812-f90b-4db9-97e7-c0bbbf7b2d09", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Service Enterprise" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "NBENTERPRISE", - "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR CUSTOMER SERVICE" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE_GOV", - "GUID": "3c74d823-8f01-4fe8-82d5-f089a5504cec", - "Service_Plan_Name": "DYN365_ENTERPRISE_CUSTOMER_SERVICE_GOV", - "Service_Plan_Id": "dc6643d9-1e72-4dce-9f64-1d6eac1f1c5a", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE_GOV", - "GUID": "3c74d823-8f01-4fe8-82d5-f089a5504cec", - "Service_Plan_Name": "Forms_Pro_Service_GCC", - "Service_Plan_Id": "bb681a9b-58f5-42ee-9926-674325be8aaa", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Service Enterprise for GCC" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE_GOV", - "GUID": "3c74d823-8f01-4fe8-82d5-f089a5504cec", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE_GOV", - "GUID": "3c74d823-8f01-4fe8-82d5-f089a5504cec", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE_GOV", - "GUID": "3c74d823-8f01-4fe8-82d5-f089a5504cec", - "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", - "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE_GOV", - "GUID": "3c74d823-8f01-4fe8-82d5-f089a5504cec", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE_GOV", - "GUID": "3c74d823-8f01-4fe8-82d5-f089a5504cec", - "Service_Plan_Name": "FLOW_DYN_APPS_GOV", - "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE_GOV", - "GUID": "3c74d823-8f01-4fe8-82d5-f089a5504cec", - "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", - "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Attach to Qualifying Dynamics 365 Base Offer", - "String_Id": "D365_FIELD_SERVICE_ATTACH", - "GUID": "a36cdaa2-a806-4b6e-9ae0-28dbd993c20e", - "Service_Plan_Name": "D365_FIELD_SERVICE_ATTACH", - "Service_Plan_Id": "55c9148b-d5f0-4101-b5a0-b2727cfc0916", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Field Service Attach" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Attach to Qualifying Dynamics 365 Base Offer", - "String_Id": "D365_FIELD_SERVICE_ATTACH", - "GUID": "a36cdaa2-a806-4b6e-9ae0-28dbd993c20e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", - "GUID": "c7d15985-e746-4f01-b113-20b575898250", - "Service_Plan_Name": "DYN365_ENTERPRISE_FIELD_SERVICE", - "Service_Plan_Id": "8c66ef8a-177f-4c0d-853c-d4f219331d09", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Field Service" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", - "GUID": "c7d15985-e746-4f01-b113-20b575898250", - "Service_Plan_Name": "Forms_Pro_FS", - "Service_Plan_Id": "9c439259-63b0-46cc-a258-72be4313a42d", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Field Service" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", - "GUID": "c7d15985-e746-4f01-b113-20b575898250", - "Service_Plan_Name": "NBENTERPRISE", - "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", - "Service_Plans_Included_Friendly_Names": "Retired - Microsoft Social Engagement" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", - "GUID": "c7d15985-e746-4f01-b113-20b575898250", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", - "GUID": "c7d15985-e746-4f01-b113-20b575898250", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", - "GUID": "c7d15985-e746-4f01-b113-20b575898250", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", - "GUID": "c7d15985-e746-4f01-b113-20b575898250", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", - "GUID": "c7d15985-e746-4f01-b113-20b575898250", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", - "GUID": "c7d15985-e746-4f01-b113-20b575898250", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE_GOV", - "GUID": "c3d74ead-70b7-4513-8dce-797be3fbe07a", - "Service_Plan_Name": "DYN365_ENTERPRISE_FIELD_SERVICE_GOV", - "Service_Plan_Id": "a9a5be2d-17dd-4d43-ba78-9391e11d20a7", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Field Service for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE_GOV", - "GUID": "c3d74ead-70b7-4513-8dce-797be3fbe07a", - "Service_Plan_Name": "Forms_Pro_FS_GCC", - "Service_Plan_Id": "638862ef-afb3-46e4-b292-ed0aad759476", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Field Service for GCC" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE_GOV", - "GUID": "c3d74ead-70b7-4513-8dce-797be3fbe07a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE_GOV", - "GUID": "c3d74ead-70b7-4513-8dce-797be3fbe07a", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE_GOV", - "GUID": "c3d74ead-70b7-4513-8dce-797be3fbe07a", - "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", - "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE_GOV", - "GUID": "c3d74ead-70b7-4513-8dce-797be3fbe07a", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE_GOV", - "GUID": "c3d74ead-70b7-4513-8dce-797be3fbe07a", - "Service_Plan_Name": "FLOW_DYN_APPS_GOV", - "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE_GOV", - "GUID": "c3d74ead-70b7-4513-8dce-797be3fbe07a", - "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", - "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service for Government", - "String_Id": "D365_ENTERPRISE_FIELD_SERVICE_GOV", - "GUID": "8eac9119-7e6b-4278-9dc4-e3458993b08a", - "Service_Plan_Name": "DYN365_ENTERPRISE_FIELD_SERVICE_GOV", - "Service_Plan_Id": "a9a5be2d-17dd-4d43-ba78-9391e11d20a7", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Field Service for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service for Government", - "String_Id": "D365_ENTERPRISE_FIELD_SERVICE_GOV", - "GUID": "8eac9119-7e6b-4278-9dc4-e3458993b08a", - "Service_Plan_Name": "Forms_Pro_FS_GCC", - "Service_Plan_Id": "638862ef-afb3-46e4-b292-ed0aad759476", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Field Service for GCC" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service for Government", - "String_Id": "D365_ENTERPRISE_FIELD_SERVICE_GOV", - "GUID": "8eac9119-7e6b-4278-9dc4-e3458993b08a", - "Service_Plan_Name": "Power_Pages_Internal_User", - "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", - "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service for Government", - "String_Id": "D365_ENTERPRISE_FIELD_SERVICE_GOV", - "GUID": "8eac9119-7e6b-4278-9dc4-e3458993b08a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service for Government", - "String_Id": "D365_ENTERPRISE_FIELD_SERVICE_GOV", - "GUID": "8eac9119-7e6b-4278-9dc4-e3458993b08a", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service for Government", - "String_Id": "D365_ENTERPRISE_FIELD_SERVICE_GOV", - "GUID": "8eac9119-7e6b-4278-9dc4-e3458993b08a", - "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", - "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service for Government", - "String_Id": "D365_ENTERPRISE_FIELD_SERVICE_GOV", - "GUID": "8eac9119-7e6b-4278-9dc4-e3458993b08a", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service for Government", - "String_Id": "D365_ENTERPRISE_FIELD_SERVICE_GOV", - "GUID": "8eac9119-7e6b-4278-9dc4-e3458993b08a", - "Service_Plan_Name": "FLOW_DYN_APPS_GOV", - "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service for Government", - "String_Id": "D365_ENTERPRISE_FIELD_SERVICE_GOV", - "GUID": "8eac9119-7e6b-4278-9dc4-e3458993b08a", - "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", - "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Financials Business Edition", - "String_Id": "DYN365_FINANCIALS_BUSINESS_SKU", - "GUID": "cc13a803-544e-4464-b4e4-6d6169a138fa", - "Service_Plan_Name": "DYN365_FINANCIALS_BUSINESS", - "Service_Plan_Id": "920656a2-7dd8-4c83-97b6-a356414dbd36", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Financials Business Edition", - "String_Id": "DYN365_FINANCIALS_BUSINESS_SKU", - "GUID": "cc13a803-544e-4464-b4e4-6d6169a138fa", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Financials Business Edition", - "String_Id": "DYN365_FINANCIALS_BUSINESS_SKU", - "GUID": "cc13a803-544e-4464-b4e4-6d6169a138fa", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR FINANCIALS" - }, - { - "Product_Display_Name": "Dynamics 365 Guides vTrial", - "String_Id": "Dynamics_365_Guides_vTrial", - "GUID": "99cb3f83-fbec-4aa1-8262-9679e6df7c53", - "Service_Plan_Name": "D365_GUIDES_VIRAL_TRIAL", - "Service_Plan_Id": "fe986032-d840-4817-82d4-51fe4fbbe163", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Guides vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Guides vTrial", - "String_Id": "Dynamics_365_Guides_vTrial", - "GUID": "99cb3f83-fbec-4aa1-8262-9679e6df7c53", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Guides vTrial", - "String_Id": "Dynamics_365_Guides_vTrial", - "GUID": "99cb3f83-fbec-4aa1-8262-9679e6df7c53", - "Service_Plan_Name": "DYN365_CDS_VIRAL", - "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Dynamics 365 Guides vTrial", - "String_Id": "Dynamics_365_Guides_vTrial", - "GUID": "99cb3f83-fbec-4aa1-8262-9679e6df7c53", - "Service_Plan_Name": "POWER_APPS_DYN365_VIRAL_TRIAL_MIXED_REALITY", - "Service_Plan_Id": "066e2fd1-ba15-40e7-aa96-d6636b1cdf71", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365 Mixed Reality" - }, - { - "Product_Display_Name": "Dynamics 365 Guides vTrial", - "String_Id": "Dynamics_365_Guides_vTrial", - "GUID": "99cb3f83-fbec-4aa1-8262-9679e6df7c53", - "Service_Plan_Name": "POWER_AUTOMATE_DYN365_VIRAL_TRIAL_MIXED_REALITY", - "Service_Plan_Id": "26fa8a18-2812-4b3d-96b4-864818ce26be", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 Mixed Reality" - }, - { - "Product_Display_Name": "Dynamics 365 Hybrid Connector", - "String_Id": "CRM_HYBRIDCONNECTOR", - "GUID": "de176c31-616d-4eae-829a-718918d7ec23", - "Service_Plan_Name": "CRM_HYBRIDCONNECTOR", - "Service_Plan_Id": "0210d5c8-49d2-4dd1-a01b-a91c7c14e0bf", - "Service_Plans_Included_Friendly_Names": "CRM Hybrid Connector" - }, - { - "Product_Display_Name": "Dynamics 365 Hybrid Connector", - "String_Id": "CRM_HYBRIDCONNECTOR", - "GUID": "de176c31-616d-4eae-829a-718918d7ec23", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Additional Application", - "String_Id": "DYN365_MARKETING_APPLICATION_ADDON", - "GUID": "99c5688b-6c75-4496-876f-07f0fbd69add", - "Service_Plan_Name": "DYN365_MARKETING_APPLICATION_ADDON", - "Service_Plan_Id": "51cf0638-4861-40c0-8b20-1161ab2f80be", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing Additional Application" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Additional Application", - "String_Id": "DYN365_MARKETING_APPLICATION_ADDON", - "GUID": "99c5688b-6c75-4496-876f-07f0fbd69add", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Addnl Contacts Tier 3", - "String_Id": "DYN365_MARKETING_CONTACT_ADDON_T3", - "GUID": "23053933-0fda-431f-9a5b-a00fd78444c1", - "Service_Plan_Name": "DYN365_MARKETING_50K_CONTACT_ADDON", - "Service_Plan_Id": "e626a4ec-1ba2-409e-bf75-9bc0bc30cca7", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing 50K Addnl Contacts" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Addnl Contacts Tier 3", - "String_Id": "DYN365_MARKETING_CONTACT_ADDON_T3", - "GUID": "23053933-0fda-431f-9a5b-a00fd78444c1", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Addnl Contacts Tier 5", - "String_Id": "DYN365_MARKETING_CONTACT_ADDON_T5", - "GUID": "d8eec316-778c-4f14-a7d1-a0aca433b4e7", - "Service_Plan_Name": "DYN365_MARKETING_50K_CONTACT_ADDON", - "Service_Plan_Id": "e626a4ec-1ba2-409e-bf75-9bc0bc30cca7", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing 50K Addnl Contacts" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Addnl Contacts Tier 5", - "String_Id": "DYN365_MARKETING_CONTACT_ADDON_T5", - "GUID": "d8eec316-778c-4f14-a7d1-a0aca433b4e7", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Additional Non-Prod Application", - "String_Id": "DYN365_MARKETING_SANDBOX_APPLICATION_ADDON", - "GUID": "c393e9bd-2335-4b46-8b88-9e2a86a85ec1", - "Service_Plan_Name": "DYN365_MARKETING_SANDBOX_APPLICATION_ADDON", - "Service_Plan_Id": "1599de10-5250-4c95-acf2-491f74edce48", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Marketing Sandbox Application AddOn" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Attach", - "String_Id": "DYN365_MARKETING_APP_ATTACH", - "GUID": "85430fb9-02e8-48be-9d7e-328beb41fa29", - "Service_Plan_Name": "DYN365_MARKETING_APP", - "Service_Plan_Id": "a3a4fa10-5092-401a-af30-0462a95a7ac8", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Attach", - "String_Id": "DYN365_MARKETING_APP_ATTACH", - "GUID": "85430fb9-02e8-48be-9d7e-328beb41fa29", - "Service_Plan_Name": "Forms_Pro_Marketing_App", - "Service_Plan_Id": "22b657cf-0a9e-467b-8a91-5e31f21bc570", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Marketing Application" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Attach", - "String_Id": "DYN365_MARKETING_APP_ATTACH", - "GUID": "85430fb9-02e8-48be-9d7e-328beb41fa29", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing USL", - "String_Id": "D365_MARKETING_USER", - "GUID": "4b32a493-9a67-4649-8eb9-9fc5a5f75c12", - "Service_Plan_Name": "DYN365_MARKETING_MSE_USER", - "Service_Plan_Id": "2824c69a-1ac5-4397-8592-eae51cb8b581", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing MSE User" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing USL", - "String_Id": "D365_MARKETING_USER", - "GUID": "4b32a493-9a67-4649-8eb9-9fc5a5f75c12", - "Service_Plan_Name": "DYN365_MARKETING_USER", - "Service_Plan_Id": "5d7a6abc-eebd-46ab-96e1-e4a2f54a2248", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing USL" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing USL", - "String_Id": "D365_MARKETING_USER", - "GUID": "4b32a493-9a67-4649-8eb9-9fc5a5f75c12", - "Service_Plan_Name": "Forms_Pro_Marketing", - "Service_Plan_Id": "76366ba0-d230-47aa-8087-b6d55dae454f", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Marketing" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing USL", - "String_Id": "D365_MARKETING_USER", - "GUID": "4b32a493-9a67-4649-8eb9-9fc5a5f75c12", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Operations – Activity", - "String_Id": "Dyn365_Operations_Activity", - "GUID": "b75074f1-4c54-41bf-970f-c9ac871567f5", - "Service_Plan_Name": "DYN365_RETAIL_Activity", - "Service_Plan_Id": "f06754ec-6d72-4bf6-991c-4cb5413d9932", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Retail Activity" - }, - { - "Product_Display_Name": "Dynamics 365 Operations – Activity", - "String_Id": "Dyn365_Operations_Activity", - "GUID": "b75074f1-4c54-41bf-970f-c9ac871567f5", - "Service_Plan_Name": "DYN365_Enterprise_Talent_Attract_Activity", - "Service_Plan_Id": "aac5a56b-b02e-4608-8014-b076646d4011", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent - Attract Experience Activity" - }, - { - "Product_Display_Name": "Dynamics 365 Operations – Activity", - "String_Id": "Dyn365_Operations_Activity", - "GUID": "b75074f1-4c54-41bf-970f-c9ac871567f5", - "Service_Plan_Name": "DYN365_Enterprise_Talent_Onboard_Activity", - "Service_Plan_Id": "db225597-e9c2-4d96-8ace-5424744c80f8", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent - Onboard Experience" - }, - { - "Product_Display_Name": "Dynamics 365 Operations – Activity", - "String_Id": "Dyn365_Operations_Activity", - "GUID": "b75074f1-4c54-41bf-970f-c9ac871567f5", - "Service_Plan_Name": "Dynamics_365_for_Talent_Activity", - "Service_Plan_Id": "1f87ee90-5c3a-4cf9-b6fd-e3e8017c26ec", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent Activity" - }, - { - "Product_Display_Name": "Dynamics 365 Operations – Activity", - "String_Id": "Dyn365_Operations_Activity", - "GUID": "b75074f1-4c54-41bf-970f-c9ac871567f5", - "Service_Plan_Name": "Dynamics_365_for_Operations_Activity", - "Service_Plan_Id": "6bddf93e-d6f4-4991-b9fc-30cfdf07ee7b", - "Service_Plans_Included_Friendly_Names": "Dynamics365 for Operations Activity" - }, - { - "Product_Display_Name": "Dynamics 365 Operations – Activity", - "String_Id": "Dyn365_Operations_Activity", - "GUID": "b75074f1-4c54-41bf-970f-c9ac871567f5", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Project Operations Attach", - "String_Id": "DYN365_PROJECT_OPERATIONS_ATTACH", - "GUID": "af739e8e-dd11-4eb5-a986-5908f595c603", - "Service_Plan_Name": "D365CDSforProjectOperations", - "Service_Plan_Id": "7df1d500-ca5c-4229-8cea-815bc88798c9", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Dynamics 365 Project Operations" - }, - { - "Product_Display_Name": "Dynamics 365 Project Operations Attach", - "String_Id": "DYN365_PROJECT_OPERATIONS_ATTACH", - "GUID": "af739e8e-dd11-4eb5-a986-5908f595c603", - "Service_Plan_Name": "D365_ProjectOperationsCDSAttach", - "Service_Plan_Id": "e564d403-7eaf-4c91-b92f-bb0dc62026e1", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations CDS Attach" - }, - { - "Product_Display_Name": "Dynamics 365 Project Operations Attach", - "String_Id": "DYN365_PROJECT_OPERATIONS_ATTACH", - "GUID": "af739e8e-dd11-4eb5-a986-5908f595c603", - "Service_Plan_Name": "Power_Pages_Internal_User", - "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", - "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" - }, - { - "Product_Display_Name": "Dynamics 365 Project Operations Attach", - "String_Id": "DYN365_PROJECT_OPERATIONS_ATTACH", - "GUID": "af739e8e-dd11-4eb5-a986-5908f595c603", - "Service_Plan_Name": "D365_ProjectOperations", - "Service_Plan_Id": "69f07c66-bee4-4222-b051-195095efee5b", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations" - }, - { - "Product_Display_Name": "Dynamics 365 Project Operations Attach", - "String_Id": "DYN365_PROJECT_OPERATIONS_ATTACH", - "GUID": "af739e8e-dd11-4eb5-a986-5908f595c603", - "Service_Plan_Name": "D365_ProjectOperationsAttach", - "Service_Plan_Id": "fa7675bd-6717-40e7-8172-d0bbcbe1ab12", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations Attach" - }, - { - "Product_Display_Name": "Dynamics 365 Project Operations Attach", - "String_Id": "DYN365_PROJECT_OPERATIONS_ATTACH", - "GUID": "af739e8e-dd11-4eb5-a986-5908f595c603", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Project Operations Attach", - "String_Id": "DYN365_PROJECT_OPERATIONS_ATTACH", - "GUID": "af739e8e-dd11-4eb5-a986-5908f595c603", - "Service_Plan_Name": "PROJECT_FOR_PROJECT_OPERATIONS_ATTACH", - "Service_Plan_Id": "6d8e07c6-9613-484f-8cc1-a66c5c3979bb", - "Service_Plans_Included_Friendly_Names": "Project for Project Operations Attach" - }, - { - "Product_Display_Name": "Dynamics 365 Project Operations Attach", - "String_Id": "DYN365_PROJECT_OPERATIONS_ATTACH", - "GUID": "af739e8e-dd11-4eb5-a986-5908f595c603", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" - }, - { - "Product_Display_Name": "Dynamics 365 for Project Service Automation Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV", - "GUID": "1ec19b5f-7542-4b20-b01f-fb5d3f040e2d", - "Service_Plan_Name": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV", - "Service_Plan_Id": "1d8c8e0e-4308-4db5-8a41-b129dbdaea20", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Project Service Automation for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Project Service Automation Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV", - "GUID": "1ec19b5f-7542-4b20-b01f-fb5d3f040e2d", - "Service_Plan_Name": "Forms_Pro_PS_GCC", - "Service_Plan_Id": "e98256c5-17d0-4987-becc-e991c52d55c6", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Project Service Automation for GCC" - }, - { - "Product_Display_Name": "Dynamics 365 for Project Service Automation Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV", - "GUID": "1ec19b5f-7542-4b20-b01f-fb5d3f040e2d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Project Service Automation Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV", - "GUID": "1ec19b5f-7542-4b20-b01f-fb5d3f040e2d", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Project Service Automation Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV", - "GUID": "1ec19b5f-7542-4b20-b01f-fb5d3f040e2d", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION_GOV", - "Service_Plan_Id": "45c6831b-ad74-4c7f-bd03-7c2b3fa39067", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" - }, - { - "Product_Display_Name": "Dynamics 365 for Project Service Automation Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV", - "GUID": "1ec19b5f-7542-4b20-b01f-fb5d3f040e2d", - "Service_Plan_Name": "SHAREPOINT_PROJECT_GOV", - "Service_Plan_Id": "e57afa78-1f19-4542-ba13-b32cd4d8f472", - "Service_Plans_Included_Friendly_Names": "Project Online Service for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Project Service Automation Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV", - "GUID": "1ec19b5f-7542-4b20-b01f-fb5d3f040e2d", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Dynamics 365 for Project Service Automation Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV", - "GUID": "1ec19b5f-7542-4b20-b01f-fb5d3f040e2d", - "Service_Plan_Name": "FLOW_DYN_APPS_GOV", - "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Project Service Automation Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV", - "GUID": "1ec19b5f-7542-4b20-b01f-fb5d3f040e2d", - "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", - "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales and Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", - "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", - "Service_Plan_Name": "DYN365_ENTERPRISE_P1", - "Service_Plan_Id": "d56f3deb-50d8-465a-bedb-f079817ccac1", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 CUSTOMER ENGAGEMENT PLAN" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales and Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", - "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales and Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", - "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", - "Service_Plan_Name": "NBENTERPRISE", - "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", - "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT - SERVICE DISCONTINUATION" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales and Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", - "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales and Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", - "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales and Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", - "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales and Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", - "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_SALES", - "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", - "Service_Plan_Name": "DYN365_ENTERPRISE_SALES", - "Service_Plan_Id": "2da8e897-7791-486b-b08f-cc63c8129df7", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR SALES" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_SALES", - "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_SALES", - "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", - "Service_Plan_Name": "NBENTERPRISE", - "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", - "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT - SERVICE DISCONTINUATION" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_SALES", - "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_SALES", - "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_SALES", - "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_SALES", - "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_SALES_GOV", - "GUID": "28b275ce-aec7-4c26-82e2-1ffbc2746ad4", - "Service_Plan_Name": "DYN365_ENTERPRISE_SALES_GOV", - "Service_Plan_Id": "213be507-d547-4f79-bc2c-6196bc54c4a3", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_SALES_GOV", - "GUID": "28b275ce-aec7-4c26-82e2-1ffbc2746ad4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_SALES_GOV", - "GUID": "28b275ce-aec7-4c26-82e2-1ffbc2746ad4", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_SALES_GOV", - "GUID": "28b275ce-aec7-4c26-82e2-1ffbc2746ad4", - "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", - "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_SALES_GOV", - "GUID": "28b275ce-aec7-4c26-82e2-1ffbc2746ad4", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_SALES_GOV", - "GUID": "28b275ce-aec7-4c26-82e2-1ffbc2746ad4", - "Service_Plan_Name": "FLOW_DYN_APPS_GOV", - "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales, Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_SALES_GOV", - "GUID": "28b275ce-aec7-4c26-82e2-1ffbc2746ad4", - "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", - "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", - "String_Id": "D365_ENTERPRISE_SALES_GOV", - "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", - "Service_Plan_Name": "DYN365_ENTERPRISE_SALES_GOV", - "Service_Plan_Id": "213be507-d547-4f79-bc2c-6196bc54c4a3", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", - "String_Id": "D365_ENTERPRISE_SALES_GOV", - "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", - "Service_Plan_Name": "Forms_Pro_SalesEnt_GCC", - "Service_Plan_Id": "33850b82-0a37-4ebb-a0b2-ee163facd716", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Sales Enterprise for GCC" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", - "String_Id": "D365_ENTERPRISE_SALES_GOV", - "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", - "Service_Plan_Name": "Power_Pages_Internal_User", - "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", - "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", - "String_Id": "D365_ENTERPRISE_SALES_GOV", - "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", - "String_Id": "D365_ENTERPRISE_SALES_GOV", - "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", - "Service_Plan_Name": "Microsoft_Viva_Sales_PremiumTrial", - "Service_Plan_Id": "8ba1ff15-7bf6-4620-b65c-ecedb6942766", - "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium \u0026 Trial" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", - "String_Id": "D365_ENTERPRISE_SALES_GOV", - "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", - "Service_Plan_Name": "Microsoft_Viva_Sales_PowerAutomate", - "Service_Plan_Id": "a933a62f-c3fb-48e5-a0b7-ac92b94b4420", - "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium with Power Automate" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", - "String_Id": "D365_ENTERPRISE_SALES_GOV", - "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", - "String_Id": "D365_ENTERPRISE_SALES_GOV", - "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", - "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", - "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", - "String_Id": "D365_ENTERPRISE_SALES_GOV", - "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", - "String_Id": "D365_ENTERPRISE_SALES_GOV", - "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", - "Service_Plan_Name": "FLOW_DYN_APPS_GOV", - "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", - "String_Id": "D365_ENTERPRISE_SALES_GOV", - "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", - "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", - "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox", - "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox", - "GUID": "494721b8-1f30-4315-aba6-70ca169358d9", - "Service_Plan_Name": "DYN365_ENTERPRISE_P1", - "Service_Plan_Id": "d56f3deb-50d8-465a-bedb-f079817ccac1", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Engagement Plan" - }, - { - "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox", - "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox", - "GUID": "494721b8-1f30-4315-aba6-70ca169358d9", - "Service_Plan_Name": "Forms_Pro_Service", - "Service_Plan_Id": "67bf4812-f90b-4db9-97e7-c0bbbf7b2d09", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Service Enterprise" - }, - { - "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox", - "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox", - "GUID": "494721b8-1f30-4315-aba6-70ca169358d9", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox", - "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox", - "GUID": "494721b8-1f30-4315-aba6-70ca169358d9", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox", - "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox", - "GUID": "494721b8-1f30-4315-aba6-70ca169358d9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox", - "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox", - "GUID": "494721b8-1f30-4315-aba6-70ca169358d9", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "DYN365_SALES_INSIGHTS", - "Service_Plan_Id": "fedc185f-0711-4cc0-80ed-0a92da1a8384", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Sales (Embedded)" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "Microsoft_Viva_Sales_PowerAutomate", - "Service_Plan_Id": "a933a62f-c3fb-48e5-a0b7-ac92b94b4420", - "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium with Power Automate" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "Microsoft_Viva_Sales_PremiumTrial", - "Service_Plan_Id": "8ba1ff15-7bf6-4620-b65c-ecedb6942766", - "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium \u0026 Trial" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "Power_Pages_Internal_User", - "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", - "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "Forms_Pro_SalesEnt", - "Service_Plan_Id": "8839ef0e-91f1-4085-b485-62e06e7c7987", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Sales Enterprise" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "DYN365_ENTERPRISE_SALES", - "Service_Plan_Id": "2da8e897-7791-486b-b08f-cc63c8129df7", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales" - }, - { - "Product_Display_Name": "Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer", - "String_Id": "DYN365_SCM_ATTACH", - "GUID": "090b4a96-8114-4c95-9c91-60e81ef53302", - "Service_Plan_Name": "Power_Pages_Internal_User", - "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", - "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" - }, - { - "Product_Display_Name": "Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer", - "String_Id": "DYN365_SCM_ATTACH", - "GUID": "090b4a96-8114-4c95-9c91-60e81ef53302", - "Service_Plan_Name": "DYN365_CDS_SUPPLYCHAINMANAGEMENT", - "Service_Plan_Id": "b6a8b974-2956-4e14-ae81-f0384c363528", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Dynamics 365 Supply Chain Management" - }, - { - "Product_Display_Name": "Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer", - "String_Id": "DYN365_SCM_ATTACH", - "GUID": "090b4a96-8114-4c95-9c91-60e81ef53302", - "Service_Plan_Name": "CDS_FOR_IOM", - "Service_Plan_Id": "2bb89402-51e9-4c5a-be33-e954a9dd1ba6", - "Service_Plans_Included_Friendly_Names": "Dataverse for IOM" - }, - { - "Product_Display_Name": "Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer", - "String_Id": "DYN365_SCM_ATTACH", - "GUID": "090b4a96-8114-4c95-9c91-60e81ef53302", - "Service_Plan_Name": "DYN365_REGULATORY_SERVICE", - "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Finance and Operations, Enterprise edition - Regulatory Service" - }, - { - "Product_Display_Name": "Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer", - "String_Id": "DYN365_SCM_ATTACH", - "GUID": "090b4a96-8114-4c95-9c91-60e81ef53302", - "Service_Plan_Name": "D365_SCM_Attach", - "Service_Plan_Id": "b21c777f-c2d5-486e-88f6-fc0a3e474271", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Supply Chain Management Attach" - }, - { - "Product_Display_Name": "Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer", - "String_Id": "DYN365_SCM_ATTACH", - "GUID": "090b4a96-8114-4c95-9c91-60e81ef53302", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Business Edition", - "String_Id": "DYN365_BUSINESS_MARKETING", - "GUID": "238e2f8d-e429-4035-94db-6926be4ffe7b", - "Service_Plan_Name": "DYN365_BUSINESS_Marketing", - "Service_Plan_Id": "393a0c96-9ba1-4af0-8975-fa2f853a25ac", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Marketing" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Business Edition", - "String_Id": "DYN365_BUSINESS_MARKETING", - "GUID": "238e2f8d-e429-4035-94db-6926be4ffe7b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Regulatory Service - Enterprise Edition Trial", - "String_Id": "DYN365_REGULATORY_SERVICE", - "GUID": "7ed4877c-0863-4f69-9187-245487128d4f", - "Service_Plan_Name": "DYN365_REGULATORY_SERVICE", - "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Finance and Operations Enterprise edition - Regulatory Service" - }, - { - "Product_Display_Name": "Dynamics 365 Regulatory Service - Enterprise Edition Trial", - "String_Id": "DYN365_REGULATORY_SERVICE", - "GUID": "7ed4877c-0863-4f69-9187-245487128d4f", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial", - "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial", - "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71", - "Service_Plan_Name": "CUSTOMER_VOICE_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "dbe07046-af68-4861-a20d-1c8cbda9194f", - "Service_Plans_Included_Friendly_Names": "Customer Voice for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial", - "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial", - "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71", - "Service_Plan_Name": "DYN365_SALES_ENTERPRISE_VIRAL_TRIAL", - "Service_Plan_Id": "7f636c80-0961-41b2-94da-9642ccf02de0", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Sales Enterprise vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial", - "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial", - "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71", - "Service_Plan_Name": "DYN365_SALES_INSIGHTS_VIRAL_TRIAL", - "Service_Plan_Id": "456747c0-cf1e-4b0d-940f-703a01b964cc", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Sales Insights vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial", - "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial", - "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial", - "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial", - "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71", - "Service_Plan_Name": "POWER_APPS_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "54b37829-818e-4e3c-a08a-3ea66ab9b45d", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial", - "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial", - "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71", - "Service_Plan_Name": "POWER_AUTOMATE_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "81d4ecb8-0481-42fb-8868-51536c5aceeb", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 For Sales Professional", - "String_Id": "D365_SALES_PRO", - "GUID": "be9f9771-1c64-4618-9907-244325141096", - "Service_Plan_Name": "DYN365_SALES_PRO", - "Service_Plan_Id": "88d83950-ff78-4e85-aa66-abfc787f8090", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Professional" - }, - { - "Product_Display_Name": "Dynamics 365 For Sales Professional", - "String_Id": "D365_SALES_PRO", - "GUID": "be9f9771-1c64-4618-9907-244325141096", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 For Sales Professional", - "String_Id": "D365_SALES_PRO", - "GUID": "be9f9771-1c64-4618-9907-244325141096", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Dynamics 365 For Sales Professional", - "String_Id": "D365_SALES_PRO", - "GUID": "be9f9771-1c64-4618-9907-244325141096", - "Service_Plan_Name": "POWERAPPS_SALES_PRO", - "Service_Plan_Id": "6f9f70ce-138d-49f8-bb8b-2e701b7dde75", - "Service_Plans_Included_Friendly_Names": "Power Apps for Sales Pro" - }, - { - "Product_Display_Name": "Dynamics 365 For Sales Professional", - "String_Id": "D365_SALES_PRO", - "GUID": "be9f9771-1c64-4618-9907-244325141096", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "f944d685-f762-4371-806d-a1f48e5bea13", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Dynamics 365 For Sales Professional", - "String_Id": "D365_SALES_PRO", - "GUID": "be9f9771-1c64-4618-9907-244325141096", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)Dynamics 365 for Sales Pro Attach" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Professional for Government", - "String_Id": "D365_SALES_PRO_GOV", - "GUID": "229fa362-9d30-4dbc-8110-21b77a7f9b26", - "Service_Plan_Name": "DYN365_SALES_PRO_GOV", - "Service_Plan_Id": "dd89efa0-5a55-4892-ba30-82e3f8008339", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Professional for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Professional for Government", - "String_Id": "D365_SALES_PRO_GOV", - "GUID": "229fa362-9d30-4dbc-8110-21b77a7f9b26", - "Service_Plan_Name": "POWERAPPS_SALES_PRO_GOV", - "Service_Plan_Id": "12cf31f8-754f-4efe-87a8-167c19e30831", - "Service_Plans_Included_Friendly_Names": "Power Apps for Sales Pro for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Professional for Government", - "String_Id": "D365_SALES_PRO_GOV", - "GUID": "229fa362-9d30-4dbc-8110-21b77a7f9b26", - "Service_Plan_Name": "FLOW_SALES_PRO_GOV", - "Service_Plan_Id": "e62ffe5b-7612-441f-a72d-c11cf456d33a", - "Service_Plans_Included_Friendly_Names": "Power Automate for Sales Pro for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Professional for Government", - "String_Id": "D365_SALES_PRO_GOV", - "GUID": "229fa362-9d30-4dbc-8110-21b77a7f9b26", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Professional for Government", - "String_Id": "D365_SALES_PRO_GOV", - "GUID": "229fa362-9d30-4dbc-8110-21b77a7f9b26", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Professional for Government", - "String_Id": "D365_SALES_PRO_GOV", - "GUID": "229fa362-9d30-4dbc-8110-21b77a7f9b26", - "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", - "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Sales Professional for Government", - "String_Id": "D365_SALES_PRO_GOV", - "GUID": "229fa362-9d30-4dbc-8110-21b77a7f9b26", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Dynamics 365 For Sales Professional Trial", - "String_Id": "D365_SALES_PRO_IW", - "GUID": "9c7bff7a-3715-4da7-88d3-07f57f8d0fb6", - "Service_Plan_Name": "D365_SALES_PRO_IW", - "Service_Plan_Id": "73f205fc-6b15-47a5-967e-9e64fdf72d0a", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Professional Trial" - }, - { - "Product_Display_Name": "Dynamics 365 For Sales Professional Trial", - "String_Id": "D365_SALES_PRO_IW", - "GUID": "9c7bff7a-3715-4da7-88d3-07f57f8d0fb6", - "Service_Plan_Name": "D365_SALES_PRO_IW_Trial", - "Service_Plan_Id": "db39a47e-1f4f-462b-bf5b-2ec471fb7b88", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Professional Trial" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Professional Attach to Qualifying Dynamics 365 Base Offer", - "String_Id": "D365_SALES_PRO_ATTACH", - "GUID": "245e6bf9-411e-481e-8611-5c08595e2988", - "Service_Plan_Name": "D365_SALES_PRO_ATTACH", - "Service_Plan_Id": "065f3c64-0649-4ec7-9f47-ef5cf134c751", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Pro Attach" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Professional Attach to Qualifying Dynamics 365 Base Offer", - "String_Id": "D365_SALES_PRO_ATTACH", - "GUID": "245e6bf9-411e-481e-8611-5c08595e2988", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Supply Chain Management", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "DYN365_CDS_SUPPLYCHAINMANAGEMENT", - "Service_Plan_Id": "b6a8b974-2956-4e14-ae81-f0384c363528", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR DYNAMICS 365 SUPPLY CHAIN MANAGEMENT" - }, - { - "Product_Display_Name": "Dynamics 365 for Supply Chain Management", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "DYN365_REGULATORY_SERVICE", - "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR FINANCE AND OPERATIONS ENTERPRISE EDITION - REGULATORY SERVICE" - }, - { - "Product_Display_Name": "Dynamics 365 for Supply Chain Management", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "D365_SCM", - "Service_Plan_Id": "1224eae4-0d91-474a-8a52-27ec96a63fe7", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT" - }, - { - "Product_Display_Name": "Dynamics 365 for Supply Chain Management", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Dynamics 365 for Supply Chain Management", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Supply Chain Management", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "DYN365_CDS_DYN_APPS", - "Service_Plan_Id": "2d925ad8-2479-4bd8-bb76-5b80f1d48935", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "Dynamics_365_Hiring_Free_PLAN", - "Service_Plan_Id": "f815ac79-c5dd-4bcc-9b78-d97f7b817d0d", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent: Attract" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "Dynamics_365_Onboarding_Free_PLAN", - "Service_Plan_Id": "300b8114-8555-4313-b861-0c115d820f50", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent: Onboard" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "Dynamics_365_for_HCM_Trial", - "Service_Plan_Id": "5ed38b64-c3b7-4d9f-b1cd-0de18c9c4331", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for HCM Trial" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Talent: Attract", - "String_Id": "Dynamics_365_Hiring_SKU", - "GUID": "e561871f-74fa-4f02-abee-5b0ef54dd36d", - "Service_Plan_Name": "DYN365_CDS_DYN_APPS", - "Service_Plan_Id": "2d925ad8-2479-4bd8-bb76-5b80f1d48935", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Dynamics 365 Talent: Attract", - "String_Id": "Dynamics_365_Hiring_SKU", - "GUID": "e561871f-74fa-4f02-abee-5b0ef54dd36d", - "Service_Plan_Name": "Dynamics_365_Hiring_Free_PLAN", - "Service_Plan_Id": "f815ac79-c5dd-4bcc-9b78-d97f7b817d0d", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent: Attract" - }, - { - "Product_Display_Name": "Dynamics 365 Talent: Attract", - "String_Id": "Dynamics_365_Hiring_SKU", - "GUID": "e561871f-74fa-4f02-abee-5b0ef54dd36d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "DYN365_ENTERPRISE_FIELD_SERVICE", - "Service_Plan_Id": "8c66ef8a-177f-4c0d-853c-d4f219331d09", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Field Service" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "Dynamics_365_for_Retail_Team_members", - "Service_Plan_Id": "c0454a3d-32b5-4740-b090-78c32f48f0ad", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Retail Team members" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "DYN365_Enterprise_Talent_Attract_TeamMember", - "Service_Plan_Id": "643d201a-9884-45be-962a-06ba97062e5e", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent - Attract Experience Team Member" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "DYN365_Enterprise_Talent_Onboard_TeamMember", - "Service_Plan_Id": "f2f49eef-4b3f-4853-809a-a055c6103fe0", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent - Onboard Experience" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "Dynamics_365_for_Talent_Team_members", - "Service_Plan_Id": "d5156635-0704-4f66-8803-93258f8b2678", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent Team members" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "Service_Plan_Id": "6a54b05e-4fab-40e7-9828-428db3b336fa", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Team Members" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "Power_Pages_Internal_User", - "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", - "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "Dynamics_365_for_Operations_Team_members", - "Service_Plan_Id": "f5aa7b45-8a36-4cd1-bc37-5d06dea98645", - "Service_Plans_Included_Friendly_Names": "Dynamics_365_for_Operations_Team_members" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "GUIDES", - "Service_Plan_Id": "0b2c029c-dca0-454a-a336-887285d6ef07", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Guides" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "MICROSOFT_REMOTE_ASSIST", - "Service_Plan_Id": "4f4c7800-298a-4e22-8867-96b17850d4dd", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Remote Assist" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "POWERAPPS_GUIDES", - "Service_Plan_Id": "816971f4-37c5-424a-b12b-b56881f402e7", - "Service_Plans_Included_Friendly_Names": "Power Apps for Guides" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "POWERAPPS_DYN_TEAM", - "Service_Plan_Id": "52e619e2-2730-439a-b0d3-d09ab7e8b705", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "FLOW_DYN_TEAM", - "Service_Plan_Id": "1ec58c70-f69c-486a-8109-4b87ce86e449", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS_GOV", - "GUID": "ba05762f-32ff-4fac-a096-55309b3700a3", - "Service_Plan_Name": "DYN365_ENTERPRISE_TEAM_MEMBERS_GOV", - "Service_Plan_Id": "5a94d0aa-ee95-455a-bb38-326e5f134478", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Team Members for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS_GOV", - "GUID": "ba05762f-32ff-4fac-a096-55309b3700a3", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS_GOV", - "GUID": "ba05762f-32ff-4fac-a096-55309b3700a3", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS_GOV", - "GUID": "ba05762f-32ff-4fac-a096-55309b3700a3", - "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", - "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS_GOV", - "GUID": "ba05762f-32ff-4fac-a096-55309b3700a3", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS_GOV", - "GUID": "ba05762f-32ff-4fac-a096-55309b3700a3", - "Service_Plan_Name": "FLOW_DYN_TEAM_GOV", - "Service_Plan_Id": "47bdde6a-959f-4c7f-8d59-3243e34f1cb3", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 Team Members for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS_GOV", - "GUID": "ba05762f-32ff-4fac-a096-55309b3700a3", - "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", - "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition for Government", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS_GOV", - "GUID": "ba05762f-32ff-4fac-a096-55309b3700a3", - "Service_Plan_Name": "POWERAPPS_DYN_TEAM_GOV", - "Service_Plan_Id": "63efc247-5f28-43e3-a2f8-00c183e3f1db", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 Team Members for Government" - }, - { - "Product_Display_Name": "Dynamics 365 Guides", - "String_Id": "GUIDES_USER", - "GUID": "0a389a77-9850-4dc4-b600-bc66fdfefc60", - "Service_Plan_Name": "DYN365_CDS_GUIDES", - "Service_Plan_Id": "1315ade1-0410-450d-b8e3-8050e6da320f", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Dynamics 365 Guides", - "String_Id": "GUIDES_USER", - "GUID": "0a389a77-9850-4dc4-b600-bc66fdfefc60", - "Service_Plan_Name": "GUIDES", - "Service_Plan_Id": "0b2c029c-dca0-454a-a336-887285d6ef07", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Guides" - }, - { - "Product_Display_Name": "Dynamics 365 Guides", - "String_Id": "GUIDES_USER", - "GUID": "0a389a77-9850-4dc4-b600-bc66fdfefc60", - "Service_Plan_Name": "POWERAPPS_GUIDES", - "Service_Plan_Id": "816971f4-37c5-424a-b12b-b56881f402e7", - "Service_Plans_Included_Friendly_Names": "Power Apps for Guides" - }, - { - "Product_Display_Name": "Dynamics 365 Operations - Device", - "String_Id": "Dynamics_365_for_Operations_Devices", - "GUID": "3bbd44ed-8a70-4c07-9088-6232ddbd5ddd", - "Service_Plan_Name": "DYN365_RETAIL_DEVICE", - "Service_Plan_Id": "ceb28005-d758-4df7-bb97-87a617b93d6c", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Retail Device" - }, - { - "Product_Display_Name": "Dynamics 365 Operations - Device", - "String_Id": "Dynamics_365_for_Operations_Devices", - "GUID": "3bbd44ed-8a70-4c07-9088-6232ddbd5ddd", - "Service_Plan_Name": "Dynamics_365_for_OperationsDevices", - "Service_Plan_Id": "2c9fb43e-915a-4d61-b6ca-058ece89fd66", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Operations Devices" - }, - { - "Product_Display_Name": "Dynamics 365 Operations - Device", - "String_Id": "Dynamics_365_for_Operations_Devices", - "GUID": "3bbd44ed-8a70-4c07-9088-6232ddbd5ddd", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 2:Standard Acceptance Testing", - "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier2_SKU", - "GUID": "e485d696-4c87-4aac-bf4a-91b2fb6f0fa7", - "Service_Plan_Name": "Dynamics_365_for_Operations_Sandbox_Tier2", - "Service_Plan_Id": "d8ba6fb2-c6b1-4f07-b7c8-5f2745e36b54", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Operations non-production multi-box instance for standard acceptance testing (Tier 2)" - }, - { - "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 2:Standard Acceptance Testing", - "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier2_SKU", - "GUID": "e485d696-4c87-4aac-bf4a-91b2fb6f0fa7", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 4:Standard Performance Testing", - "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier4_SKU", - "GUID": "f7ad4bca-7221-452c-bdb6-3e6089f25e06", - "Service_Plan_Name": "Dynamics_365_for_Operations_Sandbox_Tier4", - "Service_Plan_Id": "f6b5efb1-1813-426f-96d0-9b4f7438714f", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Operations Enterprise Edition - Sandbox Tier 4:Standard Performance Testing" - }, - { - "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 4:Standard Performance Testing", - "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier4_SKU", - "GUID": "f7ad4bca-7221-452c-bdb6-3e6089f25e06", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 P1 Tria for Information Workers", - "String_Id": "DYN365_ENTERPRISE_P1_IW", - "GUID": "338148b6-1b11-4102-afb9-f92b6cdc0f8d", - "Service_Plan_Name": "DYN365_ENTERPRISE_P1_IW", - "Service_Plan_Id": "056a5f80-b4e0-4983-a8be-7ad254a113c9", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 P1 TRIAL FOR INFORMATION WORKERS" - }, - { - "Product_Display_Name": "Dynamics 365 P1 Tria for Information Workers", - "String_Id": "DYN365_ENTERPRISE_P1_IW", - "GUID": "338148b6-1b11-4102-afb9-f92b6cdc0f8d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Dynamics 365 Project Operations", - "String_Id": "DYN365_PROJECT_OPERATIONS", - "GUID": "98619618-9dc8-48c6-8f0c-741890ba5f93", - "Service_Plan_Name": "D365CDSforProjectOperations", - "Service_Plan_Id": "7df1d500-ca5c-4229-8cea-815bc88798c9", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Dynamics 365 Project Operations" - }, - { - "Product_Display_Name": "Dynamics 365 Project Operations", - "String_Id": "DYN365_PROJECT_OPERATIONS", - "GUID": "98619618-9dc8-48c6-8f0c-741890ba5f93", - "Service_Plan_Name": "D365_ProjectOperationsCDS", - "Service_Plan_Id": "18fa3aba-b085-4105-87d7-55617b8585e6", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations CDS" - }, - { - "Product_Display_Name": "Dynamics 365 Project Operations", - "String_Id": "DYN365_PROJECT_OPERATIONS", - "GUID": "98619618-9dc8-48c6-8f0c-741890ba5f93", - "Service_Plan_Name": "Power_Pages_Internal_User", - "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", - "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" - }, - { - "Product_Display_Name": "Dynamics 365 Project Operations", - "String_Id": "DYN365_PROJECT_OPERATIONS", - "GUID": "98619618-9dc8-48c6-8f0c-741890ba5f93", - "Service_Plan_Name": "DYN365_REGULATORY_SERVICE", - "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Finance and Operations, Enterprise edition - Regulatory Service" - }, - { - "Product_Display_Name": "Dynamics 365 Project Operations", - "String_Id": "DYN365_PROJECT_OPERATIONS", - "GUID": "98619618-9dc8-48c6-8f0c-741890ba5f93", - "Service_Plan_Name": "D365_ProjectOperations", - "Service_Plan_Id": "69f07c66-bee4-4222-b051-195095efee5b", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations" - }, - { - "Product_Display_Name": "Dynamics 365 Project Operations", - "String_Id": "DYN365_PROJECT_OPERATIONS", - "GUID": "98619618-9dc8-48c6-8f0c-741890ba5f93", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Project Operations", - "String_Id": "DYN365_PROJECT_OPERATIONS", - "GUID": "98619618-9dc8-48c6-8f0c-741890ba5f93", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Project Operations", - "String_Id": "DYN365_PROJECT_OPERATIONS", - "GUID": "98619618-9dc8-48c6-8f0c-741890ba5f93", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Project Operations", - "String_Id": "DYN365_PROJECT_OPERATIONS", - "GUID": "98619618-9dc8-48c6-8f0c-741890ba5f93", - "Service_Plan_Name": "PROJECT_FOR_PROJECT_OPERATIONS", - "Service_Plan_Id": "0a05d977-a21a-45b2-91ce-61c240dbafa2", - "Service_Plans_Included_Friendly_Names": "Project for Project Operations" - }, - { - "Product_Display_Name": "Dynamics 365 Project Operations", - "String_Id": "DYN365_PROJECT_OPERATIONS", - "GUID": "98619618-9dc8-48c6-8f0c-741890ba5f93", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" - }, - { - "Product_Display_Name": "Dynamics 365 Remote Assist", - "String_Id": "MICROSOFT_REMOTE_ASSIST", - "GUID": "7a551360-26c4-4f61-84e6-ef715673e083", - "Service_Plan_Name": "CDS_REMOTE_ASSIST", - "Service_Plan_Id": "0850ebb5-64ee-4d3a-a3e1-5a97213653b5", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Remote Assist" - }, - { - "Product_Display_Name": "Dynamics 365 Remote Assist", - "String_Id": "MICROSOFT_REMOTE_ASSIST", - "GUID": "7a551360-26c4-4f61-84e6-ef715673e083", - "Service_Plan_Name": "MICROSOFT_REMOTE_ASSIST", - "Service_Plan_Id": "4f4c7800-298a-4e22-8867-96b17850d4dd", - "Service_Plans_Included_Friendly_Names": "Microsoft Remote Assist" - }, - { - "Product_Display_Name": "Dynamics 365 Remote Assist", - "String_Id": "MICROSOFT_REMOTE_ASSIST", - "GUID": "7a551360-26c4-4f61-84e6-ef715673e083", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Dynamics 365 Remote Assist HoloLens", - "String_Id": "MICROSOFT_REMOTE_ASSIST_HOLOLENS", - "GUID": "e48328a2-8e98-4484-a70f-a99f8ac9ec89", - "Service_Plan_Name": "CDS_REMOTE_ASSIST", - "Service_Plan_Id": "0850ebb5-64ee-4d3a-a3e1-5a97213653b5", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Remote Assist" - }, - { - "Product_Display_Name": "Dynamics 365 Remote Assist HoloLens", - "String_Id": "MICROSOFT_REMOTE_ASSIST_HOLOLENS", - "GUID": "e48328a2-8e98-4484-a70f-a99f8ac9ec89", - "Service_Plan_Name": "MICROSOFT_REMOTE_ASSIST", - "Service_Plan_Id": "4f4c7800-298a-4e22-8867-96b17850d4dd", - "Service_Plans_Included_Friendly_Names": "Microsoft Remote Assist" - }, - { - "Product_Display_Name": "Dynamics 365 Remote Assist HoloLens", - "String_Id": "MICROSOFT_REMOTE_ASSIST_HOLOLENS", - "GUID": "e48328a2-8e98-4484-a70f-a99f8ac9ec89", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Enterprise Attach to Qualifying Dynamics 365 Base Offer", - "String_Id": "D365_SALES_ENT_ATTACH", - "GUID": "5b22585d-1b71-4c6b-b6ec-160b1a9c2323", - "Service_Plan_Name": "D365_SALES_ENT_ATTACH", - "Service_Plan_Id": "3ae52229-572e-414f-937c-ff35a87d4f29", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Enterprise Attach" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Enterprise Attach to Qualifying Dynamics 365 Base Offer", - "String_Id": "D365_SALES_ENT_ATTACH", - "GUID": "5b22585d-1b71-4c6b-b6ec-160b1a9c2323", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Talent: Onboard", - "String_Id": "DYNAMICS_365_ONBOARDING_SKU", - "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0", - "Service_Plan_Name": "DYN365_CDS_DYN_APPS", - "Service_Plan_Id": "2d925ad8-2479-4bd8-bb76-5b80f1d48935", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE" - }, - { - "Product_Display_Name": "Dynamics 365 Talent: Onboard", - "String_Id": "DYNAMICS_365_ONBOARDING_SKU", - "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0", - "Service_Plan_Name": "Dynamics_365_Onboarding_Free_PLAN", - "Service_Plan_Id": "300b8114-8555-4313-b861-0c115d820f50", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT: ONBOARD" - }, - { - "Product_Display_Name": "Dynamics 365 Talent: Onboard", - "String_Id": "DYNAMICS_365_ONBOARDING_SKU", - "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0", - "Service_Plan_Name": "Dynamics_365_Talent_Onboard", - "Service_Plan_Id": "048a552e-c849-4027-b54c-4c7ead26150a", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT: ONBOARD" - }, - { - "Product_Display_Name": "Dynamics 365 Talent: Onboard", - "String_Id": "DYNAMICS_365_ONBOARDING_SKU", - "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Dynamics 365 Team Members", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "DYN365_ENTERPRISE_FIELD_SERVICE", - "Service_Plan_Id": "8c66ef8a-177f-4c0d-853c-d4f219331d09", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Field Service" - }, - { - "Product_Display_Name": "Dynamics 365 Team Members", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "Dynamics_365_for_Retail_Team_members", - "Service_Plan_Id": "c0454a3d-32b5-4740-b090-78c32f48f0ad", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Retail Team members" - }, - { - "Product_Display_Name": "Dynamics 365 Team Members", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "DYN365_Enterprise_Talent_Attract_TeamMember", - "Service_Plan_Id": "643d201a-9884-45be-962a-06ba97062e5e", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent - Attract Experience Team Member" - }, - { - "Product_Display_Name": "Dynamics 365 Team Members", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "DYN365_Enterprise_Talent_Onboard_TeamMember", - "Service_Plan_Id": "f2f49eef-4b3f-4853-809a-a055c6103fe0", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent - Onboard Experience" - }, - { - "Product_Display_Name": "Dynamics 365 Team Members", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "Dynamics_365_for_Talent_Team_members", - "Service_Plan_Id": "d5156635-0704-4f66-8803-93258f8b2678", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent Team members" - }, - { - "Product_Display_Name": "Dynamics 365 Team Members", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "DYN365_TEAM_MEMBERS", - "Service_Plan_Id": "4092fdb5-8d81-41d3-be76-aaba4074530b", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Team Members" - }, - { - "Product_Display_Name": "Dynamics 365 Team Members", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "Power_Pages_Internal_User", - "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", - "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" - }, - { - "Product_Display_Name": "Dynamics 365 Team Members", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "Dynamics_365_for_Operations_Team_members", - "Service_Plan_Id": "f5aa7b45-8a36-4cd1-bc37-5d06dea98645", - "Service_Plans_Included_Friendly_Names": "Dynamics_365_for_Operations_Team_members" - }, - { - "Product_Display_Name": "Dynamics 365 Team Members", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "GUIDES", - "Service_Plan_Id": "0b2c029c-dca0-454a-a336-887285d6ef07", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Guides" - }, - { - "Product_Display_Name": "Dynamics 365 Team Members", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "MICROSOFT_REMOTE_ASSIST", - "Service_Plan_Id": "4f4c7800-298a-4e22-8867-96b17850d4dd", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Remote Assist" - }, - { - "Product_Display_Name": "Dynamics 365 Team Members", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "POWERAPPS_GUIDES", - "Service_Plan_Id": "816971f4-37c5-424a-b12b-b56881f402e7", - "Service_Plans_Included_Friendly_Names": "Power Apps for Guides" - }, - { - "Product_Display_Name": "Dynamics 365 Team Members", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Team Members", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Dynamics 365 Team Members", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Dynamics 365 Team Members", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Dynamics 365 Team Members", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Dynamics 365 Team Members", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "POWERAPPS_DYN_TEAM", - "Service_Plan_Id": "52e619e2-2730-439a-b0d3-d09ab7e8b705", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Team Members", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Team Members", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "FLOW_DYN_TEAM", - "Service_Plan_Id": "1ec58c70-f69c-486a-8109-4b87ce86e449", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "DDYN365_CDS_DYN_P2", - "Service_Plan_Id": "d1142cfd-872e-4e77-b6ff-d98ec5a51f66", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE" - }, - { - "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "DYN365_TALENT_ENTERPRISE", - "Service_Plan_Id": "65a1ebf4-6732-4f00-9dcb-3d115ffdeecd", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT" - }, - { - "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "Dynamics_365_for_Operations", - "Service_Plan_Id": "95d2cd7b-1007-484b-8595-5e97e63fe189", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR_OPERATIONS" - }, - { - "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "Dynamics_365_for_Retail", - "Service_Plan_Id": "a9e39199-8369-444b-89c1-5fe65ec45665", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR RETAIL" - }, - { - "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "DYNAMICS_365_HIRING_FREE_PLAN", - "Service_Plan_Id": "f815ac79-c5dd-4bcc-9b78-d97f7b817d0d", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 HIRING FREE PLAN" - }, - { - "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "Dynamics_365_Onboarding_Free_PLAN", - "Service_Plan_Id": "300b8114-8555-4313-b861-0c115d820f50", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT: ONBOARD" - }, - { - "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "FLOW_DYN_P2", - "Service_Plan_Id": "b650d915-9886-424b-a08d-633cede56f57", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 36" - }, - { - "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "POWERAPPS_DYN_P2", - "Service_Plan_Id": "0b03f40b-c404-40c3-8651-2aceb74365fa", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", - "String_Id": "EMS_EDU_FACULTY", - "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", - "String_Id": "EMS_EDU_FACULTY", - "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", - "Service_Plan_Name": "AAD_EDU", - "Service_Plan_Id": "3a3976ce-de18-4a87-a78e-5e9245e252df", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID for Education" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", - "String_Id": "EMS_EDU_FACULTY", - "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", - "String_Id": "EMS_EDU_FACULTY", - "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", - "String_Id": "EMS_EDU_FACULTY", - "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", - "String_Id": "EMS_EDU_FACULTY", - "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", - "String_Id": "EMS_EDU_FACULTY", - "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", - "String_Id": "EMS_EDU_FACULTY", - "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", - "String_Id": "EMS_EDU_FACULTY", - "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", - "String_Id": "EMS_EDU_FACULTY", - "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", - "Service_Plan_Name": "WINDOWS_STORE", - "Service_Plan_Id": "a420f25f-a7b3-4ff5-a9d0-5d58f73b537d", - "Service_Plans_Included_Friendly_Names": "Windows Store Service" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E3", - "String_Id": "EMS", - "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E3", - "String_Id": "EMS", - "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E3", - "String_Id": "EMS", - "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "CLOUD APP SECURITY DISCOVERY" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E3", - "String_Id": "EMS", - "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E3", - "String_Id": "EMS", - "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra RIGHTS" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E3", - "String_Id": "EMS", - "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E3", - "String_Id": "EMS", - "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P2" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra RIGHTS" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "MICROSOFT CLOUD APP SECURITY" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR IDENTITY" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E5_USGOV_GCCHIGH", - "String_Id": "EMSPREMIUM_USGOV_GCCHIGH", - "GUID": "a461b89c-10e3-471c-82b8-aae4d820fccb", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E5_USGOV_GCCHIGH", - "String_Id": "EMSPREMIUM_USGOV_GCCHIGH", - "GUID": "a461b89c-10e3-471c-82b8-aae4d820fccb", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E5_USGOV_GCCHIGH", - "String_Id": "EMSPREMIUM_USGOV_GCCHIGH", - "GUID": "a461b89c-10e3-471c-82b8-aae4d820fccb", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E5_USGOV_GCCHIGH", - "String_Id": "EMSPREMIUM_USGOV_GCCHIGH", - "GUID": "a461b89c-10e3-471c-82b8-aae4d820fccb", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E5_USGOV_GCCHIGH", - "String_Id": "EMSPREMIUM_USGOV_GCCHIGH", - "GUID": "a461b89c-10e3-471c-82b8-aae4d820fccb", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E5_USGOV_GCCHIGH", - "String_Id": "EMSPREMIUM_USGOV_GCCHIGH", - "GUID": "a461b89c-10e3-471c-82b8-aae4d820fccb", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E5_USGOV_GCCHIGH", - "String_Id": "EMSPREMIUM_USGOV_GCCHIGH", - "GUID": "a461b89c-10e3-471c-82b8-aae4d820fccb", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E5_USGOV_GCCHIGH", - "String_Id": "EMSPREMIUM_USGOV_GCCHIGH", - "GUID": "a461b89c-10e3-471c-82b8-aae4d820fccb", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E5_USGOV_GCCHIGH", - "String_Id": "EMSPREMIUM_USGOV_GCCHIGH", - "GUID": "a461b89c-10e3-471c-82b8-aae4d820fccb", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E5_USGOV_GCCHIGH", - "String_Id": "EMSPREMIUM_USGOV_GCCHIGH", - "GUID": "a461b89c-10e3-471c-82b8-aae4d820fccb", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", - "String_Id": "EMS_GOV", - "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", - "String_Id": "EMS_GOV", - "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", - "String_Id": "EMS_GOV", - "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", - "String_Id": "EMS_GOV", - "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", - "String_Id": "EMS_GOV", - "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra Rights" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", - "String_Id": "EMS_GOV", - "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", - "String_Id": "EMS_GOV", - "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "RMS_S_ENTERPRISE)", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra Rights" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Exchange Enterprise CAL Services (EOP DLP)", - "String_Id": "EOP_ENTERPRISE_PREMIUM", - "GUID": "e8ecdf70-47a8-4d39-9d15-093624b7f640", - "Service_Plan_Name": "EOP_ENTERPRISE_PREMIUM", - "Service_Plan_Id": "75badc48-628e-4446-8460-41344d73abd6", - "Service_Plans_Included_Friendly_Names": "Exchange Enterprise CAL Services (EOP DLP)" - }, - { - "Product_Display_Name": "Exchange Enterprise CAL Services (EOP DLP)", - "String_Id": "EOP_ENTERPRISE_PREMIUM", - "GUID": "e8ecdf70-47a8-4d39-9d15-093624b7f640", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra Rights" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1)", - "String_Id": "EXCHANGESTANDARD", - "GUID": "4b9405b0-7788-4568-add1-99614e613b69", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1)", - "String_Id": "EXCHANGESTANDARD", - "GUID": "4b9405b0-7788-4568-add1-99614e613b69", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1)", - "String_Id": "EXCHANGESTANDARD", - "GUID": "4b9405b0-7788-4568-add1-99614e613b69", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1) for Alumni with Yammer", - "String_Id": "EXCHANGESTANDARD_ALUMNI", - "GUID": "aa0f9eb7-eff2-4943-8424-226fb137fcad", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1) for Alumni with Yammer", - "String_Id": "EXCHANGESTANDARD_ALUMNI", - "GUID": "aa0f9eb7-eff2-4943-8424-226fb137fcad", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1) for Alumni with Yammer", - "String_Id": "EXCHANGESTANDARD_ALUMNI", - "GUID": "aa0f9eb7-eff2-4943-8424-226fb137fcad", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1) for Students", - "String_Id": "EXCHANGESTANDARD_STUDENT", - "GUID": "ad2fe44a-915d-4e2b-ade1-6766d50a9d9c", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1) for Students", - "String_Id": "EXCHANGESTANDARD_STUDENT", - "GUID": "ad2fe44a-915d-4e2b-ade1-6766d50a9d9c", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1) for Students", - "String_Id": "EXCHANGESTANDARD_STUDENT", - "GUID": "ad2fe44a-915d-4e2b-ade1-6766d50a9d9c", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1) for Students", - "String_Id": "EXCHANGESTANDARD_STUDENT", - "GUID": "ad2fe44a-915d-4e2b-ade1-6766d50a9d9c", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1) for GCC", - "String_Id": "EXCHANGESTANDARD_GOV", - "GUID": "f37d5ebf-4bf1-4aa2-8fa3-50c51059e983", - "Service_Plan_Name": "EXCHANGE_S_STANDARD_GOV", - "Service_Plan_Id": "e9b4930a-925f-45e2-ac2a-3f7788ca6fdd", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1) for Government" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1) for GCC", - "String_Id": "EXCHANGESTANDARD_GOV", - "GUID": "f37d5ebf-4bf1-4aa2-8fa3-50c51059e983", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Exchange Online (Plan 2)", - "String_Id": "EXCHANGEENTERPRISE", - "GUID": "19ec0d23-8335-4cbd-94ac-6050e30712fa", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Exchange Online (Plan 2) for Faculty", - "String_Id": "EXCHANGEENTERPRISE_FACULTY", - "GUID": "0b7b15a8-7fd2-4964-bb96-5a566d4e3c15", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Exchange Online (Plan 2) for Faculty", - "String_Id": "EXCHANGEENTERPRISE_FACULTY", - "GUID": "0b7b15a8-7fd2-4964-bb96-5a566d4e3c15", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Exchange Online (Plan 2) for Faculty", - "String_Id": "EXCHANGEENTERPRISE_FACULTY", - "GUID": "0b7b15a8-7fd2-4964-bb96-5a566d4e3c15", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "Exchange Online (Plan 2) for Faculty", - "String_Id": "EXCHANGEENTERPRISE_FACULTY", - "GUID": "0b7b15a8-7fd2-4964-bb96-5a566d4e3c15", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Exchange Online Archiving for Exchange Online", - "String_Id": "EXCHANGEARCHIVE_ADDON", - "GUID": "ee02fd1b-340e-4a4b-b355-4a514e4c8943", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", - "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE ONLINE" - }, - { - "Product_Display_Name": "Exchange Online Archiving for Exchange Server", - "String_Id": "EXCHANGEARCHIVE", - "GUID": "90b5e015-709a-4b8b-b08e-3200f994494c", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE", - "Service_Plan_Id": "da040e0a-b393-4bea-bb76-928b3fa1cf5a", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE SERVER" - }, - { - "Product_Display_Name": "Exchange Online Essentials (ExO P1 Based)", - "String_Id": "EXCHANGEESSENTIALS", - "GUID": "7fc0182e-d107-4556-8329-7caaa511197b", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "Exchange Online Essentials", - "String_Id": "EXCHANGE_S_ESSENTIALS", - "GUID": "e8f81a67-bd96-4074-b108-cf193eb9433b", - "Service_Plan_Name": "EXCHANGE_S_ESSENTIALS", - "Service_Plan_Id": "1126bef5-da20-4f07-b45e-ad25d2581aa8", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ESSENTIALS" - }, - { - "Product_Display_Name": "Exchange Online Essentials", - "String_Id": "EXCHANGE_S_ESSENTIALS", - "GUID": "e8f81a67-bd96-4074-b108-cf193eb9433b", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)" - }, - { - "Product_Display_Name": "Exchange Online Kiosk", - "String_Id": "EXCHANGEDESKLESS", - "GUID": "80b2d799-d2ba-4d2a-8842-fb0d0f3a4b82", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS", - "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE KIOSK" - }, - { - "Product_Display_Name": "Exchange Online POP", - "String_Id": "EXCHANGETELCO", - "GUID": "cb0a98a8-11bc-494c-83d9-c1b1ac65327e", - "Service_Plan_Name": "EXCHANGE_B_STANDARD", - "Service_Plan_Id": "90927877-dcff-4af6-b346-2332c0b15bb7", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE POP" - }, - { - "Product_Display_Name": "Exchange Online Protection", - "String_Id": "EOP_ENTERPRISE", - "GUID": "45a2423b-e884-448d-a831-d9e139c52d2f", - "Service_Plan_Name": "EOP_ENTERPRISE", - "Service_Plan_Id": "326e2b78-9d27-42c9-8509-46c827743a17", - "Service_Plans_Included_Friendly_Names": "Exchange Online Protection" - }, - { - "Product_Display_Name": "Intune", - "String_Id": "INTUNE_A", - "GUID": "061f9ace-7d42-4136-88ac-31dc755f143f", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "Intune for Education", - "String_Id": "INTUNE_EDU", - "GUID": "d9d89b70-a645-4c24-b041-8d3cb1884ec7", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Intune for Education", - "String_Id": "INTUNE_EDU", - "GUID": "d9d89b70-a645-4c24-b041-8d3cb1884ec7", - "Service_Plan_Name": "AAD_EDU", - "Service_Plan_Id": "3a3976ce-de18-4a87-a78e-5e9245e252df", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID for Education" - }, - { - "Product_Display_Name": "Intune for Education", - "String_Id": "INTUNE_EDU", - "GUID": "d9d89b70-a645-4c24-b041-8d3cb1884ec7", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Intune for Education", - "String_Id": "INTUNE_EDU", - "GUID": "d9d89b70-a645-4c24-b041-8d3cb1884ec7", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" - }, - { - "Product_Display_Name": "Intune for Education", - "String_Id": "INTUNE_EDU", - "GUID": "d9d89b70-a645-4c24-b041-8d3cb1884ec7", - "Service_Plan_Name": "WINDOWS_STORE", - "Service_Plan_Id": "a420f25f-a7b3-4ff5-a9d0-5d58f73b537d", - "Service_Plans_Included_Friendly_Names": "Windows Store Service" - }, - { - "Product_Display_Name": "Microsoft Dynamics AX7 User Trial", - "String_Id": "AX7_USER_TRIAL", - "GUID": "fcecd1f9-a91e-488d-a918-a96cdb6ce2b0", - "Service_Plan_Name": "ERP_TRIAL_INSTANCE", - "Service_Plan_Id": "e2f705fd-2468-4090-8c58-fad6e6b1e724", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Operations Trial Environment" - }, - { - "Product_Display_Name": "Microsoft Dynamics AX7 User Trial", - "String_Id": "AX7_USER_TRIAL", - "GUID": "fcecd1f9-a91e-488d-a918-a96cdb6ce2b0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online Basic for Government", - "String_Id": "CRMPLAN2_GCC", - "GUID": "3856cd1b-8033-458e-8d0f-9909ec6e6e6d", - "Service_Plan_Name": "CRMPLAN2_GCC", - "Service_Plan_Id": "3d53f6d9-d6e0-45c1-9575-6acd77692584", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Government Basic" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online Basic for Government", - "String_Id": "CRMPLAN2_GCC", - "GUID": "3856cd1b-8033-458e-8d0f-9909ec6e6e6d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online Basic for Government", - "String_Id": "CRMPLAN2_GCC", - "GUID": "3856cd1b-8033-458e-8d0f-9909ec6e6e6d", - "Service_Plan_Name": "FLOW_DYN_APPS_GOV", - "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online Basic for Government", - "String_Id": "CRMPLAN2_GCC", - "GUID": "3856cd1b-8033-458e-8d0f-9909ec6e6e6d", - "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", - "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online for Government", - "String_Id": "CRMSTANDARD_GCC", - "GUID": "ba051a1a-4c3d-4ccd-9890-6fa6a4e696e7", - "Service_Plan_Name": "CRMSTANDARD_GCC", - "Service_Plan_Id": "2b8c7c8c-9db5-44a5-a1dd-f4aa5b97b372", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Professional for Government" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online for Government", - "String_Id": "CRMSTANDARD_GCC", - "GUID": "ba051a1a-4c3d-4ccd-9890-6fa6a4e696e7", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online for Government", - "String_Id": "CRMSTANDARD_GCC", - "GUID": "ba051a1a-4c3d-4ccd-9890-6fa6a4e696e7", - "Service_Plan_Name": "FLOW_DYN_APPS_GOV", - "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online for Government", - "String_Id": "CRMSTANDARD_GCC", - "GUID": "ba051a1a-4c3d-4ccd-9890-6fa6a4e696e7", - "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", - "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Microsoft Azure Multi-Factor Authentication", - "String_Id": "MFA_STANDALONE", - "GUID": "cb2020b1-d8f6-41c0-9acd-8ff3d6d7831b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Azure Multi-Factor Authentication", - "String_Id": "MFA_STANDALONE", - "GUID": "cb2020b1-d8f6-41c0-9acd-8ff3d6d7831b", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2)", - "String_Id": "THREAT_INTELLIGENCE", - "GUID": "3dd6cf57-d688-4eed-ba52-9e40b5468c3e", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2)", - "String_Id": "THREAT_INTELLIGENCE", - "GUID": "3dd6cf57-d688-4eed-ba52-9e40b5468c3e", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2)", - "String_Id": "THREAT_INTELLIGENCE", - "GUID": "3dd6cf57-d688-4eed-ba52-9e40b5468c3e", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A1", - "String_Id": "M365EDU_A1", - "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb", - "Service_Plan_Name": "AAD_EDU", - "Service_Plan_Id": "3a3976ce-de18-4a87-a78e-5e9245e252df", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A1", - "String_Id": "M365EDU_A1", - "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A1", - "String_Id": "M365EDU_A1", - "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A1", - "String_Id": "M365EDU_A1", - "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb", - "Service_Plan_Name": "WINDOWS_STORE", - "Service_Plan_Id": "a420f25f-a7b3-4ff5-a9d0-5d58f73b537d", - "Service_Plans_Included_Friendly_Names": "Windows Store Service" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MDE_LITE", - "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MDE_LITE", - "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING", - "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086", - "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 Suite features for faculty", - "String_Id": "Microsoft 365 A3 Suite features for faculty", - "GUID": "32a0e471-8a27-4167-b24f-941559912425", - "Service_Plan_Name": "MDE_LITE", - "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 Suite features for faculty", - "String_Id": "Microsoft 365 A3 Suite features for faculty", - "GUID": "32a0e471-8a27-4167-b24f-941559912425", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1 for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 Suite features for faculty", - "String_Id": "Microsoft 365 A3 Suite features for faculty", - "GUID": "32a0e471-8a27-4167-b24f-941559912425", - "Service_Plan_Name": "REMOTE_HELP", - "Service_Plan_Id": "a4c6cf29-1168-4076-ba5c-e8fe0e62b17e", - "Service_Plans_Included_Friendly_Names": "Remote help" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "OFFICESUBSCRIPTION_unattended", - "Service_Plan_Id": "8d77e2d9-9e28-4450-8431-0def64078fc5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise (Unattended)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING", - "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086", - "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_3", - "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", - "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_3", - "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", - "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING", - "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086", - "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty", - "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY", - "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Premium" - }, - { - "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty", - "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY", - "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty", - "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY", - "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty", - "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY", - "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty", - "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY", - "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty", - "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY", - "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1 for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for EDU" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P3" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the web (Education)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING", - "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086", - "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Business", - "String_Id": "O365_BUSINESS", - "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Business", - "String_Id": "O365_BUSINESS", - "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3", - "Service_Plan_Name": "OFFICE_BUSINESS", - "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Business", - "String_Id": "O365_BUSINESS", - "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3", - "Service_Plan_Name": "ONEDRIVESTANDARD", - "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", - "Service_Plans_Included_Friendly_Names": "ONEDRIVESTANDARD" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Business", - "String_Id": "O365_BUSINESS", - "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Business", - "String_Id": "O365_BUSINESS", - "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Business", - "String_Id": "SMB_BUSINESS", - "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Business", - "String_Id": "SMB_BUSINESS", - "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc", - "Service_Plan_Name": "OFFICE_BUSINESS", - "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Business", - "String_Id": "SMB_BUSINESS", - "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc", - "Service_Plan_Name": "ONEDRIVESTANDARD", - "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", - "Service_Plans_Included_Friendly_Names": "ONEDRIVESTANDARD" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Business", - "String_Id": "SMB_BUSINESS", - "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Business", - "String_Id": "SMB_BUSINESS", - "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Enterprise", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Enterprise", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Enterprise", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Enterprise", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Enterprise", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Enterprise", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Enterprise", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "ONEDRIVESTANDARD", - "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", - "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Enterprise", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Enterprise", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for enterprise (device)", - "String_Id": "OFFICE_PROPLUS_DEVICE1", - "GUID": "ea4c5ec8-50e3-4193-89b9-50da5bd4cdc7", - "Service_Plan_Name": "OFFICE_PROPLUS_DEVICE", - "Service_Plan_Id": "3c994f28-87d5-4273-b07a-eb6190852599", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise (Device)" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Students", - "String_Id": "OFFICESUBSCRIPTION_STUDENT", - "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Students", - "String_Id": "OFFICESUBSCRIPTION_STUDENT", - "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Students", - "String_Id": "OFFICESUBSCRIPTION_STUDENT", - "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Students", - "String_Id": "OFFICESUBSCRIPTION_STUDENT", - "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Students", - "String_Id": "OFFICESUBSCRIPTION_STUDENT", - "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Students", - "String_Id": "OFFICESUBSCRIPTION_STUDENT", - "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Students", - "String_Id": "OFFICESUBSCRIPTION_STUDENT", - "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", - "Service_Plan_Name": "ONEDRIVESTANDARD", - "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", - "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Students", - "String_Id": "OFFICESUBSCRIPTION_STUDENT", - "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Students", - "String_Id": "OFFICESUBSCRIPTION_STUDENT", - "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Students", - "String_Id": "OFFICESUBSCRIPTION_STUDENT", - "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Faculty", - "String_Id": "OFFICESUBSCRIPTION_FACULTY", - "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Faculty", - "String_Id": "OFFICESUBSCRIPTION_FACULTY", - "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Faculty", - "String_Id": "OFFICESUBSCRIPTION_FACULTY", - "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Faculty", - "String_Id": "OFFICESUBSCRIPTION_FACULTY", - "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Faculty", - "String_Id": "OFFICESUBSCRIPTION_FACULTY", - "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Faculty", - "String_Id": "OFFICESUBSCRIPTION_FACULTY", - "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Faculty", - "String_Id": "OFFICESUBSCRIPTION_FACULTY", - "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Faculty", - "String_Id": "OFFICESUBSCRIPTION_FACULTY", - "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", - "Service_Plan_Name": "ONEDRIVESTANDARD", - "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", - "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Faculty", - "String_Id": "OFFICESUBSCRIPTION_FACULTY", - "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Faculty", - "String_Id": "OFFICESUBSCRIPTION_FACULTY", - "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Audio Conferencing for faculty", - "String_Id": "MCOMEETADV_FACULTY", - "GUID": "c2cda955-3359-44e5-989f-852ca0cfa02f", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 Audio Conferencing for GCC", - "String_Id": "MCOMEETADV_GOV", - "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5", - "Service_Plan_Name": "EXCHANGE_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT" - }, - { - "Product_Display_Name": "Microsoft 365 Audio Conferencing for GCC", - "String_Id": "MCOMEETADV_GOV", - "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5", - "Service_Plan_Name": "MCOMEETADV_GOV", - "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 AUDIO CONFERENCING FOR GOVERNMENT" - }, - { - "Product_Display_Name": "Microsoft 365 Audio Conferencing_USGOV_GCCHIGH", - "String_Id": "MCOMEETADV_USGOV_GCCHIGH", - "GUID": "4dee1f32-0808-4fd2-a2ed-fdd575e3a45f", - "Service_Plan_Name": "MCOMEETADV_AR_GCCHigh", - "Service_Plan_Id": "f1e3613f-3818-4254-9b5e-f02d803384e0", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing for GCCHigh" - }, - { - "Product_Display_Name": "Microsoft 365 Audio Conferencing - GCCHigh Tenant (AR)_USGOV_GCCHIGH", - "String_Id": "MCOACBYOT_AR_GCCHIGH_USGOV_GCCHIGH", - "GUID": "170ba00c-38b2-468c-a756-24c05037160a", - "Service_Plan_Name": "MCOACBYOT_GCCHigh", - "Service_Plan_Id": "c85e4b03-254a-453b-af72-167a53f38530", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing - GCCHigh Tenant" - }, - { - "Product_Display_Name": "Microsoft 365 Audio Conferencing Pay-Per-Minute - EA", - "String_Id": "MCOMEETACPEA", - "GUID": "df9561a4-4969-4e6a-8e73-c601b68ec077", - "Service_Plan_Name": "MCOMEETACPEA", - "Service_Plan_Id": "bb038288-76ab-49d6-afc1-eaa6c222c65a", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing Pay-Per-Minute" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "OFFICEMOBILE_SUBSCRIPTION" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "OFFICEMOBILE_SUBSCRIPTION" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "YAMMER_MIDSIZE", - "Service_Plan_Id": "41bf139a-4e60-409f-9346-a1361efc6dfb", - "Service_Plans_Included_Friendly_Names": "YAMMER MIDSIZE" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "CDS_O365_P1", - "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "KAIZALA_O365_P2", - "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "PROJECT_O365_P1", - "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "STREAM_O365_SMB", - "Service_Plan_Id": "3c53ea51-d578-46fa-a4c0-fd0a92809a60", - "Service_Plans_Included_Friendly_Names": "Stream for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "DYN365_CDS_O365_P1", - "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", - "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1", - "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "DYN365BC_MS_INVOICING", - "Service_Plan_Id": "39b5c996-467e-4e60-bd62-46066f572726", - "Service_Plans_Included_Friendly_Names": "Microsoft Invoicing" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", - "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", - "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "OFFICE_BUSINESS", - "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for business" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "KAIZALA_O365_P2", - "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "MICROSOFT_LOOP", - "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", - "Service_Plans_Included_Friendly_Names": "Microsoft Loop" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "O365_SB_Relationship_Management", - "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79", - "Service_Plans_Included_Friendly_Names": "RETIRED - Outlook Customer Manager" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "STREAM_O365_SMB", - "Service_Plan_Id": "3c53ea51-d578-46fa-a4c0-fd0a92809a60", - "Service_Plans_Included_Friendly_Names": "Stream for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "DYN365BC_MS_INVOICING", - "Service_Plan_Id": "39b5c996-467e-4e60-bd62-46066f572726", - "Service_Plans_Included_Friendly_Names": "Microsoft Invoicing" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "OFFICE_BUSINESS", - "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for business" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "KAIZALA_O365_P2", - "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "O365_SB_Relationship_Management", - "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79", - "Service_Plans_Included_Friendly_Names": "RETIRED - Outlook Customer Manager" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "STREAM_O365_SMB", - "Service_Plan_Id": "3c53ea51-d578-46fa-a4c0-fd0a92809a60", - "Service_Plans_Included_Friendly_Names": "Stream for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", - "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "DYN365BC_MS_INVOICING", - "Service_Plan_Id": "39b5c996-467e-4e60-bd62-46066f572726", - "Service_Plans_Included_Friendly_Names": "Microsoft Invoicing" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "OFFICE_BUSINESS", - "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for business" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "KAIZALA_O365_P2", - "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "O365_SB_Relationship_Management", - "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79", - "Service_Plans_Included_Friendly_Names": "RETIRED - Outlook Customer Manager" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "STREAM_O365_SMB", - "Service_Plan_Id": "3c53ea51-d578-46fa-a4c0-fd0a92809a60", - "Service_Plans_Included_Friendly_Names": "Stream for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", - "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", - "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "MICROSOFTBOOKINGS" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "O365_SB_Relationship_Management", - "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79", - "Service_Plans_Included_Friendly_Names": "OUTLOOK CUSTOMER MANAGER" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "OFFICE_BUSINESS", - "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "YAMMER_MIDSIZE", - "Service_Plan_Id": "41bf139a-4e60-409f-9346-a1361efc6dfb", - "Service_Plans_Included_Friendly_Names": "YAMMER_MIDSIZE" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "DYN365BC_MS_INVOICING", - "Service_Plan_Id": "39b5c996-467e-4e60-bd62-46066f572726", - "Service_Plans_Included_Friendly_Names": "Microsoft Invoicing" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", - "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", - "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "BPOS_S_DlpAddOn", - "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed", - "Service_Plans_Included_Friendly_Names": "Data Loss Prevention" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", - "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", - "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "OFFICE_BUSINESS", - "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for business" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "MDE_SMB", - "Service_Plan_Id": "bfc1bbd9-981b-4f71-9b82-17c35fd0e2a4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Business" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "KAIZALA_O365_P2", - "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "MICROSOFT_LOOP", - "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", - "Service_Plans_Included_Friendly_Names": "Microsoft Loop" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "OFFICE_SHARED_COMPUTER_ACTIVATION", - "Service_Plan_Id": "276d6e8a-f056-4f70-b7e8-4fc27f79f809", - "Service_Plans_Included_Friendly_Names": "Office Shared Computer Activation" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "PURVIEW_DISCOVERY", - "Service_Plan_Id": "c948ea65-2053-4a5a-8a62-9eaaaf11b522", - "Service_Plans_Included_Friendly_Names": "Purview Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "O365_SB_Relationship_Management", - "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79", - "Service_Plans_Included_Friendly_Names": "RETIRED - Outlook Customer Manager" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "WINBIZ", - "Service_Plan_Id": "8e229017-d77b-43d5-9305-903395523b99", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Business" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "AAD_SMB", - "Service_Plan_Id": "de377cbc-0019-4ec2-b77c-3f223947e102", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "INTUNE_SMBIZ", - "Service_Plan_Id": "8e9ff0ff-aa7a-4b20-83c1-2f636b600ac2", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "STREAM_O365_E1", - "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E1" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "DYN365BC_MS_INVOICING", - "Service_Plan_Id": "39b5c996-467e-4e60-bd62-46066f572726", - "Service_Plans_Included_Friendly_Names": "Microsoft Invoicing" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "BPOS_S_DlpAddOn", - "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed", - "Service_Plans_Included_Friendly_Names": "Data Loss Prevention" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", - "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", - "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "OFFICE_BUSINESS", - "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for business" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "MDE_SMB", - "Service_Plan_Id": "bfc1bbd9-981b-4f71-9b82-17c35fd0e2a4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Business" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "KAIZALA_O365_P2", - "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "OFFICE_SHARED_COMPUTER_ACTIVATION", - "Service_Plan_Id": "276d6e8a-f056-4f70-b7e8-4fc27f79f809", - "Service_Plans_Included_Friendly_Names": "Office Shared Computer Activation" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "O365_SB_Relationship_Management", - "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79", - "Service_Plans_Included_Friendly_Names": "RETIRED - Outlook Customer Manager" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "WINBIZ", - "Service_Plan_Id": "8e229017-d77b-43d5-9305-903395523b99", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Business" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "AAD_SMB", - "Service_Plan_Id": "de377cbc-0019-4ec2-b77c-3f223947e102", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "INTUNE_SMBIZ", - "Service_Plan_Id": "8e9ff0ff-aa7a-4b20-83c1-2f636b600ac2", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "STREAM_O365_E1", - "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E1" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", - "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice (US)", - "String_Id": "BUSINESS_VOICE_MED2_TELCO", - "GUID": "08d7bce8-6e16-490e-89db-1d508e5e9609", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice (US)", - "String_Id": "BUSINESS_VOICE_MED2_TELCO", - "GUID": "08d7bce8-6e16-490e-89db-1d508e5e9609", - "Service_Plan_Name": "MCOPSTN1", - "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice (without Calling Plan)", - "String_Id": "BUSINESS_VOICE_DIRECTROUTING", - "GUID": "d52db95a-5ecb-46b6-beb0-190ab5cda4a8", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice (without Calling Plan)", - "String_Id": "BUSINESS_VOICE_DIRECTROUTING", - "GUID": "d52db95a-5ecb-46b6-beb0-190ab5cda4a8", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice (UK", - "String_Id": "BUSINESS_VOICE", - "GUID": "e5a17adf-8f0d-4b57-bc14-d331235f9307", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice (UK", - "String_Id": "BUSINESS_VOICE", - "GUID": "e5a17adf-8f0d-4b57-bc14-d331235f9307", - "Service_Plan_Name": "MCOPSTN1", - "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice (UK", - "String_Id": "BUSINESS_VOICE", - "GUID": "e5a17adf-8f0d-4b57-bc14-d331235f9307", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice (without Calling Plan) for US", - "String_Id": "BUSINESS_VOICE_DIRECTROUTING_MED", - "GUID": "8330dae3-d349-44f7-9cad-1b23c64baabe", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice (without Calling Plan) for US", - "String_Id": "BUSINESS_VOICE_DIRECTROUTING_MED", - "GUID": "8330dae3-d349-44f7-9cad-1b23c64baabe", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice (without Calling Plan)", - "String_Id": "BUSINESS_VOICE_DIRECTROUTING", - "GUID": "d52db95a-5ecb-46b6-beb0-190ab5cda4a8", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice (without Calling Plan)", - "String_Id": "BUSINESS_VOICE_DIRECTROUTING", - "GUID": "d52db95a-5ecb-46b6-beb0-190ab5cda4a8", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice", - "String_Id": "BUSINESS_VOICE_MED2", - "GUID": "a6051f20-9cbc-47d2-930d-419183bf6cf1", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice", - "String_Id": "BUSINESS_VOICE_MED2", - "GUID": "a6051f20-9cbc-47d2-930d-419183bf6cf1", - "Service_Plan_Name": "MCOPSTN1", - "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice", - "String_Id": "BUSINESS_VOICE_MED2", - "GUID": "a6051f20-9cbc-47d2-930d-419183bf6cf1", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft Copilot for Microsoft 365", - "String_Id": "M365_Copilot", - "GUID": "a809996b-059e-42e2-9866-db24b99a9782", - "Service_Plan_Name": "GRAPH_CONNECTORS_COPILOT", - "Service_Plan_Id": "82d30987-df9b-4486-b146-198b21d164c7", - "Service_Plans_Included_Friendly_Names": "Graph Connectors in Microsoft 365 Copilot" - }, - { - "Product_Display_Name": "Microsoft Copilot for Microsoft 365", - "String_Id": "M365_Copilot", - "GUID": "a809996b-059e-42e2-9866-db24b99a9782", - "Service_Plan_Name": "M365_COPILOT_INTELLIGENT_SEARCH", - "Service_Plan_Id": "931e4a88-a67f-48b5-814f-16a5f1e6028d", - "Service_Plans_Included_Friendly_Names": "Intelligent Search" - }, - { - "Product_Display_Name": "Microsoft Copilot for Microsoft 365", - "String_Id": "M365_Copilot", - "GUID": "a809996b-059e-42e2-9866-db24b99a9782", - "Service_Plan_Name": "M365_COPILOT_TEAMS", - "Service_Plan_Id": "b95945de-b3bd-46db-8437-f2beb6ea2347", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Copilot in Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Copilot for Microsoft 365", - "String_Id": "M365_Copilot", - "GUID": "a809996b-059e-42e2-9866-db24b99a9782", - "Service_Plan_Name": "M365_COPILOT_APPS", - "Service_Plan_Id": "a62f8878-de10-42f3-b68f-6149a25ceb97", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Copilot in Productivity Apps" - }, - { - "Product_Display_Name": "Microsoft Copilot for Microsoft 365", - "String_Id": "M365_Copilot", - "GUID": "a809996b-059e-42e2-9866-db24b99a9782", - "Service_Plan_Name": "M365_COPILOT_BUSINESS_CHAT", - "Service_Plan_Id": "3f30311c-6b1e-48a4-ab79-725b469da960", - "Service_Plans_Included_Friendly_Names": "Microsoft Copilot with Graph-grounded chat" - }, - { - "Product_Display_Name": "Microsoft Copilot for Microsoft 365", - "String_Id": "M365_Copilot", - "GUID": "a809996b-059e-42e2-9866-db24b99a9782", - "Service_Plan_Name": "M365_COPILOT_CONNECTORS", - "Service_Plan_Id": "89f1c4c8-0878-40f7-804d-869c9128ab5d", - "Service_Plans_Included_Friendly_Names": "Power Platform Connectors in Microsoft 365 Copilot" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "MDE_LITE", - "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "FORMS_PLAN_E3", - "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "MICROSOFT_LOOP", - "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", - "Service_Plans_Included_Friendly_Names": "Microsoft Loop" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "MDE_LITE", - "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "FORMS_PLAN_E3", - "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o Teams Bundle_M3", - "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 Extra Features", - "String_Id": "Microsoft_365_E3_Extra_Features", - "GUID": "f5b15d67-b99e-406b-90f1-308452f94de6", - "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", - "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E3 Extra Features", - "String_Id": "Microsoft_365_E3_Extra_Features", - "GUID": "f5b15d67-b99e-406b-90f1-308452f94de6", - "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", - "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 Extra Features", - "String_Id": "Microsoft_365_E3_Extra_Features", - "GUID": "f5b15d67-b99e-406b-90f1-308452f94de6", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Microsoft 365 E3 Extra Features", - "String_Id": "Microsoft_365_E3_Extra_Features", - "GUID": "f5b15d67-b99e-406b-90f1-308452f94de6", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Microsoft 365 E3 Extra Features", - "String_Id": "Microsoft_365_E3_Extra_Features", - "GUID": "f5b15d67-b99e-406b-90f1-308452f94de6", - "Service_Plan_Name": "MICROSOFT_LOOP", - "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", - "Service_Plans_Included_Friendly_Names": "Microsoft Loop" - }, - { - "Product_Display_Name": "Microsoft 365 E3 Extra Features", - "String_Id": "Microsoft_365_E3_Extra_Features", - "GUID": "f5b15d67-b99e-406b-90f1-308452f94de6", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E3 Extra Features", - "String_Id": "Microsoft_365_E3_Extra_Features", - "GUID": "f5b15d67-b99e-406b-90f1-308452f94de6", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E3 Extra Features", - "String_Id": "Microsoft_365_E3_Extra_Features", - "GUID": "f5b15d67-b99e-406b-90f1-308452f94de6", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "OFFICESUBSCRIPTION_unattended", - "Service_Plan_Id": "8d77e2d9-9e28-4450-8431-0def64078fc5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise (Unattended)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "MDE_LITE", - "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "FORMS_PLAN_E3", - "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", - "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", - "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", - "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", - "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "OFFICESUBSCRIPTION_unattended", - "Service_Plan_Id": "8d77e2d9-9e28-4450-8431-0def64078fc5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise (Unattended)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MDE_LITE", - "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "FORMS_PLAN_E3", - "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MICROSOFT_LOOP", - "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", - "Service_Plans_Included_Friendly_Names": "Microsoft Loop" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", - "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", - "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "MDE_LITE", - "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "FORMS_PLAN_E3", - "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "MICROSOFT_LOOP", - "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", - "Service_Plans_Included_Friendly_Names": "Microsoft Loop" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams EEA", - "String_Id": "Microsoft_Teams_EEA_New", - "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5", - "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", - "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams" - }, - { - "Product_Display_Name": "Microsoft Teams EEA", - "String_Id": "Microsoft_Teams_EEA_New", - "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5", - "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", - "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" - }, - { - "Product_Display_Name": "Microsoft Teams EEA", - "String_Id": "Microsoft_Teams_EEA_New", - "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS", - "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", - "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk" - }, - { - "Product_Display_Name": "Microsoft Teams EEA", - "String_Id": "Microsoft_Teams_EEA_New", - "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5", - "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS", - "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28", - "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams" - }, - { - "Product_Display_Name": "Microsoft Teams EEA", - "String_Id": "Microsoft_Teams_EEA_New", - "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft Teams EEA", - "String_Id": "Microsoft_Teams_EEA_New", - "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Microsoft Teams EEA", - "String_Id": "Microsoft_Teams_EEA_New", - "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft Teams EEA", - "String_Id": "Microsoft_Teams_EEA_New", - "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams EEA", - "String_Id": "Microsoft_Teams_EEA_New", - "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams EEA", - "String_Id": "Microsoft_Teams_EEA_New", - "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft Teams EEA", - "String_Id": "Microsoft_Teams_EEA_New", - "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5", - "Service_Plan_Name": "ONEDRIVE_BASIC_P2", - "Service_Plan_Id": "4495894f-534f-41ca-9d3b-0ebf1220a423", - "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Basic 2)" - }, - { - "Product_Display_Name": "Microsoft Teams EEA", - "String_Id": "Microsoft_Teams_EEA_New", - "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "MDE_LITE", - "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "FORMS_PLAN_E3", - "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "MICROSOFT_LOOP", - "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", - "Service_Plans_Included_Friendly_Names": "Microsoft Loop" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", - "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "TEAMS_AR_DOD", - "Service_Plan_Id": "fd500458-c24c-478e-856c-a6067a8376cd", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for DOD (AR)" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office Online" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "TEAMS_AR_GCCHIGH", - "Service_Plan_Id": "9953b155-8aef-4c56-92f3-72b0487fce41", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for GCCHigh (AR)" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office Online" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", - "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", - "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "CustomerLockboxA_Enterprise", - "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS", - "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28", - "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "M365_AUDIT_PLATFORM", - "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MICROSOFT_LOOP", - "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", - "Service_Plans_Included_Friendly_Names": "Microsoft Loop" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "PURVIEW_DISCOVERY", - "Service_Plan_Id": "c948ea65-2053-4a5a-8a62-9eaaaf11b522", - "Service_Plans_Included_Friendly_Names": "Purview Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", - "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "Defender_for_Iot_Enterprise", - "Service_Plan_Id": "99cd49a9-0e54-4e07-aea1-d8d9f5f704f5", - "Service_Plans_Included_Friendly_Names": "Defender for IoT - Enterprise IoT Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "M365_AUDIT_PLATFORM", - "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "MCOPSTN8", - "Service_Plan_Id": "16935b20-87c0-4908-934a-22aa267d0d26", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan (120 min) at User Level" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", - "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_MIDMARKET", - "Service_Plan_Id": "6b5b6a67-fc72-4a1f-a2b5-beecf05de761", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", - "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "CustomerLockboxA_Enterprise", - "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "M365_AUDIT_PLATFORM", - "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", - "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", - "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", - "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "CustomerLockboxA_Enterprise", - "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "M365_AUDIT_PLATFORM", - "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MICROSOFT_LOOP", - "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", - "Service_Plans_Included_Friendly_Names": "Microsoft Loop" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "PURVIEW_DISCOVERY", - "Service_Plan_Id": "c948ea65-2053-4a5a-8a62-9eaaaf11b522", - "Service_Plans_Included_Friendly_Names": "Purview Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "Defender_for_Iot_Enterprise", - "Service_Plan_Id": "99cd49a9-0e54-4e07-aea1-d8d9f5f704f5", - "Service_Plans_Included_Friendly_Names": "Defender for IoT - Enterprise IoT Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", - "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", - "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "CustomerLockboxA_Enterprise", - "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "M365_AUDIT_PLATFORM", - "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MICROSOFT_LOOP", - "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", - "Service_Plans_Included_Friendly_Names": "Microsoft Loop" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "PURVIEW_DISCOVERY", - "Service_Plan_Id": "c948ea65-2053-4a5a-8a62-9eaaaf11b522", - "Service_Plans_Included_Friendly_Names": "Purview Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", - "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", - "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "CustomerLockboxA_Enterprise", - "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "M365_AUDIT_PLATFORM", - "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", - "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_M5", - "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", - "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", - "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", - "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", - "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", - "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", - "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", - "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", - "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", - "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", - "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", - "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", - "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "CustomerLockboxA_Enterprise", - "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "M365_AUDIT_PLATFORM", - "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MCOPSTN8", - "Service_Plan_Id": "16935b20-87c0-4908-934a-22aa267d0d26", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan (120 min) at User Level" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MICROSOFT_LOOP", - "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", - "Service_Plans_Included_Friendly_Names": "Microsoft Loop" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "PURVIEW_DISCOVERY", - "Service_Plan_Id": "c948ea65-2053-4a5a-8a62-9eaaaf11b522", - "Service_Plans_Included_Friendly_Names": "Purview Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", - "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "Defender_for_Iot_Enterprise", - "Service_Plan_Id": "99cd49a9-0e54-4e07-aea1-d8d9f5f704f5", - "Service_Plans_Included_Friendly_Names": "Defender for IoT - Enterprise IoT Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", - "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", - "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "CustomerLockboxA_Enterprise", - "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "M365_AUDIT_PLATFORM", - "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MICROSOFT_LOOP", - "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", - "Service_Plans_Included_Friendly_Names": "Microsoft Loop" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "PURVIEW_DISCOVERY", - "Service_Plan_Id": "c948ea65-2053-4a5a-8a62-9eaaaf11b522", - "Service_Plans_Included_Friendly_Names": "Purview Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", - "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "Defender_for_Iot_Enterprise", - "Service_Plan_Id": "99cd49a9-0e54-4e07-aea1-d8d9f5f704f5", - "Service_Plans_Included_Friendly_Names": "Defender for IoT - Enterprise IoT Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", - "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", - "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "CustomerLockboxA_Enterprise", - "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "M365_AUDIT_PLATFORM", - "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MICROSOFT_LOOP", - "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", - "Service_Plans_Included_Friendly_Names": "Microsoft Loop" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "PURVIEW_DISCOVERY", - "Service_Plan_Id": "c948ea65-2053-4a5a-8a62-9eaaaf11b522", - "Service_Plans_Included_Friendly_Names": "Purview Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "Defender_for_Iot_Enterprise", - "Service_Plan_Id": "99cd49a9-0e54-4e07-aea1-d8d9f5f704f5", - "Service_Plans_Included_Friendly_Names": "Defender for IoT - Enterprise IoT Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "CustomerLockboxA_Enterprise", - "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "M365_AUDIT_PLATFORM", - "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "MICROSOFT_LOOP", - "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", - "Service_Plans_Included_Friendly_Names": "Microsoft Loop" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "PURVIEW_DISCOVERY", - "Service_Plan_Id": "c948ea65-2053-4a5a-8a62-9eaaaf11b522", - "Service_Plans_Included_Friendly_Names": "Purview Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", - "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", - "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", - "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "M365_AUDIT_PLATFORM", - "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", - "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "MCOMEETADV_AR_GCCHigh", - "Service_Plan_Id": "f1e3613f-3818-4254-9b5e-f02d803384e0", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing for GCCHigh" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "FORMS_PLAN_E5_AR_GCCHIGH", - "Service_Plan_Id": "cf1b2895-e3fd-4b33-9594-2ab924104547", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5) for GCCHigh" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "MICROSOFT_SEARCH_GCCH", - "Service_Plan_Id": "fc9f7921-4ca5-42c6-8533-1b84c4ee496b", - "Service_Plans_Included_Friendly_Names": "Microsoft Search for Arlington" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "TEAMS_AR_GCCHIGH", - "Service_Plan_Id": "9953b155-8aef-4c56-92f3-72b0487fce41", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for GCCHigh" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "POWERAPPS_O365_P3_GCCHIGH", - "Service_Plan_Id": "b50a9096-5b07-4ded-a5e4-a492fb94b6ee", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for GCCHigh" - }, - { - "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", - "String_Id": "SPE_E5_USGOV_GCCHIGH", - "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", - "Service_Plan_Name": "FLOW_O365_P3_GCCHIGH", - "Service_Plan_Id": "ee939cf0-7cd1-4262-9f72-9eaa45dbba69", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for GCCHigh" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", - "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "STREAM_O365_K", - "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 K SKU" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Online Kiosk" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", - "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", - "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", - "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", - "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS", - "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", - "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk" - }, - { - "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", - "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", - "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", - "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", - "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", - "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", - "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", - "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", - "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", - "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", - "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", - "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", - "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" - }, - { - "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", - "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", - "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", - "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", - "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", - "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", - "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", - "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", - "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", - "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", - "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", - "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", - "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", - "Service_Plan_Name": "DYN365_CDS_O365_F1", - "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", - "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", - "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", - "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", - "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", - "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", - "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", - "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", - "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", - "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", - "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", - "Service_Plan_Name": "STREAM_O365_K", - "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 F3" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "CDS_O365_F1", - "Service_Plan_Id": "90db65a7-bf11-4904-a79f-ef657605145b", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS", - "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", - "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "FORMS_PLAN_K", - "Service_Plan_Id": "f07046bd-2a3c-4b96-b0be-dea79d7cbfb8", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "KAIZALA_O365_P1", - "Service_Plan_Id": "73b2a583-6a59-42e3-8e83-54db46bc3278", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "PROJECT_O365_F3", - "Service_Plan_Id": "7f6f28c2-34bb-4d4b-be36-48ca2e77e1ec", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan F)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "BPOS_S_TODO_FIRSTLINE", - "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5", - "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1", - "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "WIN10_ENT_LOC_F1", - "Service_Plan_Id": "e041597c-9c7f-4ed9-99b0-2663301576f7", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise E3 (Local Only)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "DYN365_CDS_O365_F1", - "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "STREAM_O365_K", - "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 F3" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "POWERAPPS_O365_S1", - "Service_Plan_Id": "e0287f9f-e222-4f98-9a83-f379e249159a", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "FLOW_O365_S1", - "Service_Plan_Id": "bd91b1a4-9f94-4ecf-b45b-3a65e5c8128a", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_F1", - "Service_Plan_Id": "ba2fdb48-290b-4632-b46a-e4ecc58ac11a", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "CDS_O365_F1", - "Service_Plan_Id": "90db65a7-bf11-4904-a79f-ef657605145b", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS", - "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", - "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "FORMS_PLAN_K", - "Service_Plan_Id": "f07046bd-2a3c-4b96-b0be-dea79d7cbfb8", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1)" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "KAIZALA_O365_P1", - "Service_Plan_Id": "73b2a583-6a59-42e3-8e83-54db46bc3278", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "TEAMS_DESKLESS", - "Service_Plan_Id": "a42de799-58ae-4e6a-aa1d-948e7abec726", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Kiosk" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "PROJECT_O365_F3", - "Service_Plan_Id": "7f6f28c2-34bb-4d4b-be36-48ca2e77e1ec", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan F)" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "BPOS_S_TODO_FIRSTLINE", - "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5", - "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1", - "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "WIN10_ENT_LOC_F1", - "Service_Plan_Id": "e041597c-9c7f-4ed9-99b0-2663301576f7", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise E3 (Local Only)" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "DYN365_CDS_O365_F1", - "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "STREAM_O365_K", - "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 F3" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "POWERAPPS_O365_S1", - "Service_Plan_Id": "e0287f9f-e222-4f98-9a83-f379e249159a", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "FLOW_O365_S1", - "Service_Plan_Id": "bd91b1a4-9f94-4ecf-b45b-3a65e5c8128a", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3" - }, - { - "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", - "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", - "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_F1", - "Service_Plan_Id": "ba2fdb48-290b-4632-b46a-e4ecc58ac11a", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "RMS_S_PREMIUM_GOV", - "Service_Plan_Id": "1b66aedf-8ca1-4f73-af76-ec76c6180f98", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1 for GCC" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", - "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "DYN365_CDS_O365_F1_GCC", - "Service_Plan_Id": "29007dd3-36c0-4cc2-935d-f5bca2c2c473", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 F1" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "CDS_O365_F1_GCC", - "Service_Plan_Id": "5e05331a-0aec-437e-87db-9ef5934b5771", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_F1 GCC" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS_GOV", - "Service_Plan_Id": "88f4d7ef-a73b-4246-8047-516022144c9f", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Kiosk) for Government" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "FORMS_GOV_F1", - "Service_Plan_Id": "bfd4133a-bbf3-4212-972b-60412137c428", - "Service_Plans_Included_Friendly_Names": "Forms for Government (Plan F1)" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "STREAM_O365_K_GOV", - "Service_Plan_Id": "d65648f1-9504-46e4-8611-2658763f28b8", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 for Government (F1)" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", - "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", - "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION_GOV", - "Service_Plan_Id": "4ccb60ee-9523-48fd-8f63-4b090f1ad77a", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365 for GCC" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "POWERAPPS_O365_S1_GOV", - "Service_Plan_Id": "49f06c3d-da7d-4fa0-bcce-1458fdd18a59", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3 for Government" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "FLOW_O365_S1_GOV", - "Service_Plan_Id": "5d32692e-5b24-4a59-a77e-b2a8650e25c1", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3 for Government" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "SHAREPOINTDESKLESS_GOV", - "Service_Plan_Id": "b1aeb897-3a19-46e2-8c27-a609413cf193", - "Service_Plans_Included_Friendly_Names": "SharePoint KioskG" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "MCOIMP_GOV", - "Service_Plan_Id": "8a9f17f1-5872-44e8-9b11-3caade9dc90f", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1) for Government" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "BPOS_S_TODO_FIRSTLINE", - "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5", - "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1", - "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "BPOS_S_DlpAddOn", - "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed", - "Service_Plans_Included_Friendly_Names": "Data Loss Prevention" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", - "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", - "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "ADALLOM_S_STANDALONE_DOD", - "Service_Plan_Id": "6ebdddb7-8e55-4af2-952b-69e77262f96c", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps for DOD" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "BPOS_S_DlpAddOn", - "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed", - "Service_Plans_Included_Friendly_Names": "Data Loss Prevention" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", - "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", - "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV", - "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "BPOS_S_DlpAddOn", - "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed", - "Service_Plans_Included_Friendly_Names": "Data Loss Prevention" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", - "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", - "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV", - "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security Add-on", - "String_Id": "SPE_F5_SEC", - "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security Add-on", - "String_Id": "SPE_F5_SEC", - "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security Add-on", - "String_Id": "SPE_F5_SEC", - "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security Add-on", - "String_Id": "SPE_F5_SEC", - "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security Add-on", - "String_Id": "SPE_F5_SEC", - "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security Add-on", - "String_Id": "SPE_F5_SEC", - "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security Add-on", - "String_Id": "SPE_F5_SEC", - "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "BPOS_S_DlpAddOn", - "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed", - "Service_Plans_Included_Friendly_Names": "Data Loss Prevention" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", - "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", - "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "CDS_O365_P3_GCC", - "Service_Plan_Id": "bce5e5ca-c2fd-4d53-8ee2-58dfffed4c10", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV", - "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", - "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX_TOPICEXP", - "Service_Plan_Id": "b74d57b2-58e9-484a-9731-aeccbba954f0", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index (Microsoft Viva Topics)" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV", - "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise G" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MCOMEETADV_GOV", - "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MCOEV_GOV", - "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "ATP_ENTERPRISE_GOV", - "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV", - "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2) for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "FORMS_GOV_E5", - "Service_Plan_Id": "843da3a8-d2cc-4e7a-9e90-dc46019f964c", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "EXCHANGE_ANALYTICS_GOV", - "Service_Plan_Id": "208120d1-9adb-4daf-8c22-816bd5d237e7", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics for Government (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV", - "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", - "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", - "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "BI_AZURE_P_2_GOV", - "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76", - "Service_Plans_Included_Friendly_Names": "Power BI Pro for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "PROJECT_O365_P3_GOV", - "Service_Plan_Id": "9b7c50ec-cd50-44f2-bf48-d72de6f90717", - "Service_Plans_Included_Friendly_Names": "Project for Government (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "STREAM_O365_E5_GOV", - "Service_Plan_Id": "92c2089d-9a53-49fe-b1a6-9e6bdf959547", - "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E5)" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "RMS_S_PREMIUM_GOV", - "Service_Plan_Id": "1b66aedf-8ca1-4f73-af76-ec76c6180f98", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1 for GCC" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "RMS_S_PREMIUM2_GOV", - "Service_Plan_Id": "5400a66d-eaa5-427d-80f2-0f26d59d8fce", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2 for GCC" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", - "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "DYN365_CDS_O365_P3_GCC", - "Service_Plan_Id": "a7d3fb37-b6df-4085-b509-50810d991a39", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "POWERAPPS_O365_P3_GOV", - "Service_Plan_Id": "0eacfc38-458a-40d3-9eab-9671258f1a3e", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "FLOW_O365_P3_GOV", - "Service_Plan_Id": "8055d84a-c172-42eb-b997-6c2ae4628246", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "CDS_O365_P3_GCC", - "Service_Plan_Id": "bce5e5ca-c2fd-4d53-8ee2-58dfffed4c10", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV", - "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", - "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV", - "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise G" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "MCOMEETADV_GOV", - "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "MCOEV_GOV", - "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "ATP_ENTERPRISE_GOV", - "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV", - "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2) for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "FORMS_GOV_E5", - "Service_Plan_Id": "843da3a8-d2cc-4e7a-9e90-dc46019f964c", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "EXCHANGE_ANALYTICS_GOV", - "Service_Plan_Id": "208120d1-9adb-4daf-8c22-816bd5d237e7", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics for Government (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV", - "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", - "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", - "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "BI_AZURE_P_2_GOV", - "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76", - "Service_Plans_Included_Friendly_Names": "Power BI Pro for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "PROJECT_O365_P3_GOV", - "Service_Plan_Id": "9b7c50ec-cd50-44f2-bf48-d72de6f90717", - "Service_Plans_Included_Friendly_Names": "Project for Government (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "STREAM_O365_E5_GOV", - "Service_Plan_Id": "92c2089d-9a53-49fe-b1a6-9e6bdf959547", - "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E5)" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "RMS_S_PREMIUM_GOV", - "Service_Plan_Id": "1b66aedf-8ca1-4f73-af76-ec76c6180f98", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1 for GCC" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "RMS_S_PREMIUM2_GOV", - "Service_Plan_Id": "5400a66d-eaa5-427d-80f2-0f26d59d8fce", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2 for GCC" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", - "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "DYN365_CDS_O365_P3_GCC", - "Service_Plan_Id": "a7d3fb37-b6df-4085-b509-50810d991a39", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "POWERAPPS_O365_P3_GOV", - "Service_Plan_Id": "0eacfc38-458a-40d3-9eab-9671258f1a3e", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", - "String_Id": "M365_G5_GOV", - "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", - "Service_Plan_Name": "FLOW_O365_P3_GOV", - "Service_Plan_Id": "8055d84a-c172-42eb-b997-6c2ae4628246", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" - }, - { - "Product_Display_Name": "Microsoft 365 Audio Conferencing for GCC", - "String_Id": "MCOMEETADV_GOV", - "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT" - }, - { - "Product_Display_Name": "Microsoft 365 Audio Conferencing for GCC", - "String_Id": "MCOMEETADV_GOV", - "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5", - "Service_Plan_Name": "MCOMEETADV_GOV", - "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 AUDIO CONFERENCING FOR GOVERNMENT" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", - "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", - "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "CustomerLockboxA_Enterprise", - "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS", - "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28", - "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "CLIPCHAMP", - "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", - "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "MICROSOFT_LOOP", - "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", - "Service_Plans_Included_Friendly_Names": "Microsoft Loop" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "PURVIEW_DISCOVERY", - "Service_Plan_Id": "c948ea65-2053-4a5a-8a62-9eaaaf11b522", - "Service_Plans_Included_Friendly_Names": "Purview Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "Defender_for_Iot_Enterprise", - "Service_Plan_Id": "99cd49a9-0e54-4e07-aea1-d8d9f5f704f5", - "Service_Plans_Included_Friendly_Names": "Defender for IoT - Enterprise IoT Security" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "AAD_PREMIUM" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "RMS_S_PREMIUM" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "ADALLOM_S_DISCOVERY" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "DYN365_CDS_O365_F1", - "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f", - "Service_Plans_Included_Friendly_Names": "DYN365_CDS_O365_F1" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS", - "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", - "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_DESKLESS" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "RMS_S_ENTERPRISE" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "MFA_PREMIUM" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "MICROSOFTBOOKINGS" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "INTUNE_A" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "PROJECTWORKMANAGEMENT" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "MICROSOFT_SEARCH" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "STREAM_O365_K", - "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", - "Service_Plans_Included_Friendly_Names": "STREAM_O365_K" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "INTUNE_O365" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTDESKLESS" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "MCOIMP" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "CDS_O365_P2_GCC", - "Service_Plan_Id": "a70bbf38-cdda-470d-adb8-5804b8770f41", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", - "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "MYANALYTICS_P2_GOV", - "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics for Government" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV", - "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise G" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "FORMS_GOV_E3", - "Service_Plan_Id": "24af5f65-d0f3-467b-9f78-ea798c4aeffc", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", - "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", - "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "PROJECT_O365_P2_GOV", - "Service_Plan_Id": "e7d09ae4-099a-4c34-a2a2-3e166e95c44a", - "Service_Plans_Included_Friendly_Names": "Project for Government (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "STREAM_O365_E3_GOV", - "Service_Plan_Id": "2c1ada27-dbaa-46f9-bda6-ecb94445f758", - "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E3)" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "RMS_S_PREMIUM_GOV", - "Service_Plan_Id": "1b66aedf-8ca1-4f73-af76-ec76c6180f98", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1 for GCC" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", - "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "DYN365_CDS_O365_P2_GCC", - "Service_Plan_Id": "06162da2-ebf9-4954-99a0-00fee96f95cc", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "POWERAPPS_O365_P2_GOV", - "Service_Plan_Id": "0a20c815-5e81-4727-9bdc-2b5a117850c3", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "FLOW_O365_P2_GOV", - "Service_Plan_Id": "c537f360-6a00-4ace-a7f5-9128d0ac1e4b", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "CDS_O365_P2_GCC", - "Service_Plan_Id": "a70bbf38-cdda-470d-adb8-5804b8770f41", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", - "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "MYANALYTICS_P2_GOV", - "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics for Government" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "OFFICESUBSCRIPTION_unattended_GOV", - "Service_Plan_Id": "18dfd9bd-5214-4184-8123-c9822d81a9bc", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise (unattended) for GCC" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "MDE_LITE", - "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "FORMS_GOV_E3", - "Service_Plan_Id": "24af5f65-d0f3-467b-9f78-ea798c4aeffc", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", - "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", - "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "PROJECT_O365_P2_GOV", - "Service_Plan_Id": "e7d09ae4-099a-4c34-a2a2-3e166e95c44a", - "Service_Plans_Included_Friendly_Names": "Project for Government (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "STREAM_O365_E3_GOV", - "Service_Plan_Id": "2c1ada27-dbaa-46f9-bda6-ecb94445f758", - "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E3)" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "RMS_S_PREMIUM_GOV", - "Service_Plan_Id": "1b66aedf-8ca1-4f73-af76-ec76c6180f98", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1 for GCC" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", - "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "DYN365_CDS_O365_P2_GCC", - "Service_Plan_Id": "06162da2-ebf9-4954-99a0-00fee96f95cc", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "POWERAPPS_O365_P2_GOV", - "Service_Plan_Id": "0a20c815-5e81-4727-9bdc-2b5a117850c3", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" - }, - { - "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", - "String_Id": "M365_G3_RPA1_GOV", - "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", - "Service_Plan_Name": "FLOW_O365_P2_GOV", - "Service_Plan_Id": "c537f360-6a00-4ace-a7f5-9128d0ac1e4b", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" - }, - { - "Product_Display_Name": "Microsoft 365 Lighthouse", - "String_Id": "Microsoft365_Lighthouse", - "GUID": "9c0587f3-8665-4252-a8ad-b7a5ade57312", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Lighthouse", - "String_Id": "Microsoft365_Lighthouse", - "GUID": "9c0587f3-8665-4252-a8ad-b7a5ade57312", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Sales Copilot", - "String_Id": "Microsoft_Viva_Sales", - "GUID": "3227bcb2-8448-4f81-b3c2-8c2074e15a2a", - "Service_Plan_Name": "Microsoft_Viva_Sales_PremiumTrial", - "Service_Plan_Id": "8ba1ff15-7bf6-4620-b65c-ecedb6942766", - "Service_Plans_Included_Friendly_Names": "Microsoft Sales Copilot Premium \u0026 Trial" - }, - { - "Product_Display_Name": "Microsoft Sales Copilot", - "String_Id": "Microsoft_Viva_Sales", - "GUID": "3227bcb2-8448-4f81-b3c2-8c2074e15a2a", - "Service_Plan_Name": "Microsoft_Viva_Sales_PowerAutomate", - "Service_Plan_Id": "a933a62f-c3fb-48e5-a0b7-ac92b94b4420", - "Service_Plans_Included_Friendly_Names": "Microsoft Sales Copilot Premium with Power Automate" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "BPOS_S_DlpAddOn", - "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed", - "Service_Plans_Included_Friendly_Names": "Data Loss Prevention" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", - "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", - "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving for Exchange Online" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "M365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender For Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-based classification" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft Business Center", - "String_Id": "MICROSOFT_BUSINESS_CENTER", - "GUID": "726a0894-2c77-4d65-99da-9775ef05aad1", - "Service_Plan_Name": "MICROSOFT_BUSINESS_CENTER", - "Service_Plan_Id": "cca845f9-fd51-4df6-b563-976a37c56ce0", - "Service_Plans_Included_Friendly_Names": "MICROSOFT BUSINESS CENTER" - }, - { - "Product_Display_Name": "Microsoft Copilot for Microsoft 365", - "String_Id": "Microsoft_365_Copilot", - "GUID": "639dec6b-bb19-468b-871c-c5c441c4b0cb", - "Service_Plan_Name": "GRAPH_CONNECTORS_COPILOT", - "Service_Plan_Id": "82d30987-df9b-4486-b146-198b21d164c7", - "Service_Plans_Included_Friendly_Names": "Graph Connectors in Microsoft 365 Copilot" - }, - { - "Product_Display_Name": "Microsoft Copilot for Microsoft 365", - "String_Id": "Microsoft_365_Copilot", - "GUID": "639dec6b-bb19-468b-871c-c5c441c4b0cb", - "Service_Plan_Name": "M365_COPILOT_INTELLIGENT_SEARCH", - "Service_Plan_Id": "931e4a88-a67f-48b5-814f-16a5f1e6028d", - "Service_Plans_Included_Friendly_Names": "Intelligent Search" - }, - { - "Product_Display_Name": "Microsoft Copilot for Microsoft 365", - "String_Id": "Microsoft_365_Copilot", - "GUID": "639dec6b-bb19-468b-871c-c5c441c4b0cb", - "Service_Plan_Name": "M365_COPILOT_BUSINESS_CHAT", - "Service_Plan_Id": "3f30311c-6b1e-48a4-ab79-725b469da960", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Chat" - }, - { - "Product_Display_Name": "Microsoft Copilot for Microsoft 365", - "String_Id": "Microsoft_365_Copilot", - "GUID": "639dec6b-bb19-468b-871c-c5c441c4b0cb", - "Service_Plan_Name": "M365_COPILOT_TEAMS", - "Service_Plan_Id": "b95945de-b3bd-46db-8437-f2beb6ea2347", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Copilot in Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Copilot for Microsoft 365", - "String_Id": "Microsoft_365_Copilot", - "GUID": "639dec6b-bb19-468b-871c-c5c441c4b0cb", - "Service_Plan_Name": "M365_COPILOT_APPS", - "Service_Plan_Id": "a62f8878-de10-42f3-b68f-6149a25ceb97", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Copilot in Productivity Apps" - }, - { - "Product_Display_Name": "Microsoft Copilot for Microsoft 365", - "String_Id": "Microsoft_365_Copilot", - "GUID": "639dec6b-bb19-468b-871c-c5c441c4b0cb", - "Service_Plan_Name": "M365_COPILOT_CONNECTORS", - "Service_Plan_Id": "89f1c4c8-0878-40f7-804d-869c9128ab5d", - "Service_Plans_Included_Friendly_Names": "Power Platform Connectors in Microsoft 365 Copilot" - }, - { - "Product_Display_Name": "Microsoft Cloud App Security", - "String_Id": "ADALLOM_STANDALONE", - "GUID": "df845ce7-05f9-4894-b5f2-11bbfbcfd2b6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Cloud App Security", - "String_Id": "ADALLOM_STANDALONE", - "GUID": "df845ce7-05f9-4894-b5f2-11bbfbcfd2b6", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft Cloud for Sustainability vTrial", - "String_Id": "Microsoft_Cloud_for_Sustainability_vTrial", - "GUID": "556640c0-53ea-4773-907d-29c55332983f", - "Service_Plan_Name": "MCS_BizApps_Cloud_for_Sustainability_vTrial", - "Service_Plan_Id": "c1c902e3-a956-4273-abdb-c92afcd027ef", - "Service_Plans_Included_Friendly_Names": "MCS - BizApps_Cloud for Sustainability_vTrial" - }, - { - "Product_Display_Name": "Microsoft Cloud for Sustainability vTrial", - "String_Id": "Microsoft_Cloud_for_Sustainability_vTrial", - "GUID": "556640c0-53ea-4773-907d-29c55332983f", - "Service_Plan_Name": "POWER_APPS_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "54b37829-818e-4e3c-a08a-3ea66ab9b45d", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Microsoft Cloud for Sustainability vTrial", - "String_Id": "Microsoft_Cloud_for_Sustainability_vTrial", - "GUID": "556640c0-53ea-4773-907d-29c55332983f", - "Service_Plan_Name": "POWER_AUTOMATE_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "81d4ecb8-0481-42fb-8868-51536c5aceeb", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Microsoft Cloud for Sustainability vTrial", - "String_Id": "Microsoft_Cloud_for_Sustainability_vTrial", - "GUID": "556640c0-53ea-4773-907d-29c55332983f", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Cloud for Sustainability vTrial", - "String_Id": "Microsoft_Cloud_for_Sustainability_vTrial", - "GUID": "556640c0-53ea-4773-907d-29c55332983f", - "Service_Plan_Name": "DYN365_CDS_VIRAL", - "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint", - "String_Id": "WIN_DEF_ATP", - "GUID": "111046dd-295b-4d6d-9724-d52ac90bd1f2", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint", - "String_Id": "WIN_DEF_ATP", - "GUID": "111046dd-295b-4d6d-9724-d52ac90bd1f2", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR ENDPOINT" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint F2", - "String_Id": "Microsoft_Defender_for_Endpoint_F2", - "GUID": "e430a580-c37b-4d16-adba-d881d7cd0364", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint P1", - "String_Id": "DEFENDER_ENDPOINT_P1", - "GUID": "16a55f2f-ff35-4cd5-9146-fb784e3761a5", - "Service_Plan_Name": "Intune_Defender", - "Service_Plan_Id": "1689aade-3d6a-4bfc-b017-46d2672df5ad", - "Service_Plans_Included_Friendly_Names": "MDE_SecurityManagement" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint P1", - "String_Id": "DEFENDER_ENDPOINT_P1", - "GUID": "16a55f2f-ff35-4cd5-9146-fb784e3761a5", - "Service_Plan_Name": "MDE_LITE", - "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint P1 for EDU", - "String_Id": "DEFENDER_ENDPOINT_P1_EDU", - "GUID": "bba890d4-7881-4584-8102-0c3fdfb739a7", - "Service_Plan_Name": "MDE_LITE", - "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint P2_XPLAT", - "String_Id": "MDATP_XPLAT", - "GUID": "b126b073-72db-4a9d-87a4-b17afe41d4ab", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint P2_XPLAT", - "String_Id": "MDATP_XPLAT", - "GUID": "b126b073-72db-4a9d-87a4-b17afe41d4ab", - "Service_Plan_Name": "Intune_Defender", - "Service_Plan_Id": "1689aade-3d6a-4bfc-b017-46d2672df5ad", - "Service_Plans_Included_Friendly_Names": "MDE_SecurityManagement" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint P2_XPLAT", - "String_Id": "MDATP_XPLAT", - "GUID": "b126b073-72db-4a9d-87a4-b17afe41d4ab", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint Server", - "String_Id": "MDATP_Server", - "GUID": "509e8ab6-0274-4cda-bcbd-bd164fd562c4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint Server", - "String_Id": "MDATP_Server", - "GUID": "509e8ab6-0274-4cda-bcbd-bd164fd562c4", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online Basic", - "String_Id": "CRMPLAN2", - "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online Basic", - "String_Id": "CRMPLAN2", - "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online Basic", - "String_Id": "CRMPLAN2", - "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657", - "Service_Plan_Name": "CRMPLAN2", - "Service_Plan_Id": "bf36ca64-95c6-4918-9275-eb9f4ce2c04f", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DYNAMICS CRM ONLINE BASIC" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online Basic", - "String_Id": "CRMPLAN2", - "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Microsoft Defender for Identity", - "String_Id": "ATA", - "GUID": "98defdf7-f6c1-44f5-a1f6-943b6764e7a5", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Defender for Identity", - "String_Id": "ATA", - "GUID": "98defdf7-f6c1-44f5-a1f6-943b6764e7a5", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft Defender for Identity", - "String_Id": "ATA", - "GUID": "98defdf7-f6c1-44f5-a1f6-943b6764e7a5", - "Service_Plan_Name": "ADALLOM_FOR_AATP", - "Service_Plan_Id": "61d18b02-6889-479f-8f36-56e6e0fe5792", - "Service_Plans_Included_Friendly_Names": "SecOps Investigation for MDI" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 1) Faculty", - "String_Id": "ATP_ENTERPRISE_FACULTY", - "GUID": "26ad4b5c-b686-462e-84b9-d7c22b46837f", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 1) GCC", - "String_Id": "ATP_ENTERPRISE_GOV", - "GUID": "d0d1ca43-b81a-4f51-81e5-a5b1ad7bb005", - "Service_Plan_Name": "ATP_ENTERPRISE_GOV", - "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 1)_USGOV_GCCHIGH", - "String_Id": "ATP_ENTERPRISE_USGOV_GCCHIGH ", - "GUID": "550f19ba-f323-4a7d-a8d2-8971b0d9ea85", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2) GCC", - "String_Id": "THREAT_INTELLIGENCE_GOV", - "GUID": "56a59ffb-9df1-421b-9e61-8b568583474d", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2) GCC", - "String_Id": "THREAT_INTELLIGENCE_GOV", - "GUID": "56a59ffb-9df1-421b-9e61-8b568583474d", - "Service_Plan_Name": "ATP_ENTERPRISE_GOV", - "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2) GCC", - "String_Id": "THREAT_INTELLIGENCE_GOV", - "GUID": "56a59ffb-9df1-421b-9e61-8b568583474d", - "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV", - "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2) for Government" - }, - { - "Product_Display_Name": "Microsoft Defender Vulnerability Management", - "String_Id": "TVM_Premium_Standalone", - "GUID": "1925967e-8013-495f-9644-c99f8b463748", - "Service_Plan_Name": "TVM_PREMIUM_1", - "Service_Plan_Id": "36810a13-b903-490a-aa45-afbeb7540832", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender Vulnerability Management" - }, - { - "Product_Display_Name": "Microsoft Defender Vulnerability Management Add-on", - "String_Id": "TVM_Premium_Add_on", - "GUID": "ad7a56e0-6903-4d13-94f3-5ad491e78960", - "Service_Plan_Name": "TVM_PREMIUM_1", - "Service_Plan_Id": "36810a13-b903-490a-aa45-afbeb7540832", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender Vulnerability Management" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online", - "String_Id": "CRMSTANDARD", - "GUID": "d17b27af-3f49-4822-99f9-56a661538792", - "Service_Plan_Name": "CRMSTANDARD", - "Service_Plan_Id": "f9646fb2-e3b2-4309-95de-dc4833737456", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DYNAMICS CRM ONLINE PROFESSIONA" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online", - "String_Id": "CRMSTANDARD", - "GUID": "d17b27af-3f49-4822-99f9-56a661538792", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online", - "String_Id": "CRMSTANDARD", - "GUID": "d17b27af-3f49-4822-99f9-56a661538792", - "Service_Plan_Name": "MDM_SALES_COLLABORATION", - "Service_Plan_Id": "3413916e-ee66-4071-be30-6f94d4adfeda", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DYNAMICS MARKETING SALES COLLABORATION - ELIGIBILITY CRITERIA APPLY" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online", - "String_Id": "CRMSTANDARD", - "GUID": "d17b27af-3f49-4822-99f9-56a661538792", - "Service_Plan_Name": "NBPROFESSIONALFORCRM", - "Service_Plan_Id": "3e58e97c-9abe-ebab-cd5f-d543d1529634", - "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT PROFESSIONAL - ELIGIBILITY CRITERIA APPLY" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online", - "String_Id": "CRMSTANDARD", - "GUID": "d17b27af-3f49-4822-99f9-56a661538792", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Microsoft Entra ID Governance", - "String_Id": "Microsoft_Entra_ID_Governance", - "GUID": "cf6b0d46-4093-4546-a0ab-0b1546dcc10e", - "Service_Plan_Name": "Entra_Identity_Governance", - "Service_Plan_Id": "e866a266-3cff-43a3-acca-0c90a7e00c8b", - "Service_Plans_Included_Friendly_Names": "Entra Identity Governance" - }, - { - "Product_Display_Name": "Microsoft Fabric (Free)", - "String_Id": "POWER_BI_STANDARD", - "GUID": "a403ebcc-fae0-4ca2-8c8c-7a907fd6c235", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Fabric (Free)", - "String_Id": "POWER_BI_STANDARD", - "GUID": "a403ebcc-fae0-4ca2-8c8c-7a907fd6c235", - "Service_Plan_Name": "BI_AZURE_P0", - "Service_Plan_Id": "2049e525-b859-401b-b2a0-e0a31c4b1fe4", - "Service_Plans_Included_Friendly_Names": "Power BI (free)" - }, - { - "Product_Display_Name": "Microsoft Fabric (Free) for faculty", - "String_Id": "POWER_BI_STANDARD_FACULTY", - "GUID": "ade29b5f-397e-4eb9-a287-0344bd46c68d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_FOUNDATION" - }, - { - "Product_Display_Name": "Microsoft Fabric (Free) for faculty", - "String_Id": "POWER_BI_STANDARD_FACULTY", - "GUID": "ade29b5f-397e-4eb9-a287-0344bd46c68d", - "Service_Plan_Name": "BI_AZURE_P0", - "Service_Plan_Id": "2049e525-b859-401b-b2a0-e0a31c4b1fe4", - "Service_Plans_Included_Friendly_Names": "BI_AZURE_P0" - }, - { - "Product_Display_Name": "Microsoft Fabric (Free) for student", - "String_Id": "POWER_BI_STANDARD_STUDENT", - "GUID": "bdcaf6aa-04c1-4b8f-b64e-6e3bd505ac64", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_FOUNDATION" - }, - { - "Product_Display_Name": "Microsoft Fabric (Free) for student", - "String_Id": "POWER_BI_STANDARD_STUDENT", - "GUID": "bdcaf6aa-04c1-4b8f-b64e-6e3bd505ac64", - "Service_Plan_Name": "BI_AZURE_P0", - "Service_Plan_Id": "2049e525-b859-401b-b2a0-e0a31c4b1fe4", - "Service_Plans_Included_Friendly_Names": "BI_AZURE_P0" - }, - { - "Product_Display_Name": "Microsoft Imagine Academy", - "String_Id": "IT_ACADEMY_AD", - "GUID": "ba9a34de-4489-469d-879c-0f0f145321cd", - "Service_Plan_Name": "IT_ACADEMY_AD", - "Service_Plan_Id": "d736def0-1fde-43f0-a5be-e3f8b2de6e41", - "Service_Plans_Included_Friendly_Names": "MS IMAGINE ACADEMY" - }, - { - "Product_Display_Name": "Microsoft Intune Device", - "String_Id": "INTUNE_A_D", - "GUID": "2b317a4a-77a6-4188-9437-b68a77b4e2c6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Intune Device", - "String_Id": "INTUNE_A_D", - "GUID": "2b317a4a-77a6-4188-9437-b68a77b4e2c6", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft Intune Device for Government", - "String_Id": "INTUNE_A_D_GOV", - "GUID": "2c21e77a-e0d6-4570-b38a-7ff2dc17d2ca", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Microsoft Intune Device for Government", - "String_Id": "INTUNE_A_D_GOV", - "GUID": "2c21e77a-e0d6-4570-b38a-7ff2dc17d2ca", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft Intune Government", - "String_Id": "INTUNE_A_GOV", - "GUID": "2b26f637-35a0-4dbc-b69e-ff674782be9d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Microsoft Intune Government", - "String_Id": "INTUNE_A_GOV", - "GUID": "2b26f637-35a0-4dbc-b69e-ff674782be9d", - "Service_Plan_Name": "INTUNE_A_GOV", - "Service_Plan_Id": "d216f254-796f-4dab-bbfa-710686e646b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune G" - }, - { - "Product_Display_Name": "Microsoft Intune Plan 1 A VL_USGOV_GCCHIGH", - "String_Id": "INTUNE_A_VL_USGOV_GCCHIGH", - "GUID": "b4288abe-01be-47d9-ad20-311d6e83fc24", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Intune Plan 1 A VL_USGOV_GCCHIGH", - "String_Id": "INTUNE_A_VL_USGOV_GCCHIGH", - "GUID": "b4288abe-01be-47d9-ad20-311d6e83fc24", - "Service_Plan_Name": "INTUNE_A_VL", - "Service_Plan_Id": "3e170737-c728-4eae-bbb9-3f3360f7184c", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft Power Apps for Developer", - "String_Id": "POWERAPPS_DEV", - "GUID": "5b631642-bd26-49fe-bd20-1daaa972ef80", - "Service_Plan_Name": "DYN365_CDS_DEV_VIRAL", - "Service_Plan_Id": "d8c638e2-9508-40e3-9877-feb87603837b", - "Service_Plans_Included_Friendly_Names": "Common Data Service - DEV VIRAL" - }, - { - "Product_Display_Name": "Microsoft Power Apps for Developer", - "String_Id": "POWERAPPS_DEV", - "GUID": "5b631642-bd26-49fe-bd20-1daaa972ef80", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Power Apps for Developer", - "String_Id": "POWERAPPS_DEV", - "GUID": "5b631642-bd26-49fe-bd20-1daaa972ef80", - "Service_Plan_Name": "FLOW_DEV_VIRAL", - "Service_Plan_Id": "c7ce3f26-564d-4d3a-878d-d8ab868c85fe", - "Service_Plans_Included_Friendly_Names": "Flow for Developer" - }, - { - "Product_Display_Name": "Microsoft Power Apps for Developer", - "String_Id": "POWERAPPS_DEV", - "GUID": "5b631642-bd26-49fe-bd20-1daaa972ef80", - "Service_Plan_Name": "POWERAPPS_DEV_VIRAL", - "Service_Plan_Id": "a2729df7-25f8-4e63-984b-8a8484121554", - "Service_Plans_Included_Friendly_Names": "PowerApps for Developer" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", - "String_Id": "POWERAPPS_VIRAL", - "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", - "Service_Plan_Name": "DYN365_CDS_VIRAL", - "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0", - "Service_Plans_Included_Friendly_Names": "Common Data Service - VIRAL" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", - "String_Id": "POWERAPPS_VIRAL", - "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", - "String_Id": "POWERAPPS_VIRAL", - "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", - "Service_Plan_Name": "FLOW_P2_VIRAL", - "Service_Plan_Id": "50e68c76-46c6-4674-81f9-75456511b170", - "Service_Plans_Included_Friendly_Names": "Flow Free" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", - "String_Id": "POWERAPPS_VIRAL", - "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", - "Service_Plan_Name": "FLOW_P2_VIRAL_REAL", - "Service_Plan_Id": "d20bfa21-e9ae-43fc-93c2-20783f0840c3", - "Service_Plans_Included_Friendly_Names": "Flow P2 Viral" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", - "String_Id": "POWERAPPS_VIRAL", - "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", - "Service_Plan_Name": "POWERAPPS_P2_VIRAL", - "Service_Plan_Id": "d5368ca3-357e-4acb-9c21-8495fb025d1f", - "Service_Plans_Included_Friendly_Names": "PowerApps Trial" - }, - { - "Product_Display_Name": "Microsoft Power Automate Free", - "String_Id": "FLOW_FREE", - "GUID": "f30db892-07e9-47e9-837c-80727f46fd3d", - "Service_Plan_Name": "DYN365_CDS_VIRAL", - "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE" - }, - { - "Product_Display_Name": "Microsoft Power Automate Free", - "String_Id": "FLOW_FREE", - "GUID": "f30db892-07e9-47e9-837c-80727f46fd3d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Microsoft Power Automate Free", - "String_Id": "FLOW_FREE", - "GUID": "f30db892-07e9-47e9-837c-80727f46fd3d", - "Service_Plan_Name": "FLOW_P2_VIRAL", - "Service_Plan_Id": "50e68c76-46c6-4674-81f9-75456511b170", - "Service_Plans_Included_Friendly_Names": "FLOW FREE" - }, - { - "Product_Display_Name": "Microsoft Power Automate Plan 2", - "String_Id": "FLOW_P2", - "GUID": "4755df59-3f73-41ab-a249-596ad72b5504", - "Service_Plan_Name": "DYN365_CDS_P2", - "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", - "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" - }, - { - "Product_Display_Name": "Microsoft Power Automate Plan 2", - "String_Id": "FLOW_P2", - "GUID": "4755df59-3f73-41ab-a249-596ad72b5504", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Power Automate Plan 2", - "String_Id": "FLOW_P2", - "GUID": "4755df59-3f73-41ab-a249-596ad72b5504", - "Service_Plan_Name": "FLOW_P2", - "Service_Plan_Id": "56be9436-e4b2-446c-bb7f-cc15d16cca4d", - "Service_Plans_Included_Friendly_Names": "Power Automate (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Intune SMB", - "String_Id": "INTUNE_SMB", - "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958", - "Service_Plan_Name": "AAD_SMB", - "Service_Plan_Id": "de377cbc-0019-4ec2-b77c-3f223947e102", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID" - }, - { - "Product_Display_Name": "Microsoft Intune SMB", - "String_Id": "INTUNE_SMB", - "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Microsoft Intune SMB", - "String_Id": "INTUNE_SMB", - "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958", - "Service_Plan_Name": "INTUNE_SMBIZ", - "Service_Plan_Id": "8e9ff0ff-aa7a-4b20-83c1-2f636b600ac2", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "Microsoft Intune SMB", - "String_Id": "INTUNE_SMB", - "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "Microsoft Intune Suite", - "String_Id": "Microsoft_Intune_Suite", - "GUID": "a929cd4d-8672-47c9-8664-159c1f322ba8", - "Service_Plan_Name": "Intune_AdvancedEA", - "Service_Plan_Id": "2a4baa0e-5e99-4c38-b1f2-6864960f1bd1", - "Service_Plans_Included_Friendly_Names": "Intune Advanced endpoint analytics" - }, - { - "Product_Display_Name": "Microsoft Intune Suite", - "String_Id": "Microsoft_Intune_Suite", - "GUID": "a929cd4d-8672-47c9-8664-159c1f322ba8", - "Service_Plan_Name": "Intune-EPM", - "Service_Plan_Id": "bb73f429-78ef-4ff2-83c8-722b04c3e7d1", - "Service_Plans_Included_Friendly_Names": "Intune Endpoint Privilege Management" - }, - { - "Product_Display_Name": "Microsoft Intune Suite", - "String_Id": "Microsoft_Intune_Suite", - "GUID": "a929cd4d-8672-47c9-8664-159c1f322ba8", - "Service_Plan_Name": "INTUNE_P2", - "Service_Plan_Id": "d9923fe3-a2de-4d29-a5be-e3e83bb786be", - "Service_Plans_Included_Friendly_Names": "Intune Plan 2" - }, - { - "Product_Display_Name": "Microsoft Intune Suite", - "String_Id": "Microsoft_Intune_Suite", - "GUID": "a929cd4d-8672-47c9-8664-159c1f322ba8", - "Service_Plan_Name": "Intune-MAMTunnel", - "Service_Plan_Id": "a6e407da-7411-4397-8a2e-d9b52780849e", - "Service_Plans_Included_Friendly_Names": "Microsoft Tunnel for Mobile Application Management" - }, - { - "Product_Display_Name": "Microsoft Intune Suite", - "String_Id": "Microsoft_Intune_Suite", - "GUID": "a929cd4d-8672-47c9-8664-159c1f322ba8", - "Service_Plan_Name": "REMOTE_HELP", - "Service_Plan_Id": "a4c6cf29-1168-4076-ba5c-e8fe0e62b17e", - "Service_Plans_Included_Friendly_Names": "Remote help" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)", - "String_Id": "POWERFLOW_P2", - "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b", - "Service_Plan_Name": "DYN365_CDS_P2", - "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", - "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)", - "String_Id": "POWERFLOW_P2", - "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)", - "String_Id": "POWERFLOW_P2", - "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b", - "Service_Plan_Name": "POWERAPPS_P2", - "Service_Plan_Id": "00527d7f-d5bc-4c2a-8d1e-6c0de2410c81", - "Service_Plans_Included_Friendly_Names": "Power Apps (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)", - "String_Id": "POWERFLOW_P2", - "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b", - "Service_Plan_Name": "FLOW_P2", - "Service_Plan_Id": "56be9436-e4b2-446c-bb7f-cc15d16cca4d", - "Service_Plans_Included_Friendly_Names": "Power Automate (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Relationship Sales solution", - "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", - "Service_Plan_Name": "Forms_Pro_Relationship_Sales", - "Service_Plan_Id": "507172c0-6001-4f4f-80e7-f350507af3e5", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Relationship Sales" - }, - { - "Product_Display_Name": "Microsoft Relationship Sales solution", - "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", - "Service_Plan_Name": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "Service_Plan_Id": "56e3d4ca-2e31-4c3f-8d57-89c1d363503b", - "Service_Plans_Included_Friendly_Names": "Microsoft Relationship Sales solution" - }, - { - "Product_Display_Name": "Microsoft Relationship Sales solution", - "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", - "Service_Plan_Name": "NBENTERPRISE", - "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", - "Service_Plans_Included_Friendly_Names": "Retired - Microsoft Social Engagement" - }, - { - "Product_Display_Name": "Microsoft Relationship Sales solution", - "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Relationship Sales solution", - "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", - "Service_Plan_Name": "Microsoft_Viva_Sales_PremiumTrial", - "Service_Plan_Id": "8ba1ff15-7bf6-4620-b65c-ecedb6942766", - "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium \u0026 Trial" - }, - { - "Product_Display_Name": "Microsoft Relationship Sales solution", - "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", - "Service_Plan_Name": "Microsoft_Viva_Sales_PowerAutomate", - "Service_Plan_Id": "a933a62f-c3fb-48e5-a0b7-ac92b94b4420", - "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium with Power Automate" - }, - { - "Product_Display_Name": "Microsoft Relationship Sales solution", - "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft Relationship Sales solution", - "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Microsoft Relationship Sales solution", - "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Relationship Sales solution", - "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Microsoft Relationship Sales solution", - "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Microsoft Stream", - "String_Id": "STREAM", - "GUID": "1f2f344a-700d-42c9-9427-5cea1d5d7ba6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Microsoft Stream", - "String_Id": "STREAM", - "GUID": "1f2f344a-700d-42c9-9427-5cea1d5d7ba6", - "Service_Plan_Name": "MICROSOFTSTREAM", - "Service_Plan_Id": "acffdce6-c30f-4dc2-81c0-372e33c515ec", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM" - }, - { - "Product_Display_Name": "Microsoft Stream Plan 2", - "String_Id": "STREAM_P2", - "GUID": "ec156933-b85b-4c50-84ec-c9e5603709ef", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Stream Plan 2", - "String_Id": "STREAM_P2", - "GUID": "ec156933-b85b-4c50-84ec-c9e5603709ef", - "Service_Plan_Name": "STREAM_P2", - "Service_Plan_Id": "d3a458d0-f10d-48c2-9e44-86f3f684029e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream Plan 2" - }, - { - "Product_Display_Name": "Microsoft Stream Storage Add-On (500 GB)", - "String_Id": "STREAM_STORAGE", - "GUID": "9bd7c846-9556-4453-a542-191d527209e8", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Stream Storage Add-On (500 GB)", - "String_Id": "STREAM_STORAGE", - "GUID": "9bd7c846-9556-4453-a542-191d527209e8", - "Service_Plan_Name": "STREAM_STORAGE", - "Service_Plan_Id": "83bced11-77ce-4071-95bd-240133796768", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream Storage Add-On" - }, - { - "Product_Display_Name": "Microsoft Sustainability Manager USL Essentials", - "String_Id": "Microsoft_Cloud_for_Sustainability_USL", - "GUID": "ece037b4-a52b-4cf8-93ea-649e5d83767a", - "Service_Plan_Name": "MCS_BizApps_Cloud_for_Sustainability_USL", - "Service_Plan_Id": "c46c42af-d654-4385-8c85-29a84f3dfb22", - "Service_Plans_Included_Friendly_Names": "MCS - BizApps - Cloud for Sustainability USL" - }, - { - "Product_Display_Name": "Microsoft Sustainability Manager USL Essentials", - "String_Id": "Microsoft_Cloud_for_Sustainability_USL", - "GUID": "ece037b4-a52b-4cf8-93ea-649e5d83767a", - "Service_Plan_Name": "POWER_APPS_FOR_MCS_USL", - "Service_Plan_Id": "5ffd371c-037a-41a2-98a3-6452f8c5de17", - "Service_Plans_Included_Friendly_Names": "Power Apps for Cloud for Sustainability USL" - }, - { - "Product_Display_Name": "Microsoft Sustainability Manager USL Essentials", - "String_Id": "Microsoft_Cloud_for_Sustainability_USL", - "GUID": "ece037b4-a52b-4cf8-93ea-649e5d83767a", - "Service_Plan_Name": "POWER_AUTOMATE_FOR_MCS_USL", - "Service_Plan_Id": "ccbe468e-7973-442c-8ec4-5fbe16438711", - "Service_Plans_Included_Friendly_Names": "Power Automate for Cloud for Sustainability USL" - }, - { - "Product_Display_Name": "Microsoft Sustainability Manager USL Essentials", - "String_Id": "Microsoft_Cloud_for_Sustainability_USL", - "GUID": "ece037b4-a52b-4cf8-93ea-649e5d83767a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Teams Audio Conferencing with dial-out to USA/CAN", - "String_Id": "Microsoft_Teams_Audio_Conferencing_select_dial_out", - "GUID": "1c27243e-fb4d-42b1-ae8c-fe25c9616588", - "Service_Plan_Name": "MCOMEETBASIC", - "Service_Plan_Id": "9974d6cf-cd24-4ba2-921c-e2aa687da846", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Audio Conferencing with dial-out to select geographies" - }, - { - "Product_Display_Name": "Microsoft Teams (Free)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Microsoft Teams (Free)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "MCOFREE", - "Service_Plan_Id": "617d9209-3b90-4879-96e6-838c42b2701d", - "Service_Plans_Included_Friendly_Names": "MCO FREE FOR MICROSOFT TEAMS (FREE)" - }, - { - "Product_Display_Name": "Microsoft Teams (Free)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "TEAMS_FREE", - "Service_Plan_Id": "4fa4026d-ce74-4962-a151-8e96d57ea8e4", - "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS (FREE)" - }, - { - "Product_Display_Name": "Microsoft Teams (Free)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT KIOSK" - }, - { - "Product_Display_Name": "Microsoft Teams (Free)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "TEAMS_FREE_SERVICE", - "Service_Plan_Id": "bd6f2ac2-991a-49f9-b23c-18c96a02c228", - "Service_Plans_Included_Friendly_Names": "TEAMS FREE SERVICE" - }, - { - "Product_Display_Name": "Microsoft Teams (Free)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1", - "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3", - "Service_Plans_Included_Friendly_Names": "WHITEBOARD (FIRSTLINE)" - }, - { - "Product_Display_Name": "Microsoft Teams Calling Plan pay-as-you-go (country zone 1 - US)", - "String_Id": "Microsoft_Teams_Calling_Plan_pay_as_you_go_(country_zone_1_US)", - "GUID": "9b196e97-5830-4c2e-adc2-1e10ebf5dee5", - "Service_Plan_Name": "MCOPSTN_PAYG_1", - "Service_Plan_Id": "156a1efe-17cd-4b03-9f17-2eb512298fb3", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Calling Plan pay-as-you-go - country zone 1" - }, - { - "Product_Display_Name": "Microsoft Teams Domestic Calling Plan (240 min)", - "String_Id": "MCOPSTN_6", - "GUID": "729dbb8f-8d56-4994-8e33-2f218f549544", - "Service_Plan_Name": "MCOPSTN6", - "Service_Plan_Id": "346d83bf-6fe6-42ca-b424-b9300d2e21bf", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan (240 min)" - }, - { - "Product_Display_Name": "Microsoft Teams Essentials", - "String_Id": "Teams_Ess", - "GUID": "fde42873-30b6-436b-b361-21af5a6b84ae", - "Service_Plan_Name": "TeamsEss", - "Service_Plan_Id": "f4f2f6de-6830-442b-a433-e92249faebe2", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Essentials" - }, - { - "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", - "String_Id": "TEAMS_ESSENTIALS_AAD", - "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS", - "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", - "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk" - }, - { - "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", - "String_Id": "TEAMS_ESSENTIALS_AAD", - "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", - "String_Id": "TEAMS_ESSENTIALS_AAD", - "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", - "String_Id": "TEAMS_ESSENTIALS_AAD", - "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", - "String_Id": "TEAMS_ESSENTIALS_AAD", - "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", - "String_Id": "TEAMS_ESSENTIALS_AAD", - "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", - "String_Id": "TEAMS_ESSENTIALS_AAD", - "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", - "Service_Plan_Name": "ONEDRIVE_BASIC_P2", - "Service_Plan_Id": "4495894f-534f-41ca-9d3b-0ebf1220a423", - "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Basic 2)" - }, - { - "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", - "String_Id": "TEAMS_ESSENTIALS_AAD", - "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "CDS_O365_P1", - "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR TEAMS_P1" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "INSIGHTS BY MYANALYTICS" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNER" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "MICROSOFT SEARCH" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "DESKLESS", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "STREAM_O365_E1", - "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E1 SKU" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "MCO_TEAMS_IW", - "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b", - "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "MOBILE DEVICE MANAGEMENT FOR OFFICE 365" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE FOR THE WEB" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "OFFICE MOBILE APPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWER APPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "POWER AUTOMATE FOR OFFICE 365" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1", - "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813", - "Service_Plans_Included_Friendly_Names": "POWER VIRTUAL AGENTS FOR OFFICE 365 P1" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT STANDARD" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "WHITEBOARD (PLAN 1)" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER ENTERPRIS" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", - "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", - "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "CDS_O365_P1", - "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS", - "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28", - "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "MCO_TEAMS_IW", - "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "STREAM_O365_E1", - "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E1" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory Dept", - "String_Id": "Microsoft_Teams_Exploratory_Dept", - "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1", - "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Standard", - "String_Id": "MCOEV", - "GUID": "e43b5b99-8dfb-405f-9987-dc307f34bcbd", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Standard for DOD", - "String_Id": "MCOEV_DOD", - "GUID": "d01d9287-694b-44f3-bcc5-ada78c8d953e", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Standard for Faculty", - "String_Id": "MCOEV_FACULTY", - "GUID": "d979703c-028d-4de5-acbf-7955566b69b9", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTE" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Standard for GCC", - "String_Id": "MCOEV_GOV", - "GUID": "a460366a-ade7-4791-b581-9fbff1bdaa85", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Standard for GCC", - "String_Id": "MCOEV_GOV", - "GUID": "a460366a-ade7-4791-b581-9fbff1bdaa85", - "Service_Plan_Name": "MCOEV_GOV", - "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM FOR GOVERNMENT" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Standard for GCCHIGH", - "String_Id": "MCOEV_GCCHIGH", - "GUID": "7035277a-5e49-4abc-a24f-0ec49c501bb5", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Standard for Small and Medium Business", - "String_Id": "MCOEVSMB_1", - "GUID": "aa6791d3-bb09-4bc2-afed-c30c3fe26032", - "Service_Plan_Name": "MCOEVSMB", - "Service_Plan_Id": "ed777b71-af04-42ca-9798-84344c66f7c6", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS CLOUD PBX FOR SMALL AND MEDIUM BUSINESS" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Standard for Students", - "String_Id": "MCOEV_STUDENT", - "GUID": "1f338bbc-767e-4a1e-a2d4-b73207cc5b93", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Standard for TELSTRA", - "String_Id": "MCOEV_TELSTRA", - "GUID": "ffaf2d68-1c95-4eb3-9ddd-59b81fba0f61", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Standard_USGOV_DOD", - "String_Id": "MCOEV_USGOV_DOD", - "GUID": "b0e7de67-e503-4934-b729-53d595ba5cd1", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Standard_USGOV_GCCHIGH", - "String_Id": "MCOEV_USGOV_GCCHIGH", - "GUID": "985fcb26-7b94-475b-b512-89356697be71", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Resource Account", - "String_Id": "PHONESYSTEM_VIRTUALUSER", - "GUID": "440eaaa8-b3e0-484b-a8be-62870b9ba70a", - "Service_Plan_Name": "MCOEV_VIRTUALUSER", - "Service_Plan_Id": "f47330e9-c134-43b3-9993-e7f004506889", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone Standard Resource Account" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Resource Account for GCC", - "String_Id": "PHONESYSTEM_VIRTUALUSER_GOV", - "GUID": "2cf22bcb-0c9e-4bc6-8daf-7e7654c0f285", - "Service_Plan_Name": "MCOEV_VIRTUALUSER_GOV", - "Service_Plan_Id": "0628a73f-3b4a-4989-bd7b-0f8823144313", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone Standard Resource Account for Government" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Resource Account_USGOV_GCCHIGH", - "String_Id": "PHONESYSTEM_VIRTUALUSER_USGOV_GCCHIGH ", - "GUID": "e3f0522e-ebb7-4561-9f90-b44516d65b77", - "Service_Plan_Name": "MCOEV_VIRTUALUSER", - "Service_Plan_Id": "f47330e9-c134-43b3-9993-e7f004506889", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone Standard Resource Account" - }, - { - "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing", - "String_Id": "Microsoft_Teams_Premium", - "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a", - "Service_Plan_Name": "MICROSOFT_ECDN", - "Service_Plan_Id": "85704d55-2e73-47ee-93b4-4b8ea14db92b", - "Service_Plans_Included_Friendly_Names": "Microsoft eCDN" - }, - { - "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing", - "String_Id": "Microsoft_Teams_Premium", - "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a", - "Service_Plan_Name": "TEAMSPRO_MGMT", - "Service_Plan_Id": "0504111f-feb8-4a3c-992a-70280f9a2869", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Intelligent" - }, - { - "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing", - "String_Id": "Microsoft_Teams_Premium", - "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a", - "Service_Plan_Name": "TEAMSPRO_CUST", - "Service_Plan_Id": "cc8c0802-a325-43df-8cba-995d0c6cb373", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Personalized" - }, - { - "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing", - "String_Id": "Microsoft_Teams_Premium", - "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a", - "Service_Plan_Name": "TEAMSPRO_PROTECTION", - "Service_Plan_Id": "f8b44f54-18bb-46a3-9658-44ab58712968", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Secure" - }, - { - "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing", - "String_Id": "Microsoft_Teams_Premium", - "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a", - "Service_Plan_Name": "TEAMSPRO_VIRTUALAPPT", - "Service_Plan_Id": "9104f592-f2a7-4f77-904c-ca5a5715883f", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Virtual Appointment" - }, - { - "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing", - "String_Id": "Microsoft_Teams_Premium", - "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a", - "Service_Plan_Name": "MCO_VIRTUAL_APPT", - "Service_Plan_Id": "711413d0-b36e-4cd4-93db-0a50a4ab7ea3", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Virtual Appointments" - }, - { - "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing", - "String_Id": "Microsoft_Teams_Premium", - "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a", - "Service_Plan_Name": "TEAMSPRO_WEBINAR", - "Service_Plan_Id": "78b58230-ec7e-4309-913c-93a45cc4735b", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Webinar" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic", - "String_Id": "Microsoft_Teams_Rooms_Basic", - "GUID": "6af4b3d6-14bb-4a2a-960c-6c902aad34f3", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic", - "String_Id": "Microsoft_Teams_Rooms_Basic", - "GUID": "6af4b3d6-14bb-4a2a-960c-6c902aad34f3", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic", - "String_Id": "Microsoft_Teams_Rooms_Basic", - "GUID": "6af4b3d6-14bb-4a2a-960c-6c902aad34f3", - "Service_Plan_Name": "Teams_Rooms_Basic", - "Service_Plan_Id": "c8529366-cffd-4415-ab8f-be0144a33ab1", - "Service_Plans_Included_Friendly_Names": "Teams Rooms Basic" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic", - "String_Id": "Microsoft_Teams_Rooms_Basic", - "GUID": "6af4b3d6-14bb-4a2a-960c-6c902aad34f3", - "Service_Plan_Name": "Teams_Room_Basic", - "Service_Plan_Id": "8081ca9c-188c-4b49-a8e5-c23b5e9463a8", - "Service_Plans_Included_Friendly_Names": "Teams Rooms Test 1" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic", - "String_Id": "Microsoft_Teams_Rooms_Basic", - "GUID": "6af4b3d6-14bb-4a2a-960c-6c902aad34f3", - "Service_Plan_Name": "Teams_Room_Pro", - "Service_Plan_Id": "ec17f317-f4bc-451e-b2da-0167e5c260f9", - "Service_Plans_Included_Friendly_Names": "Teams Rooms Test 2" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic", - "String_Id": "Microsoft_Teams_Rooms_Basic", - "GUID": "6af4b3d6-14bb-4a2a-960c-6c902aad34f3", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic for EDU", - "String_Id": "Microsoft_Teams_Rooms_Basic_FAC", - "GUID": "a4e376bd-c61e-4618-9901-3fc0cb1b88bb", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic for EDU", - "String_Id": "Microsoft_Teams_Rooms_Basic_FAC", - "GUID": "a4e376bd-c61e-4618-9901-3fc0cb1b88bb", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic for EDU", - "String_Id": "Microsoft_Teams_Rooms_Basic_FAC", - "GUID": "a4e376bd-c61e-4618-9901-3fc0cb1b88bb", - "Service_Plan_Name": "Teams_Rooms_Basic", - "Service_Plan_Id": "c8529366-cffd-4415-ab8f-be0144a33ab1", - "Service_Plans_Included_Friendly_Names": "Teams Rooms Basic" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic for EDU", - "String_Id": "Microsoft_Teams_Rooms_Basic_FAC", - "GUID": "a4e376bd-c61e-4618-9901-3fc0cb1b88bb", - "Service_Plan_Name": "Teams_Room_Basic", - "Service_Plan_Id": "8081ca9c-188c-4b49-a8e5-c23b5e9463a8", - "Service_Plans_Included_Friendly_Names": "Teams Rooms Test 1" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic for EDU", - "String_Id": "Microsoft_Teams_Rooms_Basic_FAC", - "GUID": "a4e376bd-c61e-4618-9901-3fc0cb1b88bb", - "Service_Plan_Name": "Teams_Room_Pro", - "Service_Plan_Id": "ec17f317-f4bc-451e-b2da-0167e5c260f9", - "Service_Plans_Included_Friendly_Names": "Teams Rooms Test 2" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic for EDU", - "String_Id": "Microsoft_Teams_Rooms_Basic_FAC", - "GUID": "a4e376bd-c61e-4618-9901-3fc0cb1b88bb", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic without Audio Conferencing", - "String_Id": "Microsoft_Teams_Rooms_Basic_without_Audio_Conferencing", - "GUID": "50509a35-f0bd-4c5e-89ac-22f0e16a00f8", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic without Audio Conferencing", - "String_Id": "Microsoft_Teams_Rooms_Basic_without_Audio_Conferencing", - "GUID": "50509a35-f0bd-4c5e-89ac-22f0e16a00f8", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro", - "String_Id": "Microsoft_Teams_Rooms_Pro", - "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro", - "String_Id": "Microsoft_Teams_Rooms_Pro", - "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro", - "String_Id": "Microsoft_Teams_Rooms_Pro", - "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro", - "String_Id": "Microsoft_Teams_Rooms_Pro", - "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro", - "String_Id": "Microsoft_Teams_Rooms_Pro", - "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro", - "String_Id": "Microsoft_Teams_Rooms_Pro", - "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro", - "String_Id": "Microsoft_Teams_Rooms_Pro", - "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", - "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", - "GUID": "c25e2b36-e161-4946-bef2-69239729f690", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", - "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", - "GUID": "c25e2b36-e161-4946-bef2-69239729f690", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", - "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", - "GUID": "c25e2b36-e161-4946-bef2-69239729f690", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", - "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", - "GUID": "c25e2b36-e161-4946-bef2-69239729f690", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", - "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", - "GUID": "c25e2b36-e161-4946-bef2-69239729f690", - "Service_Plan_Name": "MTRProManagement", - "Service_Plan_Id": "ecc74eae-eeb7-4ad5-9c88-e8b2bfca75b8", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Rooms Pro Management" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", - "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", - "GUID": "c25e2b36-e161-4946-bef2-69239729f690", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", - "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", - "GUID": "c25e2b36-e161-4946-bef2-69239729f690", - "Service_Plan_Name": "Teams_Room_Basic", - "Service_Plan_Id": "8081ca9c-188c-4b49-a8e5-c23b5e9463a8", - "Service_Plans_Included_Friendly_Names": "Teams Rooms Test 1" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", - "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", - "GUID": "c25e2b36-e161-4946-bef2-69239729f690", - "Service_Plan_Name": "Teams_Room_Pro", - "Service_Plan_Id": "ec17f317-f4bc-451e-b2da-0167e5c260f9", - "Service_Plans_Included_Friendly_Names": "Teams Rooms Test 2" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", - "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", - "GUID": "c25e2b36-e161-4946-bef2-69239729f690", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", - "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", - "GUID": "c25e2b36-e161-4946-bef2-69239729f690", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", - "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", - "GUID": "c25e2b36-e161-4946-bef2-69239729f690", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", - "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", - "GUID": "c25e2b36-e161-4946-bef2-69239729f690", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro for GCC", - "String_Id": "Microsoft_Teams_Rooms_Pro_GCC", - "GUID": "31ecb341-2a17-483e-9140-c473006d1e1a", - "Service_Plan_Name": "MCOMEETADV_GOV", - "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing for Government" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro for GCC", - "String_Id": "Microsoft_Teams_Rooms_Pro_GCC", - "GUID": "31ecb341-2a17-483e-9140-c473006d1e1a", - "Service_Plan_Name": "MCOEV_GOV", - "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro for GCC", - "String_Id": "Microsoft_Teams_Rooms_Pro_GCC", - "GUID": "31ecb341-2a17-483e-9140-c473006d1e1a", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro for GCC", - "String_Id": "Microsoft_Teams_Rooms_Pro_GCC", - "GUID": "31ecb341-2a17-483e-9140-c473006d1e1a", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro for GCC", - "String_Id": "Microsoft_Teams_Rooms_Pro_GCC", - "GUID": "31ecb341-2a17-483e-9140-c473006d1e1a", - "Service_Plan_Name": "Teams_Room_Basic", - "Service_Plan_Id": "8081ca9c-188c-4b49-a8e5-c23b5e9463a8", - "Service_Plans_Included_Friendly_Names": "Teams Rooms Test 1" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro for GCC", - "String_Id": "Microsoft_Teams_Rooms_Pro_GCC", - "GUID": "31ecb341-2a17-483e-9140-c473006d1e1a", - "Service_Plan_Name": "Teams_Room_Pro", - "Service_Plan_Id": "ec17f317-f4bc-451e-b2da-0167e5c260f9", - "Service_Plans_Included_Friendly_Names": "Teams Rooms Test 2" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro for GCC", - "String_Id": "Microsoft_Teams_Rooms_Pro_GCC", - "GUID": "31ecb341-2a17-483e-9140-c473006d1e1a", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro for GCC", - "String_Id": "Microsoft_Teams_Rooms_Pro_GCC", - "GUID": "31ecb341-2a17-483e-9140-c473006d1e1a", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro for GCC", - "String_Id": "Microsoft_Teams_Rooms_Pro_GCC", - "GUID": "31ecb341-2a17-483e-9140-c473006d1e1a", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro for GCC", - "String_Id": "Microsoft_Teams_Rooms_Pro_GCC", - "GUID": "31ecb341-2a17-483e-9140-c473006d1e1a", - "Service_Plan_Name": "INTUNE_A_GOV", - "Service_Plan_Id": "d216f254-796f-4dab-bbfa-710686e646b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune G" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing", - "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing", - "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing", - "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing", - "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing", - "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing", - "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing", - "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing", - "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing", - "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing", - "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing", - "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing", - "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices", - "String_Id": "MCOCAP", - "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices", - "String_Id": "MCOCAP", - "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices", - "String_Id": "MCOCAP", - "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices", - "String_Id": "MCOCAP", - "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices", - "String_Id": "MCOCAP", - "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices", - "String_Id": "MCOCAP", - "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices for GCC", - "String_Id": "MCOCAP_GOV", - "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", - "Service_Plan_Name": "MCOEV_GOV", - "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices for GCC", - "String_Id": "MCOCAP_GOV", - "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices for GCC", - "String_Id": "MCOCAP_GOV", - "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices for GCC", - "String_Id": "MCOCAP_GOV", - "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices for GCC", - "String_Id": "MCOCAP_GOV", - "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices for GCC", - "String_Id": "MCOCAP_GOV", - "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", - "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Plan 1" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "Teams_Room_Standard", - "Service_Plan_Id": "92c6b761-01de-457a-9dd9-793a975238f7", - "Service_Plans_Included_Friendly_Names": "Teams Room Standard" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard without Audio Conferencing", - "String_Id": "MEETING_ROOM_NOAUDIOCONF", - "GUID": "61bec411-e46a-4dab-8f46-8b58ec845ffe", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard without Audio Conferencing", - "String_Id": "MEETING_ROOM_NOAUDIOCONF", - "GUID": "61bec411-e46a-4dab-8f46-8b58ec845ffe", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard without Audio Conferencing", - "String_Id": "MEETING_ROOM_NOAUDIOCONF", - "GUID": "61bec411-e46a-4dab-8f46-8b58ec845ffe", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard without Audio Conferencing", - "String_Id": "MEETING_ROOM_NOAUDIOCONF", - "GUID": "61bec411-e46a-4dab-8f46-8b58ec845ffe", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard without Audio Conferencing", - "String_Id": "MEETING_ROOM_NOAUDIOCONF", - "GUID": "61bec411-e46a-4dab-8f46-8b58ec845ffe", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC", - "String_Id": "MEETING_ROOM_GOV", - "GUID": "9571e9ac-2741-4b63-95fd-a79696f0d0ac", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium Plan 1" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC", - "String_Id": "MEETING_ROOM_GOV", - "GUID": "9571e9ac-2741-4b63-95fd-a79696f0d0ac", - "Service_Plan_Name": "MCOMEETADV_GOV", - "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing for Government" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC", - "String_Id": "MEETING_ROOM_GOV", - "GUID": "9571e9ac-2741-4b63-95fd-a79696f0d0ac", - "Service_Plan_Name": "MCOEV_GOV", - "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC", - "String_Id": "MEETING_ROOM_GOV", - "GUID": "9571e9ac-2741-4b63-95fd-a79696f0d0ac", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC", - "String_Id": "MEETING_ROOM_GOV", - "GUID": "9571e9ac-2741-4b63-95fd-a79696f0d0ac", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC", - "String_Id": "MEETING_ROOM_GOV", - "GUID": "9571e9ac-2741-4b63-95fd-a79696f0d0ac", - "Service_Plan_Name": "Teams_Room_Standard", - "Service_Plan_Id": "92c6b761-01de-457a-9dd9-793a975238f7", - "Service_Plans_Included_Friendly_Names": "Teams Room Standard" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC", - "String_Id": "MEETING_ROOM_GOV", - "GUID": "9571e9ac-2741-4b63-95fd-a79696f0d0ac", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC", - "String_Id": "MEETING_ROOM_GOV", - "GUID": "9571e9ac-2741-4b63-95fd-a79696f0d0ac", - "Service_Plan_Name": "INTUNE_A_GOV", - "Service_Plan_Id": "d216f254-796f-4dab-bbfa-710686e646b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune G" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC without Audio Conferencing", - "String_Id": "MEETING_ROOM_GOV_NOAUDIOCONF", - "GUID": "b4348f75-a776-4061-ac6c-36b9016b01d1", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium Plan 1" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC without Audio Conferencing", - "String_Id": "MEETING_ROOM_GOV_NOAUDIOCONF", - "GUID": "b4348f75-a776-4061-ac6c-36b9016b01d1", - "Service_Plan_Name": "MCOEV_GOV", - "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC without Audio Conferencing", - "String_Id": "MEETING_ROOM_GOV_NOAUDIOCONF", - "GUID": "b4348f75-a776-4061-ac6c-36b9016b01d1", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC without Audio Conferencing", - "String_Id": "MEETING_ROOM_GOV_NOAUDIOCONF", - "GUID": "b4348f75-a776-4061-ac6c-36b9016b01d1", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC without Audio Conferencing", - "String_Id": "MEETING_ROOM_GOV_NOAUDIOCONF", - "GUID": "b4348f75-a776-4061-ac6c-36b9016b01d1", - "Service_Plan_Name": "Teams_Room_Standard", - "Service_Plan_Id": "92c6b761-01de-457a-9dd9-793a975238f7", - "Service_Plans_Included_Friendly_Names": "Teams Room Standard" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC without Audio Conferencing", - "String_Id": "MEETING_ROOM_GOV_NOAUDIOCONF", - "GUID": "b4348f75-a776-4061-ac6c-36b9016b01d1", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC without Audio Conferencing", - "String_Id": "MEETING_ROOM_GOV_NOAUDIOCONF", - "GUID": "b4348f75-a776-4061-ac6c-36b9016b01d1", - "Service_Plan_Name": "INTUNE_A_GOV", - "Service_Plan_Id": "d216f254-796f-4dab-bbfa-710686e646b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune G" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "MCO_TEAMS_IW", - "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft Threat Experts - Experts on Demand", - "String_Id": "EXPERTS_ON_DEMAND", - "GUID": "9fa2f157-c8e4-4351-a3f2-ffa506da1406", - "Service_Plan_Name": "EXPERTS_ON_DEMAND", - "Service_Plan_Id": "b83a66d4-f05f-414d-ac0f-ea1c5239c42b", - "Service_Plans_Included_Friendly_Names": "Microsoft Threat Experts - Experts on Demand" - }, - { - "Product_Display_Name": "Microsoft Viva Goals", - "String_Id": "Microsoft_Viva_Goals", - "GUID": "ba929637-f158-4dee-927c-eb7cdefcd955", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Viva Goals", - "String_Id": "Microsoft_Viva_Goals", - "GUID": "ba929637-f158-4dee-927c-eb7cdefcd955", - "Service_Plan_Name": "Viva_Goals_Premium", - "Service_Plan_Id": "b44c6eaf-5c9f-478c-8f16-8cea26353bfb", - "Service_Plans_Included_Friendly_Names": "Viva Goals" - }, - { - "Product_Display_Name": "Microsoft Viva Glint", - "String_Id": "Viva_Glint_Standalone", - "GUID": "3dc7332d-f0fa-40a3-81d3-dd6b84469b78", - "Service_Plan_Name": "Viva_Glint", - "Service_Plan_Id": "6b270342-093e-4015-8c5c-224561532fbf", - "Service_Plans_Included_Friendly_Names": "Viva Glint" - }, - { - "Product_Display_Name": "Microsoft Viva Suite", - "String_Id": "VIVA", - "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX_TOPICEXP", - "Service_Plan_Id": "b74d57b2-58e9-484a-9731-aeccbba954f0", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index (Microsoft Viva Topics)" - }, - { - "Product_Display_Name": "Microsoft Viva Suite", - "String_Id": "VIVA", - "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", - "Service_Plan_Name": "WORKPLACE_ANALYTICS_INSIGHTS_USER", - "Service_Plan_Id": "b622badb-1b45-48d5-920f-4b27a2c0996c", - "Service_Plans_Included_Friendly_Names": "Microsoft Viva Insights" - }, - { - "Product_Display_Name": "Microsoft Viva Suite", - "String_Id": "VIVA", - "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", - "Service_Plan_Name": "WORKPLACE_ANALYTICS_INSIGHTS_BACKEND", - "Service_Plan_Id": "ff7b261f-d98b-415b-827c-42a3fdf015af", - "Service_Plans_Included_Friendly_Names": "Microsoft Viva Insights Backend" - }, - { - "Product_Display_Name": "Microsoft Viva Suite", - "String_Id": "VIVA", - "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", - "Service_Plan_Name": "CORTEX", - "Service_Plan_Id": "c815c93d-0759-4bb8-b857-bc921a71be83", - "Service_Plans_Included_Friendly_Names": "Microsoft Viva Topics" - }, - { - "Product_Display_Name": "Microsoft Viva Suite", - "String_Id": "VIVA", - "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", - "Service_Plan_Name": "VIVAENGAGE_COMMUNITIES_AND_COMMUNICATIONS", - "Service_Plan_Id": "43304c6a-1d4e-4e0b-9b06-5b2a2ff58a90", - "Service_Plans_Included_Friendly_Names": "Viva Engage Communities and Communications" - }, - { - "Product_Display_Name": "Microsoft Viva Suite", - "String_Id": "VIVA", - "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", - "Service_Plan_Name": "VIVAENGAGE_KNOWLEDGE", - "Service_Plan_Id": "c244cc9e-622f-4576-92ea-82e233e44e36", - "Service_Plans_Included_Friendly_Names": "Viva Engage Knowledge" - }, - { - "Product_Display_Name": "Microsoft Viva Suite", - "String_Id": "VIVA", - "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", - "Service_Plan_Name": "Viva_Goals_Premium", - "Service_Plan_Id": "b44c6eaf-5c9f-478c-8f16-8cea26353bfb", - "Service_Plans_Included_Friendly_Names": "Viva Goals" - }, - { - "Product_Display_Name": "Microsoft Viva Suite", - "String_Id": "VIVA", - "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", - "Service_Plan_Name": "VIVA_LEARNING_PREMIUM", - "Service_Plan_Id": "7162bd38-edae-4022-83a7-c5837f951759", - "Service_Plans_Included_Friendly_Names": "Viva Learning" - }, - { - "Product_Display_Name": "Minecraft Education Student", - "String_Id": "MEE_STUDENT", - "GUID": "533b8f26-f74b-4e9c-9c59-50fc4b393b63", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education" - }, - { - "Product_Display_Name": "Minecraft Education Student", - "String_Id": "MEE_STUDENT", - "GUID": "533b8f26-f74b-4e9c-9c59-50fc4b393b63", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Minecraft Education Faculty", - "String_Id": "MEE_FACULTY", - "GUID": "984df360-9a74-4647-8cf8-696749f6247a", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education" - }, - { - "Product_Display_Name": "Minecraft Education Faculty", - "String_Id": "MEE_FACULTY", - "GUID": "984df360-9a74-4647-8cf8-696749f6247a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Multi-Geo Capabilities in Office 365", - "String_Id": "OFFICE365_MULTIGEO", - "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607", - "Service_Plan_Name": "EXCHANGEONLINE_MULTIGEO", - "Service_Plan_Id": "897d51f1-2cfa-4848-9b30-469149f5e68e", - "Service_Plans_Included_Friendly_Names": "Exchange Online Multi-Geo" - }, - { - "Product_Display_Name": "Multi-Geo Capabilities in Office 365", - "String_Id": "OFFICE365_MULTIGEO", - "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607", - "Service_Plan_Name": "SHAREPOINTONLINE_MULTIGEO", - "Service_Plan_Id": "735c1d98-dd3f-4818-b4ed-c8052e18e62d", - "Service_Plans_Included_Friendly_Names": "SharePoint Multi-Geo" - }, - { - "Product_Display_Name": "Multi-Geo Capabilities in Office 365", - "String_Id": "OFFICE365_MULTIGEO", - "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607", - "Service_Plan_Name": "TEAMSMULTIGEO", - "Service_Plan_Id": "41eda15d-6b52-453b-906f-bc4a5b25a26b", - "Service_Plans_Included_Friendly_Names": "Teams Multi-Geo" - }, - { - "Product_Display_Name": "Nonprofit Portal", - "String_Id": "NONPROFIT_PORTAL", - "GUID": "aa2695c9-8d59-4800-9dc8-12e01f1735af", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Nonprofit Portal", - "String_Id": "NONPROFIT_PORTAL", - "GUID": "aa2695c9-8d59-4800-9dc8-12e01f1735af", - "Service_Plan_Name": "NONPROFIT_PORTAL", - "Service_Plan_Id": "7dbc2d88-20e2-4eb6-b065-4510b38d6eb2", - "Service_Plans_Included_Friendly_Names": "Nonprofit Portal" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "DYN365_CDS_O365_P1", - "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P1" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "KAIZALA_O365_P2", - "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 2" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "PROJECT_O365_P1", - "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P1", - "Service_Plan_Id": "c33802dd-1b50-4b9a-8bb9-f13d2cdeadac", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "SHAREPOINTSTANDARD_EDU", - "Service_Plan_Id": "0a4983bb-d3e5-4a09-95d8-b2d0127b3df5", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1) for Education" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "DYN365_CDS_O365_P1", - "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P1" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "KAIZALA_O365_P2", - "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 2" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "PROJECT_O365_P1", - "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P1", - "Service_Plan_Id": "c33802dd-1b50-4b9a-8bb9-f13d2cdeadac", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "SHAREPOINTSTANDARD_EDU", - "Service_Plan_Id": "0a4983bb-d3e5-4a09-95d8-b2d0127b3df5", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1) for Education" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "DYN365_CDS_O365_P1", - "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P1" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "KAIZALA_O365_P2", - "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 2" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "PROJECT_O365_P1", - "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P1", - "Service_Plan_Id": "c33802dd-1b50-4b9a-8bb9-f13d2cdeadac", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "SHAREPOINTSTANDARD_EDU", - "Service_Plan_Id": "0a4983bb-d3e5-4a09-95d8-b2d0127b3df5", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1) for Education" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "DYN365_CDS_O365_P1", - "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P1" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "KAIZALA_O365_P2", - "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 2" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "PROJECT_O365_P1", - "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P1", - "Service_Plan_Id": "c33802dd-1b50-4b9a-8bb9-f13d2cdeadac", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "SHAREPOINTSTANDARD_EDU", - "Service_Plan_Id": "0a4983bb-d3e5-4a09-95d8-b2d0127b3df5", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1) for Education" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for EDU" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the web (Education)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P2" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P2" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_3", - "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_3", - "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV", - "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics -Premium" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Standard" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV", - "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 1)", - "String_Id": "ATP_ENTERPRISE", - "GUID": "4ef96642-f096-40de-a3e9-d83fb2f90211", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 Extra File Storage for GCC", - "String_Id": "SHAREPOINTSTORAGE_GOV", - "GUID": "e5788282-6381-469f-84f0-3d7d4021d34d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_FOUNDATION_GOV" - }, - { - "Product_Display_Name": "Office 365 Extra File Storage for GCC", - "String_Id": "SHAREPOINTSTORAGE_GOV", - "GUID": "e5788282-6381-469f-84f0-3d7d4021d34d", - "Service_Plan_Name": "SHAREPOINTSTORAGE_GOV", - "Service_Plan_Id": "e5bb877f-6ac9-4461-9e43-ca581543ab16", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTORAGE_GOV" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "CDS_O365_P1", - "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P1" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "STREAM_O365_E1", - "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E1 SKU" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "MCO_TEAMS_IW", - "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1", - "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P1" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Office 365 Cloud App Security", - "String_Id": "ADALLOM_O365", - "GUID": "84d5f90f-cd0d-4864-b90b-1c7ba63b4808", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Office 365 Cloud App Security", - "String_Id": "ADALLOM_O365", - "GUID": "84d5f90f-cd0d-4864-b90b-1c7ba63b4808", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Office 365 Extra File Storage", - "String_Id": "SHAREPOINTSTORAGE", - "GUID": "99049c9c-6011-4908-bf17-15f496e6519d", - "Service_Plan_Name": "SHAREPOINTSTORAGE", - "Service_Plan_Id": "be5a7ed5-c598-4fcd-a061-5e6724c68a58", - "Service_Plans_Included_Friendly_Names": "Office 365 Extra File Storage" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", - "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", - "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "CDS_O365_P1", - "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS", - "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28", - "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "KAIZALA_O365_P2", - "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "PROJECT_O365_P1", - "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "DYN365_CDS_O365_P1", - "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "STREAM_O365_E1", - "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E1" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1", - "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "CDS_O365_P1", - "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "KAIZALA_O365_P2", - "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "PROJECT_O365_P1", - "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "DYN365_CDS_O365_P1", - "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "STREAM_O365_E1", - "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E1" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 E1 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E1", - "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1", - "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Office 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_1" - }, - { - "Product_Display_Name": "Office 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "Office 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "Office 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "Office 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "Office 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Office 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "Office 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "Office 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "Office 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "Office 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "STREAM_O365_E1", - "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E1 SKU" - }, - { - "Product_Display_Name": "Office 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "Office 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "Office 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", - "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", - "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", - "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "Bing_Chat_Enterprise", - "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", - "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS", - "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28", - "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "FORMS_PLAN_E3", - "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "FORMS_PLAN_E3", - "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 E3 EEA (no Teams)", - "String_Id": "O365_w/o_Teams_Bundle_E3", - "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Office 365 E3 Developer", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_3" - }, - { - "Product_Display_Name": "Office 365 E3 Developer", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Office 365 E3 Developer", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "Office 365 E3 Developer", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E5)" - }, - { - "Product_Display_Name": "Office 365 E3 Developer", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Office 365 E3 Developer", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION" - }, - { - "Product_Display_Name": "Office 365 E3 Developer", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 36" - }, - { - "Product_Display_Name": "Office 365 E3 Developer", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "Office 365 E3 Developer", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "SHAREPOINT_S_DEVELOPER", - "Service_Plan_Id": "a361d6e2-509e-4e25-a8ad-950060064ef4", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT FOR DEVELOPER" - }, - { - "Product_Display_Name": "Office 365 E3 Developer", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "SHAREPOINTWAC_DEVELOPER", - "Service_Plan_Id": "527f7cdd-0e86-4c47-b879-f5fd357a3ac6", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE FOR DEVELOPER" - }, - { - "Product_Display_Name": "Office 365 E3 Developer", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E5 SKU" - }, - { - "Product_Display_Name": "Office 365 E3 Developer", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "Office 365 E3 Developer", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "TEAMS_AR_DOD", - "Service_Plan_Id": "fd500458-c24c-478e-856c-a6067a8376cd", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for DOD (AR)" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office Online" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "TEAMS_AR_GCCHIGH", - "Service_Plan_Id": "9953b155-8aef-4c56-92f3-72b0487fce41", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for GCCHigh (AR)" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office Online" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_2" - }, - { - "Product_Display_Name": "Office 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "Office 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Office 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "Office 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "FORMS_PLAN_E3", - "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E3)" - }, - { - "Product_Display_Name": "Office 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Office 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "MCOVOICECONF", - "Service_Plan_Id": "27216c54-caf8-4d0d-97e2-517afb5c08f6", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 3)" - }, - { - "Product_Display_Name": "Office 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION" - }, - { - "Product_Display_Name": "Office 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 36" - }, - { - "Product_Display_Name": "Office 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "Office 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "MICROSOFT Microsoft Entra RIGHTS" - }, - { - "Product_Display_Name": "Office 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Office 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "Office 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E3 SKU" - }, - { - "Product_Display_Name": "Office 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "Office 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "Office 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P3" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P3" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Standard" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "M365 Communication Compliance" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E5 SKU" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P3" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "PowerApps for Office 365 Plan 3" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "CustomerLockboxA_Enterprise", - "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams)", - "String_Id": "Office_365_w/o_Teams_Bundle_E5", - "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "CustomerLockboxA_Enterprise", - "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", - "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", - "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "DYN365_CDS_O365_F1", - "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 F1" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "CDS_O365_F1", - "Service_Plan_Id": "90db65a7-bf11-4904-a79f-ef657605145b", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_F1" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS", - "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", - "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "FORMS_PLAN_K", - "Service_Plan_Id": "f07046bd-2a3c-4b96-b0be-dea79d7cbfb8", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1)" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "KAIZALA_O365_P1", - "Service_Plan_Id": "73b2a583-6a59-42e3-8e83-54db46bc3278", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 1" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "STREAM_O365_K", - "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 F3" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "POWERAPPS_O365_S1", - "Service_Plan_Id": "e0287f9f-e222-4f98-9a83-f379e249159a", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "FLOW_O365_S1", - "Service_Plan_Id": "bd91b1a4-9f94-4ecf-b45b-3a65e5c8128a", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_F1", - "Service_Plan_Id": "ba2fdb48-290b-4632-b46a-e4ecc58ac11a", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 F1" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "PROJECT_O365_F3", - "Service_Plan_Id": "7f6f28c2-34bb-4d4b-be36-48ca2e77e1ec", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan F)" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "BPOS_S_TODO_FIRSTLINE", - "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5", - "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1", - "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "CDS_O365_F1", - "Service_Plan_Id": "90db65a7-bf11-4904-a79f-ef657605145b", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS", - "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", - "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "FORMS_PLAN_K", - "Service_Plan_Id": "f07046bd-2a3c-4b96-b0be-dea79d7cbfb8", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1)" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "KAIZALA_O365_P1", - "Service_Plan_Id": "73b2a583-6a59-42e3-8e83-54db46bc3278", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "PROJECT_O365_F3", - "Service_Plan_Id": "7f6f28c2-34bb-4d4b-be36-48ca2e77e1ec", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan F)" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "BPOS_S_TODO_FIRSTLINE", - "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5", - "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1", - "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "DYN365_CDS_O365_F1", - "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "STREAM_O365_K", - "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 F3" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "POWERAPPS_O365_S1", - "Service_Plan_Id": "e0287f9f-e222-4f98-9a83-f379e249159a", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "FLOW_O365_S1", - "Service_Plan_Id": "bd91b1a4-9f94-4ecf-b45b-3a65e5c8128a", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3" - }, - { - "Product_Display_Name": "Office 365 F3 EEA (no Teams)", - "String_Id": "Office_365_F3_EEA_(no_Teams)", - "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_F1", - "Service_Plan_Id": "ba2fdb48-290b-4632-b46a-e4ecc58ac11a", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", - "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", - "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", - "Service_Plan_Name": "CDS_O365_F1", - "Service_Plan_Id": "90db65a7-bf11-4904-a79f-ef657605145b", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", - "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", - "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS", - "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", - "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk" - }, - { - "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", - "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", - "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", - "Service_Plan_Name": "FORMS_PLAN_K_AR_GCCHIGH", - "Service_Plan_Id": "59fb5884-fdec-40bf-aa7f-89e2bae79a7a", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1) for GCCHigh" - }, - { - "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", - "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", - "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", - "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", - "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", - "Service_Plan_Name": "MICROSOFT_SEARCH_GCCH", - "Service_Plan_Id": "fc9f7921-4ca5-42c6-8533-1b84c4ee496b", - "Service_Plans_Included_Friendly_Names": "Microsoft Search for Arlington" - }, - { - "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", - "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", - "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", - "Service_Plan_Name": "TEAMS_AR_GCCHIGH", - "Service_Plan_Id": "9953b155-8aef-4c56-92f3-72b0487fce41", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for GCCHigh" - }, - { - "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", - "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", - "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", - "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", - "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", - "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", - "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" - }, - { - "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", - "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", - "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", - "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", - "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", - "Service_Plan_Name": "DYN365_CDS_O365_F1", - "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", - "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", - "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", - "Service_Plan_Name": "STREAM_O365_K", - "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 F3" - }, - { - "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", - "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", - "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", - "Service_Plan_Name": "POWERAPPS_O365_S1_GCCHIGH", - "Service_Plan_Id": "b9f1a92f-d4c7-477b-b64c-e23d7b4e8cf9", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3 for GCCHigh" - }, - { - "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", - "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", - "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", - "Service_Plan_Name": "FLOW_O365_S1_GCCHIGH", - "Service_Plan_Id": "1db85bca-cd60-4bf5-ae54-641e0778a532", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3 for GCCHigh" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "DYN365_CDS_O365_P1_GCC", - "Service_Plan_Id": "8eb5e9bc-783f-4425-921a-c65f45dd72c6", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P1 GCC" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "CDS_O365_P1_GCC", - "Service_Plan_Id": "959e5dec-6522-4d44-8349-132c27c3795a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P1 GCC" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "EXCHANGE_S_STANDARD_GOV", - "Service_Plan_Id": "e9b4930a-925f-45e2-ac2a-3f7788ca6fdd", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1) for Government" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "FORMS_GOV_E1", - "Service_Plan_Id": "f4cba850-4f34-4fd2-a341-0fddfdce1e8f", - "Service_Plans_Included_Friendly_Names": "Forms for Government (Plan E1)" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "MYANALYTICS_P2_GOV", - "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics for Government" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "STREAM_O365_E1_GOV", - "Service_Plan_Id": "15267263-5986-449d-ac5c-124f3b49b2d6", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 for Government (E1)" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", - "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", - "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION_GOV", - "Service_Plan_Id": "4ccb60ee-9523-48fd-8f63-4b090f1ad77a", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365 for GCC" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "POWERAPPS_O365_P1_GOV", - "Service_Plan_Id": "c42aa49a-f357-45d5-9972-bc29df885fee", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "FLOW_O365_P1_GOV", - "Service_Plan_Id": "ad6c8870-6356-474c-901c-64d7da8cea48", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "SharePoint Plan 1G", - "Service_Plan_Id": "f9c43823-deb4-46a8-aa65-8b551f0c4f8a", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 1G" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "CDS_O365_P2_GCC", - "Service_Plan_Id": "a70bbf38-cdda-470d-adb8-5804b8770f41", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", - "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "MYANALYTICS_P2_GOV", - "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics for Government" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV", - "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise G" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "FORMS_GOV_E3", - "Service_Plan_Id": "24af5f65-d0f3-467b-9f78-ea798c4aeffc", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E3)" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", - "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", - "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "PROJECT_O365_P2_GOV", - "Service_Plan_Id": "e7d09ae4-099a-4c34-a2a2-3e166e95c44a", - "Service_Plans_Included_Friendly_Names": "Project for Government (Plan E3)" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "STREAM_O365_E3_GOV", - "Service_Plan_Id": "2c1ada27-dbaa-46f9-bda6-ecb94445f758", - "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E3)" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", - "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "DYN365_CDS_O365_P2_GCC", - "Service_Plan_Id": "06162da2-ebf9-4954-99a0-00fee96f95cc", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "POWERAPPS_O365_P2_GOV", - "Service_Plan_Id": "0a20c815-5e81-4727-9bdc-2b5a117850c3", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "FLOW_O365_P2_GOV", - "Service_Plan_Id": "c537f360-6a00-4ace-a7f5-9128d0ac1e4b", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "CDS_O365_P2_GCC", - "Service_Plan_Id": "a70bbf38-cdda-470d-adb8-5804b8770f41", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", - "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "MYANALYTICS_P2_GOV", - "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics for Government" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "FORMS_GOV_E3", - "Service_Plan_Id": "24af5f65-d0f3-467b-9f78-ea798c4aeffc", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E3)" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", - "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", - "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION_GOV", - "Service_Plan_Id": "4ccb60ee-9523-48fd-8f63-4b090f1ad77a", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365 for GCC" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "PROJECT_O365_P2_GOV", - "Service_Plan_Id": "e7d09ae4-099a-4c34-a2a2-3e166e95c44a", - "Service_Plans_Included_Friendly_Names": "Project for Government (Plan E3)" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "STREAM_O365_E3_GOV", - "Service_Plan_Id": "2c1ada27-dbaa-46f9-bda6-ecb94445f758", - "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E3)" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", - "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "DYN365_CDS_O365_P2_GCC", - "Service_Plan_Id": "06162da2-ebf9-4954-99a0-00fee96f95cc", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "POWERAPPS_O365_P2_GOV", - "Service_Plan_Id": "0a20c815-5e81-4727-9bdc-2b5a117850c3", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" - }, - { - "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", - "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", - "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", - "Service_Plan_Name": "FLOW_O365_P2_GOV", - "Service_Plan_Id": "c537f360-6a00-4ace-a7f5-9128d0ac1e4b", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "CDS_O365_P3_GCC", - "Service_Plan_Id": "bce5e5ca-c2fd-4d53-8ee2-58dfffed4c10", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV", - "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", - "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV", - "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise G" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MCOMEETADV_GOV", - "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing for Government" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MCOEV_GOV", - "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "ATP_ENTERPRISE_GOV", - "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV", - "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2) for Government" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "FORMS_GOV_E5", - "Service_Plan_Id": "843da3a8-d2cc-4e7a-9e90-dc46019f964c", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "EXCHANGE_ANALYTICS_GOV", - "Service_Plan_Id": "208120d1-9adb-4daf-8c22-816bd5d237e7", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics for Government (Full)" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV", - "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", - "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", - "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "BI_AZURE_P_2_GOV", - "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76", - "Service_Plans_Included_Friendly_Names": "Power BI Pro for Government" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "PROJECT_O365_P3_GOV", - "Service_Plan_Id": "9b7c50ec-cd50-44f2-bf48-d72de6f90717", - "Service_Plans_Included_Friendly_Names": "Project for Government (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "STREAM_O365_E5_GOV", - "Service_Plan_Id": "92c2089d-9a53-49fe-b1a6-9e6bdf959547", - "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E5)" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", - "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "DYN365_CDS_O365_P3_GCC", - "Service_Plan_Id": "a7d3fb37-b6df-4085-b509-50810d991a39", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "POWERAPPS_O365_P3_GOV", - "Service_Plan_Id": "0eacfc38-458a-40d3-9eab-9671258f1a3e", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "FLOW_O365_P3_GOV", - "Service_Plan_Id": "8055d84a-c172-42eb-b997-6c2ae4628246", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "CDS_O365_P3_GCC", - "Service_Plan_Id": "bce5e5ca-c2fd-4d53-8ee2-58dfffed4c10", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV", - "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", - "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV", - "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise G" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "MCOEV_GOV", - "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "ATP_ENTERPRISE_GOV", - "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV", - "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2) for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "FORMS_GOV_E5", - "Service_Plan_Id": "843da3a8-d2cc-4e7a-9e90-dc46019f964c", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "EXCHANGE_ANALYTICS_GOV", - "Service_Plan_Id": "208120d1-9adb-4daf-8c22-816bd5d237e7", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics for Government (Full)" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV", - "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", - "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", - "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "BI_AZURE_P_2_GOV", - "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76", - "Service_Plans_Included_Friendly_Names": "Power BI Pro for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "PROJECT_O365_P3_GOV", - "Service_Plan_Id": "9b7c50ec-cd50-44f2-bf48-d72de6f90717", - "Service_Plans_Included_Friendly_Names": "Project for Government (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "STREAM_O365_E5_GOV", - "Service_Plan_Id": "92c2089d-9a53-49fe-b1a6-9e6bdf959547", - "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E5)" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", - "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "DYN365_CDS_O365_P3_GCC", - "Service_Plan_Id": "a7d3fb37-b6df-4085-b509-50810d991a39", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "POWERAPPS_O365_P3_GOV", - "Service_Plan_Id": "0eacfc38-458a-40d3-9eab-9671258f1a3e", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", - "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", - "Service_Plan_Name": "FLOW_O365_P3_GOV", - "Service_Plan_Id": "8055d84a-c172-42eb-b997-6c2ae4628246", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "CDS_O365_P3_GCC", - "Service_Plan_Id": "bce5e5ca-c2fd-4d53-8ee2-58dfffed4c10", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV", - "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", - "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV", - "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise G" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "MCOMEETADV_GOV", - "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "ATP_ENTERPRISE_GOV", - "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV", - "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2) for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "FORMS_GOV_E5", - "Service_Plan_Id": "843da3a8-d2cc-4e7a-9e90-dc46019f964c", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "EXCHANGE_ANALYTICS_GOV", - "Service_Plan_Id": "208120d1-9adb-4daf-8c22-816bd5d237e7", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics for Government (Full)" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV", - "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", - "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", - "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "PROJECT_O365_P3_GOV", - "Service_Plan_Id": "9b7c50ec-cd50-44f2-bf48-d72de6f90717", - "Service_Plans_Included_Friendly_Names": "Project for Government (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "STREAM_O365_E5_GOV", - "Service_Plan_Id": "92c2089d-9a53-49fe-b1a6-9e6bdf959547", - "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E5)" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", - "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "DYN365_CDS_O365_P3_GCC", - "Service_Plan_Id": "a7d3fb37-b6df-4085-b509-50810d991a39", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "POWERAPPS_O365_P3_GOV", - "Service_Plan_Id": "0eacfc38-458a-40d3-9eab-9671258f1a3e", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" - }, - { - "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", - "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", - "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", - "Service_Plan_Name": "FLOW_O365_P3_GOV", - "Service_Plan_Id": "8055d84a-c172-42eb-b997-6c2ae4628246", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" - }, - { - "Product_Display_Name": "Office 365 Midsize Business", - "String_Id": "MIDSIZEPACK", - "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", - "Service_Plan_Name": "EXCHANGE_S_STANDARD_MIDMARKET", - "Service_Plan_Id": "fc52cc4b-ed7d-472d-bbe7-b081c23ecc56", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE PLAN" - }, - { - "Product_Display_Name": "Office 365 Midsize Business", - "String_Id": "MIDSIZEPACK", - "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", - "Service_Plan_Name": "MCOSTANDARD_MIDMARKET", - "Service_Plan_Id": "b2669e95-76ef-4e7e-a367-002f60a39f3e", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2) FOR MIDSIZ" - }, - { - "Product_Display_Name": "Office 365 Midsize Business", - "String_Id": "MIDSIZEPACK", - "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION" - }, - { - "Product_Display_Name": "Office 365 Midsize Business", - "String_Id": "MIDSIZEPACK", - "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_MIDMARKET", - "Service_Plan_Id": "6b5b6a67-fc72-4a1f-a2b5-beecf05de761", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT PLAN 1" - }, - { - "Product_Display_Name": "Office 365 Midsize Business", - "String_Id": "MIDSIZEPACK", - "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "Office 365 Midsize Business", - "String_Id": "MIDSIZEPACK", - "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "Office 365 Midsize Business", - "String_Id": "MIDSIZEPACK", - "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", - "Service_Plan_Name": "YAMMER_MIDSIZE", - "Service_Plan_Id": "41bf139a-4e60-409f-9346-a1361efc6dfb", - "Service_Plans_Included_Friendly_Names": "YAMMER_MIDSIZE" - }, - { - "Product_Display_Name": "Office 365 Small Business", - "String_Id": "LITEPACK", - "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b", - "Service_Plan_Name": "EXCHANGE_L_STANDARD", - "Service_Plan_Id": "d42bdbd6-c335-4231-ab3d-c8f348d5aff5", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (P1)" - }, - { - "Product_Display_Name": "Office 365 Small Business", - "String_Id": "LITEPACK", - "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b", - "Service_Plan_Name": "MCOLITE", - "Service_Plan_Id": "70710b6b-3ab4-4a38-9f6d-9f169461650a", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN P1)" - }, - { - "Product_Display_Name": "Office 365 Small Business", - "String_Id": "LITEPACK", - "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b", - "Service_Plan_Name": "SHAREPOINTLITE", - "Service_Plan_Id": "a1f3d0a8-84c0-4ae0-bae4-685917b8ab48", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTLITE" - }, - { - "Product_Display_Name": "Office 365 Small Business", - "String_Id": "LITEPACK", - "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "Office 365 Small Business Premium", - "String_Id": "LITEPACK_P2", - "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b", - "Service_Plan_Name": "EXCHANGE_L_STANDARD", - "Service_Plan_Id": "d42bdbd6-c335-4231-ab3d-c8f348d5aff5", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (P1)" - }, - { - "Product_Display_Name": "Office 365 Small Business Premium", - "String_Id": "LITEPACK_P2", - "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b", - "Service_Plan_Name": "MCOLITE", - "Service_Plan_Id": "70710b6b-3ab4-4a38-9f6d-9f169461650a", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN P1)" - }, - { - "Product_Display_Name": "Office 365 Small Business Premium", - "String_Id": "LITEPACK_P2", - "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b", - "Service_Plan_Name": "OFFICE_PRO_PLUS_SUBSCRIPTION_SMBIZ", - "Service_Plan_Id": "8ca59559-e2ca-470b-b7dd-afd8c0dee963", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 SMALL BUSINESS SUBSCRIPTION" - }, - { - "Product_Display_Name": "Office 365 Small Business Premium", - "String_Id": "LITEPACK_P2", - "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b", - "Service_Plan_Name": "SHAREPOINTLITE", - "Service_Plan_Id": "a1f3d0a8-84c0-4ae0-bae4-685917b8ab48", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTLITE" - }, - { - "Product_Display_Name": "Office 365 Small Business Premium", - "String_Id": "LITEPACK_P2", - "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "Office Mobile Apps for Office 365 for GCC", - "String_Id": "OFFICEMOBILE_SUBSCRIPTION_GOV_TEST", - "GUID": "64fca79f-c471-4e13-a335-9069cddf8aeb", - "Service_Plan_Name": "DYN365_CDS_PROJECT_GCC", - "Service_Plan_Id": "83837d9c-c21a-46a0-873e-d834c94015d6", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Project for GCC" - }, - { - "Product_Display_Name": "Office Mobile Apps for Office 365 for GCC", - "String_Id": "OFFICEMOBILE_SUBSCRIPTION_GOV_TEST", - "GUID": "64fca79f-c471-4e13-a335-9069cddf8aeb", - "Service_Plan_Name": "FLOW_FOR_PROJECT_GCC", - "Service_Plan_Id": "7251de8f-ecfb-481e-bcff-4af4f1a4573c", - "Service_Plans_Included_Friendly_Names": "Data integration for Project with Power Automate for GCC" - }, - { - "Product_Display_Name": "Office Mobile Apps for Office 365 for GCC", - "String_Id": "OFFICEMOBILE_SUBSCRIPTION_GOV_TEST", - "GUID": "64fca79f-c471-4e13-a335-9069cddf8aeb", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office Mobile Apps for Office 365 for GCC", - "String_Id": "OFFICEMOBILE_SUBSCRIPTION_GOV_TEST", - "GUID": "64fca79f-c471-4e13-a335-9069cddf8aeb", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION_GOV", - "Service_Plan_Id": "4ccb60ee-9523-48fd-8f63-4b090f1ad77a", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365 for GCC" - }, - { - "Product_Display_Name": "Office Mobile Apps for Office 365 for GCC", - "String_Id": "OFFICEMOBILE_SUBSCRIPTION_GOV_TEST", - "GUID": "64fca79f-c471-4e13-a335-9069cddf8aeb", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION_GOV", - "Service_Plan_Id": "45c6831b-ad74-4c7f-bd03-7c2b3fa39067", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" - }, - { - "Product_Display_Name": "Office Mobile Apps for Office 365 for GCC", - "String_Id": "OFFICEMOBILE_SUBSCRIPTION_GOV_TEST", - "GUID": "64fca79f-c471-4e13-a335-9069cddf8aeb", - "Service_Plan_Name": "PROJECT_PROFESSIONAL_FOR_GOV", - "Service_Plan_Id": "49c7bc16-7004-4df6-8cd5-4ec48b7e9ea0", - "Service_Plans_Included_Friendly_Names": "Project P3 for GOV" - }, - { - "Product_Display_Name": "Office Mobile Apps for Office 365 for GCC", - "String_Id": "OFFICEMOBILE_SUBSCRIPTION_GOV_TEST", - "GUID": "64fca79f-c471-4e13-a335-9069cddf8aeb", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Office Mobile Apps for Office 365 for GCC", - "String_Id": "OFFICEMOBILE_SUBSCRIPTION_GOV_TEST", - "GUID": "64fca79f-c471-4e13-a335-9069cddf8aeb", - "Service_Plan_Name": "FLOW_FOR_PROJECT_GOV", - "Service_Plan_Id": "16687e20-06f9-4577-9cc0-34a2704260fc", - "Service_Plans_Included_Friendly_Names": "Data integration for Project with Power Automate for GCC" - }, - { - "Product_Display_Name": "OneDrive for Business (Plan 1)", - "String_Id": "WACONEDRIVESTANDARD", - "GUID": "e6778190-713e-4e4f-9119-8b8238de25df", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "OneDrive for Business (Plan 1)", - "String_Id": "WACONEDRIVESTANDARD", - "GUID": "e6778190-713e-4e4f-9119-8b8238de25df", - "Service_Plan_Name": "ONEDRIVESTANDARD", - "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", - "Service_Plans_Included_Friendly_Names": "ONEDRIVESTANDARD" - }, - { - "Product_Display_Name": "OneDrive for Business (Plan 1)", - "String_Id": "WACONEDRIVESTANDARD", - "GUID": "e6778190-713e-4e4f-9119-8b8238de25df", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "OneDrive for Business (Plan 1)", - "String_Id": "WACONEDRIVESTANDARD", - "GUID": "e6778190-713e-4e4f-9119-8b8238de25df", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "OneDrive for Business (Plan 2)", - "String_Id": "WACONEDRIVEENTERPRISE", - "GUID": "ed01faf2-1d88-4947-ae91-45ca18703a96", - "Service_Plan_Name": "ONEDRIVEENTERPRISE", - "Service_Plan_Id": "afcafa6a-d966-4462-918c-ec0b4e0fe642", - "Service_Plans_Included_Friendly_Names": "ONEDRIVEENTERPRISE" - }, - { - "Product_Display_Name": "OneDrive for Business (Plan 2)", - "String_Id": "WACONEDRIVEENTERPRISE", - "GUID": "ed01faf2-1d88-4947-ae91-45ca18703a96", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", - "String_Id": "POWERFLOWGCC_TEST", - "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", - "Service_Plan_Name": "DYN365_CDS_PROJECT_GCC", - "Service_Plan_Id": "83837d9c-c21a-46a0-873e-d834c94015d6", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Project for GCC" - }, - { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", - "String_Id": "POWERFLOWGCC_TEST", - "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", - "Service_Plan_Name": "CDSAICAPACITY_PERAPP", - "Service_Plan_Id": "5d7a2e9a-4ee5-4f1c-bc9f-abc481bf39d8", - "Service_Plans_Included_Friendly_Names": "AI Builder capacity Per App add-on" - }, - { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", - "String_Id": "POWERFLOWGCC_TEST", - "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", - "Service_Plan_Name": "DYN365_CDS_P1_GOV", - "Service_Plan_Id": "ce361df2-f2a5-4713-953f-4050ba09aad8", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Government" - }, - { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", - "String_Id": "POWERFLOWGCC_TEST", - "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", - "Service_Plan_Name": "DYN365_CDS_P2_GOV", - "Service_Plan_Id": "37396c73-2203-48e6-8be1-d882dae53275", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Government" - }, - { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", - "String_Id": "POWERFLOWGCC_TEST", - "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", - "Service_Plan_Name": "DYN365_CDS_FOR_PROJECT_GCC_P5", - "Service_Plan_Id": "684a2229-5c57-43ab-b69f-f86fe8997358", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Project P5 for GCC" - }, - { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", - "String_Id": "POWERFLOWGCC_TEST", - "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", - "Service_Plan_Name": "FLOW_FOR_PROJECT_GOV", - "Service_Plan_Id": "16687e20-06f9-4577-9cc0-34a2704260fc", - "Service_Plans_Included_Friendly_Names": "Data integration for Project with Power Automate for GCC" - }, - { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", - "String_Id": "POWERFLOWGCC_TEST", - "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", - "Service_Plan_Name": "CDSAICAPACITY_PERUSER", - "Service_Plan_Id": "91f50f7b-2204-4803-acac-5cf5668b8b39", - "Service_Plans_Included_Friendly_Names": "DO NOT USE - AI Builder capacity Per User add-on" - }, - { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", - "String_Id": "POWERFLOWGCC_TEST", - "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", - "Service_Plan_Name": "POWERAPPS_O365_S1_GOV", - "Service_Plan_Id": "49f06c3d-da7d-4fa0-bcce-1458fdd18a59", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3 for Government" - }, - { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", - "String_Id": "POWERFLOWGCC_TEST", - "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", - "Service_Plan_Name": "POWERAPPS_O365_P1_GOV", - "Service_Plan_Id": "c42aa49a-f357-45d5-9972-bc29df885fee", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" - }, - { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", - "String_Id": "POWERFLOWGCC_TEST", - "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", - "Service_Plan_Name": "POWERAPPS_O365_P2_GOV", - "Service_Plan_Id": "0a20c815-5e81-4727-9bdc-2b5a117850c3", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" - }, - { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", - "String_Id": "POWERFLOWGCC_TEST", - "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", - "Service_Plan_Name": "POWERAPPS_O365_P3_GOV", - "Service_Plan_Id": "0eacfc38-458a-40d3-9eab-9671258f1a3e", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" - }, - { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", - "String_Id": "POWERFLOWGCC_TEST", - "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", - "Service_Plan_Name": "FLOW_DYN_APPS_GOV", - "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", - "String_Id": "POWERFLOWGCC_TEST", - "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", - "Service_Plan_Name": "FLOW_DYN_TEAM_GOV", - "Service_Plan_Id": "47bdde6a-959f-4c7f-8d59-3243e34f1cb3", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 Team Members for Government" - }, - { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", - "String_Id": "POWERFLOWGCC_TEST", - "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", - "Service_Plan_Name": "FLOW_O365_S1_GOV", - "Service_Plan_Id": "5d32692e-5b24-4a59-a77e-b2a8650e25c1", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3 for Government" - }, - { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", - "String_Id": "POWERFLOWGCC_TEST", - "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", - "Service_Plan_Name": "FLOW_O365_P1_GOV", - "Service_Plan_Id": "ad6c8870-6356-474c-901c-64d7da8cea48", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" - }, - { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", - "String_Id": "POWERFLOWGCC_TEST", - "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", - "Service_Plan_Name": "FLOW_O365_P2_GOV", - "Service_Plan_Id": "c537f360-6a00-4ace-a7f5-9128d0ac1e4b", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" - }, - { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", - "String_Id": "POWERFLOWGCC_TEST", - "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", - "Service_Plan_Name": "FLOW_O365_P3_GOV", - "Service_Plan_Id": "8055d84a-c172-42eb-b997-6c2ae4628246", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" - }, - { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", - "String_Id": "POWERFLOWGCC_TEST", - "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", - "Service_Plan_Name": "FLOW_DYN_P2_GOV", - "Service_Plan_Id": "06879193-37cc-4976-8991-f8165c994ce7", - "Service_Plans_Included_Friendly_Names": "Power Automate P2 for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", - "String_Id": "POWERFLOWGCC_TEST", - "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", - "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", - "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", - "String_Id": "POWERFLOWGCC_TEST", - "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", - "Service_Plan_Name": "POWERAPPS_DYN_TEAM_GOV", - "Service_Plan_Id": "63efc247-5f28-43e3-a2f8-00c183e3f1db", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 Team Members for Government" - }, - { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", - "String_Id": "POWERFLOWGCC_TEST", - "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", - "Service_Plan_Name": "POWERAPPS_DYN_P2_GOV", - "Service_Plan_Id": "51729bb5-7564-4927-8df8-9f5b12279cf3", - "Service_Plans_Included_Friendly_Names": "PowerApps Plan 2 for Dynamics 365 for Government" - }, - { - "Product_Display_Name": "Power Apps and Logic Flows", - "String_Id": "POWERAPPS_INDIVIDUAL_USER", - "GUID": "87bbbc60-4754-4998-8c88-227dca264858", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Power Apps and Logic Flows", - "String_Id": "POWERAPPS_INDIVIDUAL_USER", - "GUID": "87bbbc60-4754-4998-8c88-227dca264858", - "Service_Plan_Name": "POWERFLOWSFREE", - "Service_Plan_Id": "0b4346bb-8dc3-4079-9dfc-513696f56039", - "Service_Plans_Included_Friendly_Names": "LOGIC FLOWS" - }, - { - "Product_Display_Name": "Power Apps and Logic Flows", - "String_Id": "POWERAPPS_INDIVIDUAL_USER", - "GUID": "87bbbc60-4754-4998-8c88-227dca264858", - "Service_Plan_Name": "POWERVIDEOSFREE", - "Service_Plan_Id": "2c4ec2dc-c62d-4167-a966-52a3e6374015", - "Service_Plans_Included_Friendly_Names": "MICROSOFT POWER VIDEOS BASIC" - }, - { - "Product_Display_Name": "Power Apps and Logic Flows", - "String_Id": "POWERAPPS_INDIVIDUAL_USER", - "GUID": "87bbbc60-4754-4998-8c88-227dca264858", - "Service_Plan_Name": "POWERAPPSFREE", - "Service_Plan_Id": "e61a2945-1d4e-4523-b6e7-30ba39d20f32", - "Service_Plans_Included_Friendly_Names": "MICROSOFT POWERAPPS" - }, - { - "Product_Display_Name": "PowerApps per app baseline access", - "String_Id": "POWERAPPS_PER_APP_IW", - "GUID": "bf666882-9c9b-4b2e-aa2f-4789b0a52ba2", - "Service_Plan_Name": "CDS_PER_APP_IWTRIAL", - "Service_Plan_Id": "94a669d1-84d5-4e54-8462-53b0ae2c8be5", - "Service_Plans_Included_Friendly_Names": "CDS Per app baseline access" - }, - { - "Product_Display_Name": "PowerApps per app baseline access", - "String_Id": "POWERAPPS_PER_APP_IW", - "GUID": "bf666882-9c9b-4b2e-aa2f-4789b0a52ba2", - "Service_Plan_Name": "Flow_Per_APP_IWTRIAL", - "Service_Plan_Id": "dd14867e-8d31-4779-a595-304405f5ad39", - "Service_Plans_Included_Friendly_Names": "Flow per app baseline access" - }, - { - "Product_Display_Name": "PowerApps per app baseline access", - "String_Id": "POWERAPPS_PER_APP_IW", - "GUID": "bf666882-9c9b-4b2e-aa2f-4789b0a52ba2", - "Service_Plan_Name": "POWERAPPS_PER_APP_IWTRIAL", - "Service_Plan_Id": "35122886-cef5-44a3-ab36-97134eabd9ba", - "Service_Plans_Included_Friendly_Names": "PowerApps per app baseline access" - }, - { - "Product_Display_Name": "Power Apps Per App BD Only for GCC", - "String_Id": "POWERAPPS_PER_APP_BD_ONLY_GCC", - "GUID": "cdc8d0fc-fd16-4954-aae6-ed89a99f5620", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Power Apps Per App BD Only for GCC", - "String_Id": "POWERAPPS_PER_APP_BD_ONLY_GCC", - "GUID": "cdc8d0fc-fd16-4954-aae6-ed89a99f5620", - "Service_Plan_Name": "CDS_ POWERAPPS_PER_APP_CUSTOM_GCC", - "Service_Plan_Id": "ee493f70-a3b3-4204-9511-e3f6083b8df3", - "Service_Plans_Included_Friendly_Names": "CDS Power Apps Per App Custom GCC" - }, - { - "Product_Display_Name": "Power Apps Per App BD Only for GCC", - "String_Id": "POWERAPPS_PER_APP_BD_ONLY_GCC", - "GUID": "cdc8d0fc-fd16-4954-aae6-ed89a99f5620", - "Service_Plan_Name": "POWERAPPS_PER_APP_GCC", - "Service_Plan_Id": "be6e5cba-3661-424c-b79a-6d95fa1d849a", - "Service_Plans_Included_Friendly_Names": "Power Apps per App Plan for Government" - }, - { - "Product_Display_Name": "Power Apps Per App BD Only for GCC", - "String_Id": "POWERAPPS_PER_APP_BD_ONLY_GCC", - "GUID": "cdc8d0fc-fd16-4954-aae6-ed89a99f5620", - "Service_Plan_Name": "Flow_Per_APP_GCC", - "Service_Plan_Id": "8e2c2c3d-07f6-4da7-86a9-e78cc8c2c8b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per App Plan for Government" - }, - { - "Product_Display_Name": "Power Apps per app plan", - "String_Id": "POWERAPPS_PER_APP", - "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206", - "Service_Plan_Name": "CDS_PER_APP", - "Service_Plan_Id": "9f2f00ad-21ae-4ceb-994b-d8bc7be90999", - "Service_Plans_Included_Friendly_Names": "CDS PowerApps per app plan" - }, - { - "Product_Display_Name": "Power Apps per app plan", - "String_Id": "POWERAPPS_PER_APP", - "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Apps per app plan", - "String_Id": "POWERAPPS_PER_APP", - "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206", - "Service_Plan_Name": "POWERAPPS_PER_APP", - "Service_Plan_Id": "b4f657ff-d83e-4053-909d-baa2b595ec97", - "Service_Plans_Included_Friendly_Names": "Power Apps per App Plan" - }, - { - "Product_Display_Name": "Power Apps per app plan", - "String_Id": "POWERAPPS_PER_APP", - "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206", - "Service_Plan_Name": "Flow_Per_APP", - "Service_Plan_Id": "c539fa36-a64e-479a-82e1-e40ff2aa83ee", - "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per App Plan" - }, - { - "Product_Display_Name": "Power Apps per app plan (1 app or portal)", - "String_Id": "POWERAPPS_PER_APP_NEW", - "GUID": "b4d7b828-e8dc-4518-91f9-e123ae48440d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Apps per app plan (1 app or portal)", - "String_Id": "POWERAPPS_PER_APP_NEW", - "GUID": "b4d7b828-e8dc-4518-91f9-e123ae48440d", - "Service_Plan_Name": "CDSAICAPACITY_PERAPP", - "Service_Plan_Id": "5d7a2e9a-4ee5-4f1c-bc9f-abc481bf39d8", - "Service_Plans_Included_Friendly_Names": "AI Builder capacity Per App add-on" - }, - { - "Product_Display_Name": "Power Apps per app plan (1 app or portal)", - "String_Id": "POWERAPPS_PER_APP_NEW", - "GUID": "b4d7b828-e8dc-4518-91f9-e123ae48440d", - "Service_Plan_Name": "DATAVERSE_POWERAPPS_PER_APP_NEW", - "Service_Plan_Id": "6f0e9100-ff66-41ce-96fc-3d8b7ad26887", - "Service_Plans_Included_Friendly_Names": "Dataverse for Power Apps per app" - }, - { - "Product_Display_Name": "Power Apps per app plan (1 app or portal)", - "String_Id": "POWERAPPS_PER_APP_NEW", - "GUID": "b4d7b828-e8dc-4518-91f9-e123ae48440d", - "Service_Plan_Name": "POWERAPPS_PER_APP_NEW", - "Service_Plan_Id": "14f8dac2-0784-4daa-9cb2-6d670b088d64", - "Service_Plans_Included_Friendly_Names": "Power Apps per app" - }, - { - "Product_Display_Name": "Power Apps per app plan (1 app or portal)", - "String_Id": "POWERAPPS_PER_APP_NEW", - "GUID": "b4d7b828-e8dc-4518-91f9-e123ae48440d", - "Service_Plan_Name": "Flow_Per_APP", - "Service_Plan_Id": "c539fa36-a64e-479a-82e1-e40ff2aa83ee", - "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per App Plan" - }, - { - "Product_Display_Name": "Power Apps per app plan (1 app or website) BD Only - GCC", - "String_Id": "Power_Apps_per_app_plan_(1_app_or_portal)_BD_Only_GCC", - "GUID": "816ee058-f70c-42ad-b433-d6171984ea20", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Apps per app plan (1 app or website) BD Only - GCC", - "String_Id": "Power_Apps_per_app_plan_(1_app_or_portal)_BD_Only_GCC", - "GUID": "816ee058-f70c-42ad-b433-d6171984ea20", - "Service_Plan_Name": "CDS_ POWERAPPS_PER_APP_CUSTOM_NEW", - "Service_Plan_Id": "c2da6658-f89d-49f2-9508-40431dee115b", - "Service_Plans_Included_Friendly_Names": "CDS Power Apps Per App Custom New" - }, - { - "Product_Display_Name": "Power Apps per app plan (1 app or website) BD Only - GCC", - "String_Id": "Power_Apps_per_app_plan_(1_app_or_portal)_BD_Only_GCC", - "GUID": "816ee058-f70c-42ad-b433-d6171984ea20", - "Service_Plan_Name": "POWERAPPS_PER_APP_GCC_NEW", - "Service_Plan_Id": "70091fc8-1836-470f-a386-f4e6639cb04e", - "Service_Plans_Included_Friendly_Names": "Power Apps per app for GCC" - }, - { - "Product_Display_Name": "Power Apps per app plan (1 app or website) BD Only - GCC", - "String_Id": "Power_Apps_per_app_plan_(1_app_or_portal)_BD_Only_GCC", - "GUID": "816ee058-f70c-42ad-b433-d6171984ea20", - "Service_Plan_Name": "Flow_Per_APP_GCC", - "Service_Plan_Id": "8e2c2c3d-07f6-4da7-86a9-e78cc8c2c8b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per App Plan for Government" - }, - { - "Product_Display_Name": "Power Apps per app plan (1 app or website) for Government", - "String_Id": "POWERAPPS_PER_APP_GCC_NEW", - "GUID": "c14d7f00-457c-4e3e-8960-48f35459b3c9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Power Apps per app plan (1 app or website) for Government", - "String_Id": "POWERAPPS_PER_APP_GCC_NEW", - "GUID": "c14d7f00-457c-4e3e-8960-48f35459b3c9", - "Service_Plan_Name": "CDSAICAPACITY_PERAPP", - "Service_Plan_Id": "5d7a2e9a-4ee5-4f1c-bc9f-abc481bf39d8", - "Service_Plans_Included_Friendly_Names": "AI Builder capacity Per App add-on" - }, - { - "Product_Display_Name": "Power Apps per app plan (1 app or website) for Government", - "String_Id": "POWERAPPS_PER_APP_GCC_NEW", - "GUID": "c14d7f00-457c-4e3e-8960-48f35459b3c9", - "Service_Plan_Name": "DATAVERSE_POWERAPPS_PER_APP_NEW", - "Service_Plan_Id": "6f0e9100-ff66-41ce-96fc-3d8b7ad26887", - "Service_Plans_Included_Friendly_Names": "Dataverse for Power Apps per app" - }, - { - "Product_Display_Name": "Power Apps per app plan (1 app or website) for Government", - "String_Id": "POWERAPPS_PER_APP_GCC_NEW", - "GUID": "c14d7f00-457c-4e3e-8960-48f35459b3c9", - "Service_Plan_Name": "POWERAPPS_PER_APP_GCC_NEW", - "Service_Plan_Id": "70091fc8-1836-470f-a386-f4e6639cb04e", - "Service_Plans_Included_Friendly_Names": "Power Apps per app for GCC" - }, - { - "Product_Display_Name": "Power Apps per app plan (1 app or website) for Government", - "String_Id": "POWERAPPS_PER_APP_GCC_NEW", - "GUID": "c14d7f00-457c-4e3e-8960-48f35459b3c9", - "Service_Plan_Name": "Flow_Per_APP_GCC", - "Service_Plan_Id": "8e2c2c3d-07f6-4da7-86a9-e78cc8c2c8b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per App Plan for Government" - }, - { - "Product_Display_Name": "Power Apps per app plan for Government", - "String_Id": "POWERAPPS_PER_APP_GCC", - "GUID": "8623b2d7-5e24-4281-b6b7-086a5f3b0b1c", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Power Apps per app plan for Government", - "String_Id": "POWERAPPS_PER_APP_GCC", - "GUID": "8623b2d7-5e24-4281-b6b7-086a5f3b0b1c", - "Service_Plan_Name": "CDS_PER_APP_GCC", - "Service_Plan_Id": "d7f9c9bc-0a28-4da4-b5f1-731acb27a3e4", - "Service_Plans_Included_Friendly_Names": "CDS PowerApps per app plan for GCC" - }, - { - "Product_Display_Name": "Power Apps per app plan for Government", - "String_Id": "POWERAPPS_PER_APP_GCC", - "GUID": "8623b2d7-5e24-4281-b6b7-086a5f3b0b1c", - "Service_Plan_Name": "POWERAPPS_PER_APP_GCC", - "Service_Plan_Id": "be6e5cba-3661-424c-b79a-6d95fa1d849a", - "Service_Plans_Included_Friendly_Names": "Power Apps per App Plan for Government" - }, - { - "Product_Display_Name": "Power Apps per app plan for Government", - "String_Id": "POWERAPPS_PER_APP_GCC", - "GUID": "8623b2d7-5e24-4281-b6b7-086a5f3b0b1c", - "Service_Plan_Name": "Flow_Per_APP_GCC", - "Service_Plan_Id": "8e2c2c3d-07f6-4da7-86a9-e78cc8c2c8b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per App Plan for Government" - }, - { - "Product_Display_Name": "Power Apps Per User BD Only", - "String_Id": "POWERAPPS_PER_USER_BD_ONLY", - "GUID": "2ced8a00-3ed1-4295-ab7c-57170ff28e58", - "Service_Plan_Name": "Power_Pages_Internal_User", - "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", - "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" - }, - { - "Product_Display_Name": "Power Apps Per User BD Only", - "String_Id": "POWERAPPS_PER_USER_BD_ONLY", - "GUID": "2ced8a00-3ed1-4295-ab7c-57170ff28e58", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Apps Per User BD Only", - "String_Id": "POWERAPPS_PER_USER_BD_ONLY", - "GUID": "2ced8a00-3ed1-4295-ab7c-57170ff28e58", - "Service_Plan_Name": "CDS_ POWERAPPS_PER_USER_CUSTOM", - "Service_Plan_Id": "2e8dde43-6986-479d-b179-7dbe31c31f60", - "Service_Plans_Included_Friendly_Names": "CDS Power Apps Per User Custom" - }, - { - "Product_Display_Name": "Power Apps Per User BD Only", - "String_Id": "POWERAPPS_PER_USER_BD_ONLY", - "GUID": "2ced8a00-3ed1-4295-ab7c-57170ff28e58", - "Service_Plan_Name": "POWERAPPS_PER_USER", - "Service_Plan_Id": "ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86", - "Service_Plans_Included_Friendly_Names": "Power Apps per User Plan" - }, - { - "Product_Display_Name": "Power Apps Per User BD Only", - "String_Id": "POWERAPPS_PER_USER_BD_ONLY", - "GUID": "2ced8a00-3ed1-4295-ab7c-57170ff28e58", - "Service_Plan_Name": "Flow_PowerApps_PerUser", - "Service_Plan_Id": "dc789ed8-0170-4b65-a415-eb77d5bb350a", - "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per User Plan" - }, - { - "Product_Display_Name": "Power Apps per user plan", - "String_Id": "POWERAPPS_PER_USER", - "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579", - "Service_Plan_Name": "DYN365_CDS_P2", - "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", - "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" - }, - { - "Product_Display_Name": "Power Apps per user plan", - "String_Id": "POWERAPPS_PER_USER", - "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Apps per user plan", - "String_Id": "POWERAPPS_PER_USER", - "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579", - "Service_Plan_Name": "POWERAPPS_PER_USER", - "Service_Plan_Id": "ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86", - "Service_Plans_Included_Friendly_Names": "Power Apps per User Plan" - }, - { - "Product_Display_Name": "Power Apps per user plan", - "String_Id": "POWERAPPS_PER_USER", - "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579", - "Service_Plan_Name": "Flow_PowerApps_PerUser", - "Service_Plan_Id": "dc789ed8-0170-4b65-a415-eb77d5bb350a", - "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per User Plan" - }, - { - "Product_Display_Name": "Power Apps per user plan for Government", - "String_Id": "POWERAPPS_PER_USER_GCC", - "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1", - "Service_Plan_Name": "CDSAICAPACITY_PERUSER", - "Service_Plan_Id": "91f50f7b-2204-4803-acac-5cf5668b8b39", - "Service_Plans_Included_Friendly_Names": "AI Builder capacity Per User add-on" - }, - { - "Product_Display_Name": "Power Apps per user plan for Government", - "String_Id": "POWERAPPS_PER_USER_GCC", - "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1", - "Service_Plan_Name": "CDSAICAPACITY_PERUSER_NEW", - "Service_Plan_Id": "74d93933-6f22-436e-9441-66d205435abb", - "Service_Plans_Included_Friendly_Names": "AI Builder capacity Per User add-on" - }, - { - "Product_Display_Name": "Power Apps per user plan for Government", - "String_Id": "POWERAPPS_PER_USER_GCC", - "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1", - "Service_Plan_Name": "DYN365_CDS_P2_GOV", - "Service_Plan_Id": "37396c73-2203-48e6-8be1-d882dae53275", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Government" - }, - { - "Product_Display_Name": "Power Apps per user plan for Government", - "String_Id": "POWERAPPS_PER_USER_GCC", - "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Power Apps per user plan for Government", - "String_Id": "POWERAPPS_PER_USER_GCC", - "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1", - "Service_Plan_Name": "POWERAPPS_PER_USER_GCC", - "Service_Plan_Id": "8f55b472-f8bf-40a9-be30-e29919d4ddfe", - "Service_Plans_Included_Friendly_Names": "Power Apps per User Plan for Government" - }, - { - "Product_Display_Name": "Power Apps per user plan for Government", - "String_Id": "POWERAPPS_PER_USER_GCC", - "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1", - "Service_Plan_Name": "Flow_PowerApps_PerUser_GCC", - "Service_Plan_Id": "8e3eb3bd-bc99-4221-81b8-8b8bc882e128", - "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per User Plan for GCC" - }, - { - "Product_Display_Name": "PowerApps Plan 1 for Government", - "String_Id": "POWERAPPS_P1_GOV", - "GUID": "eca22b68-b31f-4e9c-a20c-4d40287bc5dd", - "Service_Plan_Name": "DYN365_CDS_P1_GOV", - "Service_Plan_Id": "ce361df2-f2a5-4713-953f-4050ba09aad8", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Government" - }, - { - "Product_Display_Name": "PowerApps Plan 1 for Government", - "String_Id": "POWERAPPS_P1_GOV", - "GUID": "eca22b68-b31f-4e9c-a20c-4d40287bc5dd", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "PowerApps Plan 1 for Government", - "String_Id": "POWERAPPS_P1_GOV", - "GUID": "eca22b68-b31f-4e9c-a20c-4d40287bc5dd", - "Service_Plan_Name": "FLOW_P1_GOV", - "Service_Plan_Id": "774da41c-a8b3-47c1-8322-b9c1ab68be9f", - "Service_Plans_Included_Friendly_Names": "Power Automate (Plan 1) for Government" - }, - { - "Product_Display_Name": "PowerApps Plan 1 for Government", - "String_Id": "POWERAPPS_P1_GOV", - "GUID": "eca22b68-b31f-4e9c-a20c-4d40287bc5dd", - "Service_Plan_Name": "POWERAPPS_P1_GOV", - "Service_Plan_Id": "5ce719f1-169f-4021-8a64-7d24dcaec15f", - "Service_Plans_Included_Friendly_Names": "PowerApps Plan 1 for Government" - }, - { - "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min)", - "String_Id": "POWERAPPS_PORTALS_LOGIN_T2", - "GUID": "57f3babd-73ce-40de-bcb2-dadbfbfff9f7", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min)", - "String_Id": "POWERAPPS_PORTALS_LOGIN_T2", - "GUID": "57f3babd-73ce-40de-bcb2-dadbfbfff9f7", - "Service_Plan_Name": "CDS_POWERAPPS_PORTALS_LOGIN", - "Service_Plan_Id": "32ad3a4e-2272-43b4-88d0-80d284258208", - "Service_Plans_Included_Friendly_Names": "Common Data Service Power Apps Portals Login Capacity" - }, - { - "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min)", - "String_Id": "POWERAPPS_PORTALS_LOGIN_T2", - "GUID": "57f3babd-73ce-40de-bcb2-dadbfbfff9f7", - "Service_Plan_Name": "POWERAPPS_PORTALS_LOGIN", - "Service_Plan_Id": "084747ad-b095-4a57-b41f-061d84d69f6f", - "Service_Plans_Included_Friendly_Names": "Power Apps Portals Login Capacity Add-On" - }, - { - "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min) for Government", - "String_Id": "POWERAPPS_PORTALS_LOGIN_T2_GCC", - "GUID": "26c903d5-d385-4cb1-b650-8d81a643b3c4", - "Service_Plan_Name": "CDS_POWERAPPS_PORTALS_LOGIN_GCC", - "Service_Plan_Id": "0f7b9a29-7990-44ff-9d05-a76be778f410", - "Service_Plans_Included_Friendly_Names": "Common Data Service Power Apps Portals Login Capacity for GCC" - }, - { - "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min) for Government", - "String_Id": "POWERAPPS_PORTALS_LOGIN_T2_GCC", - "GUID": "26c903d5-d385-4cb1-b650-8d81a643b3c4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min) for Government", - "String_Id": "POWERAPPS_PORTALS_LOGIN_T2_GCC", - "GUID": "26c903d5-d385-4cb1-b650-8d81a643b3c4", - "Service_Plan_Name": "POWERAPPS_PORTALS_LOGIN_GCC", - "Service_Plan_Id": "bea6aef1-f52d-4cce-ae09-bed96c4b1811", - "Service_Plans_Included_Friendly_Names": "Power Apps Portals Login Capacity Add-On for Government" - }, - { - "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 3 (50 unit min)", - "String_Id": "POWERAPPS_PORTALS_LOGIN_T3", - "GUID": "927d8402-8d3b-40e8-b779-34e859f7b497", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 3 (50 unit min)", - "String_Id": "POWERAPPS_PORTALS_LOGIN_T3", - "GUID": "927d8402-8d3b-40e8-b779-34e859f7b497", - "Service_Plan_Name": "CDS_POWERAPPS_PORTALS_LOGIN", - "Service_Plan_Id": "32ad3a4e-2272-43b4-88d0-80d284258208", - "Service_Plans_Included_Friendly_Names": "Common Data Service Power Apps Portals Login Capacity" - }, - { - "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 3 (50 unit min)", - "String_Id": "POWERAPPS_PORTALS_LOGIN_T3", - "GUID": "927d8402-8d3b-40e8-b779-34e859f7b497", - "Service_Plan_Name": "POWERAPPS_PORTALS_LOGIN", - "Service_Plan_Id": "084747ad-b095-4a57-b41f-061d84d69f6f", - "Service_Plans_Included_Friendly_Names": "Power Apps Portals Login Capacity Add-On" - }, - { - "Product_Display_Name": "Power Apps Portals page view capacity add-on", - "String_Id": "POWERAPPS_PORTALS_PAGEVIEW", - "GUID": "a0de5e3a-2500-4a19-b8f4-ec1c64692d22", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Apps Portals page view capacity add-on", - "String_Id": "POWERAPPS_PORTALS_PAGEVIEW", - "GUID": "a0de5e3a-2500-4a19-b8f4-ec1c64692d22", - "Service_Plan_Name": "CDS_POWERAPPS_PORTALS_PAGEVIEW", - "Service_Plan_Id": "72c30473-7845-460a-9feb-b58f216e8694", - "Service_Plans_Included_Friendly_Names": "CDS PowerApps Portals page view capacity add-on" - }, - { - "Product_Display_Name": "Power Apps Portals page view capacity add-on", - "String_Id": "POWERAPPS_PORTALS_PAGEVIEW", - "GUID": "a0de5e3a-2500-4a19-b8f4-ec1c64692d22", - "Service_Plan_Name": "POWERAPPS_PORTALS_PAGEVIEW", - "Service_Plan_Id": "1c5a559a-ec06-4f76-be5b-6a315418495f", - "Service_Plans_Included_Friendly_Names": "Power Apps Portals Page View Capacity Add-On" - }, - { - "Product_Display_Name": "Power Apps Portals page view capacity add-on for Government", - "String_Id": "POWERAPPS_PORTALS_PAGEVIEW_GCC", - "GUID": "15a64d3e-5b99-4c4b-ae8f-aa6da264bfe7", - "Service_Plan_Name": "CDS_POWERAPPS_PORTALS_PAGEVIEW_GCC", - "Service_Plan_Id": "352257a9-db78-4217-a29d-8b8d4705b014", - "Service_Plans_Included_Friendly_Names": "CDS PowerApps Portals page view capacity add-on for GCC" - }, - { - "Product_Display_Name": "Power Apps Portals page view capacity add-on for Government", - "String_Id": "POWERAPPS_PORTALS_PAGEVIEW_GCC", - "GUID": "15a64d3e-5b99-4c4b-ae8f-aa6da264bfe7", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Power Apps Portals page view capacity add-on for Government", - "String_Id": "POWERAPPS_PORTALS_PAGEVIEW_GCC", - "GUID": "15a64d3e-5b99-4c4b-ae8f-aa6da264bfe7", - "Service_Plan_Name": "POWERAPPS_PORTALS_PAGEVIEW_GCC", - "Service_Plan_Id": "483d5646-7724-46ac-ad71-c78b7f099d8d", - "Service_Plans_Included_Friendly_Names": "Power Apps Portals Page View Capacity Add-On for Government" - }, - { - "Product_Display_Name": "Power Automate per flow plan", - "String_Id": "FLOW_BUSINESS_PROCESS", - "GUID": "b3a42176-0a8c-4c3f-ba4e-f2b37fe5be6b", - "Service_Plan_Name": "CDS_Flow_Business_Process", - "Service_Plan_Id": "c84e52ae-1906-4947-ac4d-6fb3e5bf7c2e", - "Service_Plans_Included_Friendly_Names": "Common data service for Flow per business process plan" - }, - { - "Product_Display_Name": "Power Automate per flow plan", - "String_Id": "FLOW_BUSINESS_PROCESS", - "GUID": "b3a42176-0a8c-4c3f-ba4e-f2b37fe5be6b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Automate per flow plan", - "String_Id": "FLOW_BUSINESS_PROCESS", - "GUID": "b3a42176-0a8c-4c3f-ba4e-f2b37fe5be6b", - "Service_Plan_Name": "FLOW_BUSINESS_PROCESS", - "Service_Plan_Id": "7e017b61-a6e0-4bdc-861a-932846591f6e", - "Service_Plans_Included_Friendly_Names": "Flow per business process plan" - }, - { - "Product_Display_Name": "Power Automate per flow plan for Government", - "String_Id": "FLOW_BUSINESS_PROCESS_GCC", - "GUID": "d9de51e5-d8cd-45bb-8da3-1d55e28c52e6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Power Automate per flow plan for Government", - "String_Id": "FLOW_BUSINESS_PROCESS_GCC", - "GUID": "d9de51e5-d8cd-45bb-8da3-1d55e28c52e6", - "Service_Plan_Name": "CDS_Flow_Business_Process_GCC", - "Service_Plan_Id": "54b61386-c818-4634-8400-61c9e8f6acd3", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Power Automate per Business Process Plan for GCC" - }, - { - "Product_Display_Name": "Power Automate per flow plan for Government", - "String_Id": "FLOW_BUSINESS_PROCESS_GCC", - "GUID": "d9de51e5-d8cd-45bb-8da3-1d55e28c52e6", - "Service_Plan_Name": "FLOW_BUSINESS_PROCESS_GCC", - "Service_Plan_Id": "cb83e771-a077-4a73-9201-d955585b29fa", - "Service_Plans_Included_Friendly_Names": "Power Automate per Business Process Plan for Government" - }, - { - "Product_Display_Name": "Power Automate per user plan", - "String_Id": "FLOW_PER_USER", - "GUID": "4a51bf65-409c-4a91-b845-1121b571cc9d", - "Service_Plan_Name": "DYN365_CDS_P2", - "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", - "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" - }, - { - "Product_Display_Name": "Power Automate per user plan", - "String_Id": "FLOW_PER_USER", - "GUID": "4a51bf65-409c-4a91-b845-1121b571cc9d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Automate per user plan", - "String_Id": "FLOW_PER_USER", - "GUID": "4a51bf65-409c-4a91-b845-1121b571cc9d", - "Service_Plan_Name": "FLOW_PER_USER", - "Service_Plan_Id": "c5002c70-f725-4367-b409-f0eff4fee6c0", - "Service_Plans_Included_Friendly_Names": "Flow per user plan" - }, - { - "Product_Display_Name": "Power Automate per user plan dept", - "String_Id": "FLOW_PER_USER_DEPT", - "GUID": "d80a4c5d-8f05-4b64-9926-6574b9e6aee4", - "Service_Plan_Name": "DYN365_CDS_P2", - "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", - "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" - }, - { - "Product_Display_Name": "Power Automate per user plan dept", - "String_Id": "FLOW_PER_USER_DEPT", - "GUID": "d80a4c5d-8f05-4b64-9926-6574b9e6aee4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Automate per user plan dept", - "String_Id": "FLOW_PER_USER_DEPT", - "GUID": "d80a4c5d-8f05-4b64-9926-6574b9e6aee4", - "Service_Plan_Name": "FLOW_PER_USER", - "Service_Plan_Id": "c5002c70-f725-4367-b409-f0eff4fee6c0", - "Service_Plans_Included_Friendly_Names": "Flow per user plan" - }, - { - "Product_Display_Name": "Power Automate per user plan for Government", - "String_Id": "FLOW_PER_USER_GCC", - "GUID": "c8803586-c136-479a-8ff3-f5f32d23a68e", - "Service_Plan_Name": "DYN365_CDS_P2_GOV", - "Service_Plan_Id": "37396c73-2203-48e6-8be1-d882dae53275", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Government" - }, - { - "Product_Display_Name": "Power Automate per user plan for Government", - "String_Id": "FLOW_PER_USER_GCC", - "GUID": "c8803586-c136-479a-8ff3-f5f32d23a68e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Power Automate per user plan for Government", - "String_Id": "FLOW_PER_USER_GCC", - "GUID": "c8803586-c136-479a-8ff3-f5f32d23a68e", - "Service_Plan_Name": "FLOW_PER_USER_GCC", - "Service_Plan_Id": "769b8bee-2779-4c5a-9456-6f4f8629fd41", - "Service_Plans_Included_Friendly_Names": "Power Automate per User Plan for Government" - }, - { - "Product_Display_Name": "Power Automate per user with attended RPA plan", - "String_Id": "POWERAUTOMATE_ATTENDED_RPA", - "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9", - "Service_Plan_Name": "CDS_ATTENDED_RPA", - "Service_Plan_Id": "3da2fd4c-1bee-4b61-a17f-94c31e5cab93", - "Service_Plans_Included_Friendly_Names": "Common Data Service Attended RPA" - }, - { - "Product_Display_Name": "Power Automate per user with attended RPA plan", - "String_Id": "POWERAUTOMATE_ATTENDED_RPA", - "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Automate per user with attended RPA plan", - "String_Id": "POWERAUTOMATE_ATTENDED_RPA", - "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9", - "Service_Plan_Name": "POWER_AUTOMATE_ATTENDED_RPA", - "Service_Plan_Id": "375cd0ad-c407-49fd-866a-0bff4f8a9a4d", - "Service_Plans_Included_Friendly_Names": "Power Automate RPA Attended" - }, - { - "Product_Display_Name": "Power Automate Premium for Government", - "String_Id": "POWERAUTOMATE_ATTENDED_RPA_GCC", - "GUID": "d3987516-4b53-4dc0-8335-411260bf5626", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Power Automate Premium for Government", - "String_Id": "POWERAUTOMATE_ATTENDED_RPA_GCC", - "GUID": "d3987516-4b53-4dc0-8335-411260bf5626", - "Service_Plan_Name": "CDS_ATTENDED_RPA_GCC", - "Service_Plan_Id": "4802707d-47e1-45dc-82c5-b6981f0fb38c", - "Service_Plans_Included_Friendly_Names": "Common Data Service Attended RPA for Government" - }, - { - "Product_Display_Name": "Power Automate Premium for Government", - "String_Id": "POWERAUTOMATE_ATTENDED_RPA_GCC", - "GUID": "d3987516-4b53-4dc0-8335-411260bf5626", - "Service_Plan_Name": "POWER_AUTOMATE_ATTENDED_RPA_GCC", - "Service_Plan_Id": "fb613c67-1a58-4645-a8df-21e95a37d433", - "Service_Plans_Included_Friendly_Names": "Power Automate Attended RPA for Government" - }, - { - "Product_Display_Name": "Power Automate unattended RPA add-on", - "String_Id": "POWERAUTOMATE_UNATTENDED_RPA", - "GUID": "3539d28c-6e35-4a30-b3a9-cd43d5d3e0e2", - "Service_Plan_Name": "CDS_UNATTENDED_RPA", - "Service_Plan_Id": "b475952f-128a-4a44-b82a-0b98a45ca7fb", - "Service_Plans_Included_Friendly_Names": "Common Data Service Unattended RPA" - }, - { - "Product_Display_Name": "Power Automate unattended RPA add-on", - "String_Id": "POWERAUTOMATE_UNATTENDED_RPA", - "GUID": "3539d28c-6e35-4a30-b3a9-cd43d5d3e0e2", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Automate unattended RPA add-on", - "String_Id": "POWERAUTOMATE_UNATTENDED_RPA", - "GUID": "3539d28c-6e35-4a30-b3a9-cd43d5d3e0e2", - "Service_Plan_Name": "POWER_AUTOMATE_UNATTENDED_RPA", - "Service_Plan_Id": "0d373a98-a27a-426f-8993-f9a425ae99c5", - "Service_Plans_Included_Friendly_Names": "Power Automate Unattended RPA add-on" - }, - { - "Product_Display_Name": "Power Automate unattended RPA add-on for Government", - "String_Id": "POWERAUTOMATE_UNATTENDED_RPA_GCC", - "GUID": "086e9b70-4720-4442-ab6d-3ef32bfb4721", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Power Automate unattended RPA add-on for Government", - "String_Id": "POWERAUTOMATE_UNATTENDED_RPA_GCC", - "GUID": "086e9b70-4720-4442-ab6d-3ef32bfb4721", - "Service_Plan_Name": "CDS_UNATTENDED_RPA_GCC", - "Service_Plan_Id": "5141c408-df3d-456a-9878-a65119b0a750", - "Service_Plans_Included_Friendly_Names": "Common Data Service Unattended RPA for Government" - }, - { - "Product_Display_Name": "Power Automate unattended RPA add-on for Government", - "String_Id": "POWERAUTOMATE_UNATTENDED_RPA_GCC", - "GUID": "086e9b70-4720-4442-ab6d-3ef32bfb4721", - "Service_Plan_Name": "POWER_AUTOMATE_UNATTENDED_RPA_GCC", - "Service_Plan_Id": "45e63e9f-6dd9-41fd-bd41-93bfa008c537", - "Service_Plans_Included_Friendly_Names": "Power Automate Unattended RPA for Government" - }, - { - "Product_Display_Name": "Power BI", - "String_Id": "POWER_BI_INDIVIDUAL_USER", - "GUID": "e2767865-c3c9-4f09-9f99-6eee6eef861a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI", - "String_Id": "POWER_BI_INDIVIDUAL_USER", - "GUID": "e2767865-c3c9-4f09-9f99-6eee6eef861a", - "Service_Plan_Name": "SQL_IS_SSIM", - "Service_Plan_Id": "fc0a60aa-feee-4746-a0e3-aecfe81a38dd", - "Service_Plans_Included_Friendly_Names": "Microsoft Power BI Information Services Plan 1" - }, - { - "Product_Display_Name": "Power BI", - "String_Id": "POWER_BI_INDIVIDUAL_USER", - "GUID": "e2767865-c3c9-4f09-9f99-6eee6eef861a", - "Service_Plan_Name": "BI_AZURE_P1", - "Service_Plan_Id": "2125cfd7-2110-4567-83c4-c1cd5275163d", - "Service_Plans_Included_Friendly_Names": "Microsoft Power BI Reporting and Analytics Plan 1" - }, - { - "Product_Display_Name": "Power BI for Office 365 Add-On", - "String_Id": "POWER_BI_ADDON", - "GUID": "45bc2c81-6072-436a-9b0b-3b12eefbc402", - "Service_Plan_Name": "BI_AZURE_P1", - "Service_Plan_Id": "2125cfd7-2110-4567-83c4-c1cd5275163d", - "Service_Plans_Included_Friendly_Names": "MICROSOFT POWER BI REPORTING AND ANALYTICS PLAN 1" - }, - { - "Product_Display_Name": "Power BI for Office 365 Add-On", - "String_Id": "POWER_BI_ADDON", - "GUID": "45bc2c81-6072-436a-9b0b-3b12eefbc402", - "Service_Plan_Name": "SQL_IS_SSIM", - "Service_Plan_Id": "fc0a60aa-feee-4746-a0e3-aecfe81a38dd", - "Service_Plans_Included_Friendly_Names": "MICROSOFT POWER BI INFORMATION SERVICES PLAN" - }, - { - "Product_Display_Name": "Power BI Premium P1", - "String_Id": "PBI_PREMIUM_P1_ADDON", - "GUID": "7b26f5ab-a763-4c00-a1ac-f6c4b5506945", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Premium P1", - "String_Id": "PBI_PREMIUM_P1_ADDON", - "GUID": "7b26f5ab-a763-4c00-a1ac-f6c4b5506945", - "Service_Plan_Name": "PBI_PREMIUM_P1_ADDON", - "Service_Plan_Id": "9da49a6d-707a-48a1-b44a-53dcde5267f8", - "Service_Plans_Included_Friendly_Names": "Power BI Premium P" - }, - { - "Product_Display_Name": "Power BI Premium P1 GCC", - "String_Id": "PBI_PREMIUM_P1_ADDON_GCC", - "GUID": "f59b22a0-9819-48bf-b01d-715ef2b31027", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Power BI Premium P1 GCC", - "String_Id": "PBI_PREMIUM_P1_ADDON_GCC", - "GUID": "f59b22a0-9819-48bf-b01d-715ef2b31027", - "Service_Plan_Name": "PBI_PREMIUM_P1_ADDON_GCC", - "Service_Plan_Id": "30df3dbd-5bf6-4d74-9417-cccc096595e4", - "Service_Plans_Included_Friendly_Names": "Power BI Premium P1 for GCC" - }, - { - "Product_Display_Name": "Power BI Premium Per User", - "String_Id": "PBI_PREMIUM_PER_USER", - "GUID": "c1d032e0-5619-4761-9b5c-75b6831e1711", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Premium Per User", - "String_Id": "PBI_PREMIUM_PER_USER", - "GUID": "c1d032e0-5619-4761-9b5c-75b6831e1711", - "Service_Plan_Name": "BI_AZURE_P3", - "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c", - "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User" - }, - { - "Product_Display_Name": "Power BI Premium Per User", - "String_Id": "PBI_PREMIUM_PER_USER", - "GUID": "c1d032e0-5619-4761-9b5c-75b6831e1711", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Power BI Premium Per User Add-On", - "String_Id": "PBI_PREMIUM_PER_USER_ADDON", - "GUID": "de376a03-6e5b-42ec-855f-093fb50b8ca5", - "Service_Plan_Name": "BI_AZURE_P3", - "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c", - "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User" - }, - { - "Product_Display_Name": "Power BI Premium Per User Add-On for GCC", - "String_Id": "PBI_PREMIUM_PER_USER_ADDON_CE_GCC", - "GUID": "66024bbf-4cd4-4329-95c8-c932e2ae01a8", - "Service_Plan_Name": "BI_AZURE_P3_GOV", - "Service_Plan_Id": "32d15238-9a8c-46da-af3f-21fc5351d365", - "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User for Government" - }, - { - "Product_Display_Name": "Power BI Premium Per User Add-On for GCC", - "String_Id": "PBI_PREMIUM_PER_USER_ADDON_GCC", - "GUID": "1b572d5e-1bf8-4b19-9259-f9eda31a6972", - "Service_Plan_Name": "BI_AZURE_P3_GOV", - "Service_Plan_Id": "32d15238-9a8c-46da-af3f-21fc5351d365", - "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User for Government" - }, - { - "Product_Display_Name": "Power BI Premium Per User Dept", - "String_Id": "PBI_PREMIUM_PER_USER_DEPT", - "GUID": "f168a3fb-7bcf-4a27-98c3-c235ea4b78b4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Premium Per User Dept", - "String_Id": "PBI_PREMIUM_PER_USER_DEPT", - "GUID": "f168a3fb-7bcf-4a27-98c3-c235ea4b78b4", - "Service_Plan_Name": "BI_AZURE_P3", - "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c", - "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User" - }, - { - "Product_Display_Name": "Power BI Premium Per User Dept", - "String_Id": "PBI_PREMIUM_PER_USER_DEPT", - "GUID": "f168a3fb-7bcf-4a27-98c3-c235ea4b78b4", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Power BI Premium Per User for Faculty", - "String_Id": "PBI_PREMIUM_PER_USER_FACULTY", - "GUID": "060d8061-f606-4e69-a4e7-e8fff75ea1f5", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Premium Per User for Faculty", - "String_Id": "PBI_PREMIUM_PER_USER_FACULTY", - "GUID": "060d8061-f606-4e69-a4e7-e8fff75ea1f5", - "Service_Plan_Name": "BI_AZURE_P3", - "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c", - "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User" - }, - { - "Product_Display_Name": "Power BI Premium Per User for Faculty", - "String_Id": "PBI_PREMIUM_PER_USER_FACULTY", - "GUID": "060d8061-f606-4e69-a4e7-e8fff75ea1f5", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Power BI Premium Per User for Government", - "String_Id": "PBI_PREMIUM_PER_USER_GCC", - "GUID": "e53d92fc-778b-4a8b-83de-791240ebf88d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Power BI Premium Per User for Government", - "String_Id": "PBI_PREMIUM_PER_USER_GCC", - "GUID": "e53d92fc-778b-4a8b-83de-791240ebf88d", - "Service_Plan_Name": "BI_AZURE_P3_GOV", - "Service_Plan_Id": "32d15238-9a8c-46da-af3f-21fc5351d365", - "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User for Government" - }, - { - "Product_Display_Name": "Power BI Premium Per User for Government", - "String_Id": "PBI_PREMIUM_PER_USER_GCC", - "GUID": "e53d92fc-778b-4a8b-83de-791240ebf88d", - "Service_Plan_Name": "BI_AZURE_P_2_GOV", - "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76", - "Service_Plans_Included_Friendly_Names": "Power BI Pro for Government" - }, - { - "Product_Display_Name": "Power BI Pro", - "String_Id": "POWER_BI_PRO", - "GUID": "f8a1db68-be16-40ed-86d5-cb42ce701560", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Pro", - "String_Id": "POWER_BI_PRO", - "GUID": "f8a1db68-be16-40ed-86d5-cb42ce701560", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Power BI Pro CE", - "String_Id": "POWER_BI_PRO_CE", - "GUID": "420af87e-8177-4146-a780-3786adaffbca", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Pro CE", - "String_Id": "POWER_BI_PRO_CE", - "GUID": "420af87e-8177-4146-a780-3786adaffbca", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Power BI Pro Dept", - "String_Id": "POWER_BI_PRO_DEPT", - "GUID": "3a6a908c-09c5-406a-8170-8ebb63c42882", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Pro Dept", - "String_Id": "POWER_BI_PRO_DEPT", - "GUID": "3a6a908c-09c5-406a-8170-8ebb63c42882", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Power BI Pro for Faculty", - "String_Id": "POWER_BI_PRO_FACULTY", - "GUID": "de5f128b-46d7-4cfc-b915-a89ba060ea56", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Pro for Faculty", - "String_Id": "POWER_BI_PRO_FACULTY", - "GUID": "de5f128b-46d7-4cfc-b915-a89ba060ea56", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Power BI Pro for GCC", - "String_Id": "POWERBI_PRO_GOV", - "GUID": "f0612879-44ea-47fb-baf0-3d76d9235576", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Power BI Pro for GCC", - "String_Id": "POWERBI_PRO_GOV", - "GUID": "f0612879-44ea-47fb-baf0-3d76d9235576", - "Service_Plan_Name": "BI_AZURE_P_2_GOV", - "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76", - "Service_Plans_Included_Friendly_Names": "Power BI Pro for Government" - }, - { - "Product_Display_Name": "Power BI Premium EM2", - "String_Id": "PBI_PREMIUM_EM2_ADDON", - "GUID": "8ecbd3c1-b108-437c-a859-e3c125e3f83f", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Premium EM2", - "String_Id": "PBI_PREMIUM_EM2_ADDON", - "GUID": "8ecbd3c1-b108-437c-a859-e3c125e3f83f", - "Service_Plan_Name": "PBI_PREMIUM_EM2_ADDON", - "Service_Plan_Id": "4e29abd1-ba96-44c0-8a72-e24e4fe9956e", - "Service_Plans_Included_Friendly_Names": "Power BI Premium EM2" - }, - { - "Product_Display_Name": "Power BI Premium EM1", - "String_Id": "PBI_PREMIUM_EM1_ADDON", - "GUID": "bc757c42-5622-4583-a483-a9e537fcb71c", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION PBI_PREMIUM_EM1_ADDON", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Premium EM1", - "String_Id": "PBI_PREMIUM_EM1_ADDON", - "GUID": "bc757c42-5622-4583-a483-a9e537fcb71c", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION PBI_PREMIUM_EM1_ADDON", - "Service_Plan_Id": "a64b30ba-f310-4065-b444-2670ef146db0", - "Service_Plans_Included_Friendly_Names": "Power BI Premium EM1" - }, - { - "Product_Display_Name": "Power Pages authenticated users T1 100 users/per site/month capacity pack", - "String_Id": "Power_Pages_authenticated_users_T1_100_users/per_site/month_capacity_pack", - "GUID": "debc9e58-f2d7-412c-a0b6-575608564228", - "Service_Plan_Name": "PowerPages_Authenticated_User", - "Service_Plan_Id": "0d3366f3-266e-4117-b422-7cabbc165e7c", - "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity" - }, - { - "Product_Display_Name": "Power Pages authenticated users T1 100 users/per site/month capacity pack", - "String_Id": "Power_Pages_authenticated_users_T1_100_users/per_site/month_capacity_pack", - "GUID": "debc9e58-f2d7-412c-a0b6-575608564228", - "Service_Plan_Name": "PowerPages_Authenticated_User_GCCH", - "Service_Plan_Id": "18e74ca2-b5f0-4802-9a8b-00d2ff1e8322", - "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity GCCH" - }, - { - "Product_Display_Name": "Power Pages authenticated users T1 100 users/per site/month capacity pack_GCC", - "String_Id": "Power_Pages_authenticated_users_T1_100_users/per_site/month_capacity_pack_GCC", - "GUID": "27cb5f12-2e3f-4997-a649-45298673e6a1", - "Service_Plan_Name": "DV_PowerPages_Authenticated_User", - "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", - "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" - }, - { - "Product_Display_Name": "Power Pages authenticated users T1 100 users/per site/month capacity pack_GCC", - "String_Id": "Power_Pages_authenticated_users_T1_100_users/per_site/month_capacity_pack_GCC", - "GUID": "27cb5f12-2e3f-4997-a649-45298673e6a1", - "Service_Plan_Name": "PowerPages_Authenticated_User_GCC", - "Service_Plan_Id": "cdf787bd-1546-48d2-9e93-b21f9ea7067a", - "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity GCC" - }, - { - "Product_Display_Name": "Power Pages authenticated users T1 100 users/per site/month capacity pack_USGOV_DOD", - "String_Id": "Power_Pages_authenticated_users_T1_100_users/per_site/month_capacity_pack_USGOV_DOD", - "GUID": "b54f012e-69e1-43b1-87d0-666def064940", - "Service_Plan_Name": "DV_PowerPages_Authenticated_User", - "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", - "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" - }, - { - "Product_Display_Name": "Power Pages authenticated users T1 100 users/per site/month capacity pack_USGOV_DOD", - "String_Id": "Power_Pages_authenticated_users_T1_100_users/per_site/month_capacity_pack_USGOV_DOD", - "GUID": "b54f012e-69e1-43b1-87d0-666def064940", - "Service_Plan_Name": "PowerPages_Authenticated_User_DoD", - "Service_Plan_Id": "03300fea-7a88-45a6-b5bd-29653803c591", - "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity DoD" - }, - { - "Product_Display_Name": "Power Pages authenticated users T1 100 users/per site/month capacity pack_USGOV_GCCHIGH", - "String_Id": "Power_Pages_authenticated_users_T1_100_users/per_site/month_capacity_pack_USGOV_GCCHIGH", - "GUID": "978ec396-f930-4ee1-85f3-e1d82e8f73a4", - "Service_Plan_Name": "DV_PowerPages_Authenticated_User", - "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", - "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" - }, - { - "Product_Display_Name": "Power Pages authenticated users T1 100 users/per site/month capacity pack_USGOV_GCCHIGH", - "String_Id": "Power_Pages_authenticated_users_T1_100_users/per_site/month_capacity_pack_USGOV_GCCHIGH", - "GUID": "978ec396-f930-4ee1-85f3-e1d82e8f73a4", - "Service_Plan_Name": "PowerPages_Authenticated_User_GCCH", - "Service_Plan_Id": "18e74ca2-b5f0-4802-9a8b-00d2ff1e8322", - "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity GCCH" - }, - { - "Product_Display_Name": "Power Pages authenticated users T1 100 users/per site/month capacity pack_USGOV_GCCHIGH", - "String_Id": "Power_Pages_authenticated_users_T1_100_users/per_site/month_capacity_pack_USGOV_GCCHIGH", - "GUID": "978ec396-f930-4ee1-85f3-e1d82e8f73a4", - "Service_Plan_Name": "PowerPages_Authenticated_Users_GCCH", - "Service_Plan_Id": "5410f688-68f2-47a5-9b8f-7466194a806a", - "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site mthly capacity GCCH New" - }, - { - "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack", - "String_Id": "Power_Pages_authenticated_users_T2_min_100_units_100_users/per_site/month_capacity_pack", - "GUID": "6fe1e61a-91e5-40d7-a547-0d2dcc81bce8", - "Service_Plan_Name": "DV_PowerPages_Authenticated_User", - "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", - "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" - }, - { - "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack", - "String_Id": "Power_Pages_authenticated_users_T2_min_100_units_100_users/per_site/month_capacity_pack", - "GUID": "6fe1e61a-91e5-40d7-a547-0d2dcc81bce8", - "Service_Plan_Name": "PowerPages_Authenticated_User", - "Service_Plan_Id": "0d3366f3-266e-4117-b422-7cabbc165e7c", - "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity" - }, - { - "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack", - "String_Id": "Power_Pages_authenticated_users_T2_min_100_units_100_users/per_site/month_capacity_pack", - "GUID": "6fe1e61a-91e5-40d7-a547-0d2dcc81bce8", - "Service_Plan_Name": "PowerPages_Authenticated_User_GCCH", - "Service_Plan_Id": "18e74ca2-b5f0-4802-9a8b-00d2ff1e8322", - "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity GCCH" - }, - { - "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack_GCC", - "String_Id": "Power_Pages_authenticated_users_T2_min_100_units_100_users/per_site/month_capacity_pack_GCC", - "GUID": "5f43d48c-dd3d-4dd8-a059-70c2f040f979", - "Service_Plan_Name": "DV_PowerPages_Authenticated_User", - "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", - "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" - }, - { - "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack_GCC", - "String_Id": "Power_Pages_authenticated_users_T2_min_100_units_100_users/per_site/month_capacity_pack_GCC", - "GUID": "5f43d48c-dd3d-4dd8-a059-70c2f040f979", - "Service_Plan_Name": "PowerPages_Authenticated_User_GCC", - "Service_Plan_Id": "cdf787bd-1546-48d2-9e93-b21f9ea7067a", - "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity GCC" - }, - { - "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack_USGOV_DOD", - "String_Id": "Power_Pages_authenticated_users_T2_min_100_units_100_users/per_site/month_capacity_pack_USGOV_DOD", - "GUID": "f3d55e2d-4367-44fa-952e-83d0b5dd53fc", - "Service_Plan_Name": "DV_PowerPages_Authenticated_User", - "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", - "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" - }, - { - "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack_USGOV_DOD", - "String_Id": "Power_Pages_authenticated_users_T2_min_100_units_100_users/per_site/month_capacity_pack_USGOV_DOD", - "GUID": "f3d55e2d-4367-44fa-952e-83d0b5dd53fc", - "Service_Plan_Name": "PowerPages_Authenticated_User_DoD", - "Service_Plan_Id": "03300fea-7a88-45a6-b5bd-29653803c591", - "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity DoD" - }, - { - "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack_USGOV_GCCHIGH", - "String_Id": "Power_Pages_authenticated_users_T2_min_100_units_100_users/per_site/month_capacity_pack_USGOV_GCCHIGH", - "GUID": "7cae5432-61bb-48c3-b75c-831394ec13a0", - "Service_Plan_Name": "DV_PowerPages_Authenticated_User", - "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", - "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" - }, - { - "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack_USGOV_GCCHIGH", - "String_Id": "Power_Pages_authenticated_users_T2_min_100_units_100_users/per_site/month_capacity_pack_USGOV_GCCHIGH", - "GUID": "7cae5432-61bb-48c3-b75c-831394ec13a0", - "Service_Plan_Name": "PowerPages_Authenticated_User_GCCH", - "Service_Plan_Id": "18e74ca2-b5f0-4802-9a8b-00d2ff1e8322", - "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity GCCH" - }, - { - "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack_USGOV_GCCHIGH", - "String_Id": "Power_Pages_authenticated_users_T2_min_100_units_100_users/per_site/month_capacity_pack_USGOV_GCCHIGH", - "GUID": "7cae5432-61bb-48c3-b75c-831394ec13a0", - "Service_Plan_Name": "PowerPages_Authenticated_Users_GCCH", - "Service_Plan_Id": "5410f688-68f2-47a5-9b8f-7466194a806a", - "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site mthly capacity GCCH New" - }, - { - "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack CN_CN", - "String_Id": "Power Pages authenticated users T2_CN_CN", - "GUID": "7d2bb54a-a870-41c2-98d1-1f3b5b523275", - "Service_Plan_Name": "DV_PowerPages_Authenticated_User", - "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", - "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" - }, - { - "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack CN_CN", - "String_Id": "Power Pages authenticated users T2_CN_CN", - "GUID": "7d2bb54a-a870-41c2-98d1-1f3b5b523275", - "Service_Plan_Name": "PowerPages_Authenticated_User_CN", - "Service_Plan_Id": "967d9574-a076-4bb7-ab89-f41f64bc142e", - "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity China" - }, - { - "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack CN_CN", - "String_Id": "Power Pages authenticated users T3_CN_CN", - "GUID": "2cfd692f-a352-4fa8-b960-e3ad0c9b1178", - "Service_Plan_Name": "DV_PowerPages_Authenticated_User", - "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", - "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" - }, - { - "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack CN_CN", - "String_Id": "Power Pages authenticated users T3_CN_CN", - "GUID": "2cfd692f-a352-4fa8-b960-e3ad0c9b1178", - "Service_Plan_Name": "PowerPages_Authenticated_User_CN", - "Service_Plan_Id": "967d9574-a076-4bb7-ab89-f41f64bc142e", - "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity China" - }, - { - "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack", - "String_Id": "Power_Pages_authenticated_users_T3_min_1,000_units_100_users/per_site/month_capacity_pack", - "GUID": "878b8bbd-3cd0-4b44-9a56-3406741e65e0", - "Service_Plan_Name": "DV_PowerPages_Authenticated_User", - "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", - "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" - }, - { - "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack", - "String_Id": "Power_Pages_authenticated_users_T3_min_1,000_units_100_users/per_site/month_capacity_pack", - "GUID": "878b8bbd-3cd0-4b44-9a56-3406741e65e0", - "Service_Plan_Name": "PowerPages_Authenticated_User", - "Service_Plan_Id": "0d3366f3-266e-4117-b422-7cabbc165e7c", - "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity" - }, - { - "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack", - "String_Id": "Power_Pages_authenticated_users_T3_min_1,000_units_100_users/per_site/month_capacity_pack", - "GUID": "878b8bbd-3cd0-4b44-9a56-3406741e65e0", - "Service_Plan_Name": "PowerPages_Authenticated_User_GCCH", - "Service_Plan_Id": "18e74ca2-b5f0-4802-9a8b-00d2ff1e8322", - "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity GCCH" - }, - { - "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack_GCC", - "String_Id": "Power_Pages_authenticated_users_T3_min_1,000_units_100_users/per_site/month_capacity_pack_GCC", - "GUID": "53265c61-c78c-4223-ab30-422da0c97fbb", - "Service_Plan_Name": "DV_PowerPages_Authenticated_User", - "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", - "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" - }, - { - "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack_GCC", - "String_Id": "Power_Pages_authenticated_users_T3_min_1,000_units_100_users/per_site/month_capacity_pack_GCC", - "GUID": "53265c61-c78c-4223-ab30-422da0c97fbb", - "Service_Plan_Name": "PowerPages_Authenticated_User_GCC", - "Service_Plan_Id": "cdf787bd-1546-48d2-9e93-b21f9ea7067a", - "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity GCC" - }, - { - "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack_USGOV_DOD", - "String_Id": "Power_Pages_authenticated_users_T3_min_1,000_units_100_users/per_site/month_capacity_pack_USGOV_DOD", - "GUID": "398d37b5-8deb-48db-8f7f-703eb2fb7c72", - "Service_Plan_Name": "DV_PowerPages_Authenticated_User", - "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", - "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" - }, - { - "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack_USGOV_DOD", - "String_Id": "Power_Pages_authenticated_users_T3_min_1,000_units_100_users/per_site/month_capacity_pack_USGOV_DOD", - "GUID": "398d37b5-8deb-48db-8f7f-703eb2fb7c72", - "Service_Plan_Name": "PowerPages_Authenticated_User_DoD", - "Service_Plan_Id": "03300fea-7a88-45a6-b5bd-29653803c591", - "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity DoD" - }, - { - "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack_USGOV_GCCHIGH", - "String_Id": "Power_Pages_authenticated_users_T3_min_1,000_units_100_users/per_site/month_capacity_pack_USGOV_GCCHIGH", - "GUID": "01d46c34-3525-47d5-bd1a-5f19979938a0", - "Service_Plan_Name": "DV_PowerPages_Authenticated_User", - "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", - "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" - }, - { - "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack_USGOV_GCCHIGH", - "String_Id": "Power_Pages_authenticated_users_T3_min_1,000_units_100_users/per_site/month_capacity_pack_USGOV_GCCHIGH", - "GUID": "01d46c34-3525-47d5-bd1a-5f19979938a0", - "Service_Plan_Name": "PowerPages_Authenticated_User_GCCH", - "Service_Plan_Id": "18e74ca2-b5f0-4802-9a8b-00d2ff1e8322", - "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity GCCH" - }, - { - "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack_USGOV_GCCHIGH", - "String_Id": "Power_Pages_authenticated_users_T3_min_1,000_units_100_users/per_site/month_capacity_pack_USGOV_GCCHIGH", - "GUID": "01d46c34-3525-47d5-bd1a-5f19979938a0", - "Service_Plan_Name": "PowerPages_Authenticated_Users_GCCH", - "Service_Plan_Id": "5410f688-68f2-47a5-9b8f-7466194a806a", - "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site mthly capacity GCCH New" - }, - { - "Product_Display_Name": "Power Pages vTrial for Makers", - "String_Id": "Power_Pages_vTrial_for_Makers", - "GUID": "3f9f06f5-3c31-472c-985f-62d9c10ec167", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Pages vTrial for Makers", - "String_Id": "Power_Pages_vTrial_for_Makers", - "GUID": "3f9f06f5-3c31-472c-985f-62d9c10ec167", - "Service_Plan_Name": "DYN365_CDS_VIRAL", - "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Power Pages vTrial for Makers", - "String_Id": "Power_Pages_vTrial_for_Makers", - "GUID": "3f9f06f5-3c31-472c-985f-62d9c10ec167", - "Service_Plan_Name": "POWER_PAGES_VTRIAL", - "Service_Plan_Id": "6817d093-2d30-4249-8bd6-774f01efa78c", - "Service_Plans_Included_Friendly_Names": "Power Pages vTrial for Makers" - }, - { - "Product_Display_Name": "Power Virtual Agent", - "String_Id": "VIRTUAL_AGENT_BASE", - "GUID": "e4e55366-9635-46f4-a907-fc8c3b5ec81f", - "Service_Plan_Name": "CDS_VIRTUAL_AGENT_BASE", - "Service_Plan_Id": "0a0a23fa-fea1-4195-bb89-b4789cb12f7f", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Virtual Agent Base" - }, - { - "Product_Display_Name": "Power Virtual Agent", - "String_Id": "VIRTUAL_AGENT_BASE", - "GUID": "e4e55366-9635-46f4-a907-fc8c3b5ec81f", - "Service_Plan_Name": "FLOW_VIRTUAL_AGENT_BASE", - "Service_Plan_Id": "4b81a949-69a1-4409-ad34-9791a6ec88aa", - "Service_Plans_Included_Friendly_Names": "Power Automate for Virtual Agent" - }, - { - "Product_Display_Name": "Power Virtual Agent", - "String_Id": "VIRTUAL_AGENT_BASE", - "GUID": "e4e55366-9635-46f4-a907-fc8c3b5ec81f", - "Service_Plan_Name": "VIRTUAL_AGENT_BASE", - "Service_Plan_Id": "f6934f16-83d3-4f3b-ad27-c6e9c187b260", - "Service_Plans_Included_Friendly_Names": "Virtual Agent Base" - }, - { - "Product_Display_Name": "Power Virtual Agent for GCC", - "String_Id": "VIRTUAL_AGENT_BASE_GCC", - "GUID": "9900a3e2-6660-4c52-9074-60c949991389", - "Service_Plan_Name": "CDS_Virtual_Agent_Base_Gov", - "Service_Plan_Id": "e4d0b25d-e440-4ee9-aac4-1d5a5db9f3ef", - "Service_Plans_Included_Friendly_Names": "Dataverse for Virtual Agent Base for GCC" - }, - { - "Product_Display_Name": "Power Virtual Agent for GCC", - "String_Id": "VIRTUAL_AGENT_BASE_GCC", - "GUID": "9900a3e2-6660-4c52-9074-60c949991389", - "Service_Plan_Name": "FLOW_Virtual_Agent_Base_Gov", - "Service_Plan_Id": "f9f6db16-ace6-4838-b11c-892ee75e810a", - "Service_Plans_Included_Friendly_Names": "Power Automate for Virtual Agent for GCC" - }, - { - "Product_Display_Name": "Power Virtual Agent for GCC", - "String_Id": "VIRTUAL_AGENT_BASE_GCC", - "GUID": "9900a3e2-6660-4c52-9074-60c949991389", - "Service_Plan_Name": "Virtual_Agent_Base_GCC", - "Service_Plan_Id": "e425b9f6-1543-45a0-8efb-f8fdaf18cba1", - "Service_Plans_Included_Friendly_Names": "Virtual Agent Base for GCC" - }, - { - "Product_Display_Name": "Power Virtual Agent User License", - "String_Id": "VIRTUAL_AGENT_USL", - "GUID": "4b74a65c-8b4a-4fc8-9f6b-5177ed11ddfa", - "Service_Plan_Name": "CDS_VIRTUAL_AGENT_USL", - "Service_Plan_Id": "cb867b3c-7f38-4d0d-99ce-e29cd69812c8", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Power Virtual Agent User License", - "String_Id": "VIRTUAL_AGENT_USL", - "GUID": "4b74a65c-8b4a-4fc8-9f6b-5177ed11ddfa", - "Service_Plan_Name": "FLOW_VIRTUAL_AGENT_USL", - "Service_Plan_Id": "82f141c9-2e87-4f43-8cb2-12d2701dc6b3", - "Service_Plans_Included_Friendly_Names": "Power Automate for Virtual Agent" - }, - { - "Product_Display_Name": "Power Virtual Agent User License", - "String_Id": "VIRTUAL_AGENT_USL", - "GUID": "4b74a65c-8b4a-4fc8-9f6b-5177ed11ddfa", - "Service_Plan_Name": "VIRTUAL_AGENT_USL", - "Service_Plan_Id": "1263586c-59a4-4ad0-85e1-d50bc7149501", - "Service_Plans_Included_Friendly_Names": "Virtual Agent" - }, - { - "Product_Display_Name": "Power Virtual Agent User License for GCC", - "String_Id": "VIRTUAL_AGENT_USL_GCC", - "GUID": "f1de227b-f1bd-4959-bd80-b80547095e6d", - "Service_Plan_Name": "CDS_Virtual_Agent_Usl_GCC", - "Service_Plan_Id": "95df1203-fee7-4726-b7e1-8037a8e899eb", - "Service_Plans_Included_Friendly_Names": "Dataverse for Virtual Agent USL for GCC" - }, - { - "Product_Display_Name": "Power Virtual Agent User License for GCC", - "String_Id": "VIRTUAL_AGENT_USL_GCC", - "GUID": "f1de227b-f1bd-4959-bd80-b80547095e6d", - "Service_Plan_Name": "Flow_Virtual_Agent_Usl_Gov", - "Service_Plan_Id": "0b939472-1861-45f1-ab6d-208f359c05cd", - "Service_Plans_Included_Friendly_Names": "Flow for Virtual Agent for GCC" - }, - { - "Product_Display_Name": "Power Virtual Agent User License for GCC", - "String_Id": "VIRTUAL_AGENT_USL_GCC", - "GUID": "f1de227b-f1bd-4959-bd80-b80547095e6d", - "Service_Plan_Name": "FLOW_Virtual_Agent_Base_Gov", - "Service_Plan_Id": "f9f6db16-ace6-4838-b11c-892ee75e810a", - "Service_Plans_Included_Friendly_Names": "Power Automate for Virtual Agent for GCC" - }, - { - "Product_Display_Name": "Power Virtual Agent User License for GCC", - "String_Id": "VIRTUAL_AGENT_USL_GCC", - "GUID": "f1de227b-f1bd-4959-bd80-b80547095e6d", - "Service_Plan_Name": "Power_Virtual_Agent_Usl_GCC", - "Service_Plan_Id": "0bdd5466-65c3-470a-9fa6-f679b48286b0", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agent USL for GCC" - }, - { - "Product_Display_Name": "Power Virtual Agents Viral Trial", - "String_Id": "CCIBOTS_PRIVPREV_VIRAL", - "GUID": "606b54a9-78d8-4298-ad8b-df6ef4481c80", - "Service_Plan_Name": "DYN365_CDS_CCI_BOTS", - "Service_Plan_Id": "cf7034ed-348f-42eb-8bbd-dddeea43ee81", - "Service_Plans_Included_Friendly_Names": "Common Data Service for CCI Bots" - }, - { - "Product_Display_Name": "Power Virtual Agents Viral Trial", - "String_Id": "CCIBOTS_PRIVPREV_VIRAL", - "GUID": "606b54a9-78d8-4298-ad8b-df6ef4481c80", - "Service_Plan_Name": "CCIBOTS_PRIVPREV_VIRAL", - "Service_Plan_Id": "ce312d15-8fdf-44c0-9974-a25a177125ee", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Customer Service Virtual Agents Viral" - }, - { - "Product_Display_Name": "Power Virtual Agents Viral Trial", - "String_Id": "CCIBOTS_PRIVPREV_VIRAL", - "GUID": "606b54a9-78d8-4298-ad8b-df6ef4481c80", - "Service_Plan_Name": "FLOW_CCI_BOTS", - "Service_Plan_Id": "5d798708-6473-48ad-9776-3acc301c40af", - "Service_Plans_Included_Friendly_Names": "Flow for CCI Bots" - }, - { - "Product_Display_Name": "Privacy Management – risk", - "String_Id": "PRIVACY_MANAGEMENT_RISK", - "GUID": "e42bc969-759a-4820-9283-6b73085b68e6", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Privacy Management – risk", - "String_Id": "PRIVACY_MANAGEMENT_RISK", - "GUID": "e42bc969-759a-4820-9283-6b73085b68e6", - "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK", - "Service_Plan_Id": "f281fb1f-99a7-46ab-9edb-ffd74e260ed3", - "Service_Plans_Included_Friendly_Names": "Priva - Risk" - }, - { - "Product_Display_Name": "Privacy Management – risk", - "String_Id": "PRIVACY_MANAGEMENT_RISK", - "GUID": "e42bc969-759a-4820-9283-6b73085b68e6", - "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK_EXCHANGE", - "Service_Plan_Id": "ebb17a6e-6002-4f65-acb0-d386480cebc1", - "Service_Plans_Included_Friendly_Names": "Priva - Risk (Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - risk for EDU", - "String_Id": "PRIVACY_MANAGEMENT_RISK_EDU", - "GUID": "dcdbaae7-d8c9-40cb-8bb1-62737b9e5a86", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Privacy Management - risk for EDU", - "String_Id": "PRIVACY_MANAGEMENT_RISK_EDU", - "GUID": "dcdbaae7-d8c9-40cb-8bb1-62737b9e5a86", - "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK", - "Service_Plan_Id": "f281fb1f-99a7-46ab-9edb-ffd74e260ed3", - "Service_Plans_Included_Friendly_Names": "Priva - Risk" - }, - { - "Product_Display_Name": "Privacy Management - risk for EDU", - "String_Id": "PRIVACY_MANAGEMENT_RISK_EDU", - "GUID": "dcdbaae7-d8c9-40cb-8bb1-62737b9e5a86", - "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK_EXCHANGE", - "Service_Plan_Id": "ebb17a6e-6002-4f65-acb0-d386480cebc1", - "Service_Plans_Included_Friendly_Names": "Priva - Risk (Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - risk GCC", - "String_Id": "PRIVACY_MANAGEMENT_RISK_GCC", - "GUID": "046f7d3b-9595-4685-a2e8-a2832d2b26aa", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Privacy Management - risk GCC", - "String_Id": "PRIVACY_MANAGEMENT_RISK_GCC", - "GUID": "046f7d3b-9595-4685-a2e8-a2832d2b26aa", - "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK", - "Service_Plan_Id": "f281fb1f-99a7-46ab-9edb-ffd74e260ed3", - "Service_Plans_Included_Friendly_Names": "Priva - Risk" - }, - { - "Product_Display_Name": "Privacy Management - risk GCC", - "String_Id": "PRIVACY_MANAGEMENT_RISK_GCC", - "GUID": "046f7d3b-9595-4685-a2e8-a2832d2b26aa", - "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK_EXCHANGE", - "Service_Plan_Id": "ebb17a6e-6002-4f65-acb0-d386480cebc1", - "Service_Plans_Included_Friendly_Names": "Priva - Risk (Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - risk_USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_DOD", - "GUID": "83b30692-0d09-435c-a455-2ab220d504b9", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Privacy Management - risk_USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_DOD", - "GUID": "83b30692-0d09-435c-a455-2ab220d504b9", - "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK", - "Service_Plan_Id": "f281fb1f-99a7-46ab-9edb-ffd74e260ed3", - "Service_Plans_Included_Friendly_Names": "Priva - Risk" - }, - { - "Product_Display_Name": "Privacy Management - risk_USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_DOD", - "GUID": "83b30692-0d09-435c-a455-2ab220d504b9", - "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK_EXCHANGE", - "Service_Plan_Id": "ebb17a6e-6002-4f65-acb0-d386480cebc1", - "Service_Plans_Included_Friendly_Names": "Priva - Risk (Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - risk_USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_GCCHIGH", - "GUID": "787d7e75-29ca-4b90-a3a9-0b780b35367c", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Privacy Management - risk_USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_GCCHIGH", - "GUID": "787d7e75-29ca-4b90-a3a9-0b780b35367c", - "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK", - "Service_Plan_Id": "f281fb1f-99a7-46ab-9edb-ffd74e260ed3", - "Service_Plans_Included_Friendly_Names": "Priva - Risk" - }, - { - "Product_Display_Name": "Privacy Management - risk_USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_GCCHIGH", - "GUID": "787d7e75-29ca-4b90-a3a9-0b780b35367c", - "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK_EXCHANGE", - "Service_Plan_Id": "ebb17a6e-6002-4f65-acb0-d386480cebc1", - "Service_Plans_Included_Friendly_Names": "Priva - Risk (Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2", - "GUID": "d9020d1c-94ef-495a-b6de-818cbbcaa3b8", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2", - "GUID": "d9020d1c-94ef-495a-b6de-818cbbcaa3b8", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_1", - "Service_Plan_Id": "93d24177-c2c3-408a-821d-3d25dfa66e7a", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2", - "GUID": "d9020d1c-94ef-495a-b6de-818cbbcaa3b8", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_1", - "Service_Plan_Id": "07a4098c-3f2d-427f-bfe2-5889ed75dd7b", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_EDU_V2", - "GUID": "475e3e81-3c75-4e07-95b6-2fed374536c8", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_EDU_V2", - "GUID": "475e3e81-3c75-4e07-95b6-2fed374536c8", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_1", - "Service_Plan_Id": "93d24177-c2c3-408a-821d-3d25dfa66e7a", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_EDU_V2", - "GUID": "475e3e81-3c75-4e07-95b6-2fed374536c8", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_1", - "Service_Plan_Id": "07a4098c-3f2d-427f-bfe2-5889ed75dd7b", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) GCC", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_GCC", - "GUID": "017fb6f8-00dd-4025-be2b-4eff067cae72", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) GCC", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_GCC", - "GUID": "017fb6f8-00dd-4025-be2b-4eff067cae72", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_1", - "Service_Plan_Id": "93d24177-c2c3-408a-821d-3d25dfa66e7a", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) GCC", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_GCC", - "GUID": "017fb6f8-00dd-4025-be2b-4eff067cae72", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_1", - "Service_Plan_Id": "07a4098c-3f2d-427f-bfe2-5889ed75dd7b", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_DOD", - "GUID": "d3c841f3-ea93-4da2-8040-6f2348d20954", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_DOD", - "GUID": "d3c841f3-ea93-4da2-8040-6f2348d20954", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_1", - "Service_Plan_Id": "93d24177-c2c3-408a-821d-3d25dfa66e7a", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_DOD", - "GUID": "d3c841f3-ea93-4da2-8040-6f2348d20954", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_1", - "Service_Plan_Id": "07a4098c-3f2d-427f-bfe2-5889ed75dd7b", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_GCCHIGH", - "GUID": "706d2425-6170-4818-ba08-2ad8f1d2d078", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_GCCHIGH", - "GUID": "706d2425-6170-4818-ba08-2ad8f1d2d078", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_1", - "Service_Plan_Id": "93d24177-c2c3-408a-821d-3d25dfa66e7a", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_GCCHIGH", - "GUID": "706d2425-6170-4818-ba08-2ad8f1d2d078", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_1", - "Service_Plan_Id": "07a4098c-3f2d-427f-bfe2-5889ed75dd7b", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2", - "GUID": "78ea43ac-9e5d-474f-8537-4abb82dafe27", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2", - "GUID": "78ea43ac-9e5d-474f-8537-4abb82dafe27", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_10", - "Service_Plan_Id": "f0241705-7b44-4401-a6b6-7055062b5b03", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2", - "GUID": "78ea43ac-9e5d-474f-8537-4abb82dafe27", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_10", - "Service_Plan_Id": "74853901-d7a9-428e-895d-f4c8687a9f0b", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_EDU_V2", - "GUID": "e001d9f1-5047-4ebf-8927-148530491f83", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_EDU_V2", - "GUID": "e001d9f1-5047-4ebf-8927-148530491f83", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_10", - "Service_Plan_Id": "f0241705-7b44-4401-a6b6-7055062b5b03", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_EDU_V2", - "GUID": "e001d9f1-5047-4ebf-8927-148530491f83", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_10", - "Service_Plan_Id": "74853901-d7a9-428e-895d-f4c8687a9f0b", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) GCC", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_GCC", - "GUID": "a056b037-1fa0-4133-a583-d05cff47d551", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) GCC", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_GCC", - "GUID": "a056b037-1fa0-4133-a583-d05cff47d551", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_10", - "Service_Plan_Id": "f0241705-7b44-4401-a6b6-7055062b5b03", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) GCC", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_GCC", - "GUID": "a056b037-1fa0-4133-a583-d05cff47d551", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_10", - "Service_Plan_Id": "74853901-d7a9-428e-895d-f4c8687a9f0b", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_DOD", - "GUID": "ab28dfa1-853a-4f54-9315-f5146975ac9a", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_DOD", - "GUID": "ab28dfa1-853a-4f54-9315-f5146975ac9a", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_10", - "Service_Plan_Id": "f0241705-7b44-4401-a6b6-7055062b5b03", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_DOD", - "GUID": "ab28dfa1-853a-4f54-9315-f5146975ac9a", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_10", - "Service_Plan_Id": "74853901-d7a9-428e-895d-f4c8687a9f0b", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_GCCHIGH", - "GUID": "f6aa3b3d-62f4-4c1d-a44f-0550f40f729c", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_GCCHIGH", - "GUID": "f6aa3b3d-62f4-4c1d-a44f-0550f40f729c", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_10", - "Service_Plan_Id": "f0241705-7b44-4401-a6b6-7055062b5b03", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_GCCHIGH", - "GUID": "f6aa3b3d-62f4-4c1d-a44f-0550f40f729c", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_10", - "Service_Plan_Id": "74853901-d7a9-428e-895d-f4c8687a9f0b", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (50)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50", - "GUID": "c416b349-a83c-48cb-9529-c420841dedd6", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (50)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50", - "GUID": "c416b349-a83c-48cb-9529-c420841dedd6", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR", - "Service_Plan_Id": "8bbd1fea-6dc6-4aef-8abc-79af22d746e4", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (50)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50", - "GUID": "c416b349-a83c-48cb-9529-c420841dedd6", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE", - "Service_Plan_Id": "7ca7f875-98db-4458-ab1b-47503826dd73", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (50)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_V2", - "GUID": "f6c82f13-9554-4da1-bed3-c024cc906e02", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (50)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_V2", - "GUID": "f6c82f13-9554-4da1-bed3-c024cc906e02", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR", - "Service_Plan_Id": "8bbd1fea-6dc6-4aef-8abc-79af22d746e4", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (50)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_V2", - "GUID": "f6c82f13-9554-4da1-bed3-c024cc906e02", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE", - "Service_Plan_Id": "7ca7f875-98db-4458-ab1b-47503826dd73", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (50) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_EDU_V2", - "GUID": "ed45d397-7d61-4110-acc0-95674917bb14", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (50) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_EDU_V2", - "GUID": "ed45d397-7d61-4110-acc0-95674917bb14", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR", - "Service_Plan_Id": "8bbd1fea-6dc6-4aef-8abc-79af22d746e4", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (50) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_EDU_V2", - "GUID": "ed45d397-7d61-4110-acc0-95674917bb14", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE", - "Service_Plan_Id": "7ca7f875-98db-4458-ab1b-47503826dd73", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2", - "GUID": "cf4c6c3b-f863-4940-97e8-1d25e912f4c4", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2", - "GUID": "cf4c6c3b-f863-4940-97e8-1d25e912f4c4", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_100", - "Service_Plan_Id": "5c221cec-2c39-435b-a1e2-7cdd7fac5913", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2", - "GUID": "cf4c6c3b-f863-4940-97e8-1d25e912f4c4", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_100", - "Service_Plan_Id": "500f440d-167e-4030-a3a7-8cd35421fbd8", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_EDU_V2", - "GUID": "9b85b4f0-92d9-4c3d-b230-041520cb1046", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_EDU_V2", - "GUID": "9b85b4f0-92d9-4c3d-b230-041520cb1046", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_100", - "Service_Plan_Id": "5c221cec-2c39-435b-a1e2-7cdd7fac5913", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_EDU_V2", - "GUID": "9b85b4f0-92d9-4c3d-b230-041520cb1046", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_100", - "Service_Plan_Id": "500f440d-167e-4030-a3a7-8cd35421fbd8", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) GCC", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_GCC", - "GUID": "91bbc479-4c2c-4210-9c88-e5b468c35b83", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) GCC", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_GCC", - "GUID": "91bbc479-4c2c-4210-9c88-e5b468c35b83", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_100", - "Service_Plan_Id": "5c221cec-2c39-435b-a1e2-7cdd7fac5913", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) GCC", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_GCC", - "GUID": "91bbc479-4c2c-4210-9c88-e5b468c35b83", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_100", - "Service_Plan_Id": "500f440d-167e-4030-a3a7-8cd35421fbd8", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_DOD", - "GUID": "ba6e69d5-ba2e-47a7-b081-66c1b8e7e7d4", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_DOD", - "GUID": "ba6e69d5-ba2e-47a7-b081-66c1b8e7e7d4", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_100", - "Service_Plan_Id": "5c221cec-2c39-435b-a1e2-7cdd7fac5913", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_DOD", - "GUID": "ba6e69d5-ba2e-47a7-b081-66c1b8e7e7d4", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_100", - "Service_Plan_Id": "500f440d-167e-4030-a3a7-8cd35421fbd8", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_GCCHIGH", - "GUID": "cee36ce4-cc31-481f-8cab-02765d3e441f", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_GCCHIGH", - "GUID": "cee36ce4-cc31-481f-8cab-02765d3e441f", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_100", - "Service_Plan_Id": "5c221cec-2c39-435b-a1e2-7cdd7fac5913", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_GCCHIGH", - "GUID": "cee36ce4-cc31-481f-8cab-02765d3e441f", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_100", - "Service_Plan_Id": "500f440d-167e-4030-a3a7-8cd35421fbd8", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100)" - }, - { - "Product_Display_Name": "Project for Office 365", - "String_Id": "PROJECTCLIENT", - "GUID": "a10d5e58-74da-4312-95c8-76be4e5b75a0", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE DESKTOP CLIENT" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Project Online Essentials for Faculty", - "String_Id": "PROJECTESSENTIALS_FACULTY", - "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Online Essentials for Faculty", - "String_Id": "PROJECTESSENTIALS_FACULTY", - "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Project Online Essentials for Faculty", - "String_Id": "PROJECTESSENTIALS_FACULTY", - "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Project Online Essentials for Faculty", - "String_Id": "PROJECTESSENTIALS_FACULTY", - "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Project Online Essentials for Faculty", - "String_Id": "PROJECTESSENTIALS_FACULTY", - "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Project Online Essentials for Faculty", - "String_Id": "PROJECTESSENTIALS_FACULTY", - "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Project Online Essentials for GCC", - "String_Id": "PROJECTESSENTIALS_GOV", - "GUID": "ca1a159a-f09e-42b8-bb82-cb6420f54c8e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Project Online Essentials for GCC", - "String_Id": "PROJECTESSENTIALS_GOV", - "GUID": "ca1a159a-f09e-42b8-bb82-cb6420f54c8e", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Project Online Essentials for GCC", - "String_Id": "PROJECTESSENTIALS_GOV", - "GUID": "ca1a159a-f09e-42b8-bb82-cb6420f54c8e", - "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", - "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" - }, - { - "Product_Display_Name": "Project Online Essentials for GCC", - "String_Id": "PROJECTESSENTIALS_GOV", - "GUID": "ca1a159a-f09e-42b8-bb82-cb6420f54c8e", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Project Online Premium", - "String_Id": "PROJECTPREMIUM", - "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE DESKTOP CLIENT" - }, - { - "Product_Display_Name": "Project Online Premium", - "String_Id": "PROJECTPREMIUM", - "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT_PROJECT" - }, - { - "Product_Display_Name": "Project Online Premium", - "String_Id": "PROJECTPREMIUM", - "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Project Online Premium", - "String_Id": "PROJECTPREMIUM", - "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "Project Online Premium Without Project Client", - "String_Id": "PROJECTONLINE_PLAN_1", - "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "Project Online Premium Without Project Client", - "String_Id": "PROJECTONLINE_PLAN_1", - "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT_PROJECT" - }, - { - "Product_Display_Name": "Project Online Premium Without Project Client", - "String_Id": "PROJECTONLINE_PLAN_1", - "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Project Online Premium Without Project Client", - "String_Id": "PROJECTONLINE_PLAN_1", - "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "Project Online Premium Without Project Client", - "String_Id": "PROJECTONLINE_PLAN_1", - "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "Project Online With Project for Office 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "Project Online With Project for Office 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE DESKTOP CLIENT" - }, - { - "Product_Display_Name": "Project Online With Project for Office 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT_PROJECT" - }, - { - "Product_Display_Name": "Project Online With Project for Office 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Project Online With Project for Office 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "Project Online With Project for Office 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "Project Plan 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "DYN365_CDS_FOR_PROJECT_P1", - "Service_Plan_Id": "a6f677b3-62a6-4644-93e7-2a85d240845e", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR PROJECT P1" - }, - { - "Product_Display_Name": "Project Plan 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Project Plan 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "Power_Automate_For_Project_P1", - "Service_Plan_Id": "00283e6b-2bd8-440f-a2d5-87358e4c89a1", - "Service_Plans_Included_Friendly_Names": "POWER AUTOMATE FOR PROJECT P1" - }, - { - "Product_Display_Name": "Project Plan 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS" - }, - { - "Product_Display_Name": "Project Plan 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "PROJECT_P1", - "Service_Plan_Id": "4a12c688-56c6-461a-87b1-30d6f32136f9", - "Service_Plans_Included_Friendly_Names": "PROJECT P1" - }, - { - "Product_Display_Name": "Project Plan 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "DYN365_CDS_FOR_PROJECT_P1", - "Service_Plan_Id": "a6f677b3-62a6-4644-93e7-2a85d240845e", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Project P1" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "Power_Automate_For_Project_P1", - "Service_Plan_Id": "00283e6b-2bd8-440f-a2d5-87358e4c89a1", - "Service_Plans_Included_Friendly_Names": "Power Automate for Project P1" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "PROJECT_P1", - "Service_Plan_Id": "4a12c688-56c6-461a-87b1-30d6f32136f9", - "Service_Plans_Included_Friendly_Names": "Project P1" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT STANDARD" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "DYN365_CDS_PROJECT", - "Service_Plan_Id": "50554c47-71d9-49fd-bc54-42a2765c555c", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Project" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "FLOW_FOR_PROJECT", - "Service_Plan_Id": "fa200448-008c-4acb-abd4-ea106ed2199d", - "Service_Plans_Included_Friendly_Names": "Flow for Project" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "Project Online Service" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "PROJECT_PROFESSIONAL", - "Service_Plan_Id": "818523f5-016b-4355-9be8-ed6944946ea7", - "Service_Plans_Included_Friendly_Names": "Project P3" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "DYN365_CDS_PROJECT", - "Service_Plan_Id": "50554c47-71d9-49fd-bc54-42a2765c555c", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Project" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "FLOW_FOR_PROJECT", - "Service_Plan_Id": "fa200448-008c-4acb-abd4-ea106ed2199d", - "Service_Plans_Included_Friendly_Names": "Flow for Project" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "Project Online Service" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "PROJECT_PROFESSIONAL", - "Service_Plan_Id": "818523f5-016b-4355-9be8-ed6944946ea7", - "Service_Plans_Included_Friendly_Names": "Project P3" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Project Plan 3 for Faculty", - "String_Id": "PROJECTPROFESSIONAL_FACULTY", - "GUID": "46974aed-363e-423c-9e6a-951037cec495", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Plan 3 for Faculty", - "String_Id": "PROJECTPROFESSIONAL_FACULTY", - "GUID": "46974aed-363e-423c-9e6a-951037cec495", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Project Plan 3 for Faculty", - "String_Id": "PROJECTPROFESSIONAL_FACULTY", - "GUID": "46974aed-363e-423c-9e6a-951037cec495", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" - }, - { - "Product_Display_Name": "Project Plan 3 for Faculty", - "String_Id": "PROJECTPROFESSIONAL_FACULTY", - "GUID": "46974aed-363e-423c-9e6a-951037cec495", - "Service_Plan_Name": "SHAREPOINT_PROJECT_EDU", - "Service_Plan_Id": "664a2fed-6c7a-468e-af35-d61740f0ec90", - "Service_Plans_Included_Friendly_Names": "Project Online Service for Education" - }, - { - "Product_Display_Name": "Project Plan 3 for Faculty", - "String_Id": "PROJECTPROFESSIONAL_FACULTY", - "GUID": "46974aed-363e-423c-9e6a-951037cec495", - "Service_Plan_Name": "PROJECT_PROFESSIONAL_FACULTY", - "Service_Plan_Id": "22572403-045f-432b-a660-af949c0a77b5", - "Service_Plans_Included_Friendly_Names": "Project P3 for Faculty" - }, - { - "Product_Display_Name": "Project Plan 3 for Faculty", - "String_Id": "PROJECTPROFESSIONAL_FACULTY", - "GUID": "46974aed-363e-423c-9e6a-951037cec495", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Project Plan 3 for Faculty", - "String_Id": "PROJECTPROFESSIONAL_FACULTY", - "GUID": "46974aed-363e-423c-9e6a-951037cec495", - "Service_Plan_Name": "DYN365_CDS_PROJECT", - "Service_Plan_Id": "50554c47-71d9-49fd-bc54-42a2765c555c", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Project" - }, - { - "Product_Display_Name": "Project Plan 3 for Faculty", - "String_Id": "PROJECTPROFESSIONAL_FACULTY", - "GUID": "46974aed-363e-423c-9e6a-951037cec495", - "Service_Plan_Name": "FLOW_FOR_PROJECT", - "Service_Plan_Id": "fa200448-008c-4acb-abd4-ea106ed2199d", - "Service_Plans_Included_Friendly_Names": "Power Automate for Project" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC", - "String_Id": "PROJECTPROFESSIONAL_GOV", - "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", - "Service_Plan_Name": "DYN365_CDS_PROJECT_GCC", - "Service_Plan_Id": "83837d9c-c21a-46a0-873e-d834c94015d6", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Project for GCC" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC", - "String_Id": "PROJECTPROFESSIONAL_GOV", - "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC", - "String_Id": "PROJECTPROFESSIONAL_GOV", - "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION_GOV", - "Service_Plan_Id": "45c6831b-ad74-4c7f-bd03-7c2b3fa39067", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC", - "String_Id": "PROJECTPROFESSIONAL_GOV", - "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", - "Service_Plan_Name": "SHAREPOINT_PROJECT_GOV", - "Service_Plan_Id": "e57afa78-1f19-4542-ba13-b32cd4d8f472", - "Service_Plans_Included_Friendly_Names": "Project Online Service for Government" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC", - "String_Id": "PROJECTPROFESSIONAL_GOV", - "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", - "Service_Plan_Name": "PROJECT_PROFESSIONAL_FOR_GOV", - "Service_Plan_Id": "49c7bc16-7004-4df6-8cd5-4ec48b7e9ea0", - "Service_Plans_Included_Friendly_Names": "Project P3 for GOV" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC", - "String_Id": "PROJECTPROFESSIONAL_GOV", - "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC", - "String_Id": "PROJECTPROFESSIONAL_GOV", - "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", - "Service_Plan_Name": "FLOW_FOR_PROJECT_GOV", - "Service_Plan_Id": "16687e20-06f9-4577-9cc0-34a2704260fc", - "Service_Plans_Included_Friendly_Names": "Data integration for Project with Power Automate for GCC" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC TEST", - "String_Id": "Project_Professional_TEST_GCC", - "GUID": "5d505572-203c-4b83-aa9b-dab50fb46277", - "Service_Plan_Name": "DYN365_CDS_PROJECT_GCC", - "Service_Plan_Id": "83837d9c-c21a-46a0-873e-d834c94015d6", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Project for GCC" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC TEST", - "String_Id": "Project_Professional_TEST_GCC", - "GUID": "5d505572-203c-4b83-aa9b-dab50fb46277", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC TEST", - "String_Id": "Project_Professional_TEST_GCC", - "GUID": "5d505572-203c-4b83-aa9b-dab50fb46277", - "Service_Plan_Name": "MCOMEETBASIC_GOV", - "Service_Plan_Id": "986d454b-9027-4d9f-880b-f1b68f920cc4", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Audio Conferencing with dial-out to select geographies for GCC" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC TEST", - "String_Id": "Project_Professional_TEST_GCC", - "GUID": "5d505572-203c-4b83-aa9b-dab50fb46277", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC TEST", - "String_Id": "Project_Professional_TEST_GCC", - "GUID": "5d505572-203c-4b83-aa9b-dab50fb46277", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION_GOV", - "Service_Plan_Id": "45c6831b-ad74-4c7f-bd03-7c2b3fa39067", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC TEST", - "String_Id": "Project_Professional_TEST_GCC", - "GUID": "5d505572-203c-4b83-aa9b-dab50fb46277", - "Service_Plan_Name": "SHAREPOINT_PROJECT_GOV", - "Service_Plan_Id": "e57afa78-1f19-4542-ba13-b32cd4d8f472", - "Service_Plans_Included_Friendly_Names": "Project Online Service for Government" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC TEST", - "String_Id": "Project_Professional_TEST_GCC", - "GUID": "5d505572-203c-4b83-aa9b-dab50fb46277", - "Service_Plan_Name": "PROJECT_PROFESSIONAL_FOR_GOV", - "Service_Plan_Id": "49c7bc16-7004-4df6-8cd5-4ec48b7e9ea0", - "Service_Plans_Included_Friendly_Names": "Project P3 for GOV" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC TEST", - "String_Id": "Project_Professional_TEST_GCC", - "GUID": "5d505572-203c-4b83-aa9b-dab50fb46277", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC TEST", - "String_Id": "Project_Professional_TEST_GCC", - "GUID": "5d505572-203c-4b83-aa9b-dab50fb46277", - "Service_Plan_Name": "FLOW_FOR_PROJECT_GOV", - "Service_Plan_Id": "16687e20-06f9-4577-9cc0-34a2704260fc", - "Service_Plans_Included_Friendly_Names": "Data integration for Project with Power Automate for GCC" - }, - { - "Product_Display_Name": "Project Plan 3_USGOV_GCCHIGH", - "String_Id": "PROJECTPROFESSIONAL_USGOV_GCCHIGH", - "GUID": "64758d81-92b7-4855-bcac-06617becb3e8", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Plan 3_USGOV_GCCHIGH", - "String_Id": "PROJECTPROFESSIONAL_USGOV_GCCHIGH", - "GUID": "64758d81-92b7-4855-bcac-06617becb3e8", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Project Plan 3_USGOV_GCCHIGH", - "String_Id": "PROJECTPROFESSIONAL_USGOV_GCCHIGH", - "GUID": "64758d81-92b7-4855-bcac-06617becb3e8", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" - }, - { - "Product_Display_Name": "Project Plan 3_USGOV_GCCHIGH", - "String_Id": "PROJECTPROFESSIONAL_USGOV_GCCHIGH", - "GUID": "64758d81-92b7-4855-bcac-06617becb3e8", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "Project Online Service" - }, - { - "Product_Display_Name": "Project Plan 3_USGOV_GCCHIGH", - "String_Id": "PROJECTPROFESSIONAL_USGOV_GCCHIGH", - "GUID": "64758d81-92b7-4855-bcac-06617becb3e8", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Project Plan 3_USGOV_GCCHIGH", - "String_Id": "PROJECTPROFESSIONAL_USGOV_GCCHIGH", - "GUID": "64758d81-92b7-4855-bcac-06617becb3e8", - "Service_Plan_Name": "DYN365_CDS_PROJECT", - "Service_Plan_Id": "50554c47-71d9-49fd-bc54-42a2765c555c", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Project" - }, - { - "Product_Display_Name": "Project Plan 5 for faculty", - "String_Id": "PROJECTPREMIUM_FACULTY", - "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Plan 5 for faculty", - "String_Id": "PROJECTPREMIUM_FACULTY", - "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Project Plan 5 for faculty", - "String_Id": "PROJECTPREMIUM_FACULTY", - "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" - }, - { - "Product_Display_Name": "Project Plan 5 for faculty", - "String_Id": "PROJECTPREMIUM_FACULTY", - "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", - "Service_Plan_Name": "SHAREPOINT_PROJECT_EDU", - "Service_Plan_Id": "664a2fed-6c7a-468e-af35-d61740f0ec90", - "Service_Plans_Included_Friendly_Names": "Project Online Service for Education" - }, - { - "Product_Display_Name": "Project Plan 5 for faculty", - "String_Id": "PROJECTPREMIUM_FACULTY", - "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", - "Service_Plan_Name": "PROJECT_PROFESSIONAL_FACULTY", - "Service_Plan_Id": "22572403-045f-432b-a660-af949c0a77b5", - "Service_Plans_Included_Friendly_Names": "Project P3 for Faculty" - }, - { - "Product_Display_Name": "Project Plan 5 for faculty", - "String_Id": "PROJECTPREMIUM_FACULTY", - "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Project Plan 5 for faculty", - "String_Id": "PROJECTPREMIUM_FACULTY", - "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Plan 5 for faculty", - "String_Id": "PROJECTPREMIUM_FACULTY", - "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office Online for Education" - }, - { - "Product_Display_Name": "Project Plan 5 for faculty", - "String_Id": "PROJECTPREMIUM_FACULTY", - "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "Project Client" - }, - { - "Product_Display_Name": "Project Plan 5 for faculty", - "String_Id": "PROJECTPREMIUM_FACULTY", - "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", - "Service_Plan_Name": "Project Online for Education", - "Service_Plan_Id": "664a2fed-6c7a-468e-af35-d61740f0ec90", - "Service_Plans_Included_Friendly_Names": "Project Online for Education" - }, - { - "Product_Display_Name": "Project Plan 5 for faculty", - "String_Id": "PROJECTPREMIUM_FACULTY", - "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" - }, - { - "Product_Display_Name": "Project Plan 5 for faculty", - "String_Id": "PROJECTPREMIUM_FACULTY", - "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", - "Service_Plan_Name": "DYN365_CDS_PROJECT", - "Service_Plan_Id": "50554c47-71d9-49fd-bc54-42a2765c555c", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Project" - }, - { - "Product_Display_Name": "Project Plan 5 for faculty", - "String_Id": "PROJECTPREMIUM_FACULTY", - "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", - "Service_Plan_Name": "FLOW_FOR_PROJECT", - "Service_Plan_Id": "fa200448-008c-4acb-abd4-ea106ed2199d", - "Service_Plans_Included_Friendly_Names": "Power Automate for Project" - }, - { - "Product_Display_Name": "Project Plan 5 for GCC", - "String_Id": "PROJECTPREMIUM_GOV", - "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", - "Service_Plan_Name": "DYN365_CDS_PROJECT_GCC", - "Service_Plan_Id": "83837d9c-c21a-46a0-873e-d834c94015d6", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Project for GCC" - }, - { - "Product_Display_Name": "Project Plan 5 for GCC", - "String_Id": "PROJECTPREMIUM_GOV", - "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Project Plan 5 for GCC", - "String_Id": "PROJECTPREMIUM_GOV", - "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Project Plan 5 for GCC", - "String_Id": "PROJECTPREMIUM_GOV", - "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION_GOV", - "Service_Plan_Id": "45c6831b-ad74-4c7f-bd03-7c2b3fa39067", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" - }, - { - "Product_Display_Name": "Project Plan 5 for GCC", - "String_Id": "PROJECTPREMIUM_GOV", - "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", - "Service_Plan_Name": "SHAREPOINT_PROJECT_GOV", - "Service_Plan_Id": "e57afa78-1f19-4542-ba13-b32cd4d8f472", - "Service_Plans_Included_Friendly_Names": "Project Online Service for Government" - }, - { - "Product_Display_Name": "Project Plan 5 for GCC", - "String_Id": "PROJECTPREMIUM_GOV", - "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", - "Service_Plan_Name": "PROJECT_PROFESSIONAL_FOR_GOV", - "Service_Plan_Id": "49c7bc16-7004-4df6-8cd5-4ec48b7e9ea0", - "Service_Plans_Included_Friendly_Names": "Project P3 for GOV" - }, - { - "Product_Display_Name": "Project Plan 5 for GCC", - "String_Id": "PROJECTPREMIUM_GOV", - "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Project Plan 5 for GCC", - "String_Id": "PROJECTPREMIUM_GOV", - "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", - "Service_Plan_Name": "FLOW_FOR_PROJECT_GOV", - "Service_Plan_Id": "16687e20-06f9-4577-9cc0-34a2704260fc", - "Service_Plans_Included_Friendly_Names": "Data integration for Project with Power Automate for GCC" - }, - { - "Product_Display_Name": "Project Plan 5 without Project Client for Faculty", - "String_Id": "PROJECTONLINE_PLAN_1_FACULTY", - "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Plan 5 without Project Client for Faculty", - "String_Id": "PROJECTONLINE_PLAN_1_FACULTY", - "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Project Plan 5 without Project Client for Faculty", - "String_Id": "PROJECTONLINE_PLAN_1_FACULTY", - "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Project Plan 5 without Project Client for Faculty", - "String_Id": "PROJECTONLINE_PLAN_1_FACULTY", - "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac", - "Service_Plan_Name": "SHAREPOINT_PROJECT_EDU", - "Service_Plan_Id": "664a2fed-6c7a-468e-af35-d61740f0ec90", - "Service_Plans_Included_Friendly_Names": "Project Online Service for Education" - }, - { - "Product_Display_Name": "Project Plan 5 without Project Client for Faculty", - "String_Id": "PROJECTONLINE_PLAN_1_FACULTY", - "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Project Plan 5 without Project Client for Faculty", - "String_Id": "PROJECTONLINE_PLAN_1_FACULTY", - "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Rights Management Adhoc", - "String_Id": "RIGHTSMANAGEMENT_ADHOC", - "GUID": "8c4ce438-32a7-4ac5-91a6-e22ae08d9c8b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Rights Management Adhoc", - "String_Id": "RIGHTSMANAGEMENT_ADHOC", - "GUID": "8c4ce438-32a7-4ac5-91a6-e22ae08d9c8b", - "Service_Plan_Name": "RMS_S_ADHOC", - "Service_Plan_Id": "7a39d7dd-e456-4e09-842a-0204ee08187b", - "Service_Plans_Included_Friendly_Names": "Rights Management Adhoc" - }, - { - "Product_Display_Name": "Rights Management Service Basic Content Protection", - "String_Id": "RMSBASIC", - "GUID": "093e8d14-a334-43d9-93e3-30589a8b47d0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Rights Management Service Basic Content Protection", - "String_Id": "RMSBASIC", - "GUID": "093e8d14-a334-43d9-93e3-30589a8b47d0", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Sensor Data Intelligence Additional Machines Add-in for Dynamics 365 Supply Chain Management", - "String_Id": "DYN365_IOT_INTELLIGENCE_ADDL_MACHINES", - "GUID": "08e18479-4483-4f70-8f17-6f92156d8ea9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Sensor Data Intelligence Additional Machines Add-in for Dynamics 365 Supply Chain Management", - "String_Id": "DYN365_IOT_INTELLIGENCE_ADDL_MACHINES", - "GUID": "08e18479-4483-4f70-8f17-6f92156d8ea9", - "Service_Plan_Name": "D365_IOTFORSCM_ADDITIONAL", - "Service_Plan_Id": "a5f38206-2f48-4d83-9957-525f4e75e9c0", - "Service_Plans_Included_Friendly_Names": "IoT Intelligence Add-in Additional Machines" - }, - { - "Product_Display_Name": "Sensor Data Intelligence Scenario Add-in for Dynamics 365 Supply Chain Management", - "String_Id": "DYN365_IOT_INTELLIGENCE_SCENARIO", - "GUID": "9ea4bdef-a20b-4668-b4a7-73e1f7696e0a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Sensor Data Intelligence Scenario Add-in for Dynamics 365 Supply Chain Management", - "String_Id": "DYN365_IOT_INTELLIGENCE_SCENARIO", - "GUID": "9ea4bdef-a20b-4668-b4a7-73e1f7696e0a", - "Service_Plan_Name": "D365_IOTFORSCM", - "Service_Plan_Id": "83dd9619-c7d5-44da-9250-dc4ee79fff7e", - "Service_Plans_Included_Friendly_Names": "Iot Intelligence Add-in for D365 Supply Chain Management" - }, - { - "Product_Display_Name": "SharePoint Online (Plan 1)", - "String_Id": "SHAREPOINTSTANDARD", - "GUID": "1fc08a02-8b3d-43b9-831e-f76859e04e1a", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "SharePoint Online (Plan 2)", - "String_Id": "SHAREPOINTENTERPRISE", - "GUID": "a9732ec9-17d9-494c-a51c-d6b45b384dcb", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "SharePoint Syntex", - "String_Id": "Intelligent_Content_Services", - "GUID": "f61d4aba-134f-44e9-a2a0-f81a5adb26e4", - "Service_Plan_Name": "CDS_O365_E5_KM", - "Service_Plan_Id": "3069d530-e41b-421c-ad59-fb1001a23e11", - "Service_Plans_Included_Friendly_Names": "Common Data Service for SharePoint Syntex" - }, - { - "Product_Display_Name": "SharePoint Syntex", - "String_Id": "Intelligent_Content_Services", - "GUID": "f61d4aba-134f-44e9-a2a0-f81a5adb26e4", - "Service_Plan_Name": "Intelligent_Content_Services", - "Service_Plan_Id": "f00bd55e-1633-416e-97c0-03684e42bc42", - "Service_Plans_Included_Friendly_Names": "SharePoint Syntex" - }, - { - "Product_Display_Name": "SharePoint Syntex", - "String_Id": "Intelligent_Content_Services", - "GUID": "f61d4aba-134f-44e9-a2a0-f81a5adb26e4", - "Service_Plan_Name": "Intelligent_Content_Services_SPO_type", - "Service_Plan_Id": "fd2e7f90-1010-487e-a11b-d2b1ae9651fc", - "Service_Plans_Included_Friendly_Names": "SharePoint Syntex - SPO type" - }, - { - "Product_Display_Name": "Skype for Business Online (Plan 1)", - "String_Id": "MCOIMP", - "GUID": "b8b749f8-a4ef-4887-9539-c95b1eaa5db7", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "Skype for Business Online (Plan 2)", - "String_Id": "MCOSTANDARD", - "GUID": "d42c793f-6c78-4f43-92ca-e8f6a02b035f", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Skype for Business PSTN Domestic and International Calling", - "String_Id": "MCOPSTN2", - "GUID": "d3b4fe1f-9992-4930-8acb-ca6ec609365e", - "Service_Plan_Name": "MCOPSTN2", - "Service_Plan_Id": "5a10155d-f5c1-411a-a8ec-e99aae125390", - "Service_Plans_Included_Friendly_Names": "DOMESTIC AND INTERNATIONAL CALLING PLAN" - }, - { - "Product_Display_Name": "Skype for Business PSTN Domestic Calling", - "String_Id": "MCOPSTN1", - "GUID": "0dab259f-bf13-4952-b7f8-7db8f131b28d", - "Service_Plan_Name": "MCOPSTN1", - "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8", - "Service_Plans_Included_Friendly_Names": "DOMESTIC CALLING PLAN" - }, - { - "Product_Display_Name": "Skype for Business PSTN Domestic Calling (120 Minutes)", - "String_Id": "MCOPSTN5", - "GUID": "54a152dc-90de-4996-93d2-bc47e670fc06", - "Service_Plan_Name": "MCOPSTN5", - "Service_Plan_Id": "54a152dc-90de-4996-93d2-bc47e670fc06", - "Service_Plans_Included_Friendly_Names": "DOMESTIC CALLING PLAN" - }, - { - "Product_Display_Name": "Skype for Business PSTN Usage Calling Plan", - "String_Id": "MCOPSTNPP", - "GUID": "06b48c5f-01d9-4b18-9015-03b52040f51a", - "Service_Plan_Name": "MCOPSTN3", - "Service_Plan_Id": "6b340437-d6f9-4dc5-8cc2-99163f7f83d6", - "Service_Plans_Included_Friendly_Names": "MCOPSTN3" - }, - { - "Product_Display_Name": "Teams Phone Mobile", - "String_Id": "Operator_Connect_Mobile", - "GUID": "b84d58c9-0a0d-46cf-8a4b-d9f23c1674d5", - "Service_Plan_Name": "MCOFMC1", - "Service_Plan_Id": "cb22fbd7-ed7d-4786-a27a-e4cd617b69c0", - "Service_Plans_Included_Friendly_Names": "Teams Phone Mobile" - }, - { - "Product_Display_Name": "Teams Phone with Calling Plan", - "String_Id": "MCOTEAMS_ESSENTIALS", - "GUID": "ae2343d1-0999-43f6-ae18-d816516f6e78", - "Service_Plan_Name": "MCOPSTN1", - "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan" - }, - { - "Product_Display_Name": "Teams Phone with Calling Plan", - "String_Id": "MCOTEAMS_ESSENTIALS", - "GUID": "ae2343d1-0999-43f6-ae18-d816516f6e78", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Teams Premium (for Departments)", - "String_Id": "Teams_Premium_(for_Departments)", - "GUID": "52ea0e27-ae73-4983-a08f-13561ebdb823", - "Service_Plan_Name": "MICROSOFT_ECDN", - "Service_Plan_Id": "85704d55-2e73-47ee-93b4-4b8ea14db92b", - "Service_Plans_Included_Friendly_Names": "Microsoft eCDN" - }, - { - "Product_Display_Name": "Teams Premium (for Departments)", - "String_Id": "Teams_Premium_(for_Departments)", - "GUID": "52ea0e27-ae73-4983-a08f-13561ebdb823", - "Service_Plan_Name": "MESH_IMMERSIVE", - "Service_Plan_Id": "acbca54f-c771-423b-a476-6d7a98cbbcec", - "Service_Plans_Included_Friendly_Names": "Microsoft Mesh" - }, - { - "Product_Display_Name": "Teams Premium (for Departments)", - "String_Id": "Teams_Premium_(for_Departments)", - "GUID": "52ea0e27-ae73-4983-a08f-13561ebdb823", - "Service_Plan_Name": "TEAMSPRO_MGMT", - "Service_Plan_Id": "0504111f-feb8-4a3c-992a-70280f9a2869", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Intelligent" - }, - { - "Product_Display_Name": "Teams Premium (for Departments)", - "String_Id": "Teams_Premium_(for_Departments)", - "GUID": "52ea0e27-ae73-4983-a08f-13561ebdb823", - "Service_Plan_Name": "TEAMSPRO_CUST", - "Service_Plan_Id": "cc8c0802-a325-43df-8cba-995d0c6cb373", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Personalized" - }, - { - "Product_Display_Name": "Teams Premium (for Departments)", - "String_Id": "Teams_Premium_(for_Departments)", - "GUID": "52ea0e27-ae73-4983-a08f-13561ebdb823", - "Service_Plan_Name": "TEAMSPRO_PROTECTION", - "Service_Plan_Id": "f8b44f54-18bb-46a3-9658-44ab58712968", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Secure" - }, - { - "Product_Display_Name": "Teams Premium (for Departments)", - "String_Id": "Teams_Premium_(for_Departments)", - "GUID": "52ea0e27-ae73-4983-a08f-13561ebdb823", - "Service_Plan_Name": "TEAMSPRO_VIRTUALAPPT", - "Service_Plan_Id": "9104f592-f2a7-4f77-904c-ca5a5715883f", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Virtual Appointment" - }, - { - "Product_Display_Name": "Teams Premium (for Departments)", - "String_Id": "Teams_Premium_(for_Departments)", - "GUID": "52ea0e27-ae73-4983-a08f-13561ebdb823", - "Service_Plan_Name": "MCO_VIRTUAL_APPT", - "Service_Plan_Id": "711413d0-b36e-4cd4-93db-0a50a4ab7ea3", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Virtual Appointments" - }, - { - "Product_Display_Name": "Teams Premium (for Departments)", - "String_Id": "Teams_Premium_(for_Departments)", - "GUID": "52ea0e27-ae73-4983-a08f-13561ebdb823", - "Service_Plan_Name": "TEAMSPRO_WEBINAR", - "Service_Plan_Id": "78b58230-ec7e-4309-913c-93a45cc4735b", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Webinar" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "MMR_P1", - "Service_Plan_Id": "bdaa59a3-74fd-4137-981a-31d4f84eb8a0", - "Service_Plans_Included_Friendly_Names": "Meeting Room Managed Services" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "TELSTRA Calling for O365", - "String_Id": "MCOPSTNEAU2", - "GUID": "de3312e1-c7b0-46e6-a7c3-a515ff90bc86", - "Service_Plan_Name": "MCOPSTNEAU", - "Service_Plan_Id": "7861360b-dc3b-4eba-a3fc-0d323a035746", - "Service_Plans_Included_Friendly_Names": "AUSTRALIA CALLING PLAN" - }, - { - "Product_Display_Name": "Universal Print", - "String_Id": "UNIVERSAL_PRINT", - "GUID": "9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Viva Learning", - "String_Id": "VIVA_LEARNING", - "GUID": "c9d442fc-21fb-4bd7-89e0-a710d74987f6", - "Service_Plan_Name": "VIVA_LEARNING_PREMIUM", - "Service_Plan_Id": "7162bd38-edae-4022-83a7-c5837f951759", - "Service_Plans_Included_Friendly_Names": "Viva Learning" - }, - { - "Product_Display_Name": "Universal Print", - "String_Id": "UNIVERSAL_PRINT", - "GUID": "9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Visio Plan 1", - "String_Id": "VISIO_PLAN1_DEPT", - "GUID": "ca7f3140-d88c-455b-9a1c-7f0679e31a76", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Visio Plan 1", - "String_Id": "VISIO_PLAN1_DEPT", - "GUID": "ca7f3140-d88c-455b-9a1c-7f0679e31a76", - "Service_Plan_Name": "ONEDRIVE_BASIC", - "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1", - "Service_Plans_Included_Friendly_Names": "OneDrive for business Basic" - }, - { - "Product_Display_Name": "Visio Plan 1", - "String_Id": "VISIO_PLAN1_DEPT", - "GUID": "ca7f3140-d88c-455b-9a1c-7f0679e31a76", - "Service_Plan_Name": "VISIOONLINE", - "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f", - "Service_Plans_Included_Friendly_Names": "Visio web app" - }, - { - "Product_Display_Name": "Visio Plan 2", - "String_Id": "VISIO_PLAN2_DEPT", - "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Visio Plan 2", - "String_Id": "VISIO_PLAN2_DEPT", - "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1", - "Service_Plan_Name": "ONEDRIVE_BASIC", - "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1", - "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Basic)" - }, - { - "Product_Display_Name": "Visio Plan 2", - "String_Id": "VISIO_PLAN2_DEPT", - "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1", - "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "663a804f-1c30-4ff0-9915-9db84f0d1cea", - "Service_Plans_Included_Friendly_Names": "Visio Desktop App" - }, - { - "Product_Display_Name": "Visio Plan 2", - "String_Id": "VISIO_PLAN2_DEPT", - "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1", - "Service_Plan_Name": "VISIOONLINE", - "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f", - "Service_Plans_Included_Friendly_Names": "Visio Web App" - }, - { - "Product_Display_Name": "Visio Plan 2_USGOV_GCCHIGH", - "String_Id": "VISIOCLIENT_USGOV_GCCHIGH", - "GUID": "80e52531-ad7f-44ea-abc3-28e389462f1b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Visio Plan 2_USGOV_GCCHIGH", - "String_Id": "VISIOCLIENT_USGOV_GCCHIGH", - "GUID": "80e52531-ad7f-44ea-abc3-28e389462f1b", - "Service_Plan_Name": "ONEDRIVE_BASIC", - "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1", - "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Basic)" - }, - { - "Product_Display_Name": "Visio Plan 2_USGOV_GCCHIGH", - "String_Id": "VISIOCLIENT_USGOV_GCCHIGH", - "GUID": "80e52531-ad7f-44ea-abc3-28e389462f1b", - "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "663a804f-1c30-4ff0-9915-9db84f0d1cea", - "Service_Plans_Included_Friendly_Names": "Visio Desktop App" - }, - { - "Product_Display_Name": "Visio Plan 2_USGOV_GCCHIGH", - "String_Id": "VISIOCLIENT_USGOV_GCCHIGH", - "GUID": "80e52531-ad7f-44ea-abc3-28e389462f1b", - "Service_Plan_Name": "VISIOONLINE", - "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f", - "Service_Plans_Included_Friendly_Names": "Visio Web App" - }, - { - "Product_Display_Name": "Visio Online Plan 1", - "String_Id": "VISIOONLINE_PLAN1", - "GUID": "4b244418-9658-4451-a2b8-b5e2b364e9bd", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Visio Online Plan 1", - "String_Id": "VISIOONLINE_PLAN1", - "GUID": "4b244418-9658-4451-a2b8-b5e2b364e9bd", - "Service_Plan_Name": "ONEDRIVE_BASIC", - "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1", - "Service_Plans_Included_Friendly_Names": "ONEDRIVE FOR BUSINESS BASIC" - }, - { - "Product_Display_Name": "Visio Online Plan 1", - "String_Id": "VISIOONLINE_PLAN1", - "GUID": "4b244418-9658-4451-a2b8-b5e2b364e9bd", - "Service_Plan_Name": "VISIOONLINE", - "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f", - "Service_Plans_Included_Friendly_Names": "VISIO WEB APP" - }, - { - "Product_Display_Name": "Visio Online Plan 2", - "String_Id": "VISIOCLIENT", - "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Visio Online Plan 2", - "String_Id": "VISIOCLIENT", - "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5", - "Service_Plan_Name": "ONEDRIVE_BASIC", - "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1", - "Service_Plans_Included_Friendly_Names": "ONEDRIVE FOR BUSINESS BASIC" - }, - { - "Product_Display_Name": "Visio Online Plan 2", - "String_Id": "VISIOCLIENT", - "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5", - "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "663a804f-1c30-4ff0-9915-9db84f0d1cea", - "Service_Plans_Included_Friendly_Names": "VISIO DESKTOP APP" - }, - { - "Product_Display_Name": "Visio Online Plan 2", - "String_Id": "VISIOCLIENT", - "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5", - "Service_Plan_Name": "VISIOONLINE", - "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f", - "Service_Plans_Included_Friendly_Names": "VISIO WEB APP" - }, - { - "Product_Display_Name": "Visio Plan 2 for GCC", - "String_Id": "VISIOCLIENT_GOV", - "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT" - }, - { - "Product_Display_Name": "Visio Plan 2 for GCC", - "String_Id": "VISIOCLIENT_GOV", - "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba", - "Service_Plan_Name": "ONEDRIVE_BASIC_GOV", - "Service_Plan_Id": "98709c2e-96b5-4244-95f5-a0ebe139fb8a", - "Service_Plans_Included_Friendly_Names": "ONEDRIVE FOR BUSINESS BASIC FOR GOVERNMENT" - }, - { - "Product_Display_Name": "Visio Plan 2 for GCC", - "String_Id": "VISIOCLIENT_GOV", - "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba", - "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION_GOV", - "Service_Plan_Id": "f85945f4-7a55-4009-bc39-6a5f14a8eac1", - "Service_Plans_Included_Friendly_Names": "VISIO DESKTOP APP FOR Government" - }, - { - "Product_Display_Name": "Visio Plan 2 for GCC", - "String_Id": "VISIOCLIENT_GOV", - "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba", - "Service_Plan_Name": "VISIOONLINE_GOV", - "Service_Plan_Id": "8a9ecb07-cfc0-48ab-866c-f83c4d911576", - "Service_Plans_Included_Friendly_Names": "VISIO WEB APP FOR GOVERNMENT" - }, - { - "Product_Display_Name": "Visio Plan 2 for Faculty", - "String_Id": "VISIOCLIENT_FACULTY", - "GUID": "bf95fd32-576a-4742-8d7a-6dc4940b9532", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Visio Plan 2 for Faculty", - "String_Id": "VISIOCLIENT_FACULTY", - "GUID": "bf95fd32-576a-4742-8d7a-6dc4940b9532", - "Service_Plan_Name": "ONEDRIVE_BASIC", - "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1", - "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Basic)" - }, - { - "Product_Display_Name": "Visio Plan 2 for Faculty", - "String_Id": "VISIOCLIENT_FACULTY", - "GUID": "bf95fd32-576a-4742-8d7a-6dc4940b9532", - "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "663a804f-1c30-4ff0-9915-9db84f0d1cea", - "Service_Plans_Included_Friendly_Names": "Visio Desktop App" - }, - { - "Product_Display_Name": "Visio Plan 2 for Faculty", - "String_Id": "VISIOCLIENT_FACULTY", - "GUID": "bf95fd32-576a-4742-8d7a-6dc4940b9532", - "Service_Plan_Name": "VISIOONLINE", - "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f", - "Service_Plans_Included_Friendly_Names": "Visio Web App" - }, - { - "Product_Display_Name": "Viva Goals User-led", - "String_Id": "Viva_Goals_User_led", - "GUID": "3a349c99-ffec-43d2-a2e8-6b97fcb71103", - "Service_Plan_Name": "Viva_Goals_Premium", - "Service_Plan_Id": "b44c6eaf-5c9f-478c-8f16-8cea26353bfb", - "Service_Plans_Included_Friendly_Names": "Viva Goals" - }, - { - "Product_Display_Name": "Viva Topics", - "String_Id": "TOPIC_EXPERIENCES", - "GUID": "4016f256-b063-4864-816e-d818aad600c9", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX_TOPICEXP", - "Service_Plan_Id": "b74d57b2-58e9-484a-9731-aeccbba954f0", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index (Viva Topics)" - }, - { - "Product_Display_Name": "Viva Topics", - "String_Id": "TOPIC_EXPERIENCES", - "GUID": "4016f256-b063-4864-816e-d818aad600c9", - "Service_Plan_Name": "CORTEX", - "Service_Plan_Id": "c815c93d-0759-4bb8-b857-bc921a71be83", - "Service_Plans_Included_Friendly_Names": "Viva Topics" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)", - "String_Id": "WIN_ENT_E5", - "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e", - "Service_Plan_Name": "DATAVERSE_FOR_POWERAUTOMATE_DESKTOP", - "Service_Plan_Id": "59231cdf-b40d-4534-a93e-14d0cd31d27e", - "Service_Plans_Included_Friendly_Names": "Dataverse for PAD" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)", - "String_Id": "WIN_ENT_E5", - "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)", - "String_Id": "WIN_ENT_E5", - "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)", - "String_Id": "WIN_ENT_E5", - "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e", - "Service_Plan_Name": "POWERAUTOMATE_DESKTOP_FOR_WIN", - "Service_Plan_Id": "2d589a15-b171-4e61-9b5f-31d15eeb2872", - "Service_Plans_Included_Friendly_Names": "PAD for Windows" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)", - "String_Id": "WIN_ENT_E5", - "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)", - "String_Id": "WIN_ENT_E5", - "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)", - "String_Id": "WIN_ENT_E5", - "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A3 for faculty", - "String_Id": "WIN10_ENT_A3_FAC", - "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A3 for faculty", - "String_Id": "WIN10_ENT_A3_FAC", - "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A3 for faculty", - "String_Id": "WIN10_ENT_A3_FAC", - "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A3 for faculty", - "String_Id": "WIN10_ENT_A3_FAC", - "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A3 for students", - "String_Id": "WIN10_ENT_A3_STU", - "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A3 for students", - "String_Id": "WIN10_ENT_A3_STU", - "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A3 for students", - "String_Id": "WIN10_ENT_A3_STU", - "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A3 for students", - "String_Id": "WIN10_ENT_A3_STU", - "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A5 for faculty", - "String_Id": "WIN10_ENT_A5_FAC", - "GUID": "7b1a89a9-5eb9-4cf8-9467-20c943f1122c", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A5 for faculty", - "String_Id": "WIN10_ENT_A5_FAC", - "GUID": "7b1a89a9-5eb9-4cf8-9467-20c943f1122c", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A5 for faculty", - "String_Id": "WIN10_ENT_A5_FAC", - "GUID": "7b1a89a9-5eb9-4cf8-9467-20c943f1122c", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A5 for faculty", - "String_Id": "WIN10_ENT_A5_FAC", - "GUID": "7b1a89a9-5eb9-4cf8-9467-20c943f1122c", - "Service_Plan_Name": "Virtualization Rights for Windows 10", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A5 for faculty", - "String_Id": "WIN10_ENT_A5_FAC", - "GUID": "7b1a89a9-5eb9-4cf8-9467-20c943f1122c", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3", - "String_Id": "WIN10_PRO_ENT_SUB", - "GUID": "cb10e6cd-9da4-4992-867b-67546b1db821", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "WINDOWS 10 ENTERPRISE" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3", - "String_Id": "WIN10_VDA_E3", - "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3", - "String_Id": "WIN10_VDA_E3", - "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "UNIVERSAL PRINT" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3", - "String_Id": "WIN10_VDA_E3", - "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "WINDOWS 10 ENTERPRISE (NEW)" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3", - "String_Id": "WIN10_VDA_E3", - "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "WINDOWS UPDATE FOR BUSINESS DEPLOYMENT SERVICE" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3", - "String_Id": "WIN10_VDA_E3", - "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5", - "String_Id": "WIN10_VDA_E5", - "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5", - "String_Id": "WIN10_VDA_E5", - "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender For Endpoint" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5", - "String_Id": "WIN10_VDA_E5", - "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5", - "String_Id": "WIN10_VDA_E5", - "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5", - "String_Id": "WIN10_VDA_E5", - "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5", - "String_Id": "WIN10_VDA_E5", - "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5 Commercial (GCC Compatible)", - "String_Id": "WINE5_GCC_COMPAT", - "GUID": "938fd547-d794-42a4-996c-1cc206619580", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5 Commercial (GCC Compatible)", - "String_Id": "WINE5_GCC_COMPAT", - "GUID": "938fd547-d794-42a4-996c-1cc206619580", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender For Endpoint" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5 Commercial (GCC Compatible)", - "String_Id": "WINE5_GCC_COMPAT", - "GUID": "938fd547-d794-42a4-996c-1cc206619580", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA", - "String_Id": "E3_VDA_only", - "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA", - "String_Id": "E3_VDA_only", - "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA", - "String_Id": "E3_VDA_only", - "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550", - "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA", - "String_Id": "E3_VDA_only", - "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA", - "String_Id": "E3_VDA_only", - "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA", - "String_Id": "E3_VDA_only", - "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550", - "Service_Plan_Name": "DATAVERSE_FOR_POWERAUTOMATE_DESKTOP", - "Service_Plan_Id": "59231cdf-b40d-4534-a93e-14d0cd31d27e", - "Service_Plans_Included_Friendly_Names": "Dataverse for PAD" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA", - "String_Id": "E3_VDA_only", - "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550", - "Service_Plan_Name": "POWERAUTOMATE_DESKTOP_FOR_WIN", - "Service_Plan_Id": "2d589a15-b171-4e61-9b5f-31d15eeb2872", - "Service_Plans_Included_Friendly_Names": "PAD for Windows" - }, - { - "Product_Display_Name": "Windows 365 Business 1 vCPU 2 GB 64 GB", - "String_Id": "CPC_B_1C_2RAM_64GB", - "GUID": "816eacd3-e1e3-46b3-83c8-1ffd37e053d9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 1 vCPU 2 GB 64 GB", - "String_Id": "CPC_B_1C_2RAM_64GB", - "GUID": "816eacd3-e1e3-46b3-83c8-1ffd37e053d9", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 1 vCPU 2 GB 64 GB", - "String_Id": "CPC_B_1C_2RAM_64GB", - "GUID": "816eacd3-e1e3-46b3-83c8-1ffd37e053d9", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 1 vCPU 2 GB 64 GB", - "String_Id": "CPC_B_1C_2RAM_64GB", - "GUID": "816eacd3-e1e3-46b3-83c8-1ffd37e053d9", - "Service_Plan_Name": "CPC_B_1C_2RAM_64GB", - "Service_Plan_Id": "3b98b912-1720-4a1e-9630-c9a41dbb61d8", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 1 vCPU 2 GB 64 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 128 GB", - "String_Id": "CPC_B_2C_4RAM_128GB", - "GUID": "135bee78-485b-4181-ad6e-40286e311850", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 128 GB", - "String_Id": "CPC_B_2C_4RAM_128GB", - "GUID": "135bee78-485b-4181-ad6e-40286e311850", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 128 GB", - "String_Id": "CPC_B_2C_4RAM_128GB", - "GUID": "135bee78-485b-4181-ad6e-40286e311850", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 128 GB", - "String_Id": "CPC_B_2C_4RAM_128GB", - "GUID": "135bee78-485b-4181-ad6e-40286e311850", - "Service_Plan_Name": "CPC_B_2C_4RAM_128GB", - "Service_Plan_Id": "1a13832e-cd79-497d-be76-24186f55c8b0", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU 4 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 256 GB", - "String_Id": "CPC_B_2C_4RAM_256GB", - "GUID": "805d57c3-a97d-4c12-a1d0-858ffe5015d0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 256 GB", - "String_Id": "CPC_B_2C_4RAM_256GB", - "GUID": "805d57c3-a97d-4c12-a1d0-858ffe5015d0", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 256 GB", - "String_Id": "CPC_B_2C_4RAM_256GB", - "GUID": "805d57c3-a97d-4c12-a1d0-858ffe5015d0", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 256 GB", - "String_Id": "CPC_B_2C_4RAM_256GB", - "GUID": "805d57c3-a97d-4c12-a1d0-858ffe5015d0", - "Service_Plan_Name": "CPC_B_2C_4RAM_256GB", - "Service_Plan_Id": "a0b1c075-51c9-4a42-b34c-308f3993bb7e", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU 4 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 64 GB", - "String_Id": "CPC_B_2C_4RAM_64GB", - "GUID": "42e6818f-8966-444b-b7ac-0027c83fa8b5", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 64 GB", - "String_Id": "CPC_B_2C_4RAM_64GB", - "GUID": "42e6818f-8966-444b-b7ac-0027c83fa8b5", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 64 GB", - "String_Id": "CPC_B_2C_4RAM_64GB", - "GUID": "42e6818f-8966-444b-b7ac-0027c83fa8b5", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 64 GB", - "String_Id": "CPC_B_2C_4RAM_64GB", - "GUID": "42e6818f-8966-444b-b7ac-0027c83fa8b5", - "Service_Plan_Name": "CPC_B_2C_4RAM_64GB", - "Service_Plan_Id": "a790cd6e-a153-4461-83c7-e127037830b6", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU 4 GB 64 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 128 GB", - "String_Id": "CPC_B_2C_8RAM_128GB", - "GUID": "71f21848-f89b-4aaa-a2dc-780c8e8aac5b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 128 GB", - "String_Id": "CPC_B_2C_8RAM_128GB", - "GUID": "71f21848-f89b-4aaa-a2dc-780c8e8aac5b", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 128 GB", - "String_Id": "CPC_B_2C_8RAM_128GB", - "GUID": "71f21848-f89b-4aaa-a2dc-780c8e8aac5b", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 128 GB", - "String_Id": "CPC_B_2C_8RAM_128GB", - "GUID": "71f21848-f89b-4aaa-a2dc-780c8e8aac5b", - "Service_Plan_Name": "CPC_SS_2", - "Service_Plan_Id": "9d2eed2c-b0c0-4a89-940c-bc303444a41b", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU, 8 GB, 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 256 GB", - "String_Id": "CPC_B_2C_8RAM_256GB", - "GUID": "750d9542-a2f8-41c7-8c81-311352173432", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 256 GB", - "String_Id": "CPC_B_2C_8RAM_256GB", - "GUID": "750d9542-a2f8-41c7-8c81-311352173432", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 256 GB", - "String_Id": "CPC_B_2C_8RAM_256GB", - "GUID": "750d9542-a2f8-41c7-8c81-311352173432", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 256 GB", - "String_Id": "CPC_B_2C_8RAM_256GB", - "GUID": "750d9542-a2f8-41c7-8c81-311352173432", - "Service_Plan_Name": "CPC_B_2C_8RAM_256GB", - "Service_Plan_Id": "1a3ef005-2ef6-434b-8be1-faa56c892854", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU 8 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB", - "String_Id": "CPC_B_4C_16RAM_128GB", - "GUID": "ad83ac17-4a5a-4ebb-adb2-079fb277e8b9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB", - "String_Id": "CPC_B_4C_16RAM_128GB", - "GUID": "ad83ac17-4a5a-4ebb-adb2-079fb277e8b9", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB", - "String_Id": "CPC_B_4C_16RAM_128GB", - "GUID": "ad83ac17-4a5a-4ebb-adb2-079fb277e8b9", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB", - "String_Id": "CPC_B_4C_16RAM_128GB", - "GUID": "ad83ac17-4a5a-4ebb-adb2-079fb277e8b9", - "Service_Plan_Name": "CPC_B_4C_16RAM_128GB", - "Service_Plan_Id": "1d4f75d3-a19b-49aa-88cb-f1ea1690b550", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 4 vCPU 16 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB (with Windows Hybrid Benefit)", - "String_Id": "CPC_B_4C_16RAM_128GB_WHB", - "GUID": "439ac253-bfbc-49c7-acc0-6b951407b5ef", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB (with Windows Hybrid Benefit)", - "String_Id": "CPC_B_4C_16RAM_128GB_WHB", - "GUID": "439ac253-bfbc-49c7-acc0-6b951407b5ef", - "Service_Plan_Name": "CPC_B_4C_16RAM_128GB", - "Service_Plan_Id": "1d4f75d3-a19b-49aa-88cb-f1ea1690b550", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 4 vCPU 16 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 256 GB", - "String_Id": "CPC_B_4C_16RAM_256GB", - "GUID": "b3891a9f-c7d9-463c-a2ec-0b2321bda6f9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 256 GB", - "String_Id": "CPC_B_4C_16RAM_256GB", - "GUID": "b3891a9f-c7d9-463c-a2ec-0b2321bda6f9", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 256 GB", - "String_Id": "CPC_B_4C_16RAM_256GB", - "GUID": "b3891a9f-c7d9-463c-a2ec-0b2321bda6f9", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 256 GB", - "String_Id": "CPC_B_4C_16RAM_256GB", - "GUID": "b3891a9f-c7d9-463c-a2ec-0b2321bda6f9", - "Service_Plan_Name": "CPC_B_4C_16RAM_256GB", - "Service_Plan_Id": "30f6e561-8805-41d0-80ce-f82698b72d7d", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 4 vCPU 16 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 512 GB", - "String_Id": "CPC_B_4C_16RAM_512GB", - "GUID": "1b3043ad-dfc6-427e-a2c0-5ca7a6c94a2b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 512 GB", - "String_Id": "CPC_B_4C_16RAM_512GB", - "GUID": "1b3043ad-dfc6-427e-a2c0-5ca7a6c94a2b", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 512 GB", - "String_Id": "CPC_B_4C_16RAM_512GB", - "GUID": "1b3043ad-dfc6-427e-a2c0-5ca7a6c94a2b", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 512 GB", - "String_Id": "CPC_B_4C_16RAM_512GB", - "GUID": "1b3043ad-dfc6-427e-a2c0-5ca7a6c94a2b", - "Service_Plan_Name": "CPC_B_4C_16RAM_512GB", - "Service_Plan_Id": "15499661-b229-4a1f-b0f9-bd5832ef7b3e", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 4 vCPU 16 GB 512 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 128 GB", - "String_Id": "CPC_B_8C_32RAM_128GB", - "GUID": "3cb45fab-ae53-4ff6-af40-24c1915ca07b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 128 GB", - "String_Id": "CPC_B_8C_32RAM_128GB", - "GUID": "3cb45fab-ae53-4ff6-af40-24c1915ca07b", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 128 GB", - "String_Id": "CPC_B_8C_32RAM_128GB", - "GUID": "3cb45fab-ae53-4ff6-af40-24c1915ca07b", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 128 GB", - "String_Id": "CPC_B_8C_32RAM_128GB", - "GUID": "3cb45fab-ae53-4ff6-af40-24c1915ca07b", - "Service_Plan_Name": "CPC_B_8C_32RAM_128GB", - "Service_Plan_Id": "648005fc-b330-4bd9-8af6-771f28958ac0", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 8 vCPU 32 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 256 GB", - "String_Id": "CPC_B_8C_32RAM_256GB", - "GUID": "fbc79df2-da01-4c17-8d88-17f8c9493d8f", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 256 GB", - "String_Id": "CPC_B_8C_32RAM_256GB", - "GUID": "fbc79df2-da01-4c17-8d88-17f8c9493d8f", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 256 GB", - "String_Id": "CPC_B_8C_32RAM_256GB", - "GUID": "fbc79df2-da01-4c17-8d88-17f8c9493d8f", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 256 GB", - "String_Id": "CPC_B_8C_32RAM_256GB", - "GUID": "fbc79df2-da01-4c17-8d88-17f8c9493d8f", - "Service_Plan_Name": "CPC_B_8C_32RAM_256GB", - "Service_Plan_Id": "d7a5113a-0276-4dc2-94f8-ca9f2c5ae078", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 8 vCPU 32 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 512 GB", - "String_Id": "CPC_B_8C_32RAM_512GB", - "GUID": "8ee402cd-e6a8-4b67-a411-54d1f37a2049", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 512 GB", - "String_Id": "CPC_B_8C_32RAM_512GB", - "GUID": "8ee402cd-e6a8-4b67-a411-54d1f37a2049", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 512 GB", - "String_Id": "CPC_B_8C_32RAM_512GB", - "GUID": "8ee402cd-e6a8-4b67-a411-54d1f37a2049", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 512 GB", - "String_Id": "CPC_B_8C_32RAM_512GB", - "GUID": "8ee402cd-e6a8-4b67-a411-54d1f37a2049", - "Service_Plan_Name": "CPC_B_8C_32RAM_512GB", - "Service_Plan_Id": "4229a0b4-7f34-4835-b068-6dc8d10be57c", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 8 vCPU 32 GB 512 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 512 GB", - "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_512_GB", - "GUID": "93d9955a-ec70-44d5-8faa-a194492390f7", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 512 GB", - "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_512_GB", - "GUID": "93d9955a-ec70-44d5-8faa-a194492390f7", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 512 GB", - "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_512_GB", - "GUID": "93d9955a-ec70-44d5-8faa-a194492390f7", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 512 GB", - "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_512_GB", - "GUID": "93d9955a-ec70-44d5-8faa-a194492390f7", - "Service_Plan_Name": "CPC_B_16C_64GB_512GB", - "Service_Plan_Id": "cbbedc49-52d5-4fd6-82ac-a5bc51634dc3", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 16 vCPU, 64 GB, 512 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 1 TB", - "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_1_TB", - "GUID": "24be3cd7-82ca-41a5-94a7-4903373cdcae", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 1 TB", - "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_1_TB", - "GUID": "24be3cd7-82ca-41a5-94a7-4903373cdcae", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 1 TB", - "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_1_TB", - "GUID": "24be3cd7-82ca-41a5-94a7-4903373cdcae", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 1 TB", - "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_1_TB", - "GUID": "24be3cd7-82ca-41a5-94a7-4903373cdcae", - "Service_Plan_Name": "CPC_B_16C_64GB_1TB", - "Service_Plan_Id": "37c961db-2cfd-4e13-b81e-b0059ce10e34", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 16 vCPU, 64 GB, 1 TB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 1 vCPU 2 GB 64 GB", - "String_Id": "CPC_E_1C_2GB_64GB", - "GUID": "0c278af4-c9c1-45de-9f4b-cd929e747a2c", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 1 vCPU 2 GB 64 GB", - "String_Id": "CPC_E_1C_2GB_64GB", - "GUID": "0c278af4-c9c1-45de-9f4b-cd929e747a2c", - "Service_Plan_Name": "CPC_E_1C_2GB_64GB", - "Service_Plan_Id": "86d70dbb-d4c6-4662-ba17-3014204cbb28", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 1 vCPU 2 GB 64 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 64 GB", - "String_Id": "CPC_E_2C_4GB_64GB", - "GUID": "7bb14422-3b90-4389-a7be-f1b745fc037f", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 64 GB", - "String_Id": "CPC_E_2C_4GB_64GB", - "GUID": "7bb14422-3b90-4389-a7be-f1b745fc037f", - "Service_Plan_Name": "CPC_E_2C_4GB_64GB", - "Service_Plan_Id": "23a25099-1b2f-4e07-84bd-b84606109438", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 4 GB 64 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB", - "String_Id": "CPC_E_2C_4GB_128GB", - "GUID": "226ca751-f0a4-4232-9be5-73c02a92555e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB", - "String_Id": "CPC_E_2C_4GB_128GB", - "GUID": "226ca751-f0a4-4232-9be5-73c02a92555e", - "Service_Plan_Name": "CPC_1", - "Service_Plan_Id": "545e3611-3af8-49a5-9a0a-b7867968f4b0", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB (Preview)", - "String_Id": "CPC_LVL_1", - "GUID": "bce09f38-1800-4a51-8d50-5486380ba84a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB (Preview)", - "String_Id": "CPC_LVL_1", - "GUID": "bce09f38-1800-4a51-8d50-5486380ba84a", - "Service_Plan_Name": "CPC_1", - "Service_Plan_Id": "545e3611-3af8-49a5-9a0a-b7867968f4b0", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 256 GB", - "String_Id": "CPC_E_2C_4GB_256GB", - "GUID": "5265a84e-8def-4fa2-ab4b-5dc278df5025", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 256 GB", - "String_Id": "CPC_E_2C_4GB_256GB", - "GUID": "5265a84e-8def-4fa2-ab4b-5dc278df5025", - "Service_Plan_Name": "CPC_E_2C_4GB_256GB", - "Service_Plan_Id": "0d143570-9b92-4f57-adb5-e4efcd23b3bb", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 4 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB", - "String_Id": "CPC_E_2C_8GB_128GB", - "GUID": "e2aebe6c-897d-480f-9d62-fff1381581f7", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB", - "String_Id": "CPC_E_2C_8GB_128GB", - "GUID": "e2aebe6c-897d-480f-9d62-fff1381581f7", - "Service_Plan_Name": "CPC_2", - "Service_Plan_Id": "3efff3fe-528a-4fc5-b1ba-845802cc764f", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB (Preview)", - "String_Id": "CPC_LVL_2", - "GUID": "461cb62c-6db7-41aa-bf3c-ce78236cdb9e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB (Preview)", - "String_Id": "CPC_LVL_2", - "GUID": "461cb62c-6db7-41aa-bf3c-ce78236cdb9e", - "Service_Plan_Name": "CPC_2", - "Service_Plan_Id": "3efff3fe-528a-4fc5-b1ba-845802cc764f", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 256 GB", - "String_Id": "CPC_E_2C_8GB_256GB", - "GUID": "1c79494f-e170-431f-a409-428f6053fa35", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 256 GB", - "String_Id": "CPC_E_2C_8GB_256GB", - "GUID": "1c79494f-e170-431f-a409-428f6053fa35", - "Service_Plan_Name": "CPC_E_2C_8GB_256GB", - "Service_Plan_Id": "d3468c8c-3545-4f44-a32f-b465934d2498", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 8 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 128 GB", - "String_Id": "CPC_E_4C_16GB_128GB", - "GUID": "d201f153-d3b2-4057-be2f-fe25c8983e6f", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 128 GB", - "String_Id": "CPC_E_4C_16GB_128GB", - "GUID": "d201f153-d3b2-4057-be2f-fe25c8983e6f", - "Service_Plan_Name": "CPC_E_4C_16GB_128GB", - "Service_Plan_Id": "2de9c682-ca3f-4f2b-b360-dfc4775db133", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 4 vCPU 16 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB", - "String_Id": "CPC_E_4C_16GB_256GB", - "GUID": "96d2951e-cb42-4481-9d6d-cad3baac177e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB", - "String_Id": "CPC_E_4C_16GB_256GB", - "GUID": "96d2951e-cb42-4481-9d6d-cad3baac177e", - "Service_Plan_Name": "CPC_E_4C_16GB_256GB", - "Service_Plan_Id": "9ecf691d-8b82-46cb-b254-cd061b2c02fb", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB (Preview)", - "String_Id": "CPC_LVL_3", - "GUID": "bbb4bf6e-3e12-4343-84a1-54d160c00f40", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB (Preview)", - "String_Id": "CPC_LVL_3", - "GUID": "bbb4bf6e-3e12-4343-84a1-54d160c00f40", - "Service_Plan_Name": "CPC_E_4C_16GB_256GB", - "Service_Plan_Id": "9ecf691d-8b82-46cb-b254-cd061b2c02fb", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 512 GB", - "String_Id": "CPC_E_4C_16GB_512GB", - "GUID": "0da63026-e422-4390-89e8-b14520d7e699", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 512 GB", - "String_Id": "CPC_E_4C_16GB_512GB", - "GUID": "0da63026-e422-4390-89e8-b14520d7e699", - "Service_Plan_Name": "CPC_E_4C_16GB_512GB", - "Service_Plan_Id": "3bba9856-7cf2-4396-904a-00de74fba3a4", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 4 vCPU 16 GB 512 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 128 GB", - "String_Id": "CPC_E_8C_32GB_128GB", - "GUID": "c97d00e4-0c4c-4ec2-a016-9448c65de986", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 128 GB", - "String_Id": "CPC_E_8C_32GB_128GB", - "GUID": "c97d00e4-0c4c-4ec2-a016-9448c65de986", - "Service_Plan_Name": "CPC_E_8C_32GB_128GB", - "Service_Plan_Id": "2f3cdb12-bcde-4e37-8529-e9e09ec09e23", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 8 vCPU 32 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 256 GB", - "String_Id": "CPC_E_8C_32GB_256GB", - "GUID": "7818ca3e-73c8-4e49-bc34-1276a2d27918", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 256 GB", - "String_Id": "CPC_E_8C_32GB_256GB", - "GUID": "7818ca3e-73c8-4e49-bc34-1276a2d27918", - "Service_Plan_Name": "CPC_E_8C_32GB_256GB", - "Service_Plan_Id": "69dc175c-dcff-4757-8389-d19e76acb45d", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 8 vCPU 32 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 512 GB", - "String_Id": "CPC_E_8C_32GB_512GB", - "GUID": "9fb0ba5f-4825-4e84-b239-5167a3a5d4dc", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 512 GB", - "String_Id": "CPC_E_8C_32GB_512GB", - "GUID": "9fb0ba5f-4825-4e84-b239-5167a3a5d4dc", - "Service_Plan_Name": "CPC_E_8C_32GB_512GB", - "Service_Plan_Id": "0e837228-8250-4047-8a80-d4a34ba11658", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 8 vCPU 32 GB 512 GB" - }, - { - "Product_Display_Name": "Windows 365 Shared Use 2 vCPU 4 GB 64 GB", - "String_Id": "Windows_365_S_2vCPU_4GB_64GB", - "GUID": "1f9990ca-45d9-4c8d-8d04-a79241924ce1", - "Service_Plan_Name": "CPC_S_2C_4GB_64GB", - "Service_Plan_Id": "64981bdb-a5a6-4a22-869f-a9455366d5bc", - "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 2 vCPU 4 GB 64 GB" - }, - { - "Product_Display_Name": "Windows 365 Shared Use 2 vCPU 4 GB 128 GB", - "String_Id": "Windows_365_S_2vCPU_4GB_128GB", - "GUID": "90369797-7141-4e75-8f5e-d13f4b6092c1", - "Service_Plan_Name": "CPC_S_2C_4GB_128GB", - "Service_Plan_Id": "51855c77-4d2e-4736-be67-6dca605f2b57", - "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 2 vCPU 4 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Shared Use 2 vCPU 4 GB 256 GB", - "String_Id": "Windows_365_S_2vCPU_4GB_256GB", - "GUID": "8fe96593-34d3-49bb-aeee-fb794fed0800", - "Service_Plan_Name": "CPC_S_2C_4GB_256GB", - "Service_Plan_Id": "aa8fbe7b-695c-4c05-8d45-d1dddf6f7616", - "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 2 vCPU 4 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Shared Use 2 vCPU 8 GB 128 GB", - "String_Id": "Windows_365_S_2vCPU_8GB_128GB", - "GUID": "2d21fc84-b918-491e-ad84-e24d61ccec94", - "Service_Plan_Name": "CPC_S_2C_8GB_128GB", - "Service_Plan_Id": "057efbfe-a95d-4263-acb0-12b4a31fed8d", - "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 2 vCPU 8 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Shared Use 2 vCPU 8 GB 256 GB", - "String_Id": "Windows_365_S_2vCPU_8GB_256GB", - "GUID": "2eaa4058-403e-4434-9da9-ea693f5d96dc", - "Service_Plan_Name": "CPC_S_2C_8GB_256GB", - "Service_Plan_Id": "50ef7026-6174-40ba-bff7-f0e4fcddbf65", - "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 2 vCPU 8 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Shared Use 4 vCPU 16 GB 128 GB", - "String_Id": "Windows_365_S_4vCPU_16GB_128GB", - "GUID": "1bf40e76-4065-4530-ac37-f1513f362f50", - "Service_Plan_Name": "CPC_S_4C_16GB_128GB", - "Service_Plan_Id": "dd3801e2-4aa1-4b16-a44b-243e55497584", - "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 4 vCPU 16 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Shared Use 4 vCPU 16 GB 256 GB", - "String_Id": "Windows_365_S_4vCPU_16GB_256GB", - "GUID": "a9d1e0df-df6f-48df-9386-76a832119cca", - "Service_Plan_Name": "CPC_S_4C_16GB_256GB", - "Service_Plan_Id": "2d1d344e-d10c-41bb-953b-b3a47521dca0", - "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 4 vCPU 16 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Shared Use 4 vCPU 16 GB 512 GB", - "String_Id": "Windows_365_S_4vCPU_16GB_512GB", - "GUID": "469af4da-121c-4529-8c85-9467bbebaa4b", - "Service_Plan_Name": "CPC_S_4C_16GB_512GB", - "Service_Plan_Id": "48b82071-99a5-4214-b493-406a637bd68d", - "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 4 vCPU 16 GB 512 GB" - }, - { - "Product_Display_Name": "Windows 365 Shared Use 8 vCPU 32 GB 128 GB", - "String_Id": "Windows_365_S_8vCPU_32GB_128GB", - "GUID": "f319c63a-61a9-42b7-b786-5695bc7edbaf", - "Service_Plan_Name": "CPC_S_8C_32GB_128GB", - "Service_Plan_Id": "e4dee41f-a5c5-457d-b7d3-c309986fdbb2", - "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 8 vCPU 32 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Shared Use 8 vCPU 32 GB 256 GB", - "String_Id": "Windows_365_S_8vCPU_32GB_256GB", - "GUID": "fb019e88-26a0-4218-bd61-7767d109ac26", - "Service_Plan_Name": "CPC_S_8C_32GB_256GB", - "Service_Plan_Id": "1e2321a0-f81c-4d43-a0d5-9895125706b8", - "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 8 vCPU 32 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Shared Use 8 vCPU 32 GB 512 GB", - "String_Id": "Windows_365_S_8vCPU_32GB_512GB", - "GUID": "f4dc1de8-8c94-4d37-af8a-1fca6675590a", - "Service_Plan_Name": "CPC_S_8C_32GB_512GB", - "Service_Plan_Id": "fa0b4021-0f60-4d95-bf68-95036285282a", - "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 8 vCPU 32 GB 512 GB" - }, - { - "Product_Display_Name": "Windows Store for Business", - "String_Id": "WINDOWS_STORE", - "GUID": "6470687e-a428-4b7a-bef2-8a291ad947c9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Windows Store for Business", - "String_Id": "WINDOWS_STORE", - "GUID": "6470687e-a428-4b7a-bef2-8a291ad947c9", - "Service_Plan_Name": "WINDOWS_STORE", - "Service_Plan_Id": "a420f25f-a7b3-4ff5-a9d0-5d58f73b537d", - "Service_Plans_Included_Friendly_Names": "WINDOWS STORE SERVICE" - }, - { - "Product_Display_Name": "Windows Store for Business EDU Faculty", - "String_Id": "WSFB_EDU_FACULTY", - "GUID": "c7e9d9e6-1981-4bf3-bb50-a5bdfaa06fb2", - "Service_Plan_Name": "Windows Store for Business EDU Store_faculty", - "Service_Plan_Id": "aaa2cd24-5519-450f-a1a0-160750710ca1", - "Service_Plans_Included_Friendly_Names": "Windows Store for Business EDU Store_faculty" - }, - { - "Product_Display_Name": "Microsoft Workplace Analytics", - "String_Id": "WORKPLACE_ANALYTICS", - "GUID": "3d957427-ecdc-4df2-aacd-01cc9d519da8", - "Service_Plan_Name": "WORKPLACE_ANALYTICS", - "Service_Plan_Id": "f477b0f0-3bb1-4890-940c-40fcee6ce05f", - "Service_Plans_Included_Friendly_Names": "Microsoft Workplace Analytics" - }, - { - "Product_Display_Name": "Microsoft Workplace Analytics", - "String_Id": "WORKPLACE_ANALYTICS", - "GUID": "3d957427-ecdc-4df2-aacd-01cc9d519da8", - "Service_Plan_Name": "WORKPLACE_ANALYTICS_INSIGHTS_BACKEND", - "Service_Plan_Id": "ff7b261f-d98b-415b-827c-42a3fdf015af", - "Service_Plans_Included_Friendly_Names": "Microsoft Workplace Analytics Insights Backend" - }, - { - "Product_Display_Name": "Microsoft Workplace Analytics", - "String_Id": "WORKPLACE_ANALYTICS", - "GUID": "3d957427-ecdc-4df2-aacd-01cc9d519da8", - "Service_Plan_Name": "WORKPLACE_ANALYTICS_INSIGHTS_USER", - "Service_Plan_Id": "b622badb-1b45-48d5-920f-4b27a2c0996c", - "Service_Plans_Included_Friendly_Names": "Microsoft Workplace Analytics Insights User" - }, - { - "Product_Display_Name": "Workload Identities Premium", - "String_Id": "Workload_Identities_Premium_CN", - "GUID": "73fa80b5-689f-4db9-bbe4-bd414bc41e44", - "Service_Plan_Name": "AAD_WRKLDID_P1", - "Service_Plan_Id": "84c289f0-efcb-486f-8581-07f44fc9efad", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory workload identities P1" - }, - { - "Product_Display_Name": "Workload Identities Premium", - "String_Id": "Workload_Identities_Premium_CN", - "GUID": "73fa80b5-689f-4db9-bbe4-bd414bc41e44", - "Service_Plan_Name": "AAD_WRKLDID_P2", - "Service_Plan_Id": "7dc0e92d-bf15-401d-907e-0884efe7c760", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory workload identities P2" - } -] diff --git a/src/data/alerts.json b/src/data/alerts.json deleted file mode 100644 index 13f18265caf4..000000000000 --- a/src/data/alerts.json +++ /dev/null @@ -1,109 +0,0 @@ -[ - { - "name": "MFAAlertUsers", - "label": "Alert on users without any form of MFA", - "recommendedRunInterval": "1d" - }, - { - "name": "MFAAdmins", - "label": "Alert on admins without any form of MFA", - "recommendedRunInterval": "1d" - }, - { - "name": "NoCAConfig", - "label": "Alert on tenants without a Conditional Access policy, while having Conditional Access licensing available.", - "recommendedRunInterval": "1d" - }, - { - "name": "AdminPassword", - "label": "Alert on changed admin Passwords", - "recommendedRunInterval": "30m" - }, - { - "name": "QuotaUsed", - "label": "Alert on % mailbox quota used", - "requiresInput": true, - "inputLabel": "Enter quota percentage", - "inputName": "QuotaUsedQuota", - "recommendedRunInterval": "4h" - }, - { - "name": "SharePointQuota", - "label": "Alert on % SharePoint quota used", - "requiresInput": true, - "inputLabel": "Enter quota percentage", - "inputName": "SharePointQuotaQuota", - "recommendedRunInterval": "4h" - }, - { - "name": "ExpiringLicenses", - "label": "Alert on licenses expiring in 30 days", - "recommendedRunInterval": "7d" - }, - { - "name": "NewAppApproval", - "label": "Alert on new apps in the application approval list", - "recommendedRunInterval": "30m" - }, - { - "name": "SecDefaultsUpsell", - "label": "Alert on Security Defaults automatic enablement", - "recommendedRunInterval": "1d" - }, - { - "name": "DefenderStatus", - "label": "Alert if Defender is not running (Tenant must be on-boarded in Lighthouse)", - "recommendedRunInterval": "4h" - }, - { - "name": "DefenderMalware", - "label": "Alert on Defender Malware found (Tenant must be on-boarded in Lighthouse)", - "recommendedRunInterval": "4h" - }, - { - "name": "UnusedLicenses", - "label": "Alert on unused licenses", - "recommendedRunInterval": "1d" - }, - { - "name": "OverusedLicenses", - "label": "Alert on overused licenses", - "recommendedRunInterval": "7d" - }, - { - "name": "AppSecretExpiry", - "label": "Alert on expiring application secrets", - "recommendedRunInterval": "1d" - }, - { - "name": "ApnCertExpiry", - "label": "Alert on expiring APN certificates", - "recommendedRunInterval": "1d" - }, - { - "name": "VppTokenExpiry", - "label": "Alert on expiring VPP tokens", - "recommendedRunInterval": "1d" - }, - { - "name": "DepTokenExpiry", - "label": "Alert on expiring DEP tokens", - "recommendedRunInterval": "1d" - }, - { - "name": "SoftDeletedMailboxes", - "label": "Alert on soft deleted mailboxes", - "recommendedRunInterval": "1d" - }, - { - "name": "DeviceCompliance", - "label": "Alert on device compliance issues", - "recommendedRunInterval": "4h" - }, - { - "name": "HuntressRogueApps", - "label": "Alert on Huntress Rogue Apps detected", - "recommendedRunInterval": "4h", - "description": "Huntress has provided a repository of known rogue apps that are commonly used in BEC, data exfiltration and other Microsoft 365 attacks. This alert will notify you if any of these apps are detected in the selected tenant(s). For more information, see https://huntresslabs.github.io/rogueapps/." - } -] diff --git a/src/data/classificationDetermination.json b/src/data/classificationDetermination.json deleted file mode 100644 index 7d14e4701adc..000000000000 --- a/src/data/classificationDetermination.json +++ /dev/null @@ -1,5 +0,0 @@ -[ - { "Classification": "True positive", "Determination": ["Multi staged attack", "Malware", "Malicious user activity", "Unwanted software", "Phishing", "Compromised account", "Other"] }, - { "Classification": "Informational, expected activity", "Determination": ["Security testing", "Confirmed activity", "Line of business application", "Other"] }, - { "Classification": "False positive", "Determination": ["Unknown"] } -] diff --git a/src/data/countryList.json b/src/data/countryList.json deleted file mode 100644 index 9595ba9f517c..000000000000 --- a/src/data/countryList.json +++ /dev/null @@ -1,254 +0,0 @@ -[ - { "Code": "AF", "Name": "Afghanistan" }, - { "Code": "AX", "Name": "\u00c5land Islands" }, - { "Code": "AL", "Name": "Albania" }, - { "Code": "DZ", "Name": "Algeria" }, - { "Code": "AS", "Name": "American Samoa" }, - { "Code": "AD", "Name": "Andorra" }, - { "Code": "AO", "Name": "Angola" }, - { "Code": "AI", "Name": "Anguilla" }, - { "Code": "AQ", "Name": "Antarctica" }, - { "Code": "AG", "Name": "Antigua and Barbuda" }, - { "Code": "AR", "Name": "Argentina" }, - { "Code": "AM", "Name": "Armenia" }, - { "Code": "AW", "Name": "Aruba" }, - { "Code": "AC", "Name": "Ascension Island" }, - { "Code": "AU", "Name": "Australia" }, - { "Code": "AT", "Name": "Austria" }, - { "Code": "AZ", "Name": "Azerbaijan" }, - { "Code": "BS", "Name": "Bahamas" }, - { "Code": "BH", "Name": "Bahrain" }, - { "Code": "BD", "Name": "Bangladesh" }, - { "Code": "BB", "Name": "Barbados" }, - { "Code": "BY", "Name": "Belarus" }, - { "Code": "BE", "Name": "Belgium" }, - { "Code": "BZ", "Name": "Belize" }, - { "Code": "BJ", "Name": "Benin" }, - { "Code": "BM", "Name": "Bermuda" }, - { "Code": "BT", "Name": "Bhutan" }, - { "Code": "BO", "Name": "Bolivia, Plurinational State of" }, - { "Code": "BQ", "Name": "Bonaire, Sint Eustatius and Saba" }, - { "Code": "BA", "Name": "Bosnia and Herzegovina" }, - { "Code": "BW", "Name": "Botswana" }, - { "Code": "BV", "Name": "Bouvet Island" }, - { "Code": "BR", "Name": "Brazil" }, - { "Code": "IO", "Name": "British Indian Ocean Territory" }, - { "Code": "BN", "Name": "Brunei Darussalam" }, - { "Code": "BG", "Name": "Bulgaria" }, - { "Code": "BF", "Name": "Burkina Faso" }, - { "Code": "BI", "Name": "Burundi" }, - { "Code": "KH", "Name": "Cambodia" }, - { "Code": "CM", "Name": "Cameroon" }, - { "Code": "CA", "Name": "Canada" }, - { "Code": "CV", "Name": "Cape Verde" }, - { "Code": "KY", "Name": "Cayman Islands" }, - { "Code": "CF", "Name": "Central African Republic" }, - { "Code": "TD", "Name": "Chad" }, - { "Code": "CL", "Name": "Chile" }, - { "Code": "CN", "Name": "China" }, - { "Code": "CX", "Name": "Christmas Island" }, - { "Code": "CC", "Name": "Cocos (Keeling) Islands" }, - { "Code": "CO", "Name": "Colombia" }, - { "Code": "KM", "Name": "Comoros" }, - { "Code": "CG", "Name": "Congo" }, - { "Code": "CD", "Name": "Congo, the Democratic Republic of the" }, - { "Code": "CK", "Name": "Cook Islands" }, - { "Code": "CR", "Name": "Costa Rica" }, - { "Code": "CI", "Name": "C\u00f4te d'Ivoire" }, - { "Code": "HR", "Name": "Croatia" }, - { "Code": "CU", "Name": "Cuba" }, - { "Code": "CW", "Name": "Cura\u00e7ao" }, - { "Code": "CY", "Name": "Cyprus" }, - { "Code": "CZ", "Name": "Czech Republic" }, - { "Code": "DK", "Name": "Denmark" }, - { "Code": "DG", "Name": "Diego Garcia" }, - { "Code": "DJ", "Name": "Djibouti" }, - { "Code": "DM", "Name": "Dominica" }, - { "Code": "DO", "Name": "Dominican Republic" }, - { "Code": "EC", "Name": "Ecuador" }, - { "Code": "EG", "Name": "Egypt" }, - { "Code": "SV", "Name": "El Salvador" }, - { "Code": "GQ", "Name": "Equatorial Guinea" }, - { "Code": "ER", "Name": "Eritrea" }, - { "Code": "EE", "Name": "Estonia" }, - { "Code": "ET", "Name": "Ethiopia" }, - { "Code": "FK", "Name": "Falkland Islands (Malvinas)" }, - { "Code": "FO", "Name": "Faroe Islands" }, - { "Code": "FJ", "Name": "Fiji" }, - { "Code": "FI", "Name": "Finland" }, - { "Code": "FR", "Name": "France" }, - { "Code": "GF", "Name": "French Guiana" }, - { "Code": "PF", "Name": "French Polynesia" }, - { "Code": "TF", "Name": "French Southern Territories" }, - { "Code": "GA", "Name": "Gabon" }, - { "Code": "GM", "Name": "Gambia" }, - { "Code": "GE", "Name": "Georgia" }, - { "Code": "DE", "Name": "Germany" }, - { "Code": "GH", "Name": "Ghana" }, - { "Code": "GI", "Name": "Gibraltar" }, - { "Code": "GR", "Name": "Greece" }, - { "Code": "GL", "Name": "Greenland" }, - { "Code": "GD", "Name": "Grenada" }, - { "Code": "GP", "Name": "Guadeloupe" }, - { "Code": "GU", "Name": "Guam" }, - { "Code": "GT", "Name": "Guatemala" }, - { "Code": "GG", "Name": "Guernsey" }, - { "Code": "GN", "Name": "Guinea" }, - { "Code": "GW", "Name": "Guinea-Bissau" }, - { "Code": "GY", "Name": "Guyana" }, - { "Code": "HT", "Name": "Haiti" }, - { "Code": "HM", "Name": "Heard Island and McDonald Islands" }, - { "Code": "VA", "Name": "Holy See (Vatican City State)" }, - { "Code": "HN", "Name": "Honduras" }, - { "Code": "HK", "Name": "Hong Kong" }, - { "Code": "HU", "Name": "Hungary" }, - { "Code": "IS", "Name": "Iceland" }, - { "Code": "IN", "Name": "India" }, - { "Code": "ID", "Name": "Indonesia" }, - { "Code": "IR", "Name": "Iran, Islamic Republic of" }, - { "Code": "IQ", "Name": "Iraq" }, - { "Code": "IE", "Name": "Ireland" }, - { "Code": "IM", "Name": "Isle of Man" }, - { "Code": "IL", "Name": "Israel" }, - { "Code": "IT", "Name": "Italy" }, - { "Code": "JM", "Name": "Jamaica" }, - { "Code": "JP", "Name": "Japan" }, - { "Code": "JE", "Name": "Jersey" }, - { "Code": "JO", "Name": "Jordan" }, - { "Code": "KZ", "Name": "Kazakhstan" }, - { "Code": "KE", "Name": "Kenya" }, - { "Code": "KI", "Name": "Kiribati" }, - { "Code": "KP", "Name": "Korea, Democratic People's Republic of" }, - { "Code": "KR", "Name": "Korea, Republic of" }, - { "Code": "XK", "Name": "Kosovo" }, - { "Code": "KW", "Name": "Kuwait" }, - { "Code": "KG", "Name": "Kyrgyzstan" }, - { "Code": "LA", "Name": "Lao People's Democratic Republic" }, - { "Code": "LV", "Name": "Latvia" }, - { "Code": "LB", "Name": "Lebanon" }, - { "Code": "LS", "Name": "Lesotho" }, - { "Code": "LR", "Name": "Liberia" }, - { "Code": "LY", "Name": "Libya" }, - { "Code": "LI", "Name": "Liechtenstein" }, - { "Code": "LT", "Name": "Lithuania" }, - { "Code": "LU", "Name": "Luxembourg" }, - { "Code": "MO", "Name": "Macao" }, - { "Code": "MK", "Name": "Macedonia, the Former Yugoslav Republic of" }, - { "Code": "MG", "Name": "Madagascar" }, - { "Code": "MW", "Name": "Malawi" }, - { "Code": "MY", "Name": "Malaysia" }, - { "Code": "MV", "Name": "Maldives" }, - { "Code": "ML", "Name": "Mali" }, - { "Code": "MT", "Name": "Malta" }, - { "Code": "MH", "Name": "Marshall Islands" }, - { "Code": "MQ", "Name": "Martinique" }, - { "Code": "MR", "Name": "Mauritania" }, - { "Code": "MU", "Name": "Mauritius" }, - { "Code": "YT", "Name": "Mayotte" }, - { "Code": "MX", "Name": "Mexico" }, - { "Code": "FM", "Name": "Micronesia, Federated States of" }, - { "Code": "MD", "Name": "Moldova, Republic of" }, - { "Code": "MC", "Name": "Monaco" }, - { "Code": "MN", "Name": "Mongolia" }, - { "Code": "ME", "Name": "Montenegro" }, - { "Code": "MS", "Name": "Montserrat" }, - { "Code": "MA", "Name": "Morocco" }, - { "Code": "MZ", "Name": "Mozambique" }, - { "Code": "MM", "Name": "Myanmar" }, - { "Code": "NA", "Name": "Namibia" }, - { "Code": "NR", "Name": "Nauru" }, - { "Code": "NP", "Name": "Nepal" }, - { "Code": "NL", "Name": "Netherlands" }, - { "Code": "NC", "Name": "New Caledonia" }, - { "Code": "NZ", "Name": "New Zealand" }, - { "Code": "NI", "Name": "Nicaragua" }, - { "Code": "NE", "Name": "Niger" }, - { "Code": "NG", "Name": "Nigeria" }, - { "Code": "NU", "Name": "Niue" }, - { "Code": "NF", "Name": "Norfolk Island" }, - { "Code": "MP", "Name": "Northern Mariana Islands" }, - { "Code": "NO", "Name": "Norway" }, - { "Code": "OM", "Name": "Oman" }, - { "Code": "PK", "Name": "Pakistan" }, - { "Code": "PW", "Name": "Palau" }, - { "Code": "PS", "Name": "Palestine, State of" }, - { "Code": "PA", "Name": "Panama" }, - { "Code": "PG", "Name": "Papua New Guinea" }, - { "Code": "PY", "Name": "Paraguay" }, - { "Code": "PE", "Name": "Peru" }, - { "Code": "PH", "Name": "Philippines" }, - { "Code": "PN", "Name": "Pitcairn" }, - { "Code": "PL", "Name": "Poland" }, - { "Code": "PT", "Name": "Portugal" }, - { "Code": "PR", "Name": "Puerto Rico" }, - { "Code": "QA", "Name": "Qatar" }, - { "Code": "RE", "Name": "R\u00e9union" }, - { "Code": "RO", "Name": "Romania" }, - { "Code": "RU", "Name": "Russian Federation" }, - { "Code": "RW", "Name": "Rwanda" }, - { "Code": "BL", "Name": "Saint Barth\u00e9lemy" }, - { "Code": "SH", "Name": "Saint Helena, Ascension and Tristan da Cunha" }, - { "Code": "KN", "Name": "Saint Kitts and Nevis" }, - { "Code": "LC", "Name": "Saint Lucia" }, - { "Code": "MF", "Name": "Saint Martin (French part)" }, - { "Code": "PM", "Name": "Saint Pierre and Miquelon" }, - { "Code": "VC", "Name": "Saint Vincent and the Grenadines" }, - { "Code": "WS", "Name": "Samoa" }, - { "Code": "SM", "Name": "San Marino" }, - { "Code": "ST", "Name": "Sao Tome and Principe" }, - { "Code": "SA", "Name": "Saudi Arabia" }, - { "Code": "SN", "Name": "Senegal" }, - { "Code": "RS", "Name": "Serbia" }, - { "Code": "SC", "Name": "Seychelles" }, - { "Code": "SL", "Name": "Sierra Leone" }, - { "Code": "SG", "Name": "Singapore" }, - { "Code": "SX", "Name": "Sint Maarten (Dutch part)" }, - { "Code": "SK", "Name": "Slovakia" }, - { "Code": "SI", "Name": "Slovenia" }, - { "Code": "SB", "Name": "Solomon Islands" }, - { "Code": "SO", "Name": "Somalia" }, - { "Code": "ZA", "Name": "South Africa" }, - { "Code": "GS", "Name": "South Georgia and the South Sandwich Islands" }, - { "Code": "SS", "Name": "South Sudan" }, - { "Code": "ES", "Name": "Spain" }, - { "Code": "LK", "Name": "Sri Lanka" }, - { "Code": "SD", "Name": "Sudan" }, - { "Code": "SR", "Name": "Suriname" }, - { "Code": "SJ", "Name": "Svalbard and Jan Mayen" }, - { "Code": "SZ", "Name": "Swaziland" }, - { "Code": "SE", "Name": "Sweden" }, - { "Code": "CH", "Name": "Switzerland" }, - { "Code": "SY", "Name": "Syrian Arab Republic" }, - { "Code": "TW", "Name": "Taiwan, Province of China" }, - { "Code": "TJ", "Name": "Tajikistan" }, - { "Code": "TZ", "Name": "Tanzania, United Republic of" }, - { "Code": "TH", "Name": "Thailand" }, - { "Code": "TL", "Name": "Timor-Leste" }, - { "Code": "TG", "Name": "Togo" }, - { "Code": "TK", "Name": "Tokelau" }, - { "Code": "TO", "Name": "Tonga" }, - { "Code": "TT", "Name": "Trinidad and Tobago" }, - { "Code": "TN", "Name": "Tunisia" }, - { "Code": "TR", "Name": "Turkey" }, - { "Code": "TM", "Name": "Turkmenistan" }, - { "Code": "TC", "Name": "Turks and Caicos Islands" }, - { "Code": "TV", "Name": "Tuvalu" }, - { "Code": "UG", "Name": "Uganda" }, - { "Code": "UA", "Name": "Ukraine" }, - { "Code": "AE", "Name": "United Arab Emirates" }, - { "Code": "GB", "Name": "United Kingdom" }, - { "Code": "US", "Name": "United States" }, - { "Code": "UM", "Name": "United States Minor Outlying Islands" }, - { "Code": "UY", "Name": "Uruguay" }, - { "Code": "UZ", "Name": "Uzbekistan" }, - { "Code": "VU", "Name": "Vanuatu" }, - { "Code": "VE", "Name": "Venezuela, Bolivarian Republic of" }, - { "Code": "VN", "Name": "Viet Nam" }, - { "Code": "VG", "Name": "Virgin Islands, British" }, - { "Code": "VI", "Name": "Virgin Islands, U.S." }, - { "Code": "WF", "Name": "Wallis and Futuna" }, - { "Code": "EH", "Name": "Western Sahara" }, - { "Code": "YE", "Name": "Yemen" }, - { "Code": "ZM", "Name": "Zambia" }, - { "Code": "ZW", "Name": "Zimbabwe" } -] diff --git a/src/data/languageList.json b/src/data/languageList.json deleted file mode 100644 index 3bd0ec3d8e82..000000000000 --- a/src/data/languageList.json +++ /dev/null @@ -1,242 +0,0 @@ -[ - { - "language": "Arabic", - "Geographic area": "Saudi Arabia", - "tag": "ar-SA", - "LCID": "1025" - }, - { - "language": "Bulgarian", - "Geographic area": "Bulgaria", - "tag": "bg-BG", - "LCID": "1026" - }, - { - "language": "Chinese (Simplified)", - "Geographic area": "People's Republic of China", - "tag": "zh-CN", - "LCID": "2052" - }, - { - "language": "Chinese", - "Geographic area": "Taiwan", - "tag": "zh-TW", - "LCID": "1028" - }, - { - "language": "Croatian", - "Geographic area": "Croatia", - "tag": "hr-HR", - "LCID": "1050" - }, - { - "language": "Czech", - "Geographic area": "Czech Republic", - "tag": "cs-CZ", - "LCID": "1029" - }, - { - "language": "Danish", - "Geographic area": "Denmark", - "tag": "da-DK", - "LCID": "1030" - }, - { - "language": "Dutch", - "Geographic area": "Netherlands", - "tag": "nl-NL", - "LCID": "1043" - }, - { - "language": "English", - "Geographic area": "United States", - "tag": "en-US", - "LCID": "1033" - }, - { - "language": "Estonian", - "Geographic area": "Estonia", - "tag": "et-EE", - "LCID": "1061" - }, - { - "language": "Finnish", - "Geographic area": "Finland", - "tag": "fi-FI", - "LCID": "1035" - }, - { - "language": "French", - "Geographic area": "France", - "tag": "fr-FR", - "LCID": "1036" - }, - { - "language": "German", - "Geographic area": "Germany", - "tag": "de-DE", - "LCID": "1031" - }, - { - "language": "Greek", - "Geographic area": "Greece", - "tag": "el-GR", - "LCID": "1032" - }, - { - "language": "Hebrew", - "Geographic area": "Israel", - "tag": "he-IL", - "LCID": "1037" - }, - { - "language": "Hindi", - "Geographic area": "India", - "tag": "hi-IN", - "LCID": "1081" - }, - { - "language": "Hungarian", - "Geographic area": "Hungary", - "tag": "hu-HU", - "LCID": "1038" - }, - { - "language": "Indonesian", - "Geographic area": "Indonesia", - "tag": "id-ID", - "LCID": "1057" - }, - { - "language": "Italian", - "Geographic area": "Italy", - "tag": "it-IT", - "LCID": "1040" - }, - { - "language": "Japanese", - "Geographic area": "Japan", - "tag": "ja-JP", - "LCID": "1041" - }, - { - "language": "Kazakh", - "Geographic area": "Kazakhstan", - "tag": "kk-KZ", - "LCID": "1087" - }, - { - "language": "Korean", - "Geographic area": "Korea", - "tag": "ko-KR", - "LCID": "1042" - }, - { - "language": "Latvian", - "Geographic area": "Latvia", - "tag": "lv-LV", - "LCID": "1062" - }, - { - "language": "Lithuanian", - "Geographic area": "Lithuania", - "tag": "lt-LT", - "LCID": "1063" - }, - { - "language": "Malay", - "Geographic area": "Malaysia", - "tag": "ms-MY", - "LCID": "1086" - }, - { - "language": "Norwegian (Bokmål)", - "Geographic area": "Norway", - "tag": "nb-NO", - "LCID": "1044" - }, - { - "language": "Polish", - "Geographic area": "Poland", - "tag": "pl-PL", - "LCID": "1045" - }, - { - "language": "Portuguese", - "Geographic area": "Brazil", - "tag": "pt-BR", - "LCID": "1046" - }, - { - "language": "Portuguese", - "Geographic area": "Portugal", - "tag": "pt-PT", - "LCID": "2070" - }, - { - "language": "Romanian", - "Geographic area": "Romania", - "tag": "ro-RO", - "LCID": "1048" - }, - { - "language": "Russian", - "Geographic area": "Russia", - "tag": "ru-RU", - "LCID": "1049" - }, - { - "language": "Serbian (Latin)", - "Geographic area": "Serbia", - "tag": "sr-latn-RS", - "LCID": "2074" - }, - { - "language": "Slovak", - "Geographic area": "Slovakia", - "tag": "sk-SK", - "LCID": "1051" - }, - { - "language": "Slovenian", - "Geographic area": "Slovenia", - "tag": "sl-SI", - "LCID": "1060" - }, - { - "language": "Spanish", - "Geographic area": "Spain", - "tag": "es-ES", - "LCID": "3082" - }, - { - "language": "Swedish", - "Geographic area": "Sweden", - "tag": "sv-SE", - "LCID": "1053" - }, - { - "language": "Thai", - "Geographic area": "Thailand", - "tag": "th-TH", - "LCID": "1054" - }, - { - "language": "Turkish", - "Geographic area": "Turkey", - "tag": "tr-TR", - "LCID": "1055" - }, - { - "language": "Ukrainian", - "Geographic area": "Ukrainian", - "tag": "uk-UA", - "LCID": "1058" - }, - { - "language": "Vietnamese", - "Geographic area": "Vietnam", - "tag": "vi-VN", - "LCID": "1066" - } -] diff --git a/src/data/portals.json b/src/data/portals.json deleted file mode 100644 index bef73cee6a5f..000000000000 --- a/src/data/portals.json +++ /dev/null @@ -1,83 +0,0 @@ -[ - { - "label": "M365 Portal", - "name": "M365_Portal", - "url": "https://admin.microsoft.com/Partner/BeginClientSession.aspx?CTID=customerId&CSDEST=o365admincenter", - "variable": "customerId", - "target": "_blank", - "external": true, - "icon": "cog" - }, - { - "label": "Exchange Portal", - "name": "Exchange_Portal", - "url": "https://admin.exchange.microsoft.com/?landingpage=homepage&form=mac_sidebar&delegatedOrg=defaultDomainName#", - "variable": "defaultDomainName", - "target": "_blank", - "external": true, - "icon": "mail-bulk" - }, - { - "label": "Entra Portal", - "name": "Entra_Portal", - "url": "https://entra.microsoft.com/defaultDomainName", - "variable": "defaultDomainName", - "target": "_blank", - "external": true, - "icon": "users" - }, - { - "label": "Teams Portal", - "name": "Teams_Portal", - "url": "https://admin.teams.microsoft.com/?delegatedOrg=defaultDomainName", - "variable": "defaultDomainName", - "target": "_blank", - "external": true, - "icon": "comments" - }, - { - "label": "Azure Portal", - "name": "Azure_Portal", - "url": "https://portal.azure.com/defaultDomainName", - "variable": "defaultDomainName", - "target": "_blank", - "external": true, - "icon": "server" - }, - { - "label": "Intune Portal", - "name": "Intune_Portal", - "url": "https://intune.microsoft.com/defaultDomainName", - "variable": "defaultDomainName", - "target": "_blank", - "external": true, - "icon": "laptop-code" - }, - { - "label": "Security Portal", - "name": "Security_Portal", - "url": "https://security.microsoft.com/?tid=customerId", - "variable": "customerId", - "target": "_blank", - "external": true, - "icon": "shield-alt" - }, - { - "label": "Compliance Portal", - "name": "Compliance_Portal", - "url": "https://compliance.microsoft.com/?tid=customerId", - "variable": "customerId", - "target": "_blank", - "external": true, - "icon": "shield-alt" - }, - { - "label": "Sharepoint Admin", - "name": "Sharepoint_Admin", - "url": "https://admin.microsoft.com/Partner/beginclientsession.aspx?CTID=customerId&CSDEST=SharePoint", - "variable": "customerId", - "target": "_blank", - "external": true, - "icon": "book" - } -] diff --git a/src/data/standards.json b/src/data/standards.json deleted file mode 100644 index 45e7c0438ea1..000000000000 --- a/src/data/standards.json +++ /dev/null @@ -1,2539 +0,0 @@ -[ - { - "name": "standards.MailContacts", - "cat": "Global Standards", - "tag": ["lowimpact"], - "helpText": "Defines the email address to receive general updates and information related to M365 subscriptions. Leave a contact field blank if you do not want to update the contact information.", - "docsDescription": "", - "addedComponent": [ - { - "type": "input", - "name": "standards.MailContacts.GeneralContact", - "label": "General Contact" - }, - { - "type": "input", - "name": "standards.MailContacts.SecurityContact", - "label": "Security Contact" - }, - { - "type": "input", - "name": "standards.MailContacts.MarketingContact", - "label": "Marketing Contact" - }, - { - "type": "input", - "name": "standards.MailContacts.TechContact", - "label": "Technical Contact" - } - ], - "label": "Set contact e-mails", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-MsolCompanyContactInformation", - "recommendedBy": [] - }, - { - "name": "standards.AuditLog", - "cat": "Global Standards", - "tag": ["lowimpact", "CIS", "mip_search_auditlog"], - "helpText": "Enables the Unified Audit Log for tracking and auditing activities. Also runs Enable-OrganizationCustomization if necessary.", - "addedComponent": [], - "label": "Enable the Unified Audit Log", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Enable-OrganizationCustomization", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.PhishProtection", - "cat": "Global Standards", - "tag": ["lowimpact"], - "helpText": "Adds branding to the logon page that only appears if the url is not login.microsoftonline.com. This potentially prevents AITM attacks via EvilNginx. This will also automatically generate alerts if a clone of your login page has been found when set to Remediate.", - "addedComponent": [], - "label": "Enable Phishing Protection system via branding CSS", - "impact": "Low Impact", - "impactColour": "info", - "disabledFeatures": { - "report": true, - "warn": true, - "remediate": false - }, - "powershellEquivalent": "Portal only", - "recommendedBy": ["CIPP"] - }, - { - "name": "standards.Branding", - "cat": "Global Standards", - "tag": ["lowimpact"], - "helpText": "Sets the branding for the tenant. This includes the login page, and the Office 365 portal.", - "addedComponent": [ - { - "type": "input", - "name": "standards.Branding.signInPageText", - "label": "Sign-in page text" - }, - { - "type": "input", - "name": "standards.Branding.usernameHintText", - "label": "Username hint Text" - }, - { - "type": "boolean", - "name": "standards.Branding.hideAccountResetCredentials", - "label": "Hide self-service password reset" - }, - { - "type": "Select", - "label": "Visual Template", - "name": "standards.Branding.layoutTemplateType", - "values": [ - { - "label": "Full-screen background", - "value": "default" - }, - { - "label": "Partial-screen background", - "value": "verticalSplit" - } - ] - }, - { - "type": "boolean", - "name": "standards.Branding.isHeaderShown", - "label": "Show header" - }, - { - "type": "boolean", - "name": "standards.Branding.isFooterShown", - "label": "Show footer" - } - ], - "label": "Set branding for the tenant", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Portal only", - "recommendedBy": [] - }, - { - "name": "standards.EnableCustomerLockbox", - "cat": "Global Standards", - "tag": ["lowimpact", "CIS", "CustomerLockBoxEnabled"], - "helpText": "Enables Customer Lockbox that offers an approval process for Microsoft support to access organization data", - "docsDescription": "Customer Lockbox ensures that Microsoft can't access your content to do service operations without your explicit approval. Customer Lockbox ensures only authorized requests allow access to your organizations data.", - "addedComponent": [], - "label": "Enable Customer Lockbox", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-OrganizationConfig -CustomerLockBoxEnabled $true", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.EnablePronouns", - "cat": "Global Standards", - "tag": ["lowimpact"], - "helpText": "Enables the Pronouns feature for the tenant. This allows users to set their pronouns in their profile.", - "addedComponent": [], - "label": "Enable Pronouns", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Update-MgBetaAdminPeoplePronoun -IsEnabledInOrganization:$true", - "recommendedBy": [] - }, - { - "name": "standards.AnonReportDisable", - "cat": "Global Standards", - "tag": ["lowimpact"], - "helpText": "Shows usernames instead of pseudo anonymised names in reports. This standard is required for reporting to work correctly.", - "docsDescription": "Microsoft announced some APIs and reports no longer return names, to comply with compliance and legal requirements in specific countries. This proves an issue for a lot of MSPs because those reports are often helpful for engineers. This standard applies a setting that shows usernames in those API calls / reports.", - "addedComponent": [], - "label": "Enable Usernames instead of pseudo anonymised names in reports", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Update-MgBetaAdminReportSetting -BodyParameter @{displayConcealedNames = $true}", - "recommendedBy": [] - }, - { - "name": "standards.DisableGuestDirectory", - "cat": "Global Standards", - "tag": ["lowimpact"], - "helpText": "Disables Guest access to enumerate directory objects. This prevents guest users from seeing other users or guests in the directory.", - "docsDescription": "Sets it so guests can view only their own user profile. Permission to view other users isn't allowed. Also restricts guest users from seeing the membership of groups they're in. See exactly what get locked down in the [Microsoft documentation.](https://learn.microsoft.com/en-us/entra/fundamentals/users-default-permissions)", - "addedComponent": [], - "label": "Restrict guest user access to directory objects", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-AzureADMSAuthorizationPolicy -GuestUserRoleId '2af84b1e-32c8-42b7-82bc-daa82404023b'", - "recommendedBy": [] - }, - { - "name": "standards.DisableBasicAuthSMTP", - "cat": "Global Standards", - "tag": ["mediumimpact"], - "helpText": "Disables SMTP AUTH for the organization and all users. This is the default for new tenants. ", - "docsDescription": "Disables SMTP basic authentication for the tenant and all users with it explicitly enabled.", - "addedComponent": [], - "label": "Disable SMTP Basic Authentication", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Set-TransportConfig -SmtpClientAuthenticationDisabled $true", - "recommendedBy": [] - }, - { - "name": "standards.ActivityBasedTimeout", - "cat": "Global Standards", - "tag": ["mediumimpact", "CIS", "spo_idle_session_timeout"], - "helpText": "Enables and sets Idle session timeout for Microsoft 365 to 1 hour. This policy affects most M365 web apps", - "addedComponent": [ - { - "type": "Select", - "label": "Select value", - "name": "standards.ActivityBasedTimeout.timeout", - "values": [ - { - "label": "1 Hour", - "value": "01:00:00" - }, - { - "label": "3 Hours", - "value": "03:00:00" - }, - { - "label": "6 Hours", - "value": "06:00:00" - }, - { - "label": "12 Hours", - "value": "12:00:00" - }, - { - "label": "24 Hours", - "value": "1.00:00:00" - } - ] - } - ], - "label": "Enable Activity based Timeout", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Portal or Graph API", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.AppDeploy", - "cat": "Entra (AAD) Standards", - "tag": ["lowimpact"], - "helpText": "Deploys selected applications to the tenant. Use a comma separated list of application IDs to deploy multiple applications. Permissions will be copied from the source application.", - "docsDescription": "Uses the CIPP functionality that deploys applications across an entire tenant base as a standard.", - "addedComponent": [ - { - "type": "input", - "name": "standards.AppDeploy.appids", - "label": "Application IDs, comma separated" - } - ], - "label": "Deploy Application", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Portal or Graph API", - "recommendedBy": [] - }, - { - "name": "standards.laps", - "cat": "Entra (AAD) Standards", - "tag": ["lowimpact"], - "helpText": "Enables the tenant to use LAPS. You must still create a policy for LAPS to be active on all devices. Use the template standards to deploy this by default.", - "docsDescription": "Enables the LAPS functionality on the tenant. Prerequisite for using Windows LAPS via Azure AD.", - "addedComponent": [], - "label": "Enable LAPS on the tenant", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Portal or Graph API", - "recommendedBy": [] - }, - { - "name": "standards.PWdisplayAppInformationRequiredState", - "cat": "Entra (AAD) Standards", - "tag": ["lowimpact", "CIS"], - "helpText": "Enables the MS authenticator app to display information about the app that is requesting authentication. This displays the application name.", - "docsDescription": "Allows users to use Passwordless with Number Matching and adds location information from the last request", - "addedComponent": [], - "label": "Enable Passwordless with Location information and Number Matching", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.allowOTPTokens", - "cat": "Entra (AAD) Standards", - "tag": ["lowimpact"], - "helpText": "Allows you to use MS authenticator OTP token generator", - "docsDescription": "Allows you to use Microsoft Authenticator OTP token generator. Useful for using the NPS extension as MFA on VPN clients.", - "addedComponent": [], - "label": "Enable OTP via Authenticator", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", - "recommendedBy": [] - }, - { - "name": "standards.PWcompanionAppAllowedState", - "cat": "Entra (AAD) Standards", - "tag": ["lowimpact"], - "helpText": "Sets the state of Authenticator Lite, Authenticator lite is a companion app for passwordless authentication.", - "docsDescription": "Sets the Authenticator Lite state to enabled. This allows users to use the Authenticator Lite built into the Outlook app instead of the full Authenticator app.", - "addedComponent": [ - { - "type": "Select", - "label": "Select value", - "name": "standards.PWcompanionAppAllowedState.state", - "values": [ - { - "label": "Enabled", - "value": "enabled" - }, - { - "label": "Disabled", - "value": "disabled" - } - ] - } - ], - "label": "Set Authenticator Lite state", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", - "recommendedBy": [] - }, - { - "name": "standards.EnableFIDO2", - "cat": "Entra (AAD) Standards", - "tag": ["lowimpact"], - "helpText": "Enables the FIDO2 authenticationMethod for the tenant", - "docsDescription": "Enables FIDO2 capabilities for the tenant. This allows users to use FIDO2 keys like a Yubikey for authentication.", - "addedComponent": [], - "label": "Enable FIDO2 capabilities", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", - "recommendedBy": [] - }, - { - "name": "standards.EnableHardwareOAuth", - "cat": "Entra (AAD) Standards", - "tag": ["lowimpact"], - "helpText": "Enables the HardwareOath authenticationMethod for the tenant. This allows you to use hardware tokens for generating 6 digit MFA codes.", - "docsDescription": "Enables Hardware OAuth tokens for the tenant. This allows users to use hardware tokens like a Yubikey for authentication.", - "addedComponent": [], - "label": "Enable Hardware OAuth tokens", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", - "recommendedBy": [] - }, - { - "name": "standards.allowOAuthTokens", - "cat": "Entra (AAD) Standards", - "tag": ["lowimpact"], - "helpText": "Allows you to use any software OAuth token generator", - "docsDescription": "Enables OTP Software OAuth tokens for the tenant. This allows users to use OTP codes generated via software, like a password manager to be used as an authentication method.", - "addedComponent": [], - "label": "Enable OTP Software OAuth tokens", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", - "recommendedBy": [] - }, - { - "name": "standards.TAP", - "cat": "Entra (AAD) Standards", - "tag": ["lowimpact"], - "helpText": "Enables TAP and sets the default TAP lifetime to 1 hour. This configuration also allows you to select is a TAP is single use or multi-logon.", - "docsDescription": "Enables Temporary Password generation for the tenant.", - "addedComponent": [ - { - "type": "Select", - "label": "Select TAP Lifetime", - "name": "standards.TAP.config", - "values": [ - { - "label": "Only Once", - "value": "true" - }, - { - "label": "Multiple Logons", - "value": "false" - } - ] - } - ], - "label": "Enable Temporary Access Passwords", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", - "recommendedBy": [] - }, - { - "name": "standards.PasswordExpireDisabled", - "cat": "Entra (AAD) Standards", - "tag": ["lowimpact", "CIS", "PWAgePolicyNew"], - "helpText": "Disables the expiration of passwords for the tenant by setting the password expiration policy to never expire for any user.", - "docsDescription": "Sets passwords to never expire for tenant, recommended to use in conjunction with secure password requirements.", - "addedComponent": [], - "label": "Do not expire passwords", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Update-MgDomain", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.ExternalMFATrusted", - "cat": "Entra (AAD) Standards", - "tag": ["lowimpact"], - "helpText": "Sets the state of the Cross-tenant access setting to trust external MFA. This allows guest users to use their home tenant MFA to access your tenant.", - "addedComponent": [ - { - "type": "Select", - "label": "Select value", - "name": "standards.ExternalMFATrusted.state", - "values": [ - { - "label": "Enabled", - "value": "true" - }, - { - "label": "Disabled", - "value": "false" - } - ] - } - ], - "label": "Sets the Cross-tenant access setting to trust external MFA", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Update-MgBetaPolicyCrossTenantAccessPolicyDefault", - "recommendedBy": [] - }, - { - "name": "standards.DisableTenantCreation", - "cat": "Entra (AAD) Standards", - "tag": ["lowimpact", "CIS"], - "helpText": "Restricts creation of M365 tenants to the Global Administrator or Tenant Creator roles. ", - "docsDescription": "Users by default are allowed to create M365 tenants. This disables that so only admins can create new M365 tenants.", - "addedComponent": [], - "label": "Disable M365 Tenant creation by users", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Update-MgPolicyAuthorizationPolicy", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.EnableAppConsentRequests", - "cat": "Entra (AAD) Standards", - "tag": ["lowimpact", "CIS"], - "helpText": "Enables App consent admin requests for the tenant via the GA role. Does not overwrite existing reviewer settings", - "docsDescription": "Enables the ability for users to request admin consent for applications. Should be used in conjunction with the \"Require admin consent for applications\" standards", - "addedComponent": [ - { - "type": "AdminRolesMultiSelect", - "label": "App Consent Reviewer Roles", - "name": "standards.EnableAppConsentRequests.ReviewerRoles" - } - ], - "label": "Enable App consent admin requests", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Update-MgPolicyAdminConsentRequestPolicy", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.NudgeMFA", - "cat": "Entra (AAD) Standards", - "tag": ["lowimpact"], - "helpText": "Sets the state of the registration campaign for the tenant", - "docsDescription": "Sets the state of the registration campaign for the tenant. If enabled nudges users to set up the Microsoft Authenticator during sign-in.", - "addedComponent": [ - { - "type": "Select", - "label": "Select value", - "name": "standards.NudgeMFA.state", - "values": [ - { - "label": "Enabled", - "value": "enabled" - }, - { - "label": "Disabled", - "value": "disabled" - } - ] - }, - { - "type": "number", - "name": "standards.NudgeMFA.snoozeDurationInDays", - "label": "Number of days to allow users to skip registering Authenticator (0-14, default is 1)", - "default": 1 - } - ], - "label": "Sets the state for the request to setup Authenticator", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Update-MgPolicyAuthenticationMethodPolicy", - "recommendedBy": [] - }, - { - "name": "standards.DisableM365GroupUsers", - "cat": "Entra (AAD) Standards", - "tag": ["lowimpact"], - "helpText": "Restricts M365 group creation to certain admin roles. This disables the ability to create Teams, Sharepoint sites, Planner, etc", - "docsDescription": "Users by default are allowed to create M365 groups. This restricts M365 group creation to certain admin roles. This disables the ability to create Teams, SharePoint sites, Planner, etc", - "addedComponent": [], - "label": "Disable M365 Group creation by users", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Update-MgBetaDirectorySetting", - "recommendedBy": [] - }, - { - "name": "standards.DisableAppCreation", - "cat": "Entra (AAD) Standards", - "tag": ["lowimpact", "CIS"], - "helpText": "Disables the ability for users to create App registrations in the tenant.", - "docsDescription": "Disables the ability for users to create applications in Entra. Done to prevent breached accounts from creating an app to maintain access to the tenant, even after the breached account has been secured.", - "addedComponent": [], - "label": "Disable App creation by users", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Update-MgPolicyAuthorizationPolicy", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.DisableSecurityGroupUsers", - "cat": "Entra (AAD) Standards", - "tag": ["mediumimpact"], - "helpText": "Completely disables the creation of security groups by users. This also breaks the ability to manage groups themselves, or create Teams", - "addedComponent": [], - "label": "Disable Security Group creation by users", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Update-MgBetaPolicyAuthorizationPolicy", - "recommendedBy": [] - }, - { - "name": "standards.LegacyMFACleanup", - "cat": "Entra (AAD) Standards", - "tag": ["mediumimpact"], - "helpText": "This standard currently does not function and can be safely disabled", - "addedComponent": [], - "label": "Remove Legacy MFA if SD or CA is active", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Set-MsolUser -StrongAuthenticationRequirements $null", - "recommendedBy": [] - }, - { - "name": "standards.DisableSelfServiceLicenses", - "cat": "Entra (AAD) Standards", - "tag": ["mediumimpact"], - "helpText": "This standard disables all self service licenses and enables all exclusions", - "addedComponent": [ - { - "type": "input", - "name": "standards.DisableSelfServiceLicenses.Exclusions", - "label": "License Ids to exclude from this standard" - } - ], - "label": "Disable Self Service Licensing", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Set-MsolCompanySettings -AllowAdHocSubscriptions $false", - "recommendedBy": [] - }, - { - "name": "standards.DisableGuests", - "cat": "Entra (AAD) Standards", - "tag": ["mediumimpact"], - "helpText": "Blocks login for guest users that have not logged in for 90 days", - "addedComponent": [], - "label": "Disable Guest accounts that have not logged on for 90 days", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Graph API", - "recommendedBy": [] - }, - { - "name": "standards.OauthConsent", - "cat": "Entra (AAD) Standards", - "tag": ["mediumimpact", "CIS"], - "helpText": "Disables users from being able to consent to applications, except for those specified in the field below", - "docsDescription": "Requires users to get administrator consent before sharing data with applications. You can preapprove specific applications.", - "addedComponent": [ - { - "type": "input", - "name": "standards.OauthConsent.AllowedApps", - "label": "Allowed application IDs, comma separated" - } - ], - "label": "Require admin consent for applications (Prevent OAuth phishing)", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Update-MgPolicyAuthorizationPolicy", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.OauthConsentLowSec", - "cat": "Entra (AAD) Standards", - "tag": ["mediumimpact", "IntegratedApps"], - "helpText": "Sets the default oauth consent level so users can consent to applications that have low risks.", - "docsDescription": "Allows users to consent to applications with low assigned risk.", - "label": "Allow users to consent to applications with low security risk (Prevent OAuth phishing. Lower impact, less secure)", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Update-MgPolicyAuthorizationPolicy", - "recommendedBy": [] - }, - { - "name": "standards.UndoOauth", - "cat": "Entra (AAD) Standards", - "tag": ["highimpact"], - "helpText": "Disables App consent and set to Allow user consent for apps", - "addedComponent": [], - "label": "Undo App Consent Standard", - "impact": "High Impact", - "impactColour": "danger", - "powershellEquivalent": "Update-MgPolicyAuthorizationPolicy", - "recommendedBy": [] - }, - { - "name": "standards.SecurityDefaults", - "cat": "Entra (AAD) Standards", - "tag": ["highimpact"], - "helpText": "Enables security defaults for the tenant, for newer tenants this is enabled by default. Do not enable this feature if you use Conditional Access.", - "docsDescription": "Enables SD for the tenant, which disables all forms of basic authentication and enforces users to configure MFA. Users are only prompted for MFA when a logon is considered 'suspect' by Microsoft.", - "addedComponent": [], - "label": "Enable Security Defaults", - "impact": "High Impact", - "impactColour": "danger", - "powershellEquivalent": "[Read more here](https://www.cyberdrain.com/automating-with-powershell-enabling-secure-defaults-and-sd-explained/)", - "recommendedBy": [] - }, - { - "name": "standards.DisableSMS", - "cat": "Entra (AAD) Standards", - "tag": ["highimpact"], - "helpText": "This blocks users from using SMS as an MFA method. If a user only has SMS as a MFA method, they will be unable to log in.", - "docsDescription": "Disables SMS as an MFA method for the tenant. If a user only has SMS as a MFA method, they will be unable to sign in.", - "addedComponent": [], - "label": "Disables SMS as an MFA method", - "impact": "High Impact", - "impactColour": "danger", - "powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", - "recommendedBy": [] - }, - { - "name": "standards.DisableVoice", - "cat": "Entra (AAD) Standards", - "tag": ["highimpact"], - "helpText": "This blocks users from using Voice call as an MFA method. If a user only has Voice as a MFA method, they will be unable to log in.", - "docsDescription": "Disables Voice call as an MFA method for the tenant. If a user only has Voice call as a MFA method, they will be unable to sign in.", - "addedComponent": [], - "label": "Disables Voice call as an MFA method", - "impact": "High Impact", - "impactColour": "danger", - "powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", - "recommendedBy": [] - }, - { - "name": "standards.DisableEmail", - "cat": "Entra (AAD) Standards", - "tag": ["highimpact"], - "helpText": "This blocks users from using email as an MFA method. This disables the email OTP option for guest users, and instead promts them to create a Microsoft account.", - "addedComponent": [], - "label": "Disables Email as an MFA method", - "impact": "High Impact", - "impactColour": "danger", - "powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", - "recommendedBy": [] - }, - { - "name": "standards.Disablex509Certificate", - "cat": "Entra (AAD) Standards", - "tag": ["highimpact"], - "helpText": "This blocks users from using Certificates as an MFA method.", - "docsDescription": "", - "addedComponent": [], - "label": "Disables Certificates as an MFA method", - "impact": "High Impact", - "impactColour": "danger", - "powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", - "recommendedBy": [] - }, - { - "name": "standards.PerUserMFA", - "cat": "Entra (AAD) Standards", - "tag": ["highimpact"], - "helpText": "Enables per user MFA for all users.", - "addedComponent": [], - "label": "Enables per user MFA for all users.", - "impact": "High Impact", - "impactColour": "danger", - "powershellEquivalent": "Graph API", - "recommendedBy": [] - }, - { - "name": "standards.OutBoundSpamAlert", - "cat": "Exchange Standards", - "tag": ["lowimpact", "CIS"], - "helpText": "Set the Outbound Spam Alert e-mail address", - "docsDescription": "Sets the e-mail address to which outbound spam alerts are sent.", - "addedComponent": [ - { - "type": "input", - "name": "standards.OutBoundSpamAlert.OutboundSpamContact", - "label": "Outbound spam contact" - } - ], - "label": "Set Outbound Spam Alert e-mail", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-HostedOutboundSpamFilterPolicy", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.MessageExpiration", - "cat": "Exchange Standards", - "tag": ["lowimpact"], - "helpText": "Sets the transport message configuration to timeout a message at 12 hours.", - "docsDescription": "Expires messages in the transport queue after 12 hours. Makes the NDR for failed messages show up faster for users. Default is 24 hours.", - "addedComponent": [], - "label": "Lower Transport Message Expiration to 12 hours", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-TransportConfig -MessageExpirationTimeout 12.00:00:00", - "recommendedBy": [] - }, - { - "name": "standards.GlobalQuarantineNotifications", - "cat": "Exchange Standards", - "tag": ["lowimpact"], - "helpText": "Sets the Global Quarantine Notification Interval to the selected value. Determines how often the quarantine notification is sent to users.", - "docsDescription": "Sets the global quarantine notification interval for the tenant. This is the time between the quarantine notification emails are sent out to users. Default is 24 hours.", - "addedComponent": [ - { - "type": "Select", - "label": "Select value", - "name": "standards.GlobalQuarantineNotifications.NotificationInterval", - "values": [ - { - "label": "4 hours", - "value": "04:00:00" - }, - { - "label": "1 day/Daily", - "value": "1.00:00:00" - }, - { - "label": "7 days/Weekly", - "value": "7.00:00:00" - } - ] - } - ], - "label": "Set Global Quarantine Notification Interval", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-QuarantinePolicy -EndUserSpamNotificationFrequency", - "recommendedBy": [] - }, - { - "name": "standards.DisableTNEF", - "cat": "Exchange Standards", - "tag": ["lowimpact"], - "helpText": "Disables Transport Neutral Encapsulation Format (TNEF)/winmail.dat for the tenant. TNEF can cause issues if the recipient is not using a client supporting TNEF.", - "docsDescription": "Disables Transport Neutral Encapsulation Format (TNEF)/winmail.dat for the tenant. TNEF can cause issues if the recipient is not using a client supporting TNEF. Cannot be overridden by the user. For more information, see [Microsoft's documentation.](https://learn.microsoft.com/en-us/exchange/mail-flow/content-conversion/tnef-conversion?view=exchserver-2019)", - "addedComponent": [], - "label": "Disable TNEF/winmail.dat", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-RemoteDomain -Identity 'Default' -TNEFEnabled $false", - "recommendedBy": [] - }, - { - "name": "standards.FocusedInbox", - "cat": "Exchange Standards", - "tag": ["lowimpact"], - "helpText": "Sets the default Focused Inbox state for the tenant. This can be overridden by the user.", - "docsDescription": "Sets the default Focused Inbox state for the tenant. This can be overridden by the user in their Outlook settings. For more information, see [Microsoft's documentation.](https://support.microsoft.com/en-us/office/focused-inbox-for-outlook-f445ad7f-02f4-4294-a82e-71d8964e3978)", - "addedComponent": [ - { - "type": "Select", - "label": "Select value", - "name": "standards.FocusedInbox.state", - "values": [ - { - "label": "Enabled", - "value": "enabled" - }, - { - "label": "Disabled", - "value": "disabled" - } - ] - } - ], - "label": "Set Focused Inbox state", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-OrganizationConfig -FocusedInboxOn $true or $false", - "recommendedBy": [] - }, - { - "name": "standards.CloudMessageRecall", - "cat": "Exchange Standards", - "tag": ["lowimpact"], - "helpText": "Sets the Cloud Message Recall state for the tenant. This allows users to recall messages from the cloud.", - "docsDescription": "Sets the default state for Cloud Message Recall for the tenant. By default this is enabled. You can read more about the feature [here.](https://techcommunity.microsoft.com/t5/exchange-team-blog/cloud-based-message-recall-in-exchange-online/ba-p/3744714)", - "addedComponent": [ - { - "type": "Select", - "label": "Select value", - "name": "standards.CloudMessageRecall.state", - "values": [ - { - "label": "Enabled", - "value": "true" - }, - { - "label": "Disabled", - "value": "false" - } - ] - } - ], - "label": "Set Cloud Message Recall state", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-OrganizationConfig -MessageRecallEnabled", - "recommendedBy": [] - }, - { - "name": "standards.AutoExpandArchive", - "cat": "Exchange Standards", - "tag": ["lowimpact"], - "helpText": "Enables auto-expanding archives for the tenant", - "docsDescription": "Enables auto-expanding archives for the tenant. Does not enable archives for users.", - "addedComponent": [], - "label": "Enable Auto-expanding archives", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-OrganizationConfig -AutoExpandingArchive", - "recommendedBy": [] - }, - { - "name": "standards.EnableOnlineArchiving", - "cat": "Exchange Standards", - "tag": ["lowimpact"], - "helpText": "Enables the In-Place Online Archive for all UserMailboxes with a valid license.", - "addedComponent": [], - "label": "Enable Online Archive for all users", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Enable-Mailbox -Archive $true", - "recommendedBy": [] - }, - { - "name": "standards.EnableLitigationHold", - "cat": "Exchange Standards", - "tag": ["lowimpact"], - "helpText": "Enables litigation hold for all UserMailboxes with a valid license.", - "addedComponent": [], - "label": "Enable Litigation Hold for all users", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-Mailbox -LitigationHoldEnabled $true", - "recommendedBy": [] - }, - { - "name": "standards.SpoofWarn", - "cat": "Exchange Standards", - "tag": ["lowimpact", "CIS"], - "helpText": "Adds or removes indicators to e-mail messages received from external senders in Outlook. Works on all Outlook clients/OWA", - "docsDescription": "Adds or removes indicators to e-mail messages received from external senders in Outlook. You can read more about this feature on [Microsoft's Exchange Team Blog.](https://techcommunity.microsoft.com/t5/exchange-team-blog/native-external-sender-callouts-on-email-in-outlook/ba-p/2250098)", - "addedComponent": [ - { - "type": "Select", - "label": "Select value", - "name": "standards.SpoofWarn.state", - "values": [ - { - "label": "Enabled", - "value": "enabled" - }, - { - "label": "Disabled", - "value": "disabled" - } - ] - } - ], - "label": "Enable or disable 'external' warning in Outlook", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "et-ExternalInOutlook –Enabled $true or $false", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.EnableMailTips", - "cat": "Exchange Standards", - "tag": ["lowimpact", "CIS", "exo_mailtipsenabled"], - "helpText": "Enables all MailTips in Outlook. MailTips are the notifications Outlook and Outlook on the web shows when an email you create, meets some requirements", - "addedComponent": [ - { - "type": "number", - "name": "standards.EnableMailTips.MailTipsLargeAudienceThreshold", - "label": "Number of recipients to trigger the large audience MailTip (Default is 25)", - "placeholder": "Enter a profile name", - "default": 25 - } - ], - "label": "Enable all MailTips", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-OrganizationConfig", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.TeamsMeetingsByDefault", - "cat": "Exchange Standards", - "tag": ["lowimpact"], - "helpText": "Sets the default state for automatically turning meetings into Teams meetings for the tenant. This can be overridden by the user in Outlook.", - "addedComponent": [ - { - "type": "Select", - "label": "Select value", - "name": "standards.TeamsMeetingsByDefault.state", - "values": [ - { - "label": "Enabled", - "value": "true" - }, - { - "label": "Disabled", - "value": "false" - } - ] - } - ], - "label": "Set Teams Meetings by default state", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-OrganizationConfig -OnlineMeetingsByDefaultEnabled", - "recommendedBy": [] - }, - { - "name": "standards.DisableViva", - "cat": "Exchange Standards", - "tag": ["lowimpact"], - "helpText": "Disables the daily viva reports for all users.", - "docsDescription": "", - "addedComponent": [], - "label": "Disable daily Insight/Viva reports", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-UserBriefingConfig", - "recommendedBy": [] - }, - { - "name": "standards.RotateDKIM", - "cat": "Exchange Standards", - "tag": ["lowimpact", "CIS"], - "helpText": "Rotate DKIM keys that are 1024 bit to 2048 bit", - "addedComponent": [], - "label": "Rotate DKIM keys that are 1024 bit to 2048 bit", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Rotate-DkimSigningConfig", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.AddDKIM", - "cat": "Exchange Standards", - "tag": ["lowimpact", "CIS"], - "helpText": "Enables DKIM for all domains that currently support it", - "addedComponent": [], - "label": "Enables DKIM for all domains that currently support it", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "New-DkimSigningConfig and Set-DkimSigningConfig", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.EnableMailboxAuditing", - "cat": "Exchange Standards", - "tag": ["lowimpact", "CIS", "exo_mailboxaudit"], - "helpText": "Enables Mailbox auditing for all mailboxes and on tenant level. Disables audit bypass on all mailboxes. Unified Audit Log needs to be enabled for this standard to function.", - "docsDescription": "Enables mailbox auditing on tenant level and for all mailboxes. Disables audit bypass on all mailboxes. By default Microsoft does not enable mailbox auditing for Resource Mailboxes, Public Folder Mailboxes and DiscoverySearch Mailboxes. Unified Audit Log needs to be enabled for this standard to function.", - "addedComponent": [], - "label": "Enable Mailbox auditing", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-OrganizationConfig -AuditDisabled $false", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.SendReceiveLimitTenant", - "cat": "Exchange Standards", - "tag": ["lowimpact"], - "helpText": "Sets the Send and Receive limits for new users. Valid values are 1MB to 150MB", - "addedComponent": [ - { - "type": "number", - "name": "standards.SendReceiveLimitTenant.SendLimit", - "label": "Send limit in MB (Default is 35)", - "default": 35 - }, - { - "type": "number", - "name": "standards.SendReceiveLimitTenant.ReceiveLimit", - "label": "Receive Limit in MB (Default is 36)", - "default": 36 - } - ], - "label": "Set send/receive size limits", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-MailboxPlan", - "recommendedBy": [] - }, - { - "name": "standards.calDefault", - "cat": "Exchange Standards", - "tag": ["lowimpact"], - "helpText": "Sets the default sharing level for the default calendar, for all users", - "docsDescription": "Sets the default sharing level for the default calendar for all users in the tenant. You can read about the different sharing levels [here.](https://learn.microsoft.com/en-us/powershell/module/exchange/set-mailboxfolderpermission?view=exchange-ps#-accessrights)", - "disabledFeatures": { - "report": true, - "warn": true, - "remediate": false - }, - "addedComponent": [ - { - "type": "Select", - "label": "Select Sharing Level", - "name": "standards.calDefault.permissionlevel", - "values": [ - { - "label": "Owner - The user can create, read, edit, and delete all items in the folder, and create subfolders. The user is both folder owner and folder contact.", - "value": "Owner" - }, - { - "label": "Publishing Editor - The user can create, read, edit, and delete all items in the folder, and create subfolders.", - "value": "PublishingEditor" - }, - { - "label": "Editor - The user can create items in the folder. The contents of the folder do not appear.", - "value": "Editor" - }, - { - "label": "Publishing Author. The user can read, create all items/subfolders. Can modify and delete only items they create.", - "value": "PublishingAuthor" - }, - { - "label": "Author - The user can create and read items, and modify and delete items that they create.", - "value": "Author" - }, - { - "label": "Non Editing Author - The user has full read access and create items. Can can delete only own items.", - "value": "NonEditingAuthor" - }, - { - "label": "Reviewer - The user can read all items in the folder.", - "value": "Reviewer" - }, - { - "label": "Contributor - The user can create items and folders.", - "value": "Contributor" - }, - { - "label": "Availability Only - Indicates that the user can view only free/busy time within the calendar.", - "value": "AvailabilityOnly" - }, - { - "label": "Limited Details - The user can view free/busy time within the calendar and the subject and location of appointments.", - "value": "LimitedDetails" - }, - { - "label": "None - The user has no permissions on the folder.", - "value": "none" - } - ] - } - ], - "label": "Set Sharing Level for Default calendar", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-MailboxFolderPermission", - "recommendedBy": [] - }, - { - "name": "standards.DisableExternalCalendarSharing", - "cat": "Exchange Standards", - "tag": ["lowimpact", "CIS", "exo_individualsharing"], - "helpText": "Disables the ability for users to share their calendar with external users. Only for the default policy, so exclusions can be made if needed.", - "docsDescription": "Disables external calendar sharing for the entire tenant. This is not a widely used feature, and it's therefore unlikely that this will impact users. Only for the default policy, so exclusions can be made if needed by making a new policy and assigning it to users.", - "addedComponent": [], - "label": "Disable external calendar sharing", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Get-SharingPolicy | Set-SharingPolicy -Enabled $False", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.DisableAdditionalStorageProviders", - "cat": "Exchange Standards", - "tag": ["lowimpact", "CIS", "exo_storageproviderrestricted"], - "helpText": "Disables the ability for users to open files in Outlook on the Web, from other providers such as Box, Dropbox, Facebook, Google Drive, OneDrive Personal, etc.", - "docsDescription": "Disables additional storage providers in OWA. This is to prevent users from using personal storage providers like Dropbox, Google Drive, etc. Usually this has little user impact.", - "addedComponent": [], - "label": "Disable additional storage providers in OWA", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Get-OwaMailboxPolicy | Set-OwaMailboxPolicy -AdditionalStorageProvidersEnabled $False", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.ShortenMeetings", - "cat": "Exchange Standards", - "tag": ["mediumimpact"], - "helpText": "Sets the shorten meetings settings on a tenant level. This will shorten meetings by the selected amount of minutes. Valid values are 0 to 29. Short meetings are under 60 minutes, long meetings are over 60 minutes.", - "addedComponent": [ - { - "type": "Select", - "label": "Select value", - "name": "standards.ShortenMeetings.ShortenEventScopeDefault", - "values": [ - { - "label": "Disabled/None", - "value": "None" - }, - { - "label": "End early", - "value": "EndEarly" - }, - { - "label": "Start late", - "value": "StartLate" - } - ] - }, - { - "type": "number", - "name": "standards.ShortenMeetings.DefaultMinutesToReduceShortEventsBy", - "label": "Minutes to reduce short calendar events by (Default is 5)", - "default": 5 - }, - { - "type": "number", - "name": "standards.ShortenMeetings.DefaultMinutesToReduceLongEventsBy", - "label": "Minutes to reduce long calendar events by (Default is 10)", - "default": 10 - } - ], - "label": "Set shorten meetings state", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Set-OrganizationConfig -ShortenEventScopeDefault -DefaultMinutesToReduceShortEventsBy -DefaultMinutesToReduceLongEventsBy", - "recommendedBy": [] - }, - { - "name": "standards.Bookings", - "cat": "Exchange Standards", - "tag": ["mediumimpact"], - "helpText": "Sets the state of Bookings on the tenant. Bookings is a scheduling tool that allows users to book appointments with others both internal and external.", - "docsDescription": "", - "addedComponent": [ - { - "type": "Select", - "label": "Select value", - "name": "standards.Bookings.state", - "values": [ - { - "label": "Enabled", - "value": "true" - }, - { - "label": "Disabled", - "value": "false" - } - ] - } - ], - "label": "Set Bookings state", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Set-OrganizationConfig -BookingsEnabled", - "recommendedBy": [] - }, - { - "name": "standards.DisableOutlookAddins", - "cat": "Exchange Standards", - "tag": ["mediumimpact", "CIS", "exo_outlookaddins"], - "helpText": "Disables the ability for users to install add-ins in Outlook. This is to prevent users from installing malicious add-ins.", - "docsDescription": "Disables users from being able to install add-ins in Outlook. Only admins are able to approve add-ins for the users. This is done to reduce the threat surface for data exfiltration.", - "addedComponent": [], - "label": "Disable users from installing add-ins in Outlook", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Get-ManagementRoleAssignment | Remove-ManagementRoleAssignment", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.SafeSendersDisable", - "cat": "Exchange Standards", - "tag": ["mediumimpact"], - "helpText": "Loops through all users and removes the Safe Senders list. This is to prevent SPF bypass attacks, as the Safe Senders list is not checked by SPF.", - "addedComponent": [], - "disabledFeatures": { - "report": true, - "warn": true, - "remediate": false - }, - "label": "Remove Safe Senders to prevent SPF bypass", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Set-MailboxJunkEmailConfiguration", - "recommendedBy": [] - }, - { - "name": "standards.DelegateSentItems", - "cat": "Exchange Standards", - "tag": ["mediumimpact"], - "helpText": "Sets emails sent as and on behalf of shared mailboxes to also be stored in the shared mailbox sent items folder", - "docsDescription": "This makes sure that e-mails sent from shared mailboxes or delegate mailboxes, end up in the mailbox of the shared/delegate mailbox instead of the sender, allowing you to keep replies in the same mailbox as the original e-mail.", - "addedComponent": [], - "label": "Set mailbox Sent Items delegation (Sent items for shared mailboxes)", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Set-Mailbox", - "recommendedBy": [] - }, - { - "name": "standards.SendFromAlias", - "cat": "Exchange Standards", - "tag": ["mediumimpact"], - "helpText": "Enables the ability for users to send from their alias addresses.", - "docsDescription": "Allows users to change the 'from' address to any set in their Azure AD Profile.", - "addedComponent": [], - "label": "Allow users to send from their alias addresses", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Set-Mailbox", - "recommendedBy": [] - }, - { - "name": "standards.UserSubmissions", - "cat": "Exchange Standards", - "tag": ["mediumimpact"], - "helpText": "Set the state of the spam submission button in Outlook", - "docsDescription": "Set the state of the built-in Report button in Outlook. This gives the users the ability to report emails as spam or phish.", - "addedComponent": [ - { - "type": "Select", - "label": "Select value", - "name": "standards.UserSubmissions.state", - "values": [ - { - "label": "Enabled", - "value": "enable" - }, - { - "label": "Disabled", - "value": "disable" - } - ] - }, - { - "type": "input", - "name": "standards.UserSubmissions.email", - "label": "Destination email address" - } - ], - "label": "Set the state of the built-in Report button in Outlook", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "New-ReportSubmissionPolicy or Set-ReportSubmissionPolicy and New-ReportSubmissionRule or Set-ReportSubmissionRule", - "recommendedBy": [] - }, - { - "name": "standards.DisableSharedMailbox", - "cat": "Exchange Standards", - "tag": ["mediumimpact", "CIS"], - "helpText": "Blocks login for all accounts that are marked as a shared mailbox. This is Microsoft best practice to prevent direct logons to shared mailboxes.", - "docsDescription": "Shared mailboxes can be directly logged into if the password is reset, this presents a security risk as do all shared login credentials. Microsoft's recommendation is to disable the user account for shared mailboxes. It would be a good idea to review the sign-in reports to establish potential impact.", - "addedComponent": [], - "label": "Disable Shared Mailbox AAD accounts", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Get-Mailbox & Update-MgUser", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.EXODisableAutoForwarding", - "cat": "Exchange Standards", - "tag": ["highimpact", "CIS", "mdo_autoforwardingmode", "mdo_blockmailforward"], - "helpText": "Disables the ability for users to automatically forward e-mails to external recipients.", - "docsDescription": "Disables the ability for users to automatically forward e-mails to external recipients. This is to prevent data exfiltration. Please check if there are any legitimate use cases for this feature before implementing, like forwarding invoices and such.", - "addedComponent": [], - "label": "Disable automatic forwarding to external recipients", - "impact": "High Impact", - "impactColour": "danger", - "powershellEquivalent": "Set-HostedOutboundSpamFilterPolicy -AutoForwardingMode 'Off'", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.QuarantineRequestAlert", - "cat": "Defender Standards", - "tag": ["lowimpact"], - "helpText": "Sets a e-mail address to alert when a User requests to release a quarantined message.", - "docsDescription": "Sets a e-mail address to alert when a User requests to release a quarantined message. This is useful for monitoring and ensuring that the correct messages are released.", - "addedComponent": [ - { - "type": "input", - "name": "standards.QuarantineRequestAlert.NotifyUser", - "label": "E-mail to receive the alert" - } - ], - "label": "Quarantine Release Request Alert", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "New-ProtectionAlert and Set-ProtectionAlert", - "recommendedBy": [] - }, - { - "name": "standards.SafeLinksPolicy", - "cat": "Defender Standards", - "tag": ["lowimpact", "CIS", "mdo_safelinksforemail", "mdo_safelinksforOfficeApps"], - "helpText": "This creates a safelink policy that automatically scans, tracks, and and enables safe links for Email, Office, and Teams for both external and internal senders", - "addedComponent": [ - { - "type": "boolean", - "label": "AllowClickThrough", - "name": "standards.SafeLinksPolicy.AllowClickThrough" - }, - { - "type": "boolean", - "label": "DisableUrlRewrite", - "name": "standards.SafeLinksPolicy.DisableUrlRewrite" - }, - { - "type": "boolean", - "label": "EnableOrganizationBranding", - "name": "standards.SafeLinksPolicy.EnableOrganizationBranding" - } - ], - "label": "Default SafeLinks Policy", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-SafeLinksPolicy or New-SafeLinksPolicy", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.AntiPhishPolicy", - "cat": "Defender Standards", - "tag": [ - "lowimpact", - "CIS", - "mdo_safeattachments", - "mdo_highconfidencespamaction", - "mdo_highconfidencephishaction", - "mdo_phisspamacation", - "mdo_spam_notifications_only_for_admins", - "mdo_antiphishingpolicies", - "mdo_phishthresholdlevel" - ], - "helpText": "This creates a Anti-Phishing policy that automatically enables Mailbox Intelligence and spoofing, optional switches for Mailtips.", - "addedComponent": [ - { - "type": "number", - "label": "Phishing email threshold. (Default 1)", - "name": "standards.AntiPhishPolicy.PhishThresholdLevel", - "default": 1 - }, - { - "type": "boolean", - "label": "Show first contact safety tip", - "name": "standards.AntiPhishPolicy.EnableFirstContactSafetyTips", - "default": true - }, - { - "type": "boolean", - "label": "Show user impersonation safety tip", - "name": "standards.AntiPhishPolicy.EnableSimilarUsersSafetyTips", - "default": true - }, - { - "type": "boolean", - "label": "Show domain impersonation safety tip", - "name": "standards.AntiPhishPolicy.EnableSimilarDomainsSafetyTips", - "default": true - }, - { - "type": "boolean", - "label": "Show user impersonation unusual characters safety tip", - "name": "standards.AntiPhishPolicy.EnableUnusualCharactersSafetyTips", - "default": true - }, - { - "type": "Select", - "label": "If the message is detected as spoof by spoof intelligence", - "name": "standards.AntiPhishPolicy.AuthenticationFailAction", - "values": [ - { - "label": "Quarantine the message", - "value": "Quarantine" - }, - { - "label": "Move to Junk Folder", - "value": "MoveToJmf" - } - ] - }, - { - "type": "Select", - "label": "Quarantine policy for Spoof", - "name": "standards.AntiPhishPolicy.SpoofQuarantineTag", - "values": [ - { - "label": "AdminOnlyAccessPolicy", - "value": "AdminOnlyAccessPolicy" - }, - { - "label": "DefaultFullAccessPolicy", - "value": "DefaultFullAccessPolicy" - }, - { - "label": "DefaultFullAccessWithNotificationPolicy", - "value": "DefaultFullAccessWithNotificationPolicy" - } - ] - }, - { - "type": "Select", - "label": "If a message is detected as user impersonation", - "name": "standards.AntiPhishPolicy.TargetedUserProtectionAction", - "values": [ - { - "label": "Move to Junk Folder", - "value": "MoveToJmf" - }, - { - "label": "Delete the message before its delivered", - "value": "Delete" - }, - { - "label": "Quarantine the message", - "value": "Quarantine" - } - ] - }, - { - "type": "Select", - "label": "Quarantine policy for user impersonation", - "name": "standards.AntiPhishPolicy.TargetedUserQuarantineTag", - "values": [ - { - "label": "AdminOnlyAccessPolicy", - "value": "AdminOnlyAccessPolicy" - }, - { - "label": "DefaultFullAccessPolicy", - "value": "DefaultFullAccessPolicy" - }, - { - "label": "DefaultFullAccessWithNotificationPolicy", - "value": "DefaultFullAccessWithNotificationPolicy" - } - ] - }, - { - "type": "Select", - "label": "If a message is detected as domain impersonation", - "name": "standards.AntiPhishPolicy.TargetedDomainProtectionAction", - "values": [ - { - "label": "Move to Junk Folder", - "value": "MoveToJmf" - }, - { - "label": "Delete the message before its delivered", - "value": "Delete" - }, - { - "label": "Quarantine the message", - "value": "Quarantine" - } - ] - }, - { - "type": "Select", - "label": "Quarantine policy for domain impersonation", - "name": "standards.AntiPhishPolicy.TargetedDomainQuarantineTag", - "values": [ - { - "label": "DefaultFullAccessWithNotificationPolicy", - "value": "DefaultFullAccessWithNotificationPolicy" - }, - { - "label": "AdminOnlyAccessPolicy", - "value": "AdminOnlyAccessPolicy" - }, - { - "label": "DefaultFullAccessPolicy", - "value": "DefaultFullAccessPolicy" - } - ] - }, - { - "type": "Select", - "label": "If Mailbox Intelligence detects an impersonated user", - "name": "standards.AntiPhishPolicy.MailboxIntelligenceProtectionAction", - "values": [ - { - "label": "Move to Junk Folder", - "value": "MoveToJmf" - }, - { - "label": "Delete the message before its delivered", - "value": "Delete" - }, - { - "label": "Quarantine the message", - "value": "Quarantine" - } - ] - }, - { - "type": "Select", - "label": "Apply quarantine policy", - "name": "standards.AntiPhishPolicy.MailboxIntelligenceQuarantineTag", - "values": [ - { - "label": "AdminOnlyAccessPolicy", - "value": "AdminOnlyAccessPolicy" - }, - { - "label": "DefaultFullAccessPolicy", - "value": "DefaultFullAccessPolicy" - }, - { - "label": "DefaultFullAccessWithNotificationPolicy", - "value": "DefaultFullAccessWithNotificationPolicy" - } - ] - } - ], - "label": "Default Anti-Phishing Policy", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-AntiphishPolicy or New-AntiphishPolicy", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.SafeAttachmentPolicy", - "cat": "Defender Standards", - "tag": [ - "lowimpact", - "CIS", - "mdo_safedocuments", - "mdo_commonattachmentsfilter", - "mdo_safeattachmentpolicy" - ], - "helpText": "This creates a Safe Attachment policy", - "addedComponent": [ - { - "type": "Select", - "label": "Action", - "name": "standards.SafeAttachmentPolicy.Action", - "values": [ - { - "label": "Allow", - "value": "Allow" - }, - { - "label": "Block", - "value": "Block" - }, - { - "label": "DynamicDelivery", - "value": "DynamicDelivery" - } - ] - }, - { - "type": "Select", - "label": "QuarantineTag", - "name": "standards.SafeAttachmentPolicy.QuarantineTag", - "values": [ - { - "label": "AdminOnlyAccessPolicy", - "value": "AdminOnlyAccessPolicy" - }, - { - "label": "DefaultFullAccessPolicy", - "value": "DefaultFullAccessPolicy" - }, - { - "label": "DefaultFullAccessWithNotificationPolicy", - "value": "DefaultFullAccessWithNotificationPolicy" - } - ] - }, - { - "type": "boolean", - "label": "Redirect", - "name": "standards.SafeAttachmentPolicy.Redirect" - }, - { - "type": "input", - "name": "standards.SafeAttachmentPolicy.RedirectAddress", - "label": "Redirect Address" - } - ], - "label": "Default Safe Attachment Policy", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-SafeAttachmentPolicy or New-SafeAttachmentPolicy", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.AtpPolicyForO365", - "cat": "Defender Standards", - "tag": ["lowimpact", "CIS"], - "helpText": "This creates a Atp policy that enables Defender for Office 365 for Sharepoint, OneDrive and Microsoft Teams.", - "addedComponent": [ - { - "type": "boolean", - "label": "Allow people to click through Protected View even if Safe Documents identified the file as malicious", - "name": "standards.AtpPolicyForO365.AllowSafeDocsOpen", - "default": false - } - ], - "label": "Default Atp Policy For O365", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-AtpPolicyForO365", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.MalwareFilterPolicy", - "cat": "Defender Standards", - "tag": ["lowimpact", "CIS", "mdo_zapspam", "mdo_zapphish", "mdo_zapmalware"], - "helpText": "This creates a Malware filter policy that enables the default File filter and Zero-hour auto purge for malware.", - "addedComponent": [ - { - "type": "Select", - "label": "FileTypeAction", - "name": "standards.MalwareFilterPolicy.FileTypeAction", - "values": [ - { - "label": "Reject", - "value": "Reject" - }, - { - "label": "Quarantine the message", - "value": "Quarantine" - } - ] - }, - { - "type": "input", - "name": "standards.MalwareFilterPolicy.OptionalFileTypes", - "label": "Optional File Types, Comma separated" - }, - { - "type": "Select", - "label": "QuarantineTag", - "name": "standards.MalwareFilterPolicy.QuarantineTag", - "values": [ - { - "label": "AdminOnlyAccessPolicy", - "value": "AdminOnlyAccessPolicy" - }, - { - "label": "DefaultFullAccessPolicy", - "value": "DefaultFullAccessPolicy" - }, - { - "label": "DefaultFullAccessWithNotificationPolicy", - "value": "DefaultFullAccessWithNotificationPolicy" - } - ] - }, - { - "type": "boolean", - "label": "Enable Internal Sender Admin Notifications", - "name": "standards.MalwareFilterPolicy.EnableInternalSenderAdminNotifications" - }, - { - "type": "input", - "name": "standards.MalwareFilterPolicy.InternalSenderAdminAddress", - "label": "Internal Sender Admin Address" - }, - { - "type": "boolean", - "label": "Enable External Sender Admin Notifications", - "name": "standards.MalwareFilterPolicy.EnableExternalSenderAdminNotifications" - }, - { - "type": "input", - "name": "standards.MalwareFilterPolicy.ExternalSenderAdminAddress", - "label": "External Sender Admin Address" - } - ], - "label": "Default Malware Filter Policy", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-MalwareFilterPolicy or New-MalwareFilterPolicy", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.SpamFilterPolicy", - "cat": "Defender Standards", - "tag": ["mediumimpact"], - "helpText": "This standard creates a Spam filter policy similar to the default strict policy.", - "addedComponent": [ - { - "type": "number", - "label": "Bulk email threshold (Default 7)", - "name": "standards.SpamFilterPolicy.BulkThreshold", - "default": 7 - }, - { - "type": "Select", - "label": "Spam Action", - "name": "standards.SpamFilterPolicy.SpamAction", - "values": [ - { - "label": "Quarantine the message", - "value": "Quarantine" - }, - { - "label": "Move message to Junk Email folder", - "value": "MoveToJmf" - } - ] - }, - { - "type": "Select", - "label": "Spam Quarantine Tag", - "name": "standards.SpamFilterPolicy.SpamQuarantineTag", - "values": [ - { - "label": "AdminOnlyAccessPolicy", - "value": "AdminOnlyAccessPolicy" - }, - { - "label": "DefaultFullAccessPolicy", - "value": "DefaultFullAccessPolicy" - }, - { - "label": "DefaultFullAccessWithNotificationPolicy", - "value": "DefaultFullAccessWithNotificationPolicy" - } - ] - }, - { - "type": "Select", - "label": "High Confidence Spam Action", - "name": "standards.SpamFilterPolicy.HighConfidenceSpamAction", - "values": [ - { - "label": "Quarantine the message", - "value": "Quarantine" - }, - { - "label": "Move message to Junk Email folder", - "value": "MoveToJmf" - } - ] - }, - { - "type": "Select", - "label": "High Confidence Spam Quarantine Tag", - "name": "standards.SpamFilterPolicy.HighConfidenceSpamQuarantineTag", - "values": [ - { - "label": "AdminOnlyAccessPolicy", - "value": "AdminOnlyAccessPolicy" - }, - { - "label": "DefaultFullAccessPolicy", - "value": "DefaultFullAccessPolicy" - }, - { - "label": "DefaultFullAccessWithNotificationPolicy", - "value": "DefaultFullAccessWithNotificationPolicy" - } - ] - }, - { - "type": "Select", - "label": "Bulk Spam Action", - "name": "standards.SpamFilterPolicy.BulkSpamAction", - "values": [ - { - "label": "Quarantine the message", - "value": "Quarantine" - }, - { - "label": "Move message to Junk Email folder", - "value": "MoveToJmf" - } - ] - }, - { - "type": "Select", - "label": "Bulk Quarantine Tag", - "name": "standards.SpamFilterPolicy.BulkQuarantineTag", - "values": [ - { - "label": "AdminOnlyAccessPolicy", - "value": "AdminOnlyAccessPolicy" - }, - { - "label": "DefaultFullAccessPolicy", - "value": "DefaultFullAccessPolicy" - }, - { - "label": "DefaultFullAccessWithNotificationPolicy", - "value": "DefaultFullAccessWithNotificationPolicy" - } - ] - }, - { - "type": "Select", - "label": "Phish Spam Action", - "name": "standards.SpamFilterPolicy.PhishSpamAction", - "values": [ - { - "label": "Quarantine the message", - "value": "Quarantine" - }, - { - "label": "Move message to Junk Email folder", - "value": "MoveToJmf" - } - ] - }, - { - "type": "Select", - "label": "Phish Quarantine Tag", - "name": "standards.SpamFilterPolicy.PhishQuarantineTag", - "values": [ - { - "label": "AdminOnlyAccessPolicy", - "value": "AdminOnlyAccessPolicy" - }, - { - "label": "DefaultFullAccessPolicy", - "value": "DefaultFullAccessPolicy" - }, - { - "label": "DefaultFullAccessWithNotificationPolicy", - "value": "DefaultFullAccessWithNotificationPolicy" - } - ] - }, - { - "type": "Select", - "label": "High Confidence Phish Quarantine Tag", - "name": "standards.SpamFilterPolicy.HighConfidencePhishQuarantineTag", - "values": [ - { - "label": "AdminOnlyAccessPolicy", - "value": "AdminOnlyAccessPolicy" - }, - { - "label": "DefaultFullAccessPolicy", - "value": "DefaultFullAccessPolicy" - }, - { - "label": "DefaultFullAccessWithNotificationPolicy", - "value": "DefaultFullAccessWithNotificationPolicy" - } - ] - } - ], - "label": "Default Spam Filter Policy", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "New-HostedContentFilterPolicy or Set-HostedContentFilterPolicy", - "recommendedBy": [] - }, - { - "name": "standards.intuneDeviceRetirementDays", - "cat": "Intune Standards", - "tag": ["lowimpact"], - "helpText": "A value between 0 and 270 is supported. A value of 0 disables retirement, retired devices are removed from Intune after the specified number of days.", - "addedComponent": [ - { - "type": "number", - "name": "standards.intuneDeviceRetirementDays.days", - "label": "Maximum days (0 equals disabled)" - } - ], - "label": "Set inactive device retirement days", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Graph API", - "recommendedBy": [] - }, - { - "name": "standards.intuneBrandingProfile", - "cat": "Intune Standards", - "tag": ["lowimpact"], - "helpText": "Sets the branding profile for the Intune Company Portal app. This is a tenant wide setting and overrules any settings set on the app level.", - "addedComponent": [ - { - "type": "input", - "name": "standards.intuneBrandingProfile.displayName", - "label": "Organization name" - }, - { - "type": "boolean", - "name": "standards.intuneBrandingProfile.showLogo", - "label": "Show logo" - }, - { - "type": "boolean", - "name": "standards.intuneBrandingProfile.showDisplayNameNextToLogo", - "label": "Show organization name next to logo" - }, - { - "type": "input", - "name": "standards.intuneBrandingProfile.contactITName", - "label": "Contact IT name" - }, - { - "type": "input", - "name": "standards.intuneBrandingProfile.contactITPhoneNumber", - "label": "Contact IT phone number" - }, - { - "type": "input", - "name": "standards.intuneBrandingProfile.contactITEmailAddress", - "label": "Contact IT email address" - }, - { - "type": "input", - "name": "standards.intuneBrandingProfile.contactITNotes", - "label": "Contact IT notes" - }, - { - "type": "input", - "name": "standards.intuneBrandingProfile.onlineSupportSiteName", - "label": "Online support site name" - }, - { - "type": "input", - "name": "standards.intuneBrandingProfile.onlineSupportSiteUrl", - "label": "Online support site URL" - }, - { - "type": "input", - "name": "standards.intuneBrandingProfile.privacyUrl", - "label": "Privacy statement URL" - } - ], - "label": "Set Intune Company Portal branding profile", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Graph API", - "recommendedBy": [] - }, - { - "name": "standards.intuneDeviceReg", - "cat": "Intune Standards", - "tag": ["mediumimpact"], - "helpText": "sets the maximum number of devices that can be registered by a user. A value of 0 disables device registration by users", - "addedComponent": [ - { - "type": "number", - "name": "standards.intuneDeviceReg.max", - "label": "Maximum devices (Enter 2147483647 for unlimited.)" - } - ], - "label": "Set Maximum Number of Devices per user", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Update-MgBetaPolicyDeviceRegistrationPolicy", - "recommendedBy": [] - }, - { - "name": "standards.intuneRequireMFA", - "cat": "Intune Standards", - "tag": ["mediumimpact"], - "helpText": "Requires MFA for all users to register devices with Intune. This is useful when not using Conditional Access.", - "label": "Require Multifactor Authentication to register or join devices with Microsoft Entra", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Update-MgBetaPolicyDeviceRegistrationPolicy", - "recommendedBy": [] - }, - { - "name": "standards.DeletedUserRentention", - "cat": "SharePoint Standards", - "tag": ["lowimpact"], - "helpText": "Sets the retention period for deleted users OneDrive to the specified period of time. The default is 30 days.", - "docsDescription": "When a OneDrive user gets deleted, the personal SharePoint site is saved for selected amount of time that data can be retrieved from it.", - "addedComponent": [ - { - "type": "Select", - "name": "standards.DeletedUserRentention.Days", - "label": "Retention time (Default 30 days)", - "values": [ - { - "label": "30 days", - "value": "30" - }, - { - "label": "90 days", - "value": "90" - }, - { - "label": "1 year", - "value": "365" - }, - { - "label": "2 years", - "value": "730" - }, - { - "label": "3 years", - "value": "1095" - }, - { - "label": "4 years", - "value": "1460" - }, - { - "label": "5 years", - "value": "1825" - }, - { - "label": "6 years", - "value": "2190" - }, - { - "label": "7 years", - "value": "2555" - }, - { - "label": "8 years", - "value": "2920" - }, - { - "label": "9 years", - "value": "3285" - }, - { - "label": "10 years", - "value": "3650" - } - ] - } - ], - "label": "Set deleted user retention time in OneDrive", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Update-MgBetaAdminSharepointSetting", - "recommendedBy": [] - }, - { - "name": "standards.TenantDefaultTimezone", - "cat": "SharePoint Standards", - "tag": ["lowimpact"], - "helpText": "Sets the default timezone for the tenant. This will be used for all new users and sites.", - "addedComponent": [ - { - "type": "TimezoneSelect", - "name": "standards.TenantDefaultTimezone.Timezone", - "label": "Timezone" - } - ], - "label": "Set Default Timezone for Tenant", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Update-MgBetaAdminSharepointSetting", - "recommendedBy": [] - }, - { - "name": "standards.SPAzureB2B", - "cat": "SharePoint Standards", - "tag": ["lowimpact", "CIS"], - "helpText": "Ensure SharePoint and OneDrive integration with Azure AD B2B is enabled", - "addedComponent": [], - "label": "Enable SharePoint and OneDrive integration with Azure AD B2B", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-SPOTenant -EnableAzureADB2BIntegration $true", - "recommendedBy": ["CIS 3.0"] - }, - { - "name": "standards.SPDisallowInfectedFiles", - "cat": "SharePoint Standards", - "tag": ["lowimpact", "CIS"], - "helpText": "Ensure Office 365 SharePoint infected files are disallowed for download", - "addedComponent": [], - "label": "Disallow downloading infected files from SharePoint", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-SPOTenant -DisallowInfectedFileDownload $true", - "recommendedBy": ["CIS 3.0"] - }, - { - "name": "standards.SPDisableLegacyWorkflows", - "cat": "SharePoint Standards", - "tag": ["lowimpact"], - "helpText": "Disables the creation of new SharePoint 2010 and 2013 classic workflows and removes the 'Return to classic SharePoint' link on modern SharePoint list and library pages.", - "addedComponent": [], - "label": "Disable Legacy Workflows", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-SPOTenant -DisableWorkflow2010 $true -DisableWorkflow2013 $true -DisableBackToClassic $true", - "recommendedBy": [] - }, - { - "name": "standards.SPDirectSharing", - "cat": "SharePoint Standards", - "tag": ["mediumimpact", "CIS"], - "helpText": "Ensure default link sharing is set to Direct in SharePoint and OneDrive", - "addedComponent": [], - "label": "Default sharing to Direct users", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Set-SPOTenant -DefaultSharingLinkType Direct", - "recommendedBy": ["CIS 3.0"] - }, - { - "name": "standards.SPExternalUserExpiration", - "cat": "SharePoint Standards", - "tag": ["mediumimpact", "CIS"], - "helpText": "Ensure guest access to a site or OneDrive will expire automatically", - "addedComponent": [ - { - "type": "number", - "name": "standards.SPExternalUserExpiration.Days", - "label": "Days until expiration (Default 60)" - } - ], - "label": "Set guest access to expire automatically", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Set-SPOTenant -ExternalUserExpireInDays 30 -ExternalUserExpirationRequired $True", - "recommendedBy": ["CIS 3.0"] - }, - { - "name": "standards.SPEmailAttestation", - "cat": "SharePoint Standards", - "tag": ["mediumimpact", "CIS"], - "helpText": "Ensure reauthentication with verification code is restricted", - "addedComponent": [ - { - "type": "number", - "name": "standards.SPEmailAttestation.Days", - "label": "Require reauth every X Days (Default 15)" - } - ], - "label": "Require reauthentication with verification code", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Set-SPOTenant -EmailAttestationRequired $true -EmailAttestationReAuthDays 15", - "recommendedBy": ["CIS 3.0"] - }, - { - "name": "standards.DisableAddShortcutsToOneDrive", - "cat": "SharePoint Standards", - "tag": ["mediumimpact"], - "helpText": "If disabled, the button Add shortcut to OneDrive will be removed and users in the tenant will no longer be able to add new shortcuts to their OneDrive. Existing shortcuts will remain functional", - "addedComponent": [ - { - "type": "Select", - "label": "Add Shortcuts To OneDrive button state", - "name": "standards.DisableAddShortcutsToOneDrive.state", - "values": [ - { - "label": "Disabled", - "value": "true" - }, - { - "label": "Enabled", - "value": "false" - } - ] - } - ], - "label": "Set Add Shortcuts To OneDrive button state", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Set-SPOTenant -DisableAddShortcutsToOneDrive $true or $false", - "recommendedBy": [] - }, - { - "name": "standards.SPSyncButtonState", - "cat": "SharePoint Standards", - "tag": ["mediumimpact"], - "helpText": "If disabled, users in the tenant will no longer be able to use the Sync button to sync SharePoint content on all sites. However, existing synced content will remain functional on the user's computer.", - "addedComponent": [ - { - "type": "Select", - "label": "SharePoint Sync Button state", - "name": "standards.SPSyncButtonState.state", - "values": [ - { - "label": "Disabled", - "value": "true" - }, - { - "label": "Enabled", - "value": "false" - } - ] - } - ], - "label": "Set SharePoint sync button state", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Set-SPOTenant -HideSyncButtonOnTeamSite $true or $false", - "recommendedBy": [] - }, - { - "name": "standards.DisableSharePointLegacyAuth", - "cat": "SharePoint Standards", - "tag": ["mediumimpact", "CIS", "spo_legacy_auth"], - "helpText": "Disables the ability to authenticate with SharePoint using legacy authentication methods. Any applications that use legacy authentication will need to be updated to use modern authentication.", - "docsDescription": "Disables the ability for users and applications to access SharePoint via legacy basic authentication. This will likely not have any user impact, but will block systems/applications depending on basic auth or the SharePointOnlineCredentials class.", - "addedComponent": [], - "label": "Disable legacy basic authentication for SharePoint", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Set-SPOTenant -LegacyAuthProtocolsEnabled $false", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.sharingCapability", - "cat": "SharePoint Standards", - "tag": ["highimpact", "CIS"], - "helpText": "Sets the default sharing level for OneDrive and Sharepoint. This is a tenant wide setting and overrules any settings set on the site level", - "addedComponent": [ - { - "type": "Select", - "label": "Select Sharing Level", - "name": "standards.sharingCapability.Level", - "values": [ - { - "label": "Users can share only with people in the organization. No external sharing is allowed.", - "value": "disabled" - }, - { - "label": "Users can share with new and existing guests. Guests must sign in or provide a verification code.", - "value": "externalUserSharingOnly" - }, - { - "label": "Users can share with anyone by using links that do not require sign-in.", - "value": "externalUserAndGuestSharing" - }, - { - "label": "Users can share with existing guests (those already in the directory of the organization).", - "value": "existingExternalUserSharingOnly" - } - ] - } - ], - "label": "Set Sharing Level for OneDrive and Sharepoint", - "impact": "High Impact", - "impactColour": "danger", - "powershellEquivalent": "Update-MgBetaAdminSharepointSetting", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.DisableReshare", - "cat": "SharePoint Standards", - "tag": ["highimpact", "CIS"], - "helpText": "Disables the ability for external users to share files they don't own. Sharing links can only be made for People with existing access", - "docsDescription": "Disables the ability for external users to share files they don't own. Sharing links can only be made for People with existing access. This is a tenant wide setting and overrules any settings set on the site level", - "addedComponent": [], - "label": "Disable Resharing by External Users", - "impact": "High Impact", - "impactColour": "danger", - "powershellEquivalent": "Update-MgBetaAdminSharepointSetting", - "recommendedBy": ["CIS"] - }, - { - "name": "standards.DisableUserSiteCreate", - "cat": "SharePoint Standards", - "tag": ["highimpact"], - "helpText": "Disables users from creating new SharePoint sites", - "docsDescription": "Disables standard users from creating SharePoint sites, also disables the ability to fully create teams", - "addedComponent": [], - "label": "Disable site creation by standard users", - "impact": "High Impact", - "impactColour": "danger", - "powershellEquivalent": "Update-MgAdminSharepointSetting", - "recommendedBy": [] - }, - { - "name": "standards.ExcludedfileExt", - "cat": "SharePoint Standards", - "tag": ["highimpact"], - "helpText": "Sets the file extensions that are excluded from syncing with OneDrive. These files will be blocked from upload. '*.' is automatically added to the extension and can be omitted.", - "addedComponent": [ - { - "type": "input", - "name": "standards.ExcludedfileExt.ext", - "label": "Extensions, Comma separated" - } - ], - "label": "Exclude File Extensions from Syncing", - "impact": "High Impact", - "impactColour": "danger", - "powershellEquivalent": "Update-MgAdminSharepointSetting", - "recommendedBy": [] - }, - { - "name": "standards.disableMacSync", - "cat": "SharePoint Standards", - "tag": ["highimpact"], - "helpText": "Disables the ability for Mac devices to sync with OneDrive.", - "addedComponent": [], - "label": "Do not allow Mac devices to sync using OneDrive", - "impact": "High Impact", - "impactColour": "danger", - "powershellEquivalent": "Update-MgAdminSharepointSetting", - "recommendedBy": [] - }, - { - "name": "standards.unmanagedSync", - "cat": "SharePoint Standards", - "tag": ["highimpact"], - "helpText": "The unmanaged Sync standard has been temporarily disabled and does nothing.", - "addedComponent": [], - "label": "Only allow users to sync OneDrive from AAD joined devices", - "impact": "High Impact", - "impactColour": "danger", - "powershellEquivalent": "Update-MgAdminSharepointSetting", - "recommendedBy": [] - }, - { - "name": "standards.sharingDomainRestriction", - "cat": "SharePoint Standards", - "tag": ["highimpact", "CIS"], - "helpText": "Restricts sharing to only users with the specified domain. This is useful for organizations that only want to share with their own domain.", - "addedComponent": [ - { - "type": "Select", - "name": "standards.sharingDomainRestriction.Mode", - "label": "Limit external sharing by domains", - "values": [ - { - "label": "Off", - "value": "none" - }, - { - "label": "Restrict sharing to specific domains", - "value": "allowList" - }, - { - "label": "Block sharing to specific domains", - "value": "blockList" - } - ] - }, - { - "type": "input", - "name": "standards.sharingDomainRestriction.Domains", - "label": "Domains to allow/block, comma separated" - } - ], - "label": "Restrict sharing to a specific domain", - "impact": "High Impact", - "impactColour": "danger", - "powershellEquivalent": "Update-MgAdminSharepointSetting", - "recommendedBy": [] - }, - { - "name": "standards.TeamsGlobalMeetingPolicy", - "cat": "Teams Standards", - "tag": ["lowimpact"], - "helpText": "Defines the CIS recommended global meeting policy for Teams. This includes AllowAnonymousUsersToJoinMeeting, AllowAnonymousUsersToStartMeeting, AutoAdmittedUsers, AllowPSTNUsersToBypassLobby, MeetingChatEnabledType, DesignatedPresenterRoleMode, AllowExternalParticipantGiveRequestControl", - "addedComponent": [ - { - "type": "Select", - "name": "standards.TeamsGlobalMeetingPolicy.DesignatedPresenterRoleMode", - "label": "Default value of the `Who can present?`", - "values": [ - { - "label": "EveryoneUserOverride", - "value": "EveryoneUserOverride" - }, - { - "label": "EveryoneInCompanyUserOverride", - "value": "EveryoneInCompanyUserOverride" - }, - { - "label": "EveryoneInSameAndFederatedCompanyUserOverride", - "value": "EveryoneInSameAndFederatedCompanyUserOverride" - }, - { - "label": "OrganizerOnlyUserOverride", - "value": "OrganizerOnlyUserOverride" - } - ] - } - ], - "label": "Define Global Meeting Policy for Teams", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-CsTeamsMeetingPolicy -AllowAnonymousUsersToJoinMeeting $false -AllowAnonymousUsersToStartMeeting $false -AutoAdmittedUsers EveryoneInCompanyExcludingGuests -AllowPSTNUsersToBypassLobby $false -MeetingChatEnabledType EnabledExceptAnonymous -DesignatedPresenterRoleMode $DesignatedPresenterRoleMode -AllowExternalParticipantGiveRequestControl $false", - "recommendedBy": ["CIS 3.0"] - }, - { - "name": "standards.TeamsEmailIntegration", - "cat": "Teams Standards", - "tag": ["lowimpact"], - "helpText": "Should users be allowed to send emails directly to a channel email addresses?", - "docsDescription": "Teams channel email addresses are an optional feature that allows users to email the Teams channel directly.", - "addedComponent": [ - { - "type": "boolean", - "name": "standards.TeamsEmailIntegration.AllowEmailIntoChannel", - "label": "Allow channel emails" - } - ], - "label": "Disallow emails to be sent to channel email addresses", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-CsTeamsClientConfiguration -AllowEmailIntoChannel $false", - "recommendedBy": ["CIS 3.0"] - }, - { - "name": "standards.TeamsExternalFileSharing", - "cat": "Teams Standards", - "tag": ["lowimpact"], - "helpText": "Ensure external file sharing in Teams is enabled for only approved cloud storage services.", - "addedComponent": [ - { - "type": "boolean", - "name": "standards.TeamsExternalFileSharing.AllowGoogleDrive", - "label": "Allow Google Drive" - }, - { - "type": "boolean", - "name": "standards.TeamsExternalFileSharing.AllowShareFile", - "label": "Allow ShareFile" - }, - { - "type": "boolean", - "name": "standards.TeamsExternalFileSharing.AllowBox", - "label": "Allow Box" - }, - { - "type": "boolean", - "name": "standards.TeamsExternalFileSharing.AllowDropBox", - "label": "Allow Dropbox" - }, - { - "type": "boolean", - "name": "standards.TeamsExternalFileSharing.AllowEgnyte", - "label": "Allow Egnyte" - } - ], - "label": "Define approved cloud storage services for external file sharing in Teams", - "impact": "Low Impact", - "impactColour": "info", - "powershellEquivalent": "Set-CsTeamsClientConfiguration -AllowGoogleDrive $false -AllowShareFile $false -AllowBox $false -AllowDropBox $false -AllowEgnyte $false", - "recommendedBy": ["CIS 3.0"] - }, - { - "name": "standards.TeamsExternalAccessPolicy", - "cat": "Teams Standards", - "tag": ["mediumimpact"], - "helpText": "Sets the properties of the Global external access policy.", - "docsDescription": "Sets the properties of the Global external access policy. External access policies determine whether or not your users can: 1) communicate with users who have Session Initiation Protocol (SIP) accounts with a federated organization; 2) communicate with users who are using custom applications built with Azure Communication Services; 3) access Skype for Business Server over the Internet, without having to log on to your internal network; 4) communicate with users who have SIP accounts with a public instant messaging (IM) provider such as Skype; and, 5) communicate with people who are using Teams with an account that's not managed by an organization.", - "addedComponent": [ - { - "type": "boolean", - "name": "standards.TeamsExternalAccessPolicy.EnableFederationAccess", - "label": "Allow communication from trusted organizations" - }, - { - "type": "boolean", - "name": "standards.TeamsExternalAccessPolicy.EnablePublicCloudAccess", - "label": "Allow user to communicate with Skype users" - }, - { - "type": "boolean", - "name": "standards.TeamsExternalAccessPolicy.EnableTeamsConsumerAccess", - "label": "Allow communication with unmanaged Teams accounts" - } - ], - "label": "External Access Settings for Microsoft Teams", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Set-CsExternalAccessPolicy", - "recommendedBy": [] - }, - { - "name": "standards.TeamsFederationConfiguration", - "cat": "Teams Standards", - "tag": ["mediumimpact"], - "helpText": "Sets the properties of the Global federation configuration.", - "docsDescription": "Sets the properties of the Global federation configuration. Federation configuration settings determine whether or not your users can communicate with users who have SIP accounts with a federated organization.", - "addedComponent": [ - { - "type": "boolean", - "name": "standards.TeamsFederationConfiguration.AllowTeamsConsumer", - "label": "Allow users to communicate with other organizations" - }, - { - "type": "boolean", - "name": "standards.TeamsFederationConfiguration.AllowPublicUsers", - "label": "Allow users to communicate with Skype Users" - }, - { - "type": "Select", - "name": "standards.TeamsFederationConfiguration.DomainControl", - "label": "Communication Mode", - "values": [ - { - "label": "Allow all external domains", - "value": "AllowAllExternal" - }, - { - "label": "Block all external domains", - "value": "BlockAllExternal" - }, - { - "label": "Allow specific external domains", - "value": "AllowSpecificExternal" - }, - { - "label": "Block specific external domains", - "value": "BlockSpecificExternal" - } - ] - }, - { - "type": "input", - "name": "standards.TeamsFederationConfiguration.DomainList", - "label": "Domains, Comma separated" - } - ], - "label": "Federation Configuration for Microsoft Teams", - "impact": "Medium Impact", - "impactColour": "warning", - "powershellEquivalent": "Set-CsTenantFederationConfiguration", - "recommendedBy": [] - } -] diff --git a/src/data/timezoneList.json b/src/data/timezoneList.json deleted file mode 100644 index d259bc80e65d..000000000000 --- a/src/data/timezoneList.json +++ /dev/null @@ -1,335 +0,0 @@ -[ - { - "timezone": "(UTC-12:00) International Date Line West" - }, - { - "timezone": "(UTC-11:00) Coordinated Universal Time-11" - }, - { - "timezone": "(UTC-10:00) Hawaii" - }, - { - "timezone": "(UTC-09:00) Alaska" - }, - { - "timezone": "(UTC-08:00) Baja California" - }, - { - "timezone": "(UTC-08:00) Pacific Time (US and Canada)" - }, - { - "timezone": "(UTC-07:00) Arizona" - }, - { - "timezone": "(UTC-07:00) Chihuahua, La Paz, Mazatlan" - }, - { - "timezone": "(UTC-07:00) Mountain Time (US and Canada)" - }, - { - "timezone": "(UTC-06:00) Central America" - }, - { - "timezone": "(UTC-06:00) Central Time (US and Canada)" - }, - { - "timezone": "(UTC-06:00) Guadalajara, Mexico City, Monterrey" - }, - { - "timezone": "(UTC-06:00) Saskatchewan" - }, - { - "timezone": "(UTC-05:00) Bogota, Lima, Quito" - }, - { - "timezone": "(UTC-05:00) Eastern Time (US and Canada)" - }, - { - "timezone": "(UTC-05:00) Indiana (East)" - }, - { - "timezone": "(UTC-04:30) Caracas" - }, - { - "timezone": "(UTC-04:00) Asuncion" - }, - { - "timezone": "(UTC-04:00) Atlantic Time (Canada)" - }, - { - "timezone": "(UTC-04:00) Cuiaba" - }, - { - "timezone": "(UTC-04:00) Georgetown, La Paz, Manaus, San Juan" - }, - { - "timezone": "(UTC-04:00) Santiago" - }, - { - "timezone": "(UTC-03:30) Newfoundland" - }, - { - "timezone": "(UTC-03:00) Brasilia" - }, - { - "timezone": "(UTC-03:00) Buenos Aires" - }, - { - "timezone": "(UTC-03:00) Cayenne, Fortaleza" - }, - { - "timezone": "(UTC-03:00) Greenland" - }, - { - "timezone": "(UTC-03:00) Montevideo" - }, - { - "timezone": "(UTC-03:00) Salvador" - }, - { - "timezone": "(UTC-02:00) Coordinated Universal Time-02" - }, - { - "timezone": "(UTC-02:00) Mid-Atlantic" - }, - { - "timezone": "(UTC-01:00) Azores" - }, - { - "timezone": "(UTC-01:00) Cabo Verde" - }, - { - "timezone": "(UTC) Casablanca" - }, - { - "timezone": "(UTC) Coordinated Universal Time" - }, - { - "timezone": "(UTC) Dublin, Edinburgh, Lisbon, London" - }, - { - "timezone": "(UTC) Monrovia, Reykjavik" - }, - { - "timezone": "(UTC+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna" - }, - { - "timezone": "(UTC+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague" - }, - { - "timezone": "(UTC+01:00) Brussels, Copenhagen, Madrid, Paris" - }, - { - "timezone": "(UTC+01:00) Sarajevo, Skopje, Warsaw, Zagreb" - }, - { - "timezone": "(UTC+01:00) West Central Africa" - }, - { - "timezone": "(UTC+01:00) Windhoek" - }, - { - "timezone": "(UTC+02:00) Amman" - }, - { - "timezone": "(UTC+02:00) Athens, Bucharest" - }, - { - "timezone": "(UTC+02:00) Beirut" - }, - { - "timezone": "(UTC+02:00) Cairo" - }, - { - "timezone": "(UTC+02:00) Damascus" - }, - { - "timezone": "(UTC+02:00) Harare, Pretoria" - }, - { - "timezone": "(UTC+02:00) Helsinki, Kyiv, Riga, Sofia, Tallinn, Vilnius" - }, - { - "timezone": "(UTC+02:00) Jerusalem" - }, - { - "timezone": "(UTC+02:00) Minsk (old)" - }, - { - "timezone": "(UTC+02:00) E. Europe" - }, - { - "timezone": "(UTC+02:00) Kaliningrad" - }, - { - "timezone": "(UTC+03:00) Baghdad" - }, - { - "timezone": "(UTC+03:00) Istanbul" - }, - { - "timezone": "(UTC+03:00) Kuwait, Riyadh" - }, - { - "timezone": "(UTC+03:00) Minsk" - }, - { - "timezone": "(UTC+03:00) Moscow, St. Petersburg, Volgograd" - }, - { - "timezone": "(UTC+03:00) Nairobi" - }, - { - "timezone": "(UTC+03:30) Tehran" - }, - { - "timezone": "(UTC+04:00) Abu Dhabi, Muscat" - }, - { - "timezone": "(UTC+04:00) Astrakhan, Ulyanovsk" - }, - { - "timezone": "(UTC+04:00) Baku" - }, - { - "timezone": "(UTC+04:00) Izhevsk, Samara" - }, - { - "timezone": "(UTC+04:00) Port Louis" - }, - { - "timezone": "(UTC+04:00) Tbilisi" - }, - { - "timezone": "(UTC+04:00) Yerevan" - }, - { - "timezone": "(UTC+04:30) Kabul" - }, - { - "timezone": "(UTC+05:00) Ekaterinburg" - }, - { - "timezone": "(UTC+05:00) Islamabad, Karachi" - }, - { - "timezone": "(UTC+05:00) Tashkent" - }, - { - "timezone": "(UTC+05:30) Chennai, Kolkata, Mumbai, New Delhi" - }, - { - "timezone": "(UTC+05:30) Sri Jayawardenepura" - }, - { - "timezone": "(UTC+05:45) Kathmandu" - }, - { - "timezone": "(UTC+06:00) Astana" - }, - { - "timezone": "(UTC+06:00) Dhaka" - }, - { - "timezone": "(UTC+06:00) Omsk" - }, - { - "timezone": "(UTC+06:30) Yangon (Rangoon)" - }, - { - "timezone": "(UTC+07:00) Bangkok, Hanoi, Jakarta" - }, - { - "timezone": "(UTC+07:00) Barnaul, Gorno-Altaysk" - }, - { - "timezone": "(UTC+07:00) Krasnoyarsk" - }, - { - "timezone": "(UTC+07:00) Novosibirsk" - }, - { - "timezone": "(UTC+07:00) Tomsk" - }, - { - "timezone": "(UTC+08:00) Beijing, Chongqing, Hong Kong, Urumqi" - }, - { - "timezone": "(UTC+08:00) Irkutsk" - }, - { - "timezone": "(UTC+08:00) Kuala Lumpur, Singapore" - }, - { - "timezone": "(UTC+08:00) Perth" - }, - { - "timezone": "(UTC+08:00) Taipei" - }, - { - "timezone": "(UTC+08:00) Ulaanbaatar" - }, - { - "timezone": "(UTC+09:00) Osaka, Sapporo, Tokyo" - }, - { - "timezone": "(UTC+09:00) Seoul" - }, - { - "timezone": "(UTC+09:00) Yakutsk" - }, - { - "timezone": "(UTC+09:30) Adelaide" - }, - { - "timezone": "(UTC+09:30) Darwin" - }, - { - "timezone": "(UTC+10:00) Brisbane" - }, - { - "timezone": "(UTC+10:00) Canberra, Melbourne, Sydney" - }, - { - "timezone": "(UTC+10:00) Guam, Port Moresby" - }, - { - "timezone": "(UTC+10:00) Hobart" - }, - { - "timezone": "(UTC+10:00) Magadan" - }, - { - "timezone": "(UTC+10:00) Vladivostok" - }, - { - "timezone": "(UTC+11:00) Chokurdakh" - }, - { - "timezone": "(UTC+11:00) Sakhalin" - }, - { - "timezone": "(UTC+11:00) Solomon Is., New Caledonia" - }, - { - "timezone": "(UTC+12:00) Anadyr, Petropavlovsk-Kamchatsky" - }, - { - "timezone": "(UTC+12:00) Auckland, Wellington" - }, - { - "timezone": "(UTC+12:00) Coordinated Universal Time+12" - }, - { - "timezone": "(UTC+12:00) Fiji" - }, - { - "timezone": "(UTC+12:00) Petropavlovsk-Kamchatsky - Old" - }, - { - "timezone": "(UTC+13:00) Nuku'alofa" - }, - { - "timezone": "(UTC+13:00) Samoa" - } -] diff --git a/src/data/translator.json b/src/data/translator.json deleted file mode 100644 index 6144de6d1a7d..000000000000 --- a/src/data/translator.json +++ /dev/null @@ -1,152 +0,0 @@ -{ - "accessrights": "AccessRights", - "accountenabled": "Enabled", - "acquisitiondate": "Purchased on", - "actions": "Actions", - "activateddatetime": "Activated", - "activationstate": "Activation State", - "activesyncenabled": "ActiveSync Enabled", - "additionalemailaddresses": "Additional Email Addresses", - "affecteddevices": "Affected Devices Names", - "affecteddevicescount": "# Affected Devices", - "allocated": "Allocated (GB)", - "applicationid": "Application ID", - "assignedlicenses": "Licenses", - "assignedto": "Assigned to User", - "autoextendduration": "Auto Extend", - "avgseconds": "Avg (seconds)", - "builtincontrols": "Built-in Controls", - "callcount": "Call Count", - "cippconnectortype": "Type", - "clientapptypes": "Client App Types", - "clienttype": "Client Type", - "clientversion": "Client Version", - "command": "Command", - "comment": "Comment", - "companyname": "Company", - "created": " Created Date (Local)", - "createddatetime": "Created", - "customer/displayname": "Tenant", - "cveid": "CVE ID", - "date": "Date", - "defaultdomainname": "Default Domain", - "desc": "Description", - "deviceaccessstate": "Access State", - "devicefriendlyname": "Friendly Name", - "devicemodel": "Model", - "deviceos": "OS", - "devicetype": "Device Type", - "dkimenabled": "DKIM Enabled", - "dmarcactionpolicy": "DMARC Action Policy", - "dmarcpercentagepass": "DMARC % Pass", - "dmarcpresent": "DMARC Present", - "dnssecpresent": "DNSSec Enabled", - "domain": "Domain", - "ecpenabled": "ECP Enabled", - "enddatetime": "End", - "ewsenabled": "EWS Enabled", - "excludeapplications": "Exclude Applications", - "excluded": "Excluded", - "excludedate": "Exclude Date", - "excludegroups": "Exclude Groups", - "excludelocations": "Exclude Locations", - "excludeplatforms": "Platform Exc", - "excludeuser": "Exclude User", - "excludeusers": "Exclude Users", - "executedtime": "Last executed time", - "execution": "Execute", - "executioncount": "Executions", - "exploitabilitylevel": "Exploit Publicly Available", - "filecount": "File Count (Total)", - "firstsync": "First Sync", - "forwardto": "Forwards To", - "grantcontrolsoperator": "Control Operator", - "guid": "GUID", - "hasarchive": "Archiving Enabled", - "identity": "Identity", - "if": "If", - "imapenabled": "IMAP Enabled", - "includeapplications": "Include Applications", - "includegroups": "Include Groups", - "includelocations": "Include Locations", - "includeplatforms": "Platform Inc", - "includeunknowncountriesandregions": "Include Unknown Countries", - "includeusers": "Include Users", - "isocountrycode": "Country", - "isoperatorconnect": "Operator Connect", - "istransportrulescoped": "Only apply via transport rules", - "itemcount": "Item Count (Total)", - "lastactive": "Last Active", - "lastsuccesssync": "Last Succesfull Sync", - "lastsyncattempt": "Last Sync Attempt", - "mail": "Email", - "mailboxownerid": "Mailbox", - "mailnickname": "Mail nickname", - "mailprovider": "Mail Provider", - "mapienabled": "MAPI Enabled", - "maxseconds": "Max (seconds)", - "meetingcount": "Meeting Count", - "modifieddatetime": "Last Modified", - "mxpasstest": "MX Pass Test", - "numbertype": "Number Type", - "objectid": "Object ID", - "onpremisessyncenabled": "AD Synced", - "osplatform": "Platform", - "owaenabled": "OWA Enabled", - "parameters": "Parameters", - "placename": "Location", - "policyname": "Blocked by Policy", - "popenabled": "POP Enabled", - "postexecution": "Sending to", - "primarysmtpaddress": "Primary E-mail", - "product_display_name": "Display Name", - "quickscanoverdue": "CVSS Score", - "quotagb": "Quota (GB)", - "quotaused": "Quota Used(%)", - "rangeorlocation": "Locations or IPs", - "receivedtime": "Received on", - "recipientaddress": "Recipient", - "recipienttype": "Mailbox Type", - "recipienttypedetails": "Recipient Type Details", - "recurrence": "Recurrence", - "requestdate": "Request Date", - "requestreason": "Reason", - "requeststatus": "Status", - "requestuser": "Requester", - "scheduledtime": "Scheduled Time", - "scope": "Scope (Permissions)", - "scorepercentage": "Security Score", - "securityupdateavailable": "Update Available", - "senderaddress": "Sender", - "senderipaddresses": "Sender IP Addresses", - "service": "Service", - "smarthost": "Smarthost", - "softwarename": "Application Name", - "softwarevendor": "Vendor", - "spfpassall": "SPF Pass Test", - "startat": "Migration Started at", - "starttime": "Permissions Granted (Local)", - "state": "State", - "storageusedinbytes": "Used Space (GB)", - "subject": "Subject", - "tags": "Tags", - "taskstate": "Task State", - "teamschat": "Chat Count", - "telephonenumber": "Phone Number", - "template": "Root Template", - "tenantid": "Tenant ID", - "tenantname": "Tenant Name", - "tlsdomain": "TLS Domain", - "tlssendercertificatename": "Inbound Connector Hostname", - "tlssettings": "TLS Settings", - "totalseconds": "Total (seconds)", - "upn": "UPN", - "url": "URL", - "usedgb": "Used (GB)", - "user": "User", - "userprincipalname": "User Prinicipal Name", - "usertype": "User Type", - "visibility": "Visibility", - "vulnerabilityseveritylevel": "Severity", - "locationinfo": "Location Info" -} diff --git a/src/data/vendorTenantList.json b/src/data/vendorTenantList.json deleted file mode 100644 index 314e92081780..000000000000 --- a/src/data/vendorTenantList.json +++ /dev/null @@ -1,254 +0,0 @@ -[ - { - "vendorName": "Augmentt", - "vendorTenantId": "29f0611d-e8d3-4946-914c-677d2ad8065b" - }, - { - "vendorName": "Rewst", - "vendorTenantId": "5a9dda56-5beb-4840-83e1-9afc1ada2388" - }, - { - "vendorName": "Datto Backupify", - "vendorTenantId": "8ebde5a4-a587-497c-9881-8a5c272dd1c4" - }, - { - "vendorName": "BitTitan", - "vendorTenantId": "6690473e-14f0-4f77-bf88-2ae5ade8746c" - }, - { - "vendorName": "Ingram Micro CPV", - "vendorTenantId": "5abe7315-18a5-4ca1-8e51-99753bef0d96" - }, - { - "vendorName": "CodeTwo", - "vendorTenantId": "d4fd5c8b-42b0-4e2d-b330-498809917d07" - }, - { - "vendorName": "Anywhere365", - "vendorTenantId": "4179dd4d-e485-4535-9d45-b3539f584cad" - }, - { - "vendorName": "Roger365", - "vendorTenantId": "3c59ec71-67c8-4f3d-b2bd-19152b2629e1" - }, - { - "vendorName": "ESET", - "vendorTenantId": "01f7e0e8-c680-4293-8068-d572231a88f4" - }, - { - "vendorName": "CyberTwice", - "vendorTenantId": "0c1fb16c-0190-47e0-b839-5ec8665eb699" - }, - { - "vendorName": "CloudMore AB", - "vendorTenantId": "0cc4f6a9-d96a-4508-b938-32386e1c44cf" - }, - { - "vendorName": "Citrix Cloud", - "vendorTenantId": "13d925d3-c1fe-4447-9600-bb8572753a33" - }, - { - "vendorName": "Proofpoint", - "vendorTenantId": "1d308ae7-d771-4a4a-8857-409aee86644a" - }, - { - "vendorName": "Datto RMM", - "vendorTenantId": "353488c3-d84b-48e4-95ba-2456645d67bf" - }, - { - "vendorName": "Avepoint", - "vendorTenantId": "3ee8362e-4c3c-447b-9a9e-910eec5d89c8" - }, - { - "vendorName": "SkyKick", - "vendorTenantId": "3f9cd7a0-127a-4ed4-bf06-2f830d5616b7" - }, - { - "vendorName": "Carbonite", - "vendorTenantId": "4f0566c5-7c80-40a4-b3e8-7cfcb6c423ff" - }, - { - "vendorName": "Hornet Security/Altaro", - "vendorTenantId": "58fba382-61c2-47f8-92b1-296e14787b85" - }, - { - "vendorName": "N-able", - "vendorTenantId": "6324f4fb-86ee-4493-ba16-c819a916b487" - }, - { - "vendorName": "Freshdesk", - "vendorTenantId": "6cdfee3a-1922-41c3-8e74-f4ae694fae8a" - }, - { - "vendorName": "3CX", - "vendorTenantId": "6e2eadce-56c5-4116-a790-14d391b48eac" - }, - { - "vendorName": "Pckgr", - "vendorTenantId": "6fd3fafe-81c9-41da-b84b-143ba2908cbb" - }, - { - "vendorName": "AdminDroid", - "vendorTenantId": "7228f07f-efee-4159-9393-be6efb253fd0" - }, - { - "vendorName": "Exclaimer", - "vendorTenantId": "74bebcc8-1c15-4717-b538-bf84dea9e50f" - }, - { - "vendorName": "Bastion365", - "vendorTenantId": "7bfd6512-414b-4fb1-9529-3ac3f9e7ec26" - }, - { - "vendorName": "Ricoh", - "vendorTenantId": "7e7a67d3-42f4-4a40-b8f0-f998ca7018ab" - }, - { - "vendorName": "Hubspot", - "vendorTenantId": "8c6c4f2c-3b97-427e-ab0f-1b982441831a" - }, - { - "vendorName": "TrendMicro", - "vendorTenantId": "8d3dd3ec-a7ee-4c65-8cea-01e3f1492f1b" - }, - { - "vendorName": "Synology", - "vendorTenantId": "9ba572a0-0623-4ab6-96ad-74cf9f3631fe" - }, - { - "vendorName": "Scappman", - "vendorTenantId": "b2de4365-2ff4-4021-ac3b-fd1d2abb8de7" - }, - { - "vendorName": "Barracuda Networks", - "vendorTenantId": "b893e0b8-2743-4fa7-81eb-0155a9060350" - }, - { - "vendorName": "Zivver", - "vendorTenantId": "c3ea126d-08dd-4b6a-a23a-4a513160c11e" - }, - { - "vendorName": "HP", - "vendorTenantId": "ca7981a2-785a-463d-b82a-3db87dfc3ce6" - }, - { - "vendorName": "ManageEngine", - "vendorTenantId": "dab88ba4-c480-4a0f-a42b-6d66fba460ff" - }, - { - "vendorName": "Action1", - "vendorTenantId": "e1a62259-76ab-47a0-9e9d-b91f3b08cbd5" - }, - { - "vendorName": "ShareGate", - "vendorTenantId": "eb39acb7-fae3-4bc3-974c-b765aa1d6355" - }, - { - "vendorName": "Liquit", - "vendorTenantId": "2ea2a5a1-1e01-4ecc-ba61-12fb51c1c12d" - }, - { - "vendorName": "Phished", - "vendorTenantId": "9f7b0cc1-2df8-442e-b902-84371e12af00" - }, - { - "vendorName": "Octiga Security", - "vendorTenantId": "b7453564-2f58-4ad6-b7ba-c6e35e8de6bb" - }, - { - "vendorName": "Printix", - "vendorTenantId": "2e5d89d1-0b98-45d8-b70f-c79db10feb54" - }, - { - "vendorName": "Usecure", - "vendorTenantId": "7d88f9a5-1574-4b92-82e4-e05712338cf4" - }, - { - "vendorName": "Redstor", - "vendorTenantId": "24ac53ae-15a7-4211-afef-61d8f34e2571" - }, - { - "vendorName": "Axcient", - "vendorTenantId": "adc01291-a3ea-4fb8-8fa7-d8f6dd816182" - }, - { - "vendorName": "NinjaOne", - "vendorTenantId": "0e0adb39-f83f-4576-9102-db1b902ca108" - }, - { - "vendorName": "SuperVision (KPN)", - "vendorTenantId": "8edc1ef5-a81d-4229-badb-e2634a284461" - }, - { - "vendorName": "SimeonCloud", - "vendorTenantId": "3d945cb7-f7da-444c-8c9e-93c3226581ec" - }, - { - "vendorName": "KeepIt", - "vendorTenantId": "55c67891-c2e6-4278-a07e-5391e269777e" - }, - { - "vendorName": "Arrow Sphere", - "vendorTenantId": "0beb0c35-9cbb-4feb-99e5-589e415c7944" - }, - { - "vendorName": "Auvik", - "vendorTenantId": "408f0e54-582e-46fa-8b7d-4068bb176500" - }, - { - "vendorName": "Avanan", - "vendorTenantId": "5c37d5b5-54f7-46e7-bc09-2eaa1ef1b541" - }, - { - "vendorName": "CloudRadial", - "vendorTenantId": "845fbb26-e9d0-465d-8d4f-40f490928179" - }, - { - "vendorName": "Duo", - "vendorTenantId": "3c453cf7-43fe-4e45-a9b9-f168f480f0f8" - }, - { - "vendorName": "Metallic", - "vendorTenantId": "da72dd62-58c6-4062-abf9-47be4e73c0f6" - }, - { - "vendorName": "Sophos", - "vendorTenantId": "358a41ff-46d9-49d3-a297-370d894eae6a" - }, - { - "vendorName": "SaaSAlerts", - "vendorTenantId": "5c7b2b48-9e8f-49ba-80d6-3432e39d596b" - }, - { - "vendorName": "BullPhish (Ciranda)", - "vendorTenantId": "5e4ab895-7a4c-4eea-bb39-75edca0421ad" - }, - { - "vendorName": "Coreview", - "vendorTenantId": "73506dd6-2bc3-49c0-92f3-b2877bab00ba" - }, - { - "vendorName": "Quickpass (CyberQP365)", - "vendorTenantId": "c9006408-eb26-4e50-9bd5-2c078e3dc844" - }, - { - "vendorName": "Infima", - "vendorTenantId": "2bd37396-af18-448c-a391-dd7800364e6f" - }, - { - "vendorName": "Immybot", - "vendorTenantId": "1dcfdedd-ec87-461d-9d55-6989a519d154" - }, - { - "vendorName": "N-Able/Cove backup", - "vendorTenantId": "521c973d-080f-4861-a0cb-8939e59d3d39" - }, - { - "vendorName": "Dropsuite", - "vendorTenantId": "5b8e57d8-5c8e-4b82-98a5-b003bbb26b31" - }, - { - "vendorName": "Huntress", - "vendorTenantId": "19be9add-482a-4c98-ba76-4c2ef7f3bb13" - } -] diff --git a/src/helpers.js b/src/helpers.js deleted file mode 100644 index 3b746312e3c3..000000000000 --- a/src/helpers.js +++ /dev/null @@ -1,22 +0,0 @@ -export function isPromise(obj) { - return ( - !!obj && - (typeof obj === 'object' || typeof obj === 'function') && - typeof obj.then === 'function' - ) -} - -/** - * Convert search params object into a string: - * ```js - * queryString({key: 'value', key2: 'value2'}) - * // ==> ?key=value&key2=value2 - * ``` - * @param {object} searchParams - * @returns {string} - */ -export function queryString(searchParams) { - const params = new URLSearchParams() - Object.keys(searchParams).forEach((key) => params.append(key, searchParams[key])) - return '?' + params.toString() -} diff --git a/src/hooks/useConfirmModal.jsx b/src/hooks/useConfirmModal.jsx deleted file mode 100644 index d5ceb299c9ce..000000000000 --- a/src/hooks/useConfirmModal.jsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react' -import { ModalService } from 'src/components/utilities' - -export default function useConfirmModal({ - body, - onConfirm = () => {}, - confirmLabel = 'Continue', - cancelLabel = 'Cancel', -}) { - const showModal = () => - ModalService.confirm({ - title: 'Confirm', - body:
    {body}
    , - onConfirm, - confirmLabel, - cancelLabel, - size: 'xl', - }) - - return showModal -} diff --git a/src/hooks/useNavFavouriteCheck.jsx b/src/hooks/useNavFavouriteCheck.jsx deleted file mode 100644 index dc53534dfddc..000000000000 --- a/src/hooks/useNavFavouriteCheck.jsx +++ /dev/null @@ -1,55 +0,0 @@ -import { CNavGroup, CNavItem, CNavTitle } from '@coreui/react' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { useSelector } from 'react-redux' -import routes from 'src/routes' - -export const useNavFavouriteCheck = (navigation) => { - const favourites = useSelector((state) => state.app.userSettingsDefaults?.favourites) - const recentPages = useSelector((state) => state.app.recentPages) - const newNavigation = [{ component: CNavTitle, name: 'Home' }] - if (Array.isArray(favourites)) { - newNavigation.push({ - component: CNavGroup, - section: 'favourites', - name: 'Favourites', - to: '/favorites', - icon: , - items: favourites.map((item) => { - //console.log(item) - return { - name: item.value.name, - to: item.value.to, - component: CNavItem, - } - }), - }) - } - if (Array.isArray(recentPages)) { - var items = [] - - recentPages.map((path) => { - const item = routes.find((route) => route.path.toLowerCase() === path.toLowerCase()) - if (item?.path) { - items.push({ - name: item.name, - to: item.path, - component: CNavItem, - }) - } - }) - if (items.length > 0) { - items = items.slice(0, 5) - newNavigation.push({ - component: CNavGroup, - section: 'recent', - name: 'Recent Pages', - to: '/recent', - icon: , - items: items, - }) - } - } - newNavigation.push(...navigation) - - return newNavigation -} diff --git a/src/hooks/useQuery.jsx b/src/hooks/useQuery.jsx deleted file mode 100644 index 7d54679fc83c..000000000000 --- a/src/hooks/useQuery.jsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { useLocation } from 'react-router-dom' - -function useQuery() { - const { search } = useLocation() - - return React.useMemo(() => new URLSearchParams(search), [search]) -} - -export default useQuery diff --git a/src/hooks/useRouteNavCompare.jsx b/src/hooks/useRouteNavCompare.jsx deleted file mode 100644 index 27fc1f9a3a14..000000000000 --- a/src/hooks/useRouteNavCompare.jsx +++ /dev/null @@ -1,33 +0,0 @@ -import { useLoadClientPrincipalQuery } from 'src/store/api/auth' -import { useDispatch } from 'react-redux' -import { updateAccessToken } from 'src/store/features/auth' -import routes from 'src/routes' - -export const useRouteNavCompare = (navigation) => { - const dispatch = useDispatch() - const { data: profile, isFetching } = useLoadClientPrincipalQuery() - if (isFetching) { - return { isLoading: true, component: null } - } - dispatch(updateAccessToken(profile)) - let roles = profile?.clientPrincipal?.userRoles || [] - let newNavigation = navigation.map((nav) => { - if (nav.items) { - nav.items = nav.items.filter((item) => { - const route = routes.find((r) => r.path === item.to) - if ( - !route || - (route.allowedRoles && route.allowedRoles.some((role) => roles.includes(role))) - ) { - return true - } else { - //console.log('Removing route', item) - return false - } - }) - } - return nav - }) - - return newNavigation -} diff --git a/src/importsMap.jsx b/src/importsMap.jsx deleted file mode 100644 index 49f07b806f00..000000000000 --- a/src/importsMap.jsx +++ /dev/null @@ -1,165 +0,0 @@ -import React from 'react' - export const importsMap = { - "/home": React.lazy(() => import('./views/home/Home')), - "/cipp/logs": React.lazy(() => import('./views/cipp/Logs')), - "/cipp/template-library": React.lazy(() => import('./views/cipp/TemplateLibrary')), - "/cipp/scheduler": React.lazy(() => import('./views/cipp/Scheduler')), - "/cipp/statistics": React.lazy(() => import('./views/cipp/Statistics')), - "/cipp/404": React.lazy(() => import('./views/pages/page404/Page404')), - "/cipp/403": React.lazy(() => import('./views/pages/page403/Page403')), - "/cipp/500": React.lazy(() => import('./views/pages/page500/Page500')), - "/identity/administration/users/add": React.lazy(() => import('./views/identity/administration/AddUser')), - "/identity/administration/users/addbulk": React.lazy(() => import('./views/identity/administration/AddUserBulk')), - "/identity/administration/users/edit": React.lazy(() => import('./views/identity/administration/EditUser')), - "/identity/administration/users/view": React.lazy(() => import('./views/identity/administration/ViewUser')), - "/identity/administration/users/InviteGuest": React.lazy(() => import('./views/identity/administration/InviteGuest')), - "/identity/administration/jit-admin": React.lazy(() => import('./views/identity/administration/DeployJITAdmin')), - "/identity/administration/ViewBec": React.lazy(() => import('./views/identity/administration/ViewBEC')), - "/identity/administration/users": React.lazy(() => import('./views/identity/administration/Users')), - "/identity/administration/risky-users": React.lazy(() => import('./views/identity/administration/RiskyUsers')), - "/identity/administration/devices": React.lazy(() => import('./views/identity/administration/Devices')), - "/identity/administration/groups/add": React.lazy(() => import('./views/identity/administration/AddGroup')), - "/identity/administration/group-templates": React.lazy(() => import('./views/identity/administration/GroupTemplates')), - "/identity/administration/group-add-template": React.lazy(() => import('./views/identity/administration/AddGroupTemplate')), - "/identity/administration/deploy-group-template": React.lazy(() => import('./views/identity/administration/DeployGroupTemplate')), - "/identity/administration/groups/edit": React.lazy(() => import('./views/identity/administration/EditGroup')), - "/identity/administration/groups/view": React.lazy(() => import('./views/identity/administration/ViewGroup')), - "/identity/administration/groups": React.lazy(() => import('./views/identity/administration/Groups')), - "/identity/administration/roles": React.lazy(() => import('./views/identity/administration/Roles')), - "/identity/administration/deleted-items": React.lazy(() => import('./views/identity/administration/Deleted')), - "/teams-share/teams/business-voice": React.lazy(() => import('./views/teams-share/teams/BusinessVoice')), - "/identity/administration/offboarding-wizard": React.lazy(() => import('./views/identity/administration/OffboardingWizard')), - "/endpoint/reports/devices": React.lazy(() => import('./views/endpoint/intune/Devices')), - "/identity/reports/mfa-report": React.lazy(() => import('./views/identity/reports/MFAReport')), - "/identity/reports/inactive-users-report": React.lazy(() => import('./views/identity/reports/InactiveUsers')), - "/identity/reports/Signin-report": React.lazy(() => import('./views/identity/reports/SignIns')), - "/identity/reports/azure-ad-connect-report": React.lazy(() => import('./views/identity/reports/AzureADConnectReport')), - "/identity/reports/risk-detections": React.lazy(() => import('./views/identity/reports/RiskDetections')), - "/tenant/backup/backup-wizard": React.lazy(() => import('./views/tenant/backup/CreateBackup')), - "/tenant/backup/restore-wizard": React.lazy(() => import('./views/tenant/backup/RestoreBackup')), - "/tenant/administration/tenants": React.lazy(() => import('./views/tenant/administration/Tenants')), - "/tenant/administration/tenants/edit": React.lazy(() => import('./views/tenant/administration/EditTenant')), - "/tenant/administration/partner-relationships": React.lazy(() => import('./views/tenant/administration/PartnerRelationships')), - "/tenant/administration/domains": React.lazy(() => import('./views/tenant/administration/Domains')), - "/tenant/administration/alertswizard": React.lazy(() => import('./views/tenant/administration/AlertWizard')), - "/tenant/administration/alertrules": React.lazy(() => import('./views/tenant/administration/AlertRules')), - "/tenant/administration/alert-configuration": React.lazy(() => import('./views/tenant/administration/ListAlertsQueue')), - "/tenant/administration/audit-logs": React.lazy(() => import('./views/tenant/administration/ListAuditLogs')), - "/tenant/administration/graph-explorer": React.lazy(() => import('./views/tenant/administration/GraphExplorer')), - "/tenant/administration/service-health": React.lazy(() => import('./views/tenant/administration/ServiceHealth')), - "/tenant/administration/enterprise-apps": React.lazy(() => import('./views/tenant/administration/ListEnterpriseApps')), - "/tenant/administration/app-consent-requests": React.lazy(() => import('./views/tenant/administration/ListAppConsentRequests')), - "/tenant/conditional/list-policies": React.lazy(() => import('./views/tenant/conditional/ConditionalAccess')), - "/tenant/administration/authentication-methods": React.lazy(() => import('./views/tenant/administration/AuthMethods')), - "/tenant/conditional/deploy-vacation": React.lazy(() => import('./views/tenant/conditional/DeployVacation')), - "/tenant/conditional/test-policy": React.lazy(() => import('./views/tenant/conditional/TestCAPolicy')), - "/tenant/conditional/list-named-locations": React.lazy(() => import('./views/tenant/conditional/NamedLocations')), - "/tenant/conditional/deploy": React.lazy(() => import('./views/tenant/conditional/DeployCA')), - "/tenant/conditional/deploy-named-location": React.lazy(() => import('./views/tenant/conditional/DeployNamedLocation')), - "/tenant/conditional/list-template": React.lazy(() => import('./views/tenant/conditional/ListCATemplates')), - "/tenant/conditional/add-template": React.lazy(() => import('./views/tenant/conditional/AddCATemplate')), - "/tenant/administration/list-licenses": React.lazy(() => import('./views/tenant/administration/ListLicences')), - "/tenant/administration/application-consent": React.lazy(() => import('./views/tenant/administration/ListOauthApps')), - "/tenant/standards/list-applied-standards": React.lazy(() => import('./views/tenant/standards/ListAppliedStandards')), - "/tenant/standards/bpa-report": React.lazy(() => import('./views/tenant/standards/BestPracticeAnalyser')), - "/tenant/standards/domains-analyser": React.lazy(() => import('./views/tenant/standards/DomainsAnalyser')), - "/tenant/standards/individual-domains": React.lazy(() => import('./views/tenant/standards/IndividualDomain')), - "/tenant/administration/tenantlookup": React.lazy(() => import('./views/tenant/administration/TenantLookup')), - "/tenant/tools/geoiplookup": React.lazy(() => import('./views/tenant/administration/GeoIPLookup')), - "/tenant/tools/bpa-report-builder": React.lazy(() => import('./views/tenant/standards/BPAReportBuilder')), - "/tenant/standards/alert-list": React.lazy(() => import('./views/security/incidents/ListAlerts')), - "/endpoint/applications/list": React.lazy(() => import('./views/endpoint/applications/ApplicationsList')), - "/endpoint/applications/queue": React.lazy(() => import('./views/endpoint/applications/ListApplicationQueue')), - "/endpoint/applications/add-choco-app": React.lazy(() => import('./views/endpoint/applications/ApplicationsAddChocoApp')), - "/endpoint/applications/add-winget-app": React.lazy(() => import('./views/endpoint/applications/ApplicationsAddWinGet')), - "/endpoint/applications/add-office-app": React.lazy(() => import('./views/endpoint/applications/ApplicationsAddOffice')), - "/endpoint/applications/add-rmm-app": React.lazy(() => import('./views/endpoint/applications/ApplicationsAddRMM')), - "/endpoint/autopilot/add-device": React.lazy(() => import('./views/endpoint/autopilot/AutopilotAddDevice')), - "/endpoint/autopilot/add-profile": React.lazy(() => import('./views/endpoint/autopilot/AutopilotAddProfile')), - "/endpoint/autopilot/add-status-page": React.lazy(() => import('./views/endpoint/autopilot/AutopilotAddStatusPage')), - "/endpoint/autopilot/list-devices": React.lazy(() => import('./views/endpoint/autopilot/AutopilotListDevices')), - "/endpoint/autopilot/list-profiles": React.lazy(() => import('./views/endpoint/autopilot/AutopilotListProfiles')), - "/endpoint/autopilot/list-status-pages": React.lazy(() => import('./views/endpoint/autopilot/AutopilotListStatusPages')), - "/endpoint/MEM/list-policies": React.lazy(() => import('./views/endpoint/intune/MEMListPolicies')), - "/endpoint/MEM/list-compliance-policies": React.lazy(() => import('./views/endpoint/intune/MEMListCompliance')), - "/endpoint/MEM/list-appprotection-policies": React.lazy(() => import('./views/endpoint/intune/MEMListAppProtection')), - "/endpoint/MEM/edit-policy": React.lazy(() => import('./views/endpoint/intune/MEMEditPolicy')), - "/endpoint/MEM/ca-policies": React.lazy(() => import('./views/endpoint/intune/MEMCAPolicies')), - "/endpoint/MEM/add-policy": React.lazy(() => import('./views/endpoint/intune/MEMAddPolicy')), - "/endpoint/MEM/add-policy-template": React.lazy(() => import('./views/endpoint/intune/MEMAddPolicyTemplate')), - "/endpoint/MEM/list-templates": React.lazy(() => import('./views/endpoint/intune/MEMListPolicyTemplates')), - "/security/defender/deployment": React.lazy(() => import('./views/security/defender/DeployDefender')), - "/security/defender/list-defender": React.lazy(() => import('./views/security/defender/ListDefender')), - "/security/defender/list-defender-tvm": React.lazy(() => import('./views/security/defender/ListVuln')), - "/teams-share/onedrive/list": React.lazy(() => import('./views/teams-share/onedrive/OneDriveList')), - "/teams-share/sharepoint/list-sharepoint": React.lazy(() => import('./views/teams-share/sharepoint/SharepointList')), - "/teams-share/sharepoint/addsite": React.lazy(() => import('./views/teams-share/sharepoint/AddSite')), - "/teams-share/sharepoint/addsitebulk": React.lazy(() => import('./views/teams-share/sharepoint/AddSiteBulk')), - "/teams-share/teams/list-team": React.lazy(() => import('./views/teams-share/teams/TeamsListTeam')), - "/teams-share/teams/view-team-settings": React.lazy(() => import('./views/teams-share/teams/ViewTeamSettings')), - "/teams-share/teams/add-team": React.lazy(() => import('./views/teams-share/teams/TeamsAddTeam')), - "/teams-share/teams/teams-activity": React.lazy(() => import('./views/teams-share/teams/TeamsActivity')), - "/email/administration/contacts": React.lazy(() => import('./views/email-exchange/administration/ContactsList')), - "/email/connectors/list-connectors": React.lazy(() => import('./views/email-exchange/connectors/ConnectorList')), - "/email/connectors/deploy-connector": React.lazy(() => import('./views/email-exchange/connectors/DeployConnector')), - "/email/connectors/add-connector-templates": React.lazy(() => import('./views/email-exchange/connectors/AddConnectorTemplate')), - "/email/connectors/list-connector-templates": React.lazy(() => import('./views/email-exchange/connectors/ListConnectorTemplates')), - "/email/transport/list-rules": React.lazy(() => import('./views/email-exchange/transport/TransportRules')), - "/email/transport/deploy-rules": React.lazy(() => import('./views/email-exchange/transport/DeployTransport')), - "/email/transport/list-templates": React.lazy(() => import('./views/email-exchange/transport/ListTransportTemplates')), - "/email/transport/add-template": React.lazy(() => import('./views/email-exchange/transport/AddTransportTemplate')), - "/email/spamfilter/list-spamfilter": React.lazy(() => import('./views/email-exchange/spamfilter/Spamfilter')), - "/email/spamfilter/deploy": React.lazy(() => import('./views/email-exchange/spamfilter/DeploySpamfilter')), - "/email/spamfilter/list-templates": React.lazy(() => import('./views/email-exchange/spamfilter/ListSpamfilterTemplates')), - "/resources/management/list-rooms": React.lazy(() => import('./views/email-exchange/rooms/ListRooms')), - "/resources/management/room-lists": React.lazy(() => import('./views/email-exchange/rooms/ListRoomLists')), - "/resources/management/add-room": React.lazy(() => import('./views/email-exchange/rooms/AddRoomMailbox')), - "/email/tools/mailbox-restore-wizard": React.lazy(() => import('./views/email-exchange/tools/MailboxRestoreWizard')), - "/email/tools/mailbox-restores": React.lazy(() => import('./views/email-exchange/tools/MailboxRestores')), - "/email/tools/mail-test": React.lazy(() => import('./views/email-exchange/tools/MailTest')), - "/email/tools/message-viewer": React.lazy(() => import('./views/email-exchange/tools/MessageViewer')), - "/email/spamfilter/add-template": React.lazy(() => import('./views/email-exchange/spamfilter/AddSpamfilterTemplate')), - "/email/administration/edit-mailbox-permissions": React.lazy(() => import('./views/email-exchange/administration/EditMailboxPermissions')), - "/email/administration/add-shared-mailbox": React.lazy(() => import('./views/email-exchange/administration/AddSharedMailbox')), - "/email/administration/add-contact": React.lazy(() => import('./views/email-exchange/administration/AddContact')), - "/email/administration/edit-calendar-permissions": React.lazy(() => import('./views/email-exchange/administration/EditCalendarPermissions')), - "/email/administration/view-mobile-devices": React.lazy(() => import('./views/email-exchange/administration/ViewMobileDevices')), - "/email/administration/edit-contact": React.lazy(() => import('./views/email-exchange/administration/EditContact')), - "/email/administration/mailboxes": React.lazy(() => import('./views/email-exchange/administration/MailboxesList')), - "/email/administration/deleted-mailboxes": React.lazy(() => import('./views/email-exchange/administration/DeletedMailboxes')), - "/email/administration/mailbox-rules": React.lazy(() => import('./views/email-exchange/administration/MailboxRuleList')), - "/email/administration/Quarantine": React.lazy(() => import('./views/email-exchange/administration/QuarantineList')), - "/email/administration/tenant-allow-block-lists": React.lazy(() => import('./views/email-exchange/administration/ListTenantAllowBlockList')), - "/email/administration/add-tenant-allow-block-list": React.lazy(() => import('./views/email-exchange/administration/AddTenantAllowBlockList')), - "/email/reports/mailbox-statistics": React.lazy(() => import('./views/email-exchange/reports/MailboxStatisticsList')), - "/email/reports/SharedMailboxEnabledAccount": React.lazy(() => import('./views/email-exchange/reports/SharedMailboxEnabledAccount')), - "/email/reports/mailbox-cas-settings": React.lazy(() => import('./views/email-exchange/reports/MailboxClientAccessSettingsList')), - "/email/reports/message-trace": React.lazy(() => import('./views/email-exchange/reports/MessageTrace')), - "/cipp/user-settings": React.lazy(() => import('./views/cipp/UserSettings')), - "/email/reports/antiphishing-filters": React.lazy(() => import('./views/email-exchange/reports/AntiPhishingFilters')), - "/email/reports/malware-filters": React.lazy(() => import('./views/email-exchange/reports/MalwareFilters')), - "/email/reports/safelinks-filters": React.lazy(() => import('./views/email-exchange/reports/SafeLinksFilters')), - "/email/reports/safeattachments-filters": React.lazy(() => import('./views/email-exchange/reports/SafeAttachmentsFilters')), - "/security/incidents/list-alerts": React.lazy(() => import('./views/security/incidents/ListAlerts')), - "/security/incidents/list-incidents": React.lazy(() => import('./views/security/incidents/ListIncidents')), - "/security/reports/list-device-compliance": React.lazy(() => import('./views/security/reports/ListDeviceComplianceReport')), - "/license": React.lazy(() => import('./views/pages/license/License')), - "/cipp/settings": React.lazy(() => import('./views/cipp/app-settings/CIPPSettings')), - "/cipp/extensions": React.lazy(() => import('./views/cipp/Extensions')), - "/cipp/extension-sync": React.lazy(() => import('./views/cipp/ExtensionSync')), - "/cipp/setup": React.lazy(() => import('./views/cipp/Setup')), - "/tenant/administration/securescore": React.lazy(() => import('./views/tenant/administration/SecureScore')), - "/tenant/administration/gdap": React.lazy(() => import('./views/tenant/administration/GDAPWizard')), - "/tenant/administration/gdap-invite-wizard": React.lazy(() => import('./views/tenant/administration/GDAPInviteWizard')), - "/tenant/administration/gdap-invites": React.lazy(() => import('./views/tenant/administration/ListGDAPInvites')), - "/tenant/administration/gdap-role-wizard": React.lazy(() => import('./views/tenant/administration/GDAPRoleWizard')), - "/tenant/administration/gdap-roles": React.lazy(() => import('./views/tenant/administration/ListGDAPRoles')), - "/tenant/administration/gdap-relationships": React.lazy(() => import('././views/tenant/administration/ListGDAPRelationships')), - "/tenant/administration/appapproval": React.lazy(() => import('./views/cipp/AppApproval')), - "/tenant/administration/gdap-status": React.lazy(() => import('./views/tenant/administration/ListGDAPQueue')), - "/tenant/standards/list-standards": React.lazy(() => import('./views/tenant/standards/ListStandards')), - "/tenant/administration/tenant-offboarding-wizard": React.lazy(() => import('./views/tenant/administration/TenantOffboardingWizard')), - "/tenant/administration/tenant-onboarding": React.lazy(() => import('./views/tenant/administration/TenantOnboarding')), - "/tenant/administration/tenant-onboarding-wizard": React.lazy(() => import('./views/tenant/administration/TenantOnboardingWizard')), -} -export default importsMap \ No newline at end of file diff --git a/src/index.jsx b/src/index.jsx deleted file mode 100644 index 81aee3c89edb..000000000000 --- a/src/index.jsx +++ /dev/null @@ -1,27 +0,0 @@ -import 'react-app-polyfill/stable' -import 'core-js' -import React from 'react' -import { createRoot } from 'react-dom/client' -import App from 'src/App' -import { Provider } from 'react-redux' -import { store, persistor } from 'src/store' -import { PersistGate } from 'redux-persist/integration/react' -import { FullScreenLoading } from 'src/components/utilities' -import { HelmetProvider } from 'react-helmet-async' - -const container = document.getElementById('root') - -const root = createRoot(container) - -root.render( - // @TODO fix issues preventing app from running with StrictMode enabled - // - - } persistor={persistor}> - - - - - , - // , -) diff --git a/src/layout/DefaultLayout.jsx b/src/layout/DefaultLayout.jsx deleted file mode 100644 index 23bbc527b527..000000000000 --- a/src/layout/DefaultLayout.jsx +++ /dev/null @@ -1,110 +0,0 @@ -import React, { useEffect, Suspense, useCallback, useState } from 'react' -import { AppFooter, AppHeader, AppSidebar } from 'src/components/layout' -import { FullScreenLoading, ModalRoot, FastSwitcherModal, Toasts } from 'src/components/utilities' -import { useDispatch, useSelector } from 'react-redux' -import { Outlet, useLocation } from 'react-router-dom' -import { CContainer } from '@coreui/react' -import { toggleSwitcher } from 'src/store/features/switcher' -import { useHotkeys } from 'react-hotkeys-hook' -import { useMediaPredicate } from 'react-media-hook' -import { setRecentPages } from 'src/store/features/app' -import routes from 'src/routes' -import { Helmet } from 'react-helmet-async' - -const DefaultLayout = () => { - const preferredTheme = useMediaPredicate('(prefers-color-scheme: dark)') ? 'impact' : 'cyberdrain' - const themePreference = useSelector((state) => state.app.currentTheme) - const recentPages = useSelector((state) => state.app.recentPages) - const [lastPage, setLastPage] = useState('') - const dispatch = useDispatch() - const location = useLocation() - - const [title, setTitle] = useState('CIPP') - useEffect(() => { - let route = routes.find((route) => route.path.toLowerCase() === location.pathname.toLowerCase()) - if (route?.name) { - //console.log(route) - setTitle(route.name) - } - }, [setTitle, location.pathname]) - - let theme - if (themePreference === 'default') { - theme = preferredTheme - } else { - theme = themePreference - } - useEffect(() => { - document.body.classList = [] - document.body.classList.add(`theme-${theme}`) - document.body.dataset.theme = theme - }) - - useEffect(() => { - if (recentPages[0] !== location.pathname && lastPage !== location.pathname) { - var currentPages = [] - currentPages.push(lastPage) - if (recentPages.length > 0) { - recentPages.forEach((page) => { - if (page !== lastPage) { - currentPages.push(page) - } - }) - } - currentPages = currentPages.slice(0, 10) - if (currentPages.length > 0) { - dispatch(setRecentPages({ recentPages: currentPages })) - } - } - setLastPage(location.pathname) - }, [location.pathname, recentPages, dispatch, lastPage, setLastPage]) - - const handleFastSwitcher = useCallback(() => { - dispatch(toggleSwitcher()) - }, [dispatch]) - - useHotkeys( - 'ctrl+k', - (event) => { - handleFastSwitcher() - event.preventDefault() - }, - { filterPreventDefault: false }, - ) - useHotkeys( - 'cmd+k', - (event) => { - handleFastSwitcher() - event.preventDefault() - }, - { filterPreventDefault: false }, - ) - - return ( - <> - - CIPP - {title} - -
    - - - - - -
    - -
    - - }> - - - -
    - -
    -
    - - ) -} - -export default DefaultLayout diff --git a/src/routes.json b/src/routes.json deleted file mode 100644 index 532343cc83e4..000000000000 --- a/src/routes.json +++ /dev/null @@ -1,1085 +0,0 @@ -[ - { - "path": "/home", - "name": "Home", - "component": "views/home/Home", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/cipp/logs", - "name": "Logs", - "component": "views/cipp/Logs", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/cipp/template-library", - "name": "Logs", - "component": "views/cipp/TemplateLibrary", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/cipp/scheduler", - "name": "Scheduler", - "component": "views/cipp/Scheduler", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/cipp/statistics", - "name": "Statistics", - "component": "views/cipp/Statistics", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/cipp/404", - "name": "Error", - "component": "views/pages/page404/Page404", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/cipp/403", - "name": "Error", - "component": "views/pages/page403/Page403", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/cipp/500", - "name": "Error", - "component": "views/pages/page500/Page500", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity", - "name": "Identity", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/administration/users/add", - "name": "Add User", - "component": "views/identity/administration/AddUser", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/administration/users/addbulk", - "name": "Add User Bulk", - "component": "views/identity/administration/AddUserBulk", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/administration/users/edit", - "name": "Edit User", - "component": "views/identity/administration/EditUser", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/administration/users/view", - "name": "View User", - "component": "views/identity/administration/ViewUser", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/administration/users/InviteGuest", - "name": "Invite Guest", - "component": "views/identity/administration/InviteGuest", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/administration/jit-admin", - "name": "JIT Admin", - "component": "views/identity/administration/DeployJITAdmin", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/administration/ViewBec", - "name": "View BEC", - "component": "views/identity/administration/ViewBEC", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/administration", - "name": "Administration", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/administration/users", - "name": "Users", - "component": "views/identity/administration/Users", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/administration/risky-users", - "name": "Risky Users", - "component": "views/identity/administration/RiskyUsers", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/administration/devices", - "name": "Devices", - "component": "views/identity/administration/Devices", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/administration/groups/add", - "name": "Add Group", - "component": "views/identity/administration/AddGroup", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/administration/group-templates", - "name": "Group Templates", - "component": "views/identity/administration/GroupTemplates", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/administration/group-add-template", - "name": "Add Group Template", - "component": "views/identity/administration/AddGroupTemplate", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/administration/deploy-group-template", - "name": "Deploy Group Template", - "component": "views/identity/administration/DeployGroupTemplate", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/administration/groups/edit", - "name": "Edit Group", - "component": "views/identity/administration/EditGroup", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/administration/groups/view", - "name": "View Group", - "component": "views/identity/administration/ViewGroup", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/administration/groups", - "name": "Groups", - "component": "views/identity/administration/Groups", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/administration/roles", - "name": "Roles", - "component": "views/identity/administration/Roles", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/administration/deleted-items", - "name": "Deleted Items", - "component": "views/identity/administration/Deleted", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/teams-share/teams/business-voice", - "name": "BusinessVoice", - "component": "views/teams-share/teams/BusinessVoice", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/administration/offboarding-wizard", - "name": "Offboarding Wizard", - "component": "views/identity/administration/OffboardingWizard", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/reports", - "name": "Reports", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/reports/devices", - "name": "Devices", - "component": "views/endpoint/intune/Devices", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/reports/mfa-report", - "name": "MFA Report", - "component": "views/identity/reports/MFAReport", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/reports/inactive-users-report", - "name": "Inactive Users Report", - "component": "views/identity/reports/InactiveUsers", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/reports/Signin-report", - "name": "Sign-In Report", - "component": "views/identity/reports/SignIns", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/reports/azure-ad-connect-report", - "name": "AAD Connect Report", - "component": "views/identity/reports/AzureADConnectReport", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/identity/reports/risk-detections", - "name": "Risk Detections", - "component": "views/identity/reports/RiskDetections", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant", - "name": "Tenant", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/administration", - "name": "Administration", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/backup/backup-wizard", - "name": "Backup", - "component": "views/tenant/backup/CreateBackup", - - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/backup/restore-wizard", - "name": "Restore Backup", - "component": "views/tenant/backup/RestoreBackup", - - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/administration/tenants", - "name": "Tenants", - "component": "views/tenant/administration/Tenants", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/administration/tenants/edit", - "name": "Edit Tenant", - "component": "views/tenant/administration/EditTenant", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/administration/partner-relationships", - "name": "Partner Relationships", - "component": "views/tenant/administration/PartnerRelationships", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/administration/domains", - "name": "Domains", - "component": "views/tenant/administration/Domains", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/administration/alertswizard", - "name": "Alerts Wizard", - "component": "views/tenant/administration/AlertWizard", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/administration/alertrules", - "name": "Alerts Wizard", - "component": "views/tenant/administration/AlertRules", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/administration/alert-configuration", - "name": "Alert Configuration", - "component": "views/tenant/administration/ListAlertsQueue", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/administration/audit-logs", - "name": "Audit Logs", - "component": "views/tenant/administration/ListAuditLogs", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/administration/graph-explorer", - "name": "Graph Explorer", - "component": "views/tenant/administration/GraphExplorer", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/administration/service-health", - "name": "Service Health", - "component": "views/tenant/administration/ServiceHealth", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/administration/enterprise-apps", - "name": "Enterprise Applications", - "component": "views/tenant/administration/ListEnterpriseApps", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/administration/app-consent-requests", - "name": "App Consent Requests", - "component": "views/tenant/administration/ListAppConsentRequests", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/conditional/list-policies", - "name": "Conditional Access", - "component": "views/tenant/conditional/ConditionalAccess", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/administration/authentication-methods", - "name": "Authentication Methods", - "component": "views/tenant/administration/AuthMethods", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/conditional/deploy-vacation", - "name": "Deploy Vacation Mode", - "component": "views/tenant/conditional/DeployVacation", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/conditional/test-policy", - "name": "Test Conditional Access Policy", - "component": "views/tenant/conditional/TestCAPolicy", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/conditional/list-named-locations", - "name": "Named Locations", - "component": "views/tenant/conditional/NamedLocations", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/conditional/deploy", - "name": "Deploy Conditional Access", - "component": "views/tenant/conditional/DeployCA", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/conditional/deploy-named-location", - "name": "Deploy Named Locations", - "component": "views/tenant/conditional/DeployNamedLocation", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/conditional/list-template", - "name": "Conditional Access Templates", - "component": "views/tenant/conditional/ListCATemplates", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/conditional/add-template", - "name": "Conditional Access Add Template", - "component": "views/tenant/conditional/AddCATemplate", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/administration/list-licenses", - "name": "List Licenses", - "component": "views/tenant/administration/ListLicences", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/administration/application-consent", - "name": "Consented Applications", - "component": "views/tenant/administration/ListOauthApps", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/standards", - "name": "Standards", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/standards/list-applied-standards", - "name": "List Applied Standards", - "component": "views/tenant/standards/ListAppliedStandards", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/standards/bpa-report", - "name": "Best Practice Report", - "component": "views/tenant/standards/BestPracticeAnalyser", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/standards/domains-analyser", - "name": "Domains Analyser", - "component": "views/tenant/standards/DomainsAnalyser", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/standards/individual-domains", - "name": "Individual Domain Check", - "component": "views/tenant/standards/IndividualDomain", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/administration/tenantlookup", - "name": "Tenant Lookup", - "component": "views/tenant/administration/TenantLookup", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/tools/geoiplookup", - "name": "Geo IP Lookup", - "component": "views/tenant/administration/GeoIPLookup", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/tools/bpa-report-builder", - "name": "BPA Report Builder", - "component": "views/tenant/standards/BPAReportBuilder", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/standards/alert-list", - "name": "Alert List (Alpha)", - "component": "views/security/incidents/ListAlerts", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint", - "name": "Endpoint", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/applications", - "name": "Applications", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/applications/list", - "name": "List Applications", - "component": "views/endpoint/applications/ApplicationsList", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/applications/queue", - "name": "Application Queue", - "component": "views/endpoint/applications/ListApplicationQueue", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/applications/add-choco-app", - "name": "Add Choco App", - "component": "views/endpoint/applications/ApplicationsAddChocoApp", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/applications/add-winget-app", - "name": "Add Store App", - "component": "views/endpoint/applications/ApplicationsAddWinGet", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/applications/add-office-app", - "name": "Add Office App", - "component": "views/endpoint/applications/ApplicationsAddOffice", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/applications/add-rmm-app", - "name": "Add RMM App", - "component": "views/endpoint/applications/ApplicationsAddRMM", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/autopilot", - "name": "Autopilot", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/autopilot/add-device", - "name": "Add Device", - "component": "views/endpoint/autopilot/AutopilotAddDevice", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/autopilot/add-profile", - "name": "Add Profile", - "component": "views/endpoint/autopilot/AutopilotAddProfile", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/autopilot/add-status-page", - "name": "Add Status Page", - "component": "views/endpoint/autopilot/AutopilotAddStatusPage", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/autopilot/list-devices", - "name": "List Devices", - "component": "views/endpoint/autopilot/AutopilotListDevices", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/autopilot/list-profiles", - "name": "List Profiles", - "component": "views/endpoint/autopilot/AutopilotListProfiles", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/autopilot/list-status-pages", - "name": "List Status Pages", - "component": "views/endpoint/autopilot/AutopilotListStatusPages", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/MEM", - "name": "MEM", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/MEM/list-policies", - "name": "List Intune Policies", - "component": "views/endpoint/intune/MEMListPolicies", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/MEM/list-compliance-policies", - "name": "List Intune Compliance Policies", - "component": "views/endpoint/intune/MEMListCompliance", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/MEM/list-appprotection-policies", - "name": "List App Protection Policies", - "component": "views/endpoint/intune/MEMListAppProtection", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/MEM/edit-policy", - "name": "Edit MEM Policy", - "component": "views/endpoint/intune/MEMEditPolicy", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/MEM/ca-policies", - "name": "List Status Pages", - "component": "views/endpoint/intune/MEMCAPolicies", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/MEM/add-policy", - "name": "Add Intune Policy", - "component": "views/endpoint/intune/MEMAddPolicy", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/MEM/add-policy-template", - "name": "Add Endpoint Manager Policy Template", - "component": "views/endpoint/intune/MEMAddPolicyTemplate", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/endpoint/MEM/list-templates", - "name": "List Intune Policy Template", - "component": "views/endpoint/intune/MEMListPolicyTemplates", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/security/defender", - "name": "Defender", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/security/defender/deployment", - "name": "Deploy Defender", - "component": "views/security/defender/DeployDefender", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/security/defender/list-defender", - "name": "List Defender", - "component": "views/security/defender/ListDefender", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/security/defender/list-defender-tvm", - "name": "List Vulnerabilities", - "component": "views/security/defender/ListVuln", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/teams-share", - "name": "Teams & SharePoint", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/teams-share/onedrive", - "name": "OneDrive", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/teams-share/onedrive/list", - "name": "List OneDrive", - "component": "views/teams-share/onedrive/OneDriveList", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/teams-share/sharepoint", - "name": "SharePoint", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/teams-share/sharepoint/list-sharepoint", - "name": "List SharePoint", - "component": "views/teams-share/sharepoint/SharepointList", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/teams-share/sharepoint/addsite", - "name": "Add SharePoint Site", - "component": "views/teams-share/sharepoint/AddSite", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/teams-share/sharepoint/addsitebulk", - "name": "Add SharePoint Site Bulk", - "component": "views/teams-share/sharepoint/AddSiteBulk", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/teams-share/teams", - "name": "Teams", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/teams-share/teams/list-team", - "name": "List Teams", - "component": "views/teams-share/teams/TeamsListTeam", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/teams-share/teams/view-team-settings", - "name": "View Team Settings", - "component": "views/teams-share/teams/ViewTeamSettings", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/teams-share/teams/add-team", - "name": "Add Team", - "component": "views/teams-share/teams/TeamsAddTeam", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/teams-share/teams/teams-activity", - "name": "Teams Activity", - "component": "views/teams-share/teams/TeamsActivity", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "Email & Exchange", - "path": "/email", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "Email Administration", - "path": "/email/administration", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "List Contacts", - "path": "/email/administration/contacts", - "component": "views/email-exchange/administration/ContactsList", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/email/connectors/list-connectors", - "name": "List Connectors", - "component": "views/email-exchange/connectors/ConnectorList", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/email/connectors/deploy-connector", - "name": "Deploy Connectors", - "component": "views/email-exchange/connectors/DeployConnector", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/email/connectors/add-connector-templates", - "name": "Add Connectors Templates", - "component": "views/email-exchange/connectors/AddConnectorTemplate", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/email/connectors/list-connector-templates", - "name": "List Connectors Templates", - "component": "views/email-exchange/connectors/ListConnectorTemplates", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/email/transport/list-rules", - "name": "List Transport Rules", - "component": "views/email-exchange/transport/TransportRules", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/email/transport/deploy-rules", - "name": "Deploy Transport Rule", - "component": "views/email-exchange/transport/DeployTransport", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/email/transport/list-templates", - "name": "Transport Rule Templates", - "component": "views/email-exchange/transport/ListTransportTemplates", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/email/transport/add-template", - "name": "Transport Rule Add Temmplate", - "component": "views/email-exchange/transport/AddTransportTemplate", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/email/spamfilter/list-spamfilter", - "name": "List Spamfilter", - "component": "views/email-exchange/spamfilter/Spamfilter", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/email/spamfilter/deploy", - "name": "Deploy Spamfilter", - "component": "views/email-exchange/spamfilter/DeploySpamfilter", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/email/spamfilter/list-templates", - "name": "List Spamfilter Templates", - "component": "views/email-exchange/spamfilter/ListSpamfilterTemplates", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/resources/management/list-rooms", - "name": "Rooms", - "component": "views/email-exchange/rooms/ListRooms", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/resources/management/room-lists", - "name": "Room Lists", - "component": "views/email-exchange/rooms/ListRoomLists", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/resources/management/add-room", - "name": "Add Room", - "component": "views/email-exchange/rooms/AddRoomMailbox", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/email/tools/mailbox-restore-wizard", - "name": "Mailbox Restore Wizard", - "component": "views/email-exchange/tools/MailboxRestoreWizard", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/email/tools/mailbox-restores", - "name": "Mailbox Restores", - "component": "views/email-exchange/tools/MailboxRestores", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/email/tools/mail-test", - "name": "Mail Test", - "component": "views/email-exchange/tools/MailTest", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/email/tools/message-viewer", - "name": "Message Viewer", - "component": "views/email-exchange/tools/MessageViewer", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/email/spamfilter/add-template", - "name": "Add Spamfilter Template", - "component": "views/email-exchange/spamfilter/AddSpamfilterTemplate", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "Edit Mailbox Permissions", - "path": "/email/administration/edit-mailbox-permissions", - "component": "views/email-exchange/administration/EditMailboxPermissions", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "Add Shared Mailbox", - "path": "/email/administration/add-shared-mailbox", - "component": "views/email-exchange/administration/AddSharedMailbox", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "Edit Contact", - "path": "/email/administration/add-contact", - "component": "views/email-exchange/administration/AddContact", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "Edit Calendar Permissions", - "path": "/email/administration/edit-calendar-permissions", - "component": "views/email-exchange/administration/EditCalendarPermissions", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "View Mobile Devices", - "path": "/email/administration/view-mobile-devices", - "component": "views/email-exchange/administration/ViewMobileDevices", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "Edit Contact", - "path": "/email/administration/edit-contact", - "component": "views/email-exchange/administration/EditContact", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "List Mailboxes", - "path": "/email/administration/mailboxes", - "component": "views/email-exchange/administration/MailboxesList", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "Deleted Mailboxes", - "path": "/email/administration/deleted-mailboxes", - "component": "views/email-exchange/administration/DeletedMailboxes", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "List Mailbox Rules", - "path": "/email/administration/mailbox-rules", - "component": "views/email-exchange/administration/MailboxRuleList", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "List Quarantine", - "path": "/email/administration/Quarantine", - "component": "views/email-exchange/administration/QuarantineList", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "List Tenant Allow/Block Lists", - "path": "/email/administration/tenant-allow-block-lists", - "component": "views/email-exchange/administration/ListTenantAllowBlockList", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "Add Tenant Allow/Block List", - "path": "/email/administration/add-tenant-allow-block-list", - "component": "views/email-exchange/administration/AddTenantAllowBlockList", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "Email Reports", - "path": "/email/reports", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "Mailbox Statistics", - "path": "/email/reports/mailbox-statistics", - "component": "views/email-exchange/reports/MailboxStatisticsList", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "Shared Mailbox Enabled Account", - "path": "/email/reports/SharedMailboxEnabledAccount", - "component": "views/email-exchange/reports/SharedMailboxEnabledAccount", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "Mailbox Client Access Settings", - "path": "/email/reports/mailbox-cas-settings", - "component": "views/email-exchange/reports/MailboxClientAccessSettingsList", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "Message Trace", - "path": "/email/reports/message-trace", - "component": "views/email-exchange/reports/MessageTrace", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/cipp/user-settings", - "name": "User Settings", - "component": "views/cipp/UserSettings", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/email/reports/antiphishing-filters", - "name": "Anti Phishing Filters", - "component": "views/email-exchange/reports/AntiPhishingFilters", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/email/reports/malware-filters", - "name": "Malware Filters", - "component": "views/email-exchange/reports/MalwareFilters", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/email/reports/safelinks-filters", - "name": "Safe Links Filters", - "component": "views/email-exchange/reports/SafeLinksFilters", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/email/reports/safeattachments-filters", - "name": "Safe Attachment Filters", - "component": "views/email-exchange/reports/SafeAttachmentsFilters", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "Security & Compliance", - "path": "/security", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "Security Administration", - "path": "/security/administration", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "Security Reports", - "path": "/security/reports", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "List Alerts", - "path": "/security/incidents/list-alerts", - "component": "views/security/incidents/ListAlerts", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "List Incidents", - "path": "/security/incidents/list-incidents", - "component": "views/security/incidents/ListIncidents", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "List Device Compliance Report", - "path": "/security/reports/list-device-compliance", - "component": "views/security/reports/ListDeviceComplianceReport", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "name": "License", - "path": "/license", - "component": "views/pages/license/License", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/cipp", - "name": "CIPP", - "allowedRoles": ["admin"] - }, - { - "path": "/cipp/cipp", - "name": "CIPP", - "allowedRoles": ["admin"] - }, - { - "path": "/cipp/settings", - "name": "Settings", - "component": "views/cipp/app-settings/CIPPSettings", - "allowedRoles": ["admin"] - }, - { - "path": "/cipp/extensions", - "name": "Extensions Settings", - "component": "views/cipp/Extensions", - "allowedRoles": ["admin"] - }, - { - "path": "/cipp/extension-sync", - "name": "Extension Sync", - "component": "views/cipp/ExtensionSync", - "allowedRoles": ["admin"] - }, - { - "path": "/cipp/setup", - "name": "Setup", - "component": "views/cipp/Setup", - "allowedRoles": ["admin"] - }, - { - "path": "/tenant/administration/securescore", - "name": "Secure Score Management", - "component": "views/tenant/administration/SecureScore", - "allowedRoles": ["admin", "editor", "readonly"] - }, - { - "path": "/tenant/administration/gdap", - "name": "GDAP Wizard", - "component": "views/tenant/administration/GDAPWizard", - "allowedRoles": ["admin"] - }, - { - "path": "/tenant/administration/gdap-invite-wizard", - "name": "GDAP Invite Wizard", - "component": "views/tenant/administration/GDAPInviteWizard", - "allowedRoles": ["admin"] - }, - { - "path": "/tenant/administration/gdap-invites", - "name": "GDAP Invites", - "component": "views/tenant/administration/ListGDAPInvites", - "allowedRoles": ["admin"] - }, - { - "path": "/tenant/administration/gdap-role-wizard", - "name": "GDAP Role Wizard", - "component": "views/tenant/administration/GDAPRoleWizard", - "allowedRoles": ["admin"] - }, - { - "path": "/tenant/administration/gdap-roles", - "name": "GDAP Roles", - "component": "views/tenant/administration/ListGDAPRoles", - "allowedRoles": ["admin"] - }, - { - "path": "/tenant/administration/gdap-relationships", - "name": "GDAP Relationships", - "component": "./views/tenant/administration/ListGDAPRelationships", - "allowedRoles": ["admin"] - }, - { - "path": "/tenant/administration/appapproval", - "name": "App Approval", - "component": "views/cipp/AppApproval", - "allowedRoles": ["admin"] - }, - { - "path": "/tenant/administration/gdap-status", - "name": "GDAP Status", - "component": "views/tenant/administration/ListGDAPQueue", - "allowedRoles": ["admin"] - }, - { - "path": "/tenant/standards/list-standards", - "name": "List Standard", - "component": "views/tenant/standards/ListStandards", - "allowedRoles": ["admin"] - }, - { - "path": "/tenant/administration/tenant-offboarding-wizard", - "name": "Tenant Offboarding", - "component": "views/tenant/administration/TenantOffboardingWizard", - "allowedRoles": ["admin"] - }, - { - "path": "/tenant/administration/tenant-onboarding", - "name": "Tenant Onboarding", - "component": "views/tenant/administration/TenantOnboarding", - "allowedRoles": ["admin"] - }, - { - "path": "/tenant/administration/tenant-onboarding-wizard", - "name": "Tenant Onboarding", - "component": "views/tenant/administration/TenantOnboardingWizard", - "allowedRoles": ["admin"] - } -] diff --git a/src/scss/_custom.scss b/src/scss/_custom.scss deleted file mode 100644 index b118641b872e..000000000000 --- a/src/scss/_custom.scss +++ /dev/null @@ -1,709 +0,0 @@ -@use 'sass:color'; -.custom-switch-wrapper { - position: relative; - display: inline-block; -} -body { - overflow-y: scroll; // Always show vertical scrollbar -} -.image-upload-container { - position: relative; - width: 100px; /* Adjusted to match the image */ - height: 120px; /* Adjusted to match the image */ - cursor: pointer; - display: flex; - align-items: center; - justify-content: center; -} - -.upload-image { - width: 100%; - height: 100%; - border-radius: 8px; - object-fit: cover; /* Ensures the image covers the area without stretching */ -} - -.image-upload-overlay { - position: absolute; - top: 0; - bottom: 0; - left: 0; - right: 0; - opacity: 0; - transition: 0.5s ease; - background-color: var(--cyberdrain-secondary); - border-radius: 8px; - display: flex; - align-items: center; - justify-content: center; - z-index: 2; -} - -.image-upload-container:hover .image-upload-overlay { - opacity: 0.8; -} - -.overlay-text { - color: white; - font-size: 20px; -} - -.circular-button { - border-radius: 50% !important; - width: 35px; - height: 35px; - display: inline-flex; - align-items: center; - justify-content: center; - font-weight: bold; - margin-right: 1rem; -} - -.round-focus { - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 21, 0.075), - 0 0 0 0.25rem var(--cui-btn-shadow); -} - -.circular-button.active { - background-color: #4caf50; - color: #ffffff; -} -.circular-button.default { - background-color: var(--cui-primary); - color: var(--text-primary); -} - -.circular-button.cyberdrain { - background-color: var(--cyberdrain-accent-beige); - color: var(--text-primary); -} - -.circular-button.impact { - background-color: var(--cyberdrain-secondary); - color: var(--text-primary); -} - -h3.underline:after { - background: none repeat scroll 0 0 var(--cipp-table-context-bg); - bottom: -13px; - content: ''; - display: block; - height: 5px; - position: relative; - width: 2.5rem; -} - -.switch-icon { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - pointer-events: none; /* Ensures the icon doesn't interfere with the switch toggle */ - z-index: 1; /* Place the icon above the switch */ -} -.sr-only { - border: 0 !important; - clip: rect(1px, 1px, 1px, 1px) !important; - clip-path: inset(50%) !important; - height: 1px !important; - margin: -1px !important; - overflow: hidden !important; - padding: 0 !important; - position: absolute !important; - white-space: nowrap !important; - width: 1px !important; - - &-focusable { - &:focus, - &:active { - clip: auto !important; - clip-path: none !important; - height: auto !important; - margin: auto !important; - overflow: visible !important; - white-space: normal !important; - width: auto !important; - } - } -} - -// added some code for slightly prettier scrollbars - -::-webkit-scrollbar { - width: 20px; -} - -::-webkit-scrollbar-track { - background-color: transparent; -} - -::-webkit-scrollbar-thumb { - background-clip: content-box; - background-color: #d6dee1; - border: 6px solid transparent; - border-radius: 20px; -} - -::-webkit-scrollbar-thumb:hover { - background-color: #a8bbbf; -} - -/* cui overrides */ - -.badge { - border-radius: var(--cipp-border-radius); -} - -.btn { - border-radius: var(--cipp-border-radius); - white-space: nowrap; -} - -.card { - border-radius: var(--cipp-border-radius); - - .card-header { - &:first-child { - background-clip: border-box; - border-radius: 3px 3px 0 0; - overflow: hidden; - } - } - - &.page-card { - border-radius: var(--cipp-border-radius); - - &:not(.datatable) { - border: 0; - } - - .card-header { - background: var(--cyberdrain-accent-green); - } - - .card-title { - font-size: 1rem; - line-height: 2rem; - margin-bottom: 0; - } - - > .card-body { - padding: 1rem 0; - } - - &.datatable { - .card-body { - padding: 1rem; - } - } - } - - &.options-card { - border-color: var(--cui-options-card-border-color); - - .card-header { - background: var(--cyberdrain-accent-blue); - border-bottom-color: var(--cui-options-card-border-color); - } - - .card-title { - line-height: 2rem; - margin-bottom: 0; - } - } - - &.content-card { - border-color: var(--cui-options-card-border-color); - - .card-header { - background: var(--cyberdrain-accent-blue); - // background: var(--cyberdrain-accent-blue); - border-bottom-color: var(--cui-options-card-border-color); - } - - .card-title { - line-height: 2rem; - margin-bottom: 0; - } - - .card-header-link { - color: var(--cui-headings-color); - font-weight: 500; - text-decoration: none; - - &:hover { - color: var(--cyberdrain-light-striped); - cursor: pointer; - text-decoration: underline; - } - } - } -} - -.dropdown-menu { - border-radius: var(--cipp-border-radius); -} - -.form-control { - border-radius: var(--cipp-border-radius); -} - -.form-select { - border-radius: var(--cipp-border-radius); - - /* stylelint-disable-next-line selector-class-pattern */ - .select-search__input { - border: 0; - } -} - -.modal-content { - border-radius: var(--cipp-border-radius); -} - -/* CIPP specifics */ - -.equalheight { - flex-grow: 1; -} - -.nav-pills { - .nav-link { - border-radius: var(--cipp-border-radius); - } -} - -.nav-tabs { - .nav-link { - border-radius: var(--cipp-border-radius); - } -} - -.progress { - border-radius: var(--cipp-border-radius); -} - -/* Tables */ - -/* stylelint-disable-next-line selector-class-pattern */ -.rdt_TableBody { - /* stylelint-disable-next-line selector-class-pattern */ - .rdt_TableRow { - &:hover { - border-bottom-color: var(--cipp-table-divider); - outline-style: none; - } - } - - /* stylelint-disable-next-line selector-class-pattern */ - .rdt_TableCell { - position: relative; - } -} - -.dropdown-item { - a { - color: var(--cui-dropdown-link-color); - display: inline-block; - text-decoration: none; - width: 100%; - - &:hover { - color: var(--cui-dropdown-link-hover-color); - text-decoration: none; - } - } -} -.offcanvas-large { - width: 800px !important; -} - -.cipp-offcanvas { - background-color: var(--cui-body-bg); - z-index: 1500; - - &.offcanvas-end { - @include ltr-rtl-value-only('transform', none, none); - } - - .offcanvas-header { - background-color: var(--cipp-offcanvas-header-bg); - color: var(--cipp-offcanvas-header-color); - padding: 0rem 1rem; - .btn { - color: var(--cipp-offcanvas-header-color); - - :hover { - color: var(--cipp-offcanvas-header-hover-color); - } - } - } - - .offcanvas-title { - background-color: var(--cipp-offcanvas-title-bg); - color: var(--cipp-offcanvas-title-color); - padding-bottom: 1rem; - padding-top: 1rem; - } - - .cipp-extendedinfo-label { - border-bottom: 1px solid var(--cipp-offcanvas-label-border-color); - font-weight: bold; - } -} - -.list-group { - border-radius: var(--cipp-border-radius); -} - -/* CIPP Text */ - -.bg-primary { - background-color: var(--cui-primary) !important; -} - -.bg-secondary { - background-color: var(--cui-secondary) !important; -} - -.bg-success { - background-color: var(--cui-success) !important; -} - -.bg-info { - background-color: var(--cui-info) !important; -} - -.bg-warning { - background-color: var(--cui-warning) !important; -} - -.bg-danger { - background-color: var(--cui-danger) !important; -} - -.text-primary { - color: var(--cui-primary) !important; -} - -.text-secondary { - color: var(--cui-secondary) !important; -} - -.text-success { - color: var(--cui-success) !important; -} - -.text-info { - color: var(--cui-info) !important; -} - -.text-warning { - color: var(--cui-warning) !important; -} - -.text-danger { - color: var(--cui-danger) !important; -} - -/* Code Block */ -.cipp-code { - position: relative; - - .cipp-code-copy-button { - position: absolute; - right: 0.1rem; - top: 0.1rem; - } -} - -.btn-as-block { - display: block; -} - -.fa-inverse { - color: var(--cipp-fa-inverse-color); -} - -.rdt_TableRow.no-mfa { - background-color: color.adjust($cyberdrain-danger, $alpha: -0.5) !important; - - .text-success { - color: var(--cui-body-color) !important; - } - - .text-danger { - color: var(--cui-body-color) !important; - } -} - -.rdt_TableRow.mbusage-warning { - background-color: color.adjust($cyberdrain-warning, $alpha: -0.5) !important; - - .text-success { - color: var(--cui-body-color) !important; - } - - .text-danger { - color: var(--cui-body-color) !important; - } -} - -.rdt_TableRow.mbusage-danger { - background-color: color.adjust($cyberdrain-danger, $alpha: -0.5) !important; - - .text-success { - color: var(--cui-body-color) !important; - } - - .text-danger { - color: var(--cui-body-color) !important; - } -} - -/* Footer */ - -.footer { - p { - margin-bottom: 0; - } - background: var(--cui-body-bg); - img { - max-height: 2rem; - } -} - -/* Toasts */ - -.toast-body { - .btn { - margin-left: 1rem; - } -} - -/* Sidebar */ - -.sidebar-nav .nav-link { - margin: 0.25rem 0; -} - -.react-select-container { - .react-select__control { - background-color: var(--cipp-search-bg); - border-color: var(--cipp-search-border-color); - transition: none; - - &:hover { - border-color: var(--cipp-search-border-color); - } - } - - .react-select__menu { - background-color: var(--cipp-search-bg); - border: 1px solid var(--cipp-search-border-color); - z-index: 1000; - } - - .react-select__option { - background-color: var(--cipp-search-bg); - - &:hover { - background-color: var(--cipp-search-border-color); - } - } - - .react-select__indicator { - color: var(--cipp-search-border-color); - } - - .react-select__indicator-separator { - background-color: var(--cipp-search-border-color); - } - - .react-select__placeholder, - .react-select__single-value { - color: var(--text-primary); - } -} - -.sidebar { - background-color: var(--cui-color-gray) !important; - svg { - color: var(--cui-color-black) !important; - transform: scale(0.8); - } - li { - color: var(--cui-color-black) !important; - a { - color: var(--cui-color-black) !important; - } - } - .simplebar-content > li:hover { - background: var(--cui-color-gray-hover) !important; - } - .nav-group.show { - background: var(--cui-color-gray-hover) !important; - } -} - -.wrapper.d-flex.flex-column.min-vh-100 { - //full width -20px for scrollbar bouncing - background-color: var(--cui-color-gray-1) !important; - z-index: 2; - // .body.flex-grow-1.px-xl-3>.container-fluid>div>div{ - // background: var(--cui-color-white) !important; - // padding: 20px 30px; - // margin-bottom: 20px; - // .nav-item> .nav-link { - // padding: 30px 20px; - // } - // } - .wrapper.d-flex.flex-column.min-vh-100 .card .card-body .cipp-tablewrapper { - padding: 0; - } - .card { - border: none; - margin-bottom: 20px; - box-shadow: 0 6px 10px 0 var(--cui-color-card-shadow), 0 8px 12px 0 var(--cui-color-card-shadow); - &:hover { - box-shadow: 0 8px 10px 0 var(--cui-color-card-shadow), - 0 8px 20px 0 var(--cui-color-card-shadow); - } - .card-header { - background-color: var(--cui-color-white); - color: var(--cui-color-black); - border: none; - } - .card-header.d-flex.justify-content-between { - padding: 10px 30px; - } - .card-body { - padding: 10px 40px; - padding-top: 0; - background-color: var(--cui-color-white); - .cipp-tablewrapper { - padding: 0; - } - header { - background-color: var(--cui-color-white) !important; - } - .sc-dlVxhl.fSQziN { - border-radius: 0px; - border: 1px solid var(--cui-color-gray-hover); - } - .rdt_TableHeadRow { - background-color: var(--cui-bgcolor-table-header) !important; - font-size: 12px; - color: var(--cui-color-white); - border-bottom-color: (--cui-color-gray-hover) !important; - padding: 8px 0; - } - .rdt_TableBody .rdt_TableRow:nth-child(odd) { - background-color: var(--cui-color-white) !important; - border-bottom-color: (--cui-color-gray-hover) !important; - } - .rdt_TableBody .rdt_TableRow:nth-child(even) { - background-color: var(--cui-color-gray) !important; - } - .rdt_Pagination { - select { - background-color: var(--cui-bgcolor-table-header) !important; - color: var(--cui-color-white) !important; - border-radius: 4px; - } - } - } - .sc-kfPuZi.iZiYoO { - background-color: var(--cui-color-white) !important; - } - } -} -.nav-item > .nav-link.active { - background-color: var(--cui-color-orange) !important; - color: var(--cui-color-white) !important; -} - -.btn.btn-primary { - color: var(--cui-color-white) !important; - border-radius: 4px; - border: none; -} -.dropdown-menu.show.tenantDropdown { - padding: 1px; -} - -.header.header-sticky { - background-color: var(--cui-color-gray) !important; - border-bottom: 2px solid var(--cui-color-gray-hover); -} -.header-toggler:hover { - transform: scale(1.1); -} - -.sidebar-brand { - background: none; - .sidebar-brand-full { - margin: 15px; - transform: scale(1.5); - } -} -.wrapper.d-flex.flex-column.min-vh-100 .card { - margin-bottom: 0px; -} - -.celltip-content-nowrap { - display: inline-block; - white-space: nowrap; - overflow: hidden; -} -.celltip-content { - display: inline-block; - white-space: normal; - overflow: ellipsis; -} - -.select-width { - min-width: 100%; -} - -.mr-15 { - margin-right: 15px; -} - -.no-colour { - .text-success { - color: var(--cui-body-color) !important; - } - - .text-danger { - color: var(--cui-body-color) !important; - } -} - -.teams-wide-card { - width: 500px; -} - -i.glyphicon { - display: none; -} - -.btn-add::after { - content: 'Add'; -} - -.array-item-copy::after { - content: 'Copy'; -} - -.array-item-move-up::after { - content: 'Move Up'; -} - -.array-item-move-down::after { - content: 'Move Down'; -} - -.array-item-remove::after { - content: 'Remove'; -} diff --git a/src/scss/_example.scss b/src/scss/_example.scss deleted file mode 100644 index 133ce6d2f297..000000000000 --- a/src/scss/_example.scss +++ /dev/null @@ -1,112 +0,0 @@ -.example { - &:not(:first-child) { - margin-top: 1.5rem; - } - - .tab-content { - background-color: $light-50 !important; - - @at-root .dark-theme & { - background-color: rgb(255 255 255 / 10%) !important; - } - } - - code[class*='language-'], - pre[class*='language-'] { - font-size: 0.875rem !important; - } - - :not(pre) > code[class*='language-'], - pre[class*='language-'] { - background: transparent; - } - - + p { - margin-top: 1.5rem; - } - - // Components examples - .preview, - .preview .col { - - @include media-breakpoint-up(sm) { - .fixed-top, - .sticky-top { - margin: -1.5rem -1.5rem 1rem; - } - - .fixed-bottom { - margin: 1rem -1.5rem -1.5rem; - } - } - - + p { - margin-top: 2rem; - } - - > .form-control { - + .form-control { - margin-top: 0.5rem; - } - } - - > .nav + .nav, - > .alert + .alert, - > .navbar + .navbar, - > .progress + .progress { - margin-top: 1rem; - } - - > .dropdown-menu { - display: block; - position: static; - } - - > :last-child { - margin-bottom: 0; - } - - // Images - > svg + svg, - > img + img { - margin-left: 0.5rem; - } - - // Buttons - > .btn, - > .btn-group { - margin: 0.25rem 0.125rem; - } - - > .btn-toolbar + .btn-toolbar { - margin-top: 0.5rem; - } - - // List groups - > .list-group { - max-width: 400px; - } - - > [class*='list-group-horizontal'] { - max-width: 100%; - } - - // Navbars - .fixed-top, - .sticky-top { - margin: -1rem -1rem 1rem; - position: static; - } - - .fixed-bottom { - margin: 1rem -1rem -1rem; - position: static; - } - - // Pagination - .pagination { - margin-bottom: 0.5rem; - margin-top: 0.5rem; - } - } -} diff --git a/src/scss/_layout.scss b/src/scss/_layout.scss deleted file mode 100644 index 740e0fbfbc3c..000000000000 --- a/src/scss/_layout.scss +++ /dev/null @@ -1,84 +0,0 @@ -.wrapper { - - @include ltr-rtl('padding-left', var(--cui-sidebar-occupy-start, 0)); - - @include transition(padding 0.15s); - width: 100%; - - will-change: auto; -} - -.nav-wizard { - .nav-link { - align-items: center; - color: var(--cyberdrain-light); - display: flex; - padding: 2rem; - - .wizard-step-icon { - align-items: center; - background-color: var(--cyberdrain-primary); - border-radius: 0.35rem; - color: var(--cui-body-bg); - display: inline-flex; - flex-shrink: 0; - font-weight: bolder; - height: 2.5rem; - justify-content: center; - margin-right: 1rem; - width: 2.5rem; - - i, - svg, - .feather { - color: var(--cyberdrain-light); - } - } - - .wizard-step-text { - text-align: left; - - .wizard-step-text-name { - color: var(--cyberdrain-primary); - font-size: 1rem; - font-weight: bolder; - margin-bottom: 0.25rem; - } - - .wizard-step-text-details { - color: var(--cui-body-color); - font-size: 0.875rem; - font-weight: 400; - } - } - - &.active { - .wizard-step-icon { - background-color: var(--cui-body-bg); - color: var(--cyberdrain-primary); - - i, - svg, - .feather { - color: var(--cyberdrain-primary); - } - } - - .wizard-step-text { - .wizard-step-text-name { - color: var(--cyberdrain-dark); - } - - .wizard-step-text-details { - color: var(--cyberdrain-dark); - } - - i, - svg, - .feather { - color: var(--cyberdrain-primary); - } - } - } - } -} diff --git a/src/scss/_tenantselector.scss b/src/scss/_tenantselector.scss deleted file mode 100644 index ec0c93342406..000000000000 --- a/src/scss/_tenantselector.scss +++ /dev/null @@ -1,219 +0,0 @@ -.select-search { - box-sizing: border-box; - font-family: 'Nunito Sans', sans-serif; - position: relative; - - * { - box-sizing: inherit; - - &::after, - &::before { - box-sizing: inherit; - } - } - - &.is-disabled { - opacity: 0.5; - } - - &__value { - position: relative; - z-index: 1; - - &::after { - content: ''; - display: inline-block; - height: 11px; - position: absolute; - right: 19px; - top: calc(50% - 9px); - width: 11px; - } - } - - &.is-loading { - .select-search__value::after { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Cpath fill='%232F2D37' d='M25,5A20.14,20.14,0,0,1,45,22.88a2.51,2.51,0,0,0,2.49,2.26h0A2.52,2.52,0,0,0,50,22.33a25.14,25.14,0,0,0-50,0,2.52,2.52,0,0,0,2.5,2.81h0A2.51,2.51,0,0,0,5,22.88,20.14,20.14,0,0,1,25,5Z'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 25 25' to='360 25 25' dur='0.6s' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E"); - background-size: 11px; - } - } - - &__input { - appearance: none; - background: var(--cipp-search-bg); - border-radius: var(--cipp-border-radius); - box-shadow: 0 0.0625rem 0.125rem rgb(0 0 0 / 15%); - border: 1px solid var(--cipp-search-border-color); - color: var(--cipp-search-color); - display: block; - font-family: 'Noto Sans', sans-serif; - font-size: 14px; - height: 36px; - line-height: 36px; - outline: none; - padding: 0 40px 0 16px; - text-align: left; - text-overflow: ellipsis; - width: 100%; - - &::-webkit-search-decoration, - &::-webkit-search-cancel-button, - &::-webkit-search-results-button, - &::-webkit-search-results-decoration { - --webkit-appearance: none; - } - - &:hover { - border: 1px solid var(--cipp-search-border-color); - } - - &:not([readonly]):focus { - cursor: initial; - } - } - - &:not(.is-disabled) { - .select-search__input { - cursor: pointer; - } - } - - &__option, - &__not-found { - background: var(--cipp-search-bg); - border: 0; - cursor: pointer; - display: block; - font-family: 'Noto Sans', sans-serif; - font-size: 14px; - height: 36px; - outline: none; - padding: 0 16px; - text-align: left; - width: 100%; - } - - &__option { - color: var(--cipp-search-option-color); - - &.is-selected { - background: var(--cipp-search-selected-option-bg); - color: var(--cipp-search-selected-option-color); - } - - &.is-highlighted, - &:not(.is-selected):hover { - background: var(--cipp-search-selected-option-highlight); - } - - &.is-highlighted.is-selected, - &.is-selected:hover { - background: var(--cipp-search-selected-option-highlight); - } - } - - &__select { - background: var(--cipp-search-bg); - border-radius: var(--cipp-border-radius); - color: var(--cipp-search-color); - } - - /* stylelint-disable no-descending-specificity */ - &--multiple { - border-radius: var(--cipp-border-radius); - overflow: hidden; - - .select-search__option { - height: 48px; - } - - .select-search__input { - border-radius: var(--cipp-border-radius); - cursor: initial; - } - - &:not(.select-search--search) { - .select-search__input { - cursor: default; - } - } - - .select-search__select { - border-radius: var(--cipp-border-radius); - border-top: 1px solid var(--cipp-search-border-color); - max-height: 260px; - overflow: auto; - position: relative; - } - } - /* stylelint-enable no-descending-specificity */ - - .select-search__not-found { - color: #888; - height: auto; - padding: 16px; - text-align: center; - } - - &:not(.select-search--multiple) { - .select-search__select { - border-radius: var(--cipp-border-radius); - left: 0; - max-height: 360px; - overflow: auto; - position: absolute; - right: 0; - top: 44px; - z-index: 2; - } - } - - &:not(.is-loading) { - &:not(.select-search--multiple) { - .select-search__value::after { - border-bottom: 2px solid var(--cipp-search-color); - border-right: 2px solid var(--cipp-search-color); - pointer-events: none; - transform: rotate(45deg); - } - } - } -} - -.select-search__options { - background-color: var(--cipp-search-bg); - white-space: nowrap; - text-overflow: ellipsis !important; - overflow: hidden; - &:hover { - background-color: var(--cipp-search-border-color); - } - list-style: none; - padding-inline-start: 0; -} -.select-search__row:not(:first-child) { - border-top: 1px solid var(--cipp-search-border-color); -} - -.select-search__group-header { - background: var(--cipp-search-header-bg); - color: var(--cipp-search-header-color); - font-size: 10px; - padding: 8px 16px; - text-transform: uppercase; -} - -.tenantDropdown { - min-width: 25rem; - max-width: 30%; - - .select-search { - &__input { - border: none; - - &:hover { - border: none; - } - } - } -} diff --git a/src/scss/_themes.scss b/src/scss/_themes.scss deleted file mode 100644 index 4f94d5b0892c..000000000000 --- a/src/scss/_themes.scss +++ /dev/null @@ -1,624 +0,0 @@ -:root { - // CyberDrain variables. - //// If you want to change these variables please also update the _variables.scss file. - --cyberdrain-primary: #f77f00; // Orange - --cyberdrain-primary-rgb: rgb(247 127 0); // Orange - --cyberdrain-secondary: #003049; // Prussian Blue - --cyberdrain-secondary-rgb: rgb(0 48 73); // Prussian Blue - --cyberdrain-lighter: #fff; // White - --cyberdrain-light: #f4f5f6; // Cultured - --cyberdrain-light-rgb: rgb(244 245 246); // Cultured - --cyberdrain-light-striped: #d2d6da; // Light Gray - --cyberdrain-darker: #20262a; // Charleston Green - --cyberdrain-dark: #121212; // Gunmetal - --cyberdrain-dark-rgb: rgb(46 54 58); // Gunmetal - --cyberdrain-dark-striped: #48555b; // Charcoal - --cyberdrain-accent-blue: #3e5c66; // Deep Space Sparkle - --cyberdrain-accent-blue-rgb: rgb(62 92 102); // Deep Space Sparkle - --cyberdrain-accent-green: #005c63; // Midnight Green Eagle Green - --cyberdrain-accent-green-rgb: rgb(0 92 99); // Midnight Green Eagle Green - --cyberdrain-accent-beige: #ebf0df; // Beige - --cyberdrain-accent-beige-rgb: rgb(235 240 223); // Beige - --cyberdrain-success: #4fa000; // Green RYB - --cyberdrain-success-rgb: rgb(79 160 0); // Green RYB - --cyberdrain-info: #0096d8; // Carolina Blue - --cyberdrain-info-rgb: rgb(0 150 216); // Carolina Blue - --cyberdrain-warning: #bf7f00; // Dark Goldenrod - --cyberdrain-warning-rgb: rgb(191 127 0); // Dark Goldenrod - --cyberdrain-danger: #eb603d; // Orange Soda - --cyberdrain-danger-rgb: rgb(235 96 61); // Orange Soda - // Core UI theme-independent variables. - --cui-blue: #0d6efd; - --cui-indigo: #6610f2; - --cui-purple: #6f42c1; - --cui-pink: #d63384; - --cui-red: #dc3545; - --cui-orange: #fd7e14; - --cui-yellow: #ffc107; - --cui-green: #198754; - --cui-teal: #20c997; - --cui-cyan: #0dcaf0; - --cui-white: #fff; - --cui-gray: #8a93a2; - --cui-gray-dark: #636f83; - --cui-gray-100: var(--cyberdrain-light); - --cui-gray-200: #d8dbe0; - --cui-gray-300: #c4c9d0; - --cui-gray-400: #b1b7c1; - --cui-gray-500: #9da5b1; - --cui-gray-600: #8a93a2; - --cui-gray-700: #768192; - --cui-gray-800: #636f83; - --cui-gray-900: #4f5d73; - --cui-primary: var(--cyberdrain-primary); - --cui-secondary: var(--cyberdrain-secondary); - --cui-success: var(--cyberdrain-success); - --cui-info: var(--cyberdrain-info); - --cui-warning: var(--cyberdrain-warning); - --cui-danger: var(--cyberdrain-danger); - --cui-light: var(--cyberdrain-light); - --cui-dark: var(--cyberdrain-dark); - --cui-primary-rgb: var(--cyberdrain-primary-rgb); - --cui-secondary-rgb: var(--cyberdrain-secondary-rgb); - --cui-success-rgb: var(--cyberdrain-success-rgb); - --cui-info-rgb: var(--cyberdrain-info-rgb); - --cui-warning-rgb: var(--cyberdrain-warning-rgb); - --cui-danger-rgb: var(--cyberdrain-danger-rgb); - --cui-light-rgb: var(--cyberdrain-light-rgb); - --cui-dark-rgb: var(--cyberdrain-dark-rgb); - --cui-white-rgb: rgb(255 255 255); - --cui-black-rgb: rgb(0 0 0); - --cui-font-sans-serif: system-ui, -apple-system, 'Segoe UI', roboto, 'Helvetica Neue', arial, - 'Noto Sans', 'Liberation Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', - 'Segoe UI Symbol', 'Noto Color Emoji'; - --cui-font-monospace: sfmono-regular, menlo, monaco, consolas, 'Liberation Mono', 'Courier New', - monospace; - --cui-gradient: linear-gradient(180deg, rgb(255 255 255 / 15%), rgb(255 255 255 / 0%)); - --cui-body-font-family: var(--cui-font-sans-serif); - --cui-body-font-size: 1rem; - --cui-body-font-weight: 400; - --cui-body-line-height: 1.5; - --cui-border-radius: 2px; - --cui-badge-color: var(--cyberdrain-light); - - // CIPP theme-independent variables. - --cipp-border-radius: 2px; - --cipp-offcanvas-header-hover-color: var(--cyberdrain-lighter); - --cipp-search-selected-option-color: var(--cyberdrain-light); - --cipp-search-selected-option-bg: var(--cyberdrain-accent-green); - --cipp-search-selected-option-highlight: rgb(0 92 99 / 10%); - --cipp-search-header-bg: var(--cyberdrain-accent-blue); - --cipp-search-header-color: var(--cyberdrain-light); - - @keyframes react-loading-skeleton { - 100% { - transform: translateX(100%); - } - } - - .btn-ghost-success { - --cui-btn-color: var(--cyberdrain-success); - --cui-btn-hover-bg: var(--cyberdrain-success); - --cui-btn-hover-border-color: var(--cyberdrain-success); - --cui-btn-hover-color: var(--cyberdrain-darker); - --cui-btn-active-bg: #58c67d; - --cui-btn-active-border-color: #43bf6c; - --cui-btn-active-color: var(--cyberdrain-darker); - --cui-btn-disabled-color: #2eb85c; - --cui-btn-shadow: rgb(46 184 92 / 50%); - } - - .btn-ghost-info { - --cui-btn-color: var(--cyberdrain-info); - --cui-btn-hover-bg: var(--cyberdrain-info); - --cui-btn-hover-border-color: var(--cyberdrain-info); - --cui-btn-hover-color: var(--cyberdrain-darker); - --cui-btn-active-bg: #5cadff; - --cui-btn-active-border-color: #47a3ff; - --cui-btn-active-color: var(--cyberdrain-darker); - --cui-btn-disabled-color: #39f; - --cui-btn-shadow: rgb(51 153 255 / 50%); - } - - .btn-ghost-warning { - --cui-btn-color: var(--cyberdrain-warning); - --cui-btn-hover-bg: var(--cyberdrain-warning); - --cui-btn-hover-border-color: var(--cyberdrain-warning); - --cui-btn-hover-color: var(--cyberdrain-darker); - --cui-btn-active-bg: #c78e11; - --cui-btn-active-border-color: #bb8510; - --cui-btn-active-color: var(--cyberdrain-darker); - --cui-btn-disabled-color: #f9b115; - --cui-btn-shadow: rgb(249 177 21 / 50%); - } - - .btn-ghost-danger { - --cui-btn-color: var(--cyberdrain-danger); - --cui-btn-hover-bg: var(--cyberdrain-danger); - --cui-btn-hover-border-color: var(--cyberdrain-danger); - --cui-btn-hover-color: var(--cyberdrain-darker); - --cui-btn-active-bg: #ea7575; - --cui-btn-active-border-color: #e86464; - --cui-btn-active-color: var(--cyberdrain-darker); - --cui-btn-disabled-color: #e55353; - --cui-btn-shadow: rgb(229 83 83 / 50%); - } - - .list-group-item-primary { - --cui-list-group-color: var(--cyberdrain-primary); - --cui-list-group-bg: var(--cyberdrain-darker); - --cui-list-group-border-color: var(--cyberdrain-darker); - --cui-list-group-hover-bg: var(--cyberdrain-primary); - --cui-list-group-action-hover-color: var(--cyberdrain-darker); - --cui-list-group-action-active-color: var(--cyberdrain-darker); - --cui-list-group-action-active-bg: var(--cyberdrain-primary); - --cui-list-group-action-active-border-color: var(--cyberdrain-darker); - } - - .list-group-item-secondary { - --cui-list-group-color: var(--cyberdrain-light); - --cui-list-group-bg: var(--cyberdrain-darker); - --cui-list-group-border-color: var(--cyberdrain-darker); - --cui-list-group-hover-bg: var(--cyberdrain-secondary); - --cui-list-group-action-hover-color: var(--cyberdrain-light); - --cui-list-group-action-active-color: var(--cyberdrain-lighter); - --cui-list-group-action-active-bg: var(--cyberdrain-secondary); - --cui-list-group-action-active-border-color: var(--cyberdrain-secondary); - } - - .list-group-item-success { - --cui-list-group-color: var(--cyberdrain-success); - --cui-list-group-bg: var(--cyberdrain-darker); - --cui-list-group-border-color: var(--cyberdrain-darker); - --cui-list-group-hover-bg: var(--cyberdrain-success); - --cui-list-group-action-hover-color: var(--cyberdrain-darker); - --cui-list-group-action-active-color: var(--cyberdrain-darker); - --cui-list-group-action-active-bg: var(--cyberdrain-success); - --cui-list-group-action-active-border-color: var(--cyberdrain-darker); - } - - .list-group-item-info { - --cui-list-group-color: var(--cyberdrain-info); - --cui-list-group-bg: var(--cyberdrain-darker); - --cui-list-group-border-color: var(--cyberdrain-darker); - --cui-list-group-hover-bg: var(--cyberdrain-info); - --cui-list-group-action-hover-color: var(--cyberdrain-darker); - --cui-list-group-action-active-color: var(--cyberdrain-darker); - --cui-list-group-action-active-bg: var(--cyberdrain-info); - --cui-list-group-action-active-border-color: var(--cyberdrain-darker); - } - - .list-group-item-warning { - --cui-list-group-color: var(--cyberdrain-warning); - --cui-list-group-bg: var(--cyberdrain-darker); - --cui-list-group-border-color: var(--cyberdrain-darker); - --cui-list-group-hover-bg: var(--cyberdrain-warning); - --cui-list-group-action-hover-color: var(--cyberdrain-darker); - --cui-list-group-action-active-color: var(--cyberdrain-darker); - --cui-list-group-action-active-bg: var(--cyberdrain-warning); - --cui-list-group-action-active-border-color: var(--cyberdrain-darker); - } - - .list-group-item-danger { - --cui-list-group-color: var(--cyberdrain-danger); - --cui-list-group-bg: var(--cyberdrain-darker); - --cui-list-group-border-color: var(--cyberdrain-darker); - --cui-list-group-hover-bg: var(--cyberdrain-danger); - --cui-list-group-action-hover-color: var(--cyberdrain-darker); - --cui-list-group-action-active-color: var(--cyberdrain-darker); - --cui-list-group-action-active-bg: var(--cyberdrain-danger); - --cui-list-group-action-active-border-color: var(--cyberdrain-darker); - } - .wrapper.d-flex.flex-column.min-vh-100 .card .card-body .rdt_TableHeadRow { - font-size: 13px; - } - .rdt_Pagination { - border-top: none; - } -} - -[data-theme='cyberdrain'] { - // Custom Ian Color - --cui-color-gray: rgb(240, 240, 240); - --cui-color-gray1: rgb(245, 245, 245); - --cui-color-gray2: rgb(250, 250, 250); - --cui-color-gray-hover: rgba(210, 210, 210, 0.8); - --cui-color-black: rgb(0, 0, 0); - --cui-color-white: rgb(255, 255, 255); - --cui-bgcolor-table-header: rgba(105, 105, 105, 0.973); - --cui-color-orange: #f77f00; - --cui-color-header-bar: rgba(210, 210, 210, 0.8); - --cui-color-table-border: rgba(210, 210, 210, 0.8); - --cui-color-table-border: rgba(210, 210, 210, 0.8); - --cui-color-card-shadow: rgba(22, 22, 22, 0.2); - - // Core UI CyberDrain theme variables. - --cui-body-bg: var(--cyberdrain-light); - --cui-body-color: var(--cyberdrain-dark); - --cui-body-color-rgb: var(--cyberdrain-dark-rgb); - --cui-body-bg-rgb: var(--cyberdrain-light-rgb); - --cui-btn-link-color: var(--cyberdrain-dark); - --cui-card-bg: var(--cyberdrain-light); - --cui-card-border-color: var(--cyberdrain-accent-green); - --cui-card-color: var(--cyberdrain-dark); - --cui-options-card-border-color: var(--cyberdrain-accent-blue); - --cui-dropdown-bg: var(--cyberdrain-light); - --cui-dropdown-color: var(--cyberdrain-dark); - --cui-dropdown-border-color: var(--cyberdrain-accent-green); - --cui-dropdown-link-color: var(--cyberdrain-dark); - --cui-dropdown-link-hover-bg: var(--cyberdrain-accent-green); - --cui-dropdown-link-hover-color: var(--cyberdrain-dark); - --cui-footer-bg: var(--cyberdrain-light); - --cui-footer-color: var(--cyberdrain-dark); - --cui-footer-border-color: var(--cyberdrain-dark); - --cui-form-select-bg: var(--cyberdrain-light); - --cui-form-select-border-color: var(--cyberdrain-dark); - --cui-form-select-color: var(--cyberdrain-dark); - --cui-header-bg: var(--cyberdrain-light); - --cui-header-border-color: var(--cyberdrain-accent-green); - --cui-header-color: var(--cyberdrain-dark); - --cui-header-divider-border-color: var(--cyberdrain-accent-green); - --cui-input-bg: var(--cyberdrain-light); - --cui-input-border-colour: var(--cyberdrain-dark); - --cui-input-color: var(--cyberdrain-dark); - --cui-input-focus-bg: var(--cyberdrain-light-striped); - --cui-input-focus-border-colour: var(--cyberdrain-primary); - --cui-input-focus-color: var(--cyberdrain-dark); - --cui-link-color-rgb: var(--cyberdrain-dark); - --cui-link-hover-color: var(--cyberdrain-primary); - --cui-list-group-bg: var(--cui-color-white) !important; - --cui-list-group-color: var(--cyberdrain-dark); - --cui-modal-content-bg: var(--cyberdrain-light); - --cui-modal-content-border-color: var(--cyberdrain-accent-green); - --cui-modal-content-color: var(--cyberdrain-dark); - --cui-modal-footer-bg: var(--cyberdrain-light); - --cui-modal-footer-border-color: var(--cyberdrain-accent-green); - --cui-modal-footer-color: var(--cyberdrain-dark); - --cui-modal-header-bg: var(--cyberdrain-light); - --cui-modal-header-border-color: var(--cyberdrain-accent-green); - --cui-modal-header-color: var(--cyberdrain-dark); - --cui-progress-bg: var(--cyberdrain-lighter); - --cui-nav-link-color: var(--cyberdrain-dark); - --cui-nav-tabs-link-active-bg: var(--cyberdrain-lighter); - --cui-nav-tabs-link-active-color: var(--cyberdrain-dark); - --cui-nav-tabs-link-active-border-color: var(--cyberdrain-accent-green); - --cui-nav-link-hover-color: var(--cyberdrain-dark); - --cui-nav-tabs-border-color: var(--cyberdrain-accent-green); - --cui-nav-tabs-link-hover-border-color: var(--cyberdrain-accent-green); - --cui-toast-border-color: var(--cyberdrain-accent-green); - --cui-toast-color: var(--cui-color-black); - --cui-toast-header-color: var(--cui-color-black); - --cui-card-cap-color: var(--cyberdrain-dark); - --cui-card-cap-bg: var(--cui-color-white); - - // CIPP CyberDrain theme variables. - --cipp-toast-header-bg: var(--cui-color-white); - --cipp-toast-bg: var(--cui-color-white); - --cipp-toast-color: var(--cui-color-black); - - --cipp-fa-inverse-color: var(--cyberdrain-dark); - --cipp-search-bg: var(--cyberdrain-light); - --cipp-search-border-color: var(--cyberdrain-accent-green); - --cipp-search-color: var(--cyberdrain-dark); - --cipp-search-option-color: var(--cyberdrain-dark); - --cipp-table-bg: var(--cui-color-white); - --cipp-table-button-bg: var(--cyberdrain-dark); - --cipp-table-button-disabled-bg: var(--cyberdrain-lighter); - --cipp-table-button-focus-bg: var(--cui-btn-active-bg); - --cipp-table-button-hover-bg: var(--cui-btn-hover-bg); - --cipp-table-context-bg: var(--cyberdrain-primary); - --cipp-table-context-color: var(--cyberdrain-light); - --cipp-table-divider: var(--cyberdrain-accent-green); - --cipp-table-primary-colour: var(--cyberdrain-dark); - --cipp-table-secondary-colour: var(--cyberdrain-secondary); - --cipp-table-sort-focus-bg: var(--cyberdrain-secondary); - //--cipp-table-highlight-on-hover-bg: rgb(150, 150, 150); - --cipp-table-highlight-on-hover-color: rgb(150, 150, 150); - --cipp-table-striped-bg: var(--cyberdrain-light-striped); - --cipp-table-striped-colour: var(--cyberdrain-dark-striped); - --cipp-offcanvas-header-bg: var(--cui-color-white); - --cipp-offcanvas-header-color: var(--cyberdrain-dark); - - .react-loading-skeleton { - --base-color: #ebebeb; - --highlight-color: #f5f5f5; - --animation-duration: 1.5s; - --animation-direction: normal; - --pseudo-element-display: block; /* Enable animation */ - - background-color: var(--base-color); - - width: 100%; - border-radius: 0.25rem; - display: inline-flex; - line-height: 1; - - position: relative; - overflow: hidden; - z-index: 1; /* Necessary for overflow: hidden to work correctly in Safari */ - } - .card { - box-shadow: 0 1rem 3rem rgba(black, 0.175); - } - .react-loading-skeleton::after { - content: ' '; - display: var(--pseudo-element-display); - position: absolute; - top: 0; - left: 0; - right: 0; - height: 100%; - background-repeat: no-repeat; - background-image: linear-gradient( - 90deg, - var(--base-color), - var(--highlight-color), - var(--base-color) - ); - transform: translateX(-100%); - - animation-name: react-loading-skeleton; - animation-direction: var(--animation-direction); - animation-duration: var(--animation-duration); - animation-timing-function: ease-in-out; - animation-iteration-count: infinite; - } - - .btn-ghost-actioncard { - --cui-btn-bg: transparent; - --cui-btn-border-color: transparent; - --cui-btn-color: var(--cyberdrain-dark); - --cui-btn-hover-bg: var(--cyberdrain-dark); - --cui-btn-hover-border-color: var(--cyberdrain-dark); - --cui-btn-hover-color: var(--cyberdrain-light); - --cui-btn-active-bg: var(--cyberdrain-darker); - --cui-btn-active-border-color: var(--cyberdrain-darker); - --cui-btn-active-color: var(--cyberdrain-lighter); - --cui-btn-disabled-color: #e55353; - --cui-btn-shadow: rgb(229 83 83 / 50%); - } - - .list-group-content-card { - --cui-list-group-border-color: var(--cyberdrain-accent-blue); - } - - .table { - --cui-table-bg: var(--cyberdrain-white); - --cui-table-color: var(--cyberdrain-dark); - --cui-table-striped-bg: var(--cyberdrain-light-striped); - --cui-table-striped-color: var(--cyberdrain-dark-striped); - } - - /* stylelint-disable no-descending-specificity */ - .header-toggler { - &:hover { - color: var(--cui-header-color); - } - } - /* stylelint-enable no-descending-specificity */ -} - -[data-theme='impact'] { - // Custom Ian Color - --cui-color-gray: #1e1e1e; - // --cui-color-gray1: rgb(15,15,15); - // --cui-color-gray2: rgb(10, 10, 10); - --cui-color-header-bar: rgba(40, 40, 40, 0.8); - --cui-color-gray-hover: rgba(46, 54, 58, 0.8); - --cui-color-black: rgb(255, 255, 255); - --cui-bgcolor-table-header: rgba(105, 105, 105, 0.973); - --cui-color-orange: #f77f00; - --cui-color-table-border: rgba(146, 154, 158, 0.8); - --cui-color-card-shadow: rgba(0, 0, 0, 0.8); - --text-medium-emphasis: rgba(255, 255, 255, 0.6); - --cui-emphasis-color-rgb: rgba(255, 255, 255, 0.6); - --cui-input-placeholder-color: rgba(255, 255, 255, 0.6); - .form-control { - border: 1px solid #121212; - } - //--cui-tertiary-bg: var(--cyberdrain-dark); - // Core UI Impact theme variables. - --cui-header-hover-color: var(--cyberdrain-light); - --cui-header-active-color: var(--cyberdrain-accent-blue); - --cui-body-bg: var(--cyberdrain-dark); - --cui-body-color: var(--cyberdrain-light); - --cui-body-color-rgb: var(--cyberdrain-light-rgb); - --cui-body-bg-rgb: var(--cyberdrain-dark-rgb); - --cui-btn-link-color: var(--cyberdrain-light); - --cui-card-border-color: var(--cyberdrain-accent-green); - --cui-card-color: rgba(255, 255, 255, 0.87); - --cui-options-card-border-color: var(--cyberdrain-accent-blue); - --cui-dropdown-bg: var(--cyberdrain-dark); - --cui-dropdown-color: var(--cyberdrain-light); - --cui-dropdown-border-color: var(--cyberdrain-accent-green); - --cui-dropdown-link-color: var(--cyberdrain-light); - --cui-dropdown-link-hover-bg: var(--cyberdrain-accent-blue); - --cui-dropdown-link-hover-color: var(--cyberdrain-light); - --cui-dropdown-zindex: 990; - --cui-footer-bg: #242424; - --cui-footer-color: var(--cyberdrain-light); - --cui-footer-border-color: #121212; - --cui-form-select-bg: var(--cyberdrain-dark); - --cui-form-select-border-color: var(--cyberdrain-light); - --cui-form-select-color: var(--cyberdrain-light); - --cui-form-check-bg: var(--cyberdrain-light); - --cui-header-bg: var(--cyberdrain-dark); - --cui-header-border-color: var(--cyberdrain-accent-green); - --cui-header-color: var(--cyberdrain-light); - --cui-header-divider-border-color: var(--cyberdrain-accent-green); - --cui-input-bg: #2c2c2c; - --cui-input-border-colour: #121212; - --cui-input-color: var(--cyberdrain-light); - --cui-input-disabled-bg: var(--cyberdrain-darker); - --cui-input-disabled-border-color: var(--cyberdrain-lighter); - --cui-input-disabled-color: var(--cyberdrain-lighter); - --cui-input-focus-bg: var(--cyberdrain-dark-striped); - --cui-input-focus-border-color: var(--cyberdrain-primary); - --cui-input-focus-color: var(--cyberdrain-primary); - --cui-link-color-rgb: var(--cyberdrain-light); - --cui-link-hover-color: var(--cyberdrain-primary); - --cui-list-group-bg: var(--cyberdrain-dark); - --cui-list-group-color: var(--cyberdrain-light); - --cui-modal-content-bg: var(--cyberdrain-dark); - --cui-modal-content-border-color: var(--cyberdrain-accent-green); - --cui-modal-content-color: var(--cyberdrain-light); - --cui-modal-footer-bg: var(--cyberdrain-dark); - --cui-modal-footer-border-color: var(--cyberdrain-accent-green); - --cui-modal-footer-color: var(--cyberdrain-light); - --cui-modal-header-bg: var(--cyberdrain-dark); - --cui-modal-header-border-color: var(--cyberdrain-accent-green); - --cui-modal-header-color: var(--cyberdrain-light); - --cui-progress-bg: var(--cyberdrain-darker); - --cui-nav-link-color: var(--cyberdrain-light); - --cui-nav-tabs-link-active-bg: var(--cyberdrain-darker); - --cui-nav-tabs-link-active-color: var(--cyberdrain-light); - --cui-nav-tabs-link-active-border-color: var(--cyberdrain-accent-green); - --cui-nav-link-hover-color: var(--cyberdrain-light); - --cui-nav-tabs-border-color: var(--cyberdrain-accent-green); - --cui-nav-tabs-link-hover-border-color: var(--cyberdrain-accent-green); - --cui-toast-border-color: var(--cyberdrain-accent-green); - --cui-toast-color: var(--cui-color-black); - --cui-toast-header-color: var(--cui-color-black); - --cui-card-cap-color: var(--cyberdrain-white); - --cui-card-cap-bg: var(--cui-color-gray-hover); - --cui-tertiary-bg: var(--cui-bgcolor-table-header); - // CIPP Impact theme variables. - --cipp-toast-bg: var(--cui-color-header-bar); - --cipp-toast-header-bg: var(--cui-color-header-bar); - --cipp-toast-color: var(--cui-color-black); - - --cipp-fa-inverse-color: var(--cyberdrain-dark); - --cipp-search-bg: var(--cyberdrain-dark); - --cipp-search-border-color: var(--cyberdrain-accent-green); - --cipp-search-color: var(--cyberdrain-light); - --cipp-search-option-color: var(--cyberdrain-light); - --cipp-table-bg: var(--cyberdrain-dark); - --cipp-table-button-bg: var(--cyberdrain-light); - --cipp-table-button-disabled-bg: var(--cyberdrain-darker); - --cipp-table-button-focus-bg: var(--cui-btn-active-bg); - --cipp-table-button-hover-bg: var(--cui-btn-hover-bg); - --cipp-table-context-bg: var(--cyberdrain-primary); - --cipp-table-context-color: var(--cyberdrain-light); - --cipp-table-divider: var(--cyberdrain-accent-green); - --cipp-table-primary-colour: var(--cyberdrain-light); - --cipp-table-secondary-colour: var(--cui-gray-100); - --cipp-table-sort-focus-bg: var(--cyberdrain-secondary); - // --cipp-table-highlight-on-hover-bg: rgb(138, 136, 136); - --cipp-table-highlight-on-hover-color: rgb(138, 136, 136); - --cipp-table-striped-bg: var(--cyberdrain-dark-striped); - --cipp-table-striped-colour: var(--cyberdrain-light-striped); - --cipp-offcanvas-header-bg: var(--cyberdrain-dark); - --cipp-offcanvas-header-color: var(--cyberdrain-light); - .react-select__input-container { - color: var(--cyberdrain-light) !important; - } - .react-loading-skeleton { - --base-color: var(--cyberdrain-dark-striped); - --highlight-color: var(--cyberdrain-lighter); - --animation-duration: 2.5s; - --animation-direction: normal; - --pseudo-element-display: block; /* Enable animation */ - - background-color: var(--base-color); - - width: 100%; - border-radius: 0.2rem; - display: inline-flex; - line-height: 1; - - position: relative; - overflow: hidden; - z-index: 1; /* Necessary for overflow: hidden to work correctly in Safari */ - } - .text-medium-emphasis { - color: var(--text-medium-emphasis) !important; - } - .react-loading-skeleton::after { - content: ' '; - display: var(--pseudo-element-display); - position: absolute; - top: 0; - left: 0; - right: 0; - height: 100%; - background-repeat: no-repeat; - background-image: linear-gradient( - 90deg, - var(--base-color), - var(--highlight-color), - var(--base-color) - ); - transform: translateX(-100%); - - animation-name: react-loading-skeleton; - animation-direction: var(--animation-direction); - animation-duration: var(--animation-duration); - animation-timing-function: ease-in-out; - animation-iteration-count: infinite; - } - .btn-ghost-actioncard { - --cui-btn-bg: transparent; - --cui-btn-border-color: transparent; - --cui-btn-color: var(--cyberdrain-light); - --cui-btn-hover-bg: var(--cyberdrain-light); - --cui-btn-hover-border-color: var(--cyberdrain-light); - --cui-btn-hover-color: var(--cyberdrain-dark); - --cui-btn-active-bg: var(--cyberdrain-lighter); - --cui-btn-active-border-color: var(--cyberdrain-lighter); - --cui-btn-active-color: var(--cyberdrain-darker); - --cui-btn-disabled-color: #e55353; - --cui-btn-shadow: rgb(229 83 83 / 50%); - } - .accordion { - --cui-accordion-btn-icon: url('data:image/svg+xml,%3Cns0%3Asvg%20xmlns%3Ans0%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22%23FFFFFF%22%3E%3Cns0%3Apath%20fill-rule%3D%22evenodd%22%20d%3D%22M1%2E646%204%2E646a%2E5%2E5%200%200%201%20%2E708%200L8%2010%2E293l5%2E646-5%2E647a%2E5%2E5%200%200%201%20%2E708%2E708l-6%206a%2E5%2E5%200%200%201-%2E708%200l-6-6a%2E5%2E5%200%200%201%200-%2E708z%22%20%2F%3E%3C%2Fns0%3Asvg%3E'); - } - .accordion-button:not(.collapsed) { - background-color: var(--cyberdrain-dark); - } - .list-group-content-card { - --cui-list-group-border-color: var(--cyberdrain-accent-blue); - } - - .card { - --cui-card-bg: rgba(40, 40, 40, 0.8); - } - .react-datepicker__header { - background-color: var(--cui-bgcolor-table-header); - } - .react-datepicker { - background-color: var(--cui-bgcolor-table-header); - } - .react-datepicker__time-list { - background-color: var(--cui-bgcolor-table-header); - } - .table { - --cui-table-bg: rgba(40, 40, 40, 0.8); - --cui-table-color: var(--cyberdrain-light); - --cui-table-striped-bg: var(--cyberdrain-dark-striped); - --cui-table-striped-color: var(--cyberdrain-light-striped); - } - - /* stylelint-disable no-descending-specificity */ - .header-toggler { - &:hover { - color: var(--cui-header-color); - } - } - /* stylelint-enable no-descending-specificity */ - - .list-group-item-primary { - --cui-list-group-color: var(--cyberdrain-dark); - --cui-list-group-bg: var(--cyberdrain-primary); - --cui-list-group-hover-bg: var(--cyberdrain-darker); - --cui-list-group-action-hover-color: var(--cyberdrain-light); - --cui-list-group-action-active-color: var(--cyberdrain-light); - --cui-list-group-action-active-bg: var(--cyberdrain-secondary); - --cui-list-group-action-active-border-color: var(--cyberdrain-secondary); - } - .react-select__multi-value__label { - color: var(--cyberdrain-light); - } - .react-select__multi-value { - background-color: var(--cyberdrain-primary); - } -} diff --git a/src/scss/_variables.scss b/src/scss/_variables.scss deleted file mode 100644 index 7d77d8000e3b..000000000000 --- a/src/scss/_variables.scss +++ /dev/null @@ -1,1808 +0,0 @@ -/* stylelint-disable */ -// Variables -// -// If you want to customize your project please uncomment and update one of the following variables. - -// Color system - -// scss-docs-start gray-color-variables -// $white: #fff !default; -// $gray-base: #3c4b64 !default; -// $gray-100: #ebedef !default; -// $gray-200: #d8dbe0 !default; -// $gray-300: #c4c9d0 !default; -// $gray-400: #b1b7c1 !default; -// $gray-500: #9da5b1 !default; -// $gray-600: #8a93a2 !default; -// $gray-700: #768192 !default; -// $gray-800: #636f83 !default; -// $gray-900: #4f5d73 !default; -// $black: #000015 !default; -// scss-docs-end gray-color-variables - -// fusv-disable -// scss-docs-start gray-colors-map -// $grays: ( -// "100": $gray-100, -// "200": $gray-200, -// "300": $gray-300, -// "400": $gray-400, -// "500": $gray-500, -// "600": $gray-600, -// "700": $gray-700, -// "800": $gray-800, -// "900": $gray-900 -// ) !default; -// scss-docs-end gray-colors-map -// fusv-enable - -// $high-emphasis: rgba(shift-color($gray-base, +26), .95) !default; -//$medium-emphasis: rgba(247, 127, 0) !default; -// $disabled: rgba(shift-color($gray-base, +26), .38) !default; - -//$high-emphasis-inverse: rgba(247, 127, 0) !default; -// $medium-emphasis-inverse: rgba($white, .6) !default; -// $disabled-inverse: rgba($white, .38) !default; - -// scss-docs-start color-variables -// $blue: #0d6efd !default; -// $indigo: #6610f2 !default; -// $purple: #6f42c1 !default; -// $pink: #d63384 !default; -// $red: #dc3545 !default; -// $orange: #fd7e14 !default; -// $yellow: #ffc107 !default; -// $green: #198754 !default; -// $teal: #20c997 !default; -// $cyan: #0dcaf0 !default; -// scss-docs-end color-variables - -// scss-docs-start colors-map -// $colors: ( -// "blue": $blue, -// "indigo": $indigo, -// "purple": $purple, -// "pink": $pink, -// "red": $red, -// "orange": $orange, -// "yellow": $yellow, -// "green": $green, -// "teal": $teal, -// "cyan": $cyan, -// "white": $white, -// "gray": $gray-600, -// "gray-dark": $gray-800 -// ) !default; -// scss-docs-end colors-map - -// fusv-disable -$primary-dark: rgb(226, 92, 9) !default; -$primary-base: rgba(247, 127, 0) !default; -$primary-50: rgba(247, 128, 0, 0.514) !default; -$primary-25: rgba(247, 128, 0, 0.219) !default; - -$secondary-dark: rgb(1, 42, 65) !default; -$secondary-base: rgba(0, 48, 73) !default; -$secondary-50: rgba(0, 47, 73, 0.479) !default; -$secondary-25: rgba(0, 47, 73, 0.205) !default; - -//$link-color: var(--cui-link-color) !default; -$link-decoration: underline !default; -$link-shade-percentage: 20% !default; -//$link-hover-color: rgba($link-color, $link-shade-percentage) !default; -$link-hover-decoration: null !default; - -$search-bg-color: #ffffff; -$search-border-color: #eeeeee; -$search-selected-option-bg: #2fcc8b; -$search-selected-option-color: #ffffff; -$search-option-highlight-color: rgba(47, 204, 139, 0.1); -$search-selected-option-highlight-bg: #2eb378; -$search-selected-option-highlight-color: #ffffff; -$search-group-header-bg: #eeeeee; - -// If you want to change these variables please also update the _themes.scss file. -$cyberdrain-primary: #f77f00; // Orange -$cyberdrain-secondary: #003049; // Prussian Blue -$cyberdrain-secondary-rgb: rgb(0 48 73); // Prussian Blue -$cyberdrain-lighter: #fff; // White -$cyberdrain-light: #f4f5f6; // Cultured -$cyberdrain-light-rgb: rgb(244 245 246); // Cultured -$cyberdrain-light-striped: #d2d6da; // Light Gray -$cyberdrain-darker: #20262a; // Charleston Green -$cyberdrain-dark: #2e363a; // Gunmetal -$cyberdrain-dark-rgb: rgb(46 54 58); // Gunmetal -$cyberdrain-dark-striped: #48555b; // Charcoal -$cyberdrain-accent-blue: #3e5c66; // Deep Space Sparkle -$cyberdrain-accent-blue-rgb: rgb(62 92 102); // Deep Space Sparkle -$cyberdrain-accent-green: #005c63; // Midnight Green Eagle Green -$cyberdrain-accent-green-rgb: rgb(0 92 99); // Midnight Green Eagle Green -$cyberdrain-accent-beige: #ebf0df; // Beige -$cyberdrain-accent-beige-rgb: rgb(235 240 223); // Beige -$cyberdrain-success: #4fa000; // Green RYB -$cyberdrain-success-rgb: rgb(79 160 0); // Green RYB -$cyberdrain-info: #0096d8; // Carolina Blue -$cyberdrain-info-rgb: rgb(0 150 216); // Carolina Blue -$cyberdrain-warning: #bf7f00; // Dark Goldenrod -$cyberdrain-warning-rgb: rgb(191 127 0); // Dark Goldenrod -$cyberdrain-danger: #eb603d; // Orange Soda -$cyberdrain-danger-rgb: rgb(235 96 61); // Orange Soda - -// $success-dark: #1b9e3e !default; -// $success-base: #2eb85c !default; -// $success-50: #96dbad !default; -// $success-25: #cbedd6 !default; - -// $info-dark: #2982cc !default; -// $info-base: #39f !default; -// $info-50: #80c6ff !default; -// $info-25: #c0e6ff !default; - -// $warning-dark: #f6960b !default; -// $warning-base: #f9b115 !default; -// $warning-50: #fcd88a !default; -// $warning-25: #feecc5 !default; - -// $danger-dark: #d93737 !default; -// $danger-base: #e55353 !default; -// $danger-50: #f2a9a9 !default; -// $danger-25: #f9d4d4 !default; - -// $light-dark: $gray-100 !default; -// $light-base: $gray-100 !default; -// $light-50: shift-color($light-base, -70) !default; -// $light-25: shift-color($light-base, -80) !default; - -// $dark-dark: $gray-900 !default; -// $dark-base: $gray-900 !default; -// $dark-50: shift-color($dark-base, -70) !default; -// $dark-25: shift-color($dark-base, -80) !default; -// fusv-enable - -// scss-docs-start theme-color-variables -// $primary: $primary-base !default; -// $secondary: $secondary-base !default; -// $success: $success-base !default; -// $info: $info-base !default; -// $warning: $warning-base !default; -// $danger: $danger-base !default; -// $light: $light-base !default; -// $dark: $dark-base !default; -// scss-docs-end theme-color-variables - -// scss-docs-start theme-colors-map -// $theme-colors: ( -// "primary": $primary, -// "secondary": $secondary, -// "success": $success, -// "info": $info, -// "warning": $warning, -// "danger": $danger, -// "light": $light, -// "dark": $dark -// ) !default; -// scss-docs-end theme-colors-map - -// The contrast ratio to reach against white, to determine if color changes from "light" to "dark". Acceptable values for WCAG 2.0 are 3, 4.5 and 7. -// See https://www.w3.org/TR/WCAG20/#visual-audio-contrast-contrast -// $min-contrast-ratio: 4.5 !default; - -// Customize the light and dark text colors for use in our color contrast function. -// $color-contrast-dark: $high-emphasis-inverse !default; -// $color-contrast-light: $high-emphasis !default; - -// fusv-disable -// $blue-100: tint-color($blue, 80%) !default; -// $blue-200: tint-color($blue, 60%) !default; -// $blue-300: tint-color($blue, 40%) !default; -// $blue-400: tint-color($blue, 20%) !default; -// $blue-500: $blue !default; -// $blue-600: shade-color($blue, 20%) !default; -// $blue-700: shade-color($blue, 40%) !default; -// $blue-800: shade-color($blue, 60%) !default; -// $blue-900: shade-color($blue, 80%) !default; - -// $indigo-100: tint-color($indigo, 80%) !default; -// $indigo-200: tint-color($indigo, 60%) !default; -// $indigo-300: tint-color($indigo, 40%) !default; -// $indigo-400: tint-color($indigo, 20%) !default; -// $indigo-500: $indigo !default; -// $indigo-600: shade-color($indigo, 20%) !default; -// $indigo-700: shade-color($indigo, 40%) !default; -// $indigo-800: shade-color($indigo, 60%) !default; -// $indigo-900: shade-color($indigo, 80%) !default; - -// $purple-100: tint-color($purple, 80%) !default; -// $purple-200: tint-color($purple, 60%) !default; -// $purple-300: tint-color($purple, 40%) !default; -// $purple-400: tint-color($purple, 20%) !default; -// $purple-500: $purple !default; -// $purple-600: shade-color($purple, 20%) !default; -// $purple-700: shade-color($purple, 40%) !default; -// $purple-800: shade-color($purple, 60%) !default; -// $purple-900: shade-color($purple, 80%) !default; - -// $pink-100: tint-color($pink, 80%) !default; -// $pink-200: tint-color($pink, 60%) !default; -// $pink-300: tint-color($pink, 40%) !default; -// $pink-400: tint-color($pink, 20%) !default; -// $pink-500: $pink !default; -// $pink-600: shade-color($pink, 20%) !default; -// $pink-700: shade-color($pink, 40%) !default; -// $pink-800: shade-color($pink, 60%) !default; -// $pink-900: shade-color($pink, 80%) !default; - -// $red-100: tint-color($red, 80%) !default; -// $red-200: tint-color($red, 60%) !default; -// $red-300: tint-color($red, 40%) !default; -// $red-400: tint-color($red, 20%) !default; -// $red-500: $red !default; -// $red-600: shade-color($red, 20%) !default; -// $red-700: shade-color($red, 40%) !default; -// $red-800: shade-color($red, 60%) !default; -// $red-900: shade-color($red, 80%) !default; - -// $orange-100: tint-color($orange, 80%) !default; -// $orange-200: tint-color($orange, 60%) !default; -// $orange-300: tint-color($orange, 40%) !default; -// $orange-400: tint-color($orange, 20%) !default; -// $orange-500: $orange !default; -// $orange-600: shade-color($orange, 20%) !default; -// $orange-700: shade-color($orange, 40%) !default; -// $orange-800: shade-color($orange, 60%) !default; -// $orange-900: shade-color($orange, 80%) !default; - -// $yellow-100: tint-color($yellow, 80%) !default; -// $yellow-200: tint-color($yellow, 60%) !default; -// $yellow-300: tint-color($yellow, 40%) !default; -// $yellow-400: tint-color($yellow, 20%) !default; -// $yellow-500: $yellow !default; -// $yellow-600: shade-color($yellow, 20%) !default; -// $yellow-700: shade-color($yellow, 40%) !default; -// $yellow-800: shade-color($yellow, 60%) !default; -// $yellow-900: shade-color($yellow, 80%) !default; - -// $green-100: tint-color($green, 80%) !default; -// $green-200: tint-color($green, 60%) !default; -// $green-300: tint-color($green, 40%) !default; -// $green-400: tint-color($green, 20%) !default; -// $green-500: $green !default; -// $green-600: shade-color($green, 20%) !default; -// $green-700: shade-color($green, 40%) !default; -// $green-800: shade-color($green, 60%) !default; -// $green-900: shade-color($green, 80%) !default; - -// $teal-100: tint-color($teal, 80%) !default; -// $teal-200: tint-color($teal, 60%) !default; -// $teal-300: tint-color($teal, 40%) !default; -// $teal-400: tint-color($teal, 20%) !default; -// $teal-500: $teal !default; -// $teal-600: shade-color($teal, 20%) !default; -// $teal-700: shade-color($teal, 40%) !default; -// $teal-800: shade-color($teal, 60%) !default; -// $teal-900: shade-color($teal, 80%) !default; - -// $cyan-100: tint-color($cyan, 80%) !default; -// $cyan-200: tint-color($cyan, 60%) !default; -// $cyan-300: tint-color($cyan, 40%) !default; -// $cyan-400: tint-color($cyan, 20%) !default; -// $cyan-500: $cyan !default; -// $cyan-600: shade-color($cyan, 20%) !default; -// $cyan-700: shade-color($cyan, 40%) !default; -// $cyan-800: shade-color($cyan, 60%) !default; -// $cyan-900: shade-color($cyan, 80%) !default; -// fusv-enable - -// Characters which are escaped by the escape-svg function -// $escaped-characters: ( -// ("<", "%3c"), -// (">", "%3e"), -// ("#", "%23"), -// ("(", "%28"), -// (")", "%29"), -// ) !default; - -// Options -// -// Quickly modify global styling by enabling or disabling optional features. - -// $enable-caret: true !default; -$enable-rounded: true; -$enable-shadows: true; -// $enable-gradients: false !default; -// $enable-transitions: true !default; -// $enable-reduced-motion: true !default; -// $enable-smooth-scroll: true !default; -// $enable-grid-classes: true !default; -// $enable-button-pointers: true !default; -// $enable-rfs: true !default; -// $enable-validation-icons: true !default; -$enable-negative-margins: true; -$enable-deprecation-messages: false !default; -// $enable-important-utilities: true !default; -// $enable-contrast-ratio-correction: true !default; -// $enable-contrast-ratio-warnings: false !default; -// $enable-ltr: true !default; -// $enable-rtl: false !default; - -// Set mobile breakpoint - -// $mobile-breakpoint: md !default; - -// Prefix for :root CSS variables - -// $variable-prefix: cui- !default; - -// Gradient -// -// The gradient which is added to components if `$enable-gradients` is `true` -// This gradient is also added to elements with `.bg-gradient` -// scss-docs-start variable-gradient -// $gradient: linear-gradient(180deg, rgba($white, .15), rgba($white, 0)) !default; -// scss-docs-end variable-gradient - -// Spacing -// -// Control the default styling of most Bootstrap elements by modifying these -// variables. Mostly focused on spacing. -// You can add more entries to the $spacers map, should you need more variation. - -// scss-docs-start spacer-variables-maps -// $spacer: 1rem !default; -// $spacers: ( -// 0: 0, -// 1: $spacer / 4, -// 2: $spacer / 2, -// 3: $spacer, -// 4: $spacer * 1.5, -// 5: $spacer * 3, -// ) !default; - -// $negative-spacers: if($enable-negative-margins, negativify-map($spacers), null) !default; -// scss-docs-end spacer-variables-maps - -// Position -// -// Define the edge positioning anchors of the position utilities. - -// scss-docs-start position-map -// $position-values: ( -// 0: 0, -// 50: 50%, -// 100: 100% -// ) !default; -// scss-docs-end position-map - -// Body -// -// Settings for the `` element. - -// $body-bg: $white !default; -// $body-color: $high-emphasis !default; -// $body-text-align: null !default; - -// Links -// -// Style anchor elements. - -// $link-color: $primary !default; -// $link-decoration: underline !default; -// $link-shade-percentage: 20% !default; -// $link-hover-color: shift-color($link-color, $link-shade-percentage) !default; -// $link-hover-decoration: null !default; - -// $stretched-link-pseudo-element: after !default; -// $stretched-link-z-index: 1 !default; - -// Paragraphs -// -// Style p element. - -// $paragraph-margin-bottom: 1rem !default; - -// Grid breakpoints -// -// Define the minimum dimensions at which your layout will change, -// adapting to different screen sizes, for use in media queries. - -// scss-docs-start grid-breakpoints -// $grid-breakpoints: ( -// xs: 0, -// sm: 576px, -// md: 768px, -// lg: 992px, -// xl: 1200px, -// xxl: 1400px -// ) !default; -// scss-docs-end grid-breakpoints - -// @include _assert-ascending($grid-breakpoints, "$grid-breakpoints"); -// @include _assert-starts-at-zero($grid-breakpoints, "$grid-breakpoints"); - -// Grid containers -// -// Define the maximum width of `.container` for different screen sizes. - -// scss-docs-start container-max-widths -// $container-max-widths: ( -// sm: 540px, -// md: 720px, -// lg: 960px, -// xl: 1140px, -// xxl: 1320px -// ) !default; -// scss-docs-end container-max-widths - -// @include _assert-ascending($container-max-widths, "$container-max-widths"); - -// Grid columns -// -// Set the number of columns and specify the width of the gutters. - -// $grid-columns: 12 !default; -// $grid-gutter-width: 1.5rem !default; -// $grid-row-columns: 6 !default; - -// $gutters: $spacers !default; - -// Container padding - -// $container-padding-x: $grid-gutter-width / 2 !default; - -// Components -// -// Define common padding and border radius sizes and more. - -// scss-docs-start border-variables -// $border-width: 1px !default; -// $border-widths: ( -// 1: 1px, -// 2: 2px, -// 3: 3px, -// 4: 4px, -// 5: 5px -// ) !default; - -// $border-color: $gray-200 !default; -// scss-docs-end border-variables - -// scss-docs-start border-radius-variables -// $border-radius: .25rem !default; -// $border-radius-sm: .2rem !default; -// $border-radius-lg: .3rem !default; -// $border-radius-pill: 50rem !default; -// scss-docs-end border-radius-variables - -// scss-docs-start box-shadow-variables -// $box-shadow: 0 .5rem 1rem rgba($black, .15) !default; -// $box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default; -// $box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default; -// $box-shadow-inset: inset 0 1px 2px rgba($black, .075) !default; -// scss-docs-end box-shadow-variables - -// $component-active-color: $high-emphasis-inverse !default; -// $component-active-bg: $primary !default; - -// scss-docs-start caret-variables -// $caret-width: .3em !default; -// $caret-vertical-align: $caret-width * .85 !default; -// $caret-spacing: $caret-width * .85 !default; -// scss-docs-end caret-variables - -// $transition-base: all .2s ease-in-out !default; -// $transition-fade: opacity .15s linear !default; -// scss-docs-start collapse-transition -// $transition-collapse: height .35s ease !default; -// scss-docs-end collapse-transition - -// stylelint-disable function-disallowed-list -// scss-docs-start aspect-ratios -// $aspect-ratios: ( -// "1x1": 100%, -// "4x3": calc(3 / 4 * 100%), -// "16x9": calc(9 / 16 * 100%), -// "21x9": calc(9 / 21 * 100%) -// ) !default; -// scss-docs-end aspect-ratios -// stylelint-enable function-disallowed-list - -// Typography -// -// Font, line-height, and color for body text, headings, and more. - -// scss-docs-start font-variables -// stylelint-disable value-keyword-case -// $font-family-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default; -// $font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default; -// stylelint-enable value-keyword-case -// $font-family-base: var(--#{$variable-prefix}font-sans-serif) !default; -// $font-family-code: var(--#{$variable-prefix}font-monospace) !default; - -// $font-size-root effects the value of `rem`, which is used for as well font sizes, paddings and margins -// $font-size-base effects the font size of the body text -// $font-size-root: null !default; -$font-size-base: 1rem !default; // Assumes the browser default, typically `16px` -// $font-size-sm: $font-size-base * .875 !default; -// $font-size-lg: $font-size-base * 1.25 !default; - -// $font-weight-lighter: lighter !default; -// $font-weight-light: 300 !default; -// $font-weight-normal: 400 !default; -// $font-weight-medium: 500 !default; -// $font-weight-semibold: 600 !default; -// $font-weight-bold: 700 !default; -// $font-weight-bolder: bolder !default; - -// $font-weight-base: $font-weight-normal !default; - -// $line-height-base: 1.5 !default; -// $line-height-sm: 1.25 !default; -// $line-height-lg: 2 !default; - -// $h1-font-size: $font-size-base * 2.5 !default; -// $h2-font-size: $font-size-base * 2 !default; -// $h3-font-size: $font-size-base * 1.75 !default; -// $h4-font-size: $font-size-base * 1.5 !default; -$h5-font-size: $font-size-base; -// $h6-font-size: $font-size-base !default; -// scss-docs-end font-variables - -// scss-docs-start font-sizes -// $font-sizes: ( -// 1: $h1-font-size, -// 2: $h2-font-size, -// 3: $h3-font-size, -// 4: $h4-font-size, -// 5: $h5-font-size, -// 6: $h6-font-size -// ) !default; -// scss-docs-end font-sizes - -// scss-docs-start headings-variables -// $headings-margin-bottom: $spacer / 2 !default; -// $headings-font-family: null !default; -// $headings-font-style: null !default; -// $headings-font-weight: 500 !default; -// $headings-line-height: 1.2 !default; -// $headings-color: unset !default; -// scss-docs-end headings-variables - -// scss-docs-start display-headings -// $display-font-sizes: ( -// 1: 5rem, -// 2: 4.5rem, -// 3: 4rem, -// 4: 3.5rem, -// 5: 3rem, -// 6: 2.5rem -// ) !default; - -// $display-font-weight: 300 !default; -// $display-line-height: $headings-line-height !default; -// scss-docs-end display-headings - -// scss-docs-start type-variables -// $lead-font-size: $font-size-base * 1.25 !default; -// $lead-font-weight: 300 !default; - -// $small-font-size: .875em !default; - -// $sub-sup-font-size: .75em !default; - -// $text-high-emphasis: $high-emphasis !default; -// $text-medium-emphasis: $medium-emphasis !default; -// $text-disabled: $disabled !default; -// $text-muted: $disabled !default; - -// $text-high-emphasis-inverse: $high-emphasis-inverse !default; -// $text-medium-emphasis-inverse: $medium-emphasis-inverse !default; -// $text-disabled-inverse: $disabled-inverse !default; - -// $initialism-font-size: $small-font-size !default; - -// $blockquote-margin-y: $spacer !default; -// $blockquote-font-size: $font-size-base * 1.25 !default; -// $blockquote-footer-color: $gray-600 !default; -// $blockquote-footer-font-size: $small-font-size !default; - -// $hr-margin-y: $spacer !default; -// $hr-color: inherit !default; -// $hr-height: $border-width !default; -// $hr-opacity: .25 !default; - -// $vr-color: inherit !default; -// $vr-width: $border-width !default; -// $vr-opacity: .25 !default; - -// $legend-margin-bottom: .5rem !default; -// $legend-font-size: 1.5rem !default; -// $legend-font-weight: null !default; - -// $mark-padding: .2em !default; - -// $dt-font-weight: $font-weight-bold !default; - -// $nested-kbd-font-weight: $font-weight-bold !default; - -// $list-inline-padding: .5rem !default; - -// $mark-bg: #fcf8e3 !default; -// scss-docs-end type-variables - -// Icons -// $icon-size-base: 1rem !default; -// $icon-size-sm: $icon-size-base * .875 !default; -// $icon-size-lg: $icon-size-base * 1.25 !default; -// $icon-size-xl: $icon-size-base * 1.5 !default; - -// Tables -// -// Customizes the `.table` component with basic values, each used across all table variations. - -// scss-docs-start table-variables -// $table-cell-padding-y: .5rem !default; -// $table-cell-padding-x: .5rem !default; -// $table-cell-padding-y-sm: .25rem !default; -// $table-cell-padding-x-sm: .25rem !default; - -// $table-cell-vertical-align: top !default; - -// $table-color: $body-color !default; -// $table-bg: transparent !default; - -// $table-th-font-weight: 600 !default; - -// $table-striped-color: $table-color !default; -// $table-striped-bg-factor: .05 !default; -// $table-striped-bg: rgba($black, $table-striped-bg-factor) !default; - -// $table-active-color: $table-color !default; -// $table-active-bg-factor: .1 !default; -// $table-active-bg: rgba($black, $table-active-bg-factor) !default; - -// $table-hover-color: $table-color !default; -// $table-hover-bg-factor: .075 !default; -// $table-hover-bg: rgba($black, $table-hover-bg-factor) !default; - -// $table-border-factor: .1 !default; -// $table-border-width: $border-width !default; -// $table-border-color: $border-color !default; - -// $table-striped-order: odd !default; - -// $table-group-separator-color: currentColor !default; - -// $table-caption-color: $text-muted !default; - -// $table-bg-scale: -80% !default; -// scss-docs-end table-variables - -// scss-docs-start table-loop -// $table-variants: ( -// "primary": table-color-map(shift-color($primary, $table-bg-scale)), -// "secondary": table-color-map(shift-color($secondary, $table-bg-scale)), -// "success": table-color-map(shift-color($success, $table-bg-scale)), -// "danger": table-color-map(shift-color($danger, $table-bg-scale)), -// "warning": table-color-map(shift-color($warning, $table-bg-scale)), -// "info": table-color-map(shift-color($info, $table-bg-scale)), -// "light": table-color-map(shift-color($light, $table-bg-scale)), -// "dark": table-color-map(shift-color($dark, $table-bg-scale)) -// ) !default; -// scss-docs-end table-loop - -// Buttons + Forms -// -// Shared variables that are reassigned to `$input-` and `$btn-` specific variables. - -// scss-docs-start input-btn-variables -// $input-btn-padding-y: .375rem !default; -// $input-btn-padding-x: .75rem !default; -// $input-btn-font-family: null !default; -// $input-btn-font-size: $font-size-base !default; -// $input-btn-line-height: $line-height-base !default; - -// $input-btn-focus-width: .25rem !default; -// $input-btn-focus-color-opacity: .25 !default; -// $input-btn-focus-color: rgba($component-active-bg, $input-btn-focus-color-opacity) !default; -// $input-btn-focus-blur: 0 !default; -// $input-btn-focus-box-shadow: 0 0 $input-btn-focus-blur $input-btn-focus-width $input-btn-focus-color !default; - -// $input-btn-padding-y-sm: .25rem !default; -// $input-btn-padding-x-sm: .5rem !default; -// $input-btn-font-size-sm: $font-size-sm !default; - -// $input-btn-padding-y-lg: .5rem !default; -// $input-btn-padding-x-lg: 1rem !default; -// $input-btn-font-size-lg: $font-size-lg !default; - -// $input-btn-border-width: $border-width !default; -// scss-docs-end input-btn-variables - -// Buttons -// -// For each of Bootstrap's buttons, define text, background, and border color. - -// scss-docs-start btn-variables -// $btn-padding-y: $input-btn-padding-y !default; -// $btn-padding-x: $input-btn-padding-x !default; -// $btn-font-family: $input-btn-font-family !default; -// $btn-font-size: $input-btn-font-size !default; -// $btn-line-height: $input-btn-line-height !default; -// $btn-white-space: null !default; // Set to `nowrap` to prevent text wrapping - -// $btn-padding-y-sm: $input-btn-padding-y-sm !default; -// $btn-padding-x-sm: $input-btn-padding-x-sm !default; -// $btn-font-size-sm: $input-btn-font-size-sm !default; - -// $btn-padding-y-lg: $input-btn-padding-y-lg !default; -// $btn-padding-x-lg: $input-btn-padding-x-lg !default; -// $btn-font-size-lg: $input-btn-font-size-lg !default; - -// $btn-border-width: $input-btn-border-width !default; - -// $btn-font-weight: $font-weight-normal !default; -$btn-box-shadow: none !default; -// $btn-focus-width: $input-btn-focus-width !default; -// $btn-focus-box-shadow: $input-btn-focus-box-shadow !default; -// $btn-disabled-opacity: .65 !default; -// $btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default; - -// $btn-link-color: $link-color !default; -// $btn-link-hover-color: $link-hover-color !default; -// $btn-link-disabled-color: $gray-600 !default; - -// Allows for customizing button radius independently from global border radius -// $btn-border-radius: $border-radius !default; -// $btn-border-radius-sm: $border-radius-sm !default; -// $btn-border-radius-lg: $border-radius-lg !default; - -// $btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default; - -// $btn-hover-bg-shade-amount: 15% !default; -// $btn-hover-bg-tint-amount: 15% !default; -// $btn-hover-border-shade-amount: 20% !default; -// $btn-hover-border-tint-amount: 10% !default; -// $btn-active-bg-shade-amount: 20% !default; -// $btn-active-bg-tint-amount: 20% !default; -// $btn-active-border-shade-amount: 25% !default; -// $btn-active-border-tint-amount: 10% !default; - -// $button-variants: ( -// "primary": btn-color-map($primary, $primary), -// "secondary": btn-color-map($secondary, $secondary), -// "success": btn-color-map($success, $success), -// "danger": btn-color-map($danger, $danger), -// "warning": btn-color-map($warning, $warning), -// "info": btn-color-map($info, $info), -// "light": btn-color-map($light, $light), -// "dark": btn-color-map($dark, $dark) -// ) !default; - -// $button-outline-ghost-variants: ( -// "primary": btn-outline-color-map($primary), -// "secondary": btn-outline-color-map($secondary), -// "success": btn-outline-color-map($success), -// "danger": btn-outline-color-map($danger), -// "warning": btn-outline-color-map($warning), -// "info": btn-outline-color-map($info), -// "light": btn-outline-color-map($light), -// "dark": btn-outline-color-map($dark) -// ) !default; -// scss-docs-end btn-variables - -// Forms -// scss-docs-start form-variables -// scss-docs-start form-text-variables -// $form-text-margin-top: .25rem !default; -// $form-text-font-size: $small-font-size !default; -// $form-text-font-style: null !default; -// $form-text-font-weight: null !default; -// $form-text-color: $text-muted !default; -// scss-docs-end form-text-variables - -// scss-docs-start form-label-variables -// $form-label-margin-bottom: .5rem !default; -// $form-label-font-size: null !default; -// $form-label-font-style: null !default; -// $form-label-font-weight: null !default; -// $form-label-color: null !default; -// scss-docs-end form-label-variables - -// scss-docs-start form-input-variables -// $input-padding-y: $input-btn-padding-y !default; -// $input-padding-x: $input-btn-padding-x !default; -// $input-font-family: $input-btn-font-family !default; -// $input-font-size: $input-btn-font-size !default; -// $input-font-weight: $font-weight-base !default; -// $input-line-height: $input-btn-line-height !default; - -// $input-padding-y-sm: $input-btn-padding-y-sm !default; -// $input-padding-x-sm: $input-btn-padding-x-sm !default; -// $input-font-size-sm: $input-btn-font-size-sm !default; - -// $input-padding-y-lg: $input-btn-padding-y-lg !default; -// $input-padding-x-lg: $input-btn-padding-x-lg !default; -// $input-font-size-lg: $input-btn-font-size-lg !default; - -// $input-bg: $white !default; -// $input-disabled-bg: $gray-200 !default; -// $input-disabled-border-color: $gray-400 !default; - -// $input-color: $body-color !default; -// $input-border-color: $gray-400 !default; -// $input-border-width: $input-btn-border-width !default; -// $input-box-shadow: $box-shadow-inset !default; - -// $input-border-radius: $border-radius !default; -// $input-border-radius-sm: $border-radius-sm !default; -// $input-border-radius-lg: $border-radius-lg !default; - -// $input-focus-bg: $input-bg !default; -// $input-focus-border-color: tint-color($component-active-bg, 50%) !default; -// $input-focus-color: $input-color !default; -// $input-focus-width: $input-btn-focus-width !default; -// $input-focus-box-shadow: $input-btn-focus-box-shadow !default; - -// $input-placeholder-color: $gray-600 !default; -// $input-plaintext-color: $body-color !default; - -// $input-height-border: $input-border-width * 2 !default; - -// $input-height-inner: add($input-line-height * 1em, $input-padding-y * 2) !default; -// $input-height-inner-half: add($input-line-height * .5em, $input-padding-y) !default; -// $input-height-inner-quarter: add($input-line-height * .25em, $input-padding-y / 2) !default; - -// $input-height: add($input-line-height * 1em, add($input-padding-y * 2, $input-height-border, false)) !default; -// $input-height-sm: add($input-line-height * 1em, add($input-padding-y-sm * 2, $input-height-border, false)) !default; -// $input-height-lg: add($input-line-height * 1em, add($input-padding-y-lg * 2, $input-height-border, false)) !default; - -// $input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default; -// scss-docs-end form-input-variables - -// scss-docs-start form-check-variables -// $form-check-input-width: 1em !default; -// $form-check-min-height: $font-size-base * $line-height-base !default; -// $form-check-padding-start: $form-check-input-width + .5em !default; -// $form-check-margin-bottom: .125rem !default; -// $form-check-label-color: unset !default; -// $form-check-label-cursor: null !default; -// $form-check-transition: null !default; - -// $form-check-input-active-filter: brightness(90%) !default; - -$form-check-input-bg: var(--cyberdrain-light) !default; -// $form-check-input-border: 1px solid rgba($black, .25) !default; -// $form-check-input-border-radius: .25em !default; -// $form-check-radio-border-radius: 50% !default; -// $form-check-input-focus-border: $input-focus-border-color !default; -// $form-check-input-focus-box-shadow: $input-btn-focus-box-shadow !default; - -// $form-check-input-checked-color: $component-active-color !default; -// $form-check-input-checked-bg-color: $component-active-bg !default; -// $form-check-input-checked-border-color: $form-check-input-checked-bg-color !default; -// $form-check-input-checked-bg-image: url("data:image/svg+xml,") !default; -// $form-check-radio-checked-bg-image: url("data:image/svg+xml,") !default; - -// $form-check-input-indeterminate-color: $component-active-color !default; -// $form-check-input-indeterminate-bg-color: $component-active-bg !default; -// $form-check-input-indeterminate-border-color: $form-check-input-indeterminate-bg-color !default; -// $form-check-input-indeterminate-bg-image: url("data:image/svg+xml,") !default; - -// $form-check-input-disabled-opacity: .5 !default; -// $form-check-label-disabled-opacity: $form-check-input-disabled-opacity !default; -// $form-check-btn-check-disabled-opacity: $btn-disabled-opacity !default; - -// $form-check-inline-margin-end: 1rem !default; -// scss-docs-end form-check-variables - -// scss-docs-start form-switch-variables -// $form-switch-color: rgba(0, 0, 0, .25) !default; -// $form-switch-width: 1.5em !default; -// $form-switch-padding-start: $form-switch-width + .5em !default; -// $form-switch-bg-image: url("data:image/svg+xml,") !default; -// $form-switch-border-radius: $form-switch-width !default; -// $form-switch-transition: background-position .15s ease-in-out !default; - -// $form-switch-focus-color: $input-focus-border-color !default; -// $form-switch-focus-bg-image: url("data:image/svg+xml,") !default; - -// $form-switch-checked-color: $component-active-color !default; -// $form-switch-checked-bg-image: url("data:image/svg+xml,") !default; -// $form-switch-checked-bg-position: right center !default; - -// $form-switch-widths: ( -// lg: ( -// width: 1.75em, -// height: 1.25em -// ), -// xl: ( -// width: 2em, -// height: 1.5em -// ) -// ) !default; -// scss-docs-end form-switch-variables - -// $form-check-inline-margin-end: 1rem !default; - -// scss-docs-start input-group-variables -// $input-group-addon-padding-y: $input-padding-y !default; -// $input-group-addon-padding-x: $input-padding-x !default; -// $input-group-addon-font-weight: $input-font-weight !default; -// $input-group-addon-color: $input-color !default; -// $input-group-addon-bg: $gray-200 !default; -// $input-group-addon-border-color: $input-border-color !default; -// scss-docs-end input-group-variables - -// scss-docs-start form-select-variables -// $form-select-padding-y: $input-padding-y !default; -// $form-select-padding-x: $input-padding-x !default; -// $form-select-font-family: $input-font-family !default; -// $form-select-font-size: $input-font-size !default; -// $form-select-indicator-padding: $form-select-padding-x * 3 !default; // Extra padding for background-image -// $form-select-font-weight: $input-font-weight !default; -// $form-select-line-height: $input-line-height !default; -// $form-select-color: $input-color !default; -// $form-select-bg: $input-bg !default; -// $form-select-disabled-color: null !default; -// $form-select-disabled-bg: $gray-200 !default; -// $form-select-disabled-border-color: $input-disabled-border-color !default; -// $form-select-bg-position: right $form-select-padding-x center !default; -// $form-select-bg-size: 16px 12px !default; // In pixels because image dimensions -// $form-select-indicator-color: $gray-800 !default; -// $form-select-indicator: url("data:image/svg+xml,") !default; - -// $form-select-feedback-icon-padding-end: $form-select-padding-x * 2.5 + $form-select-indicator-padding !default; -// $form-select-feedback-icon-position: center right $form-select-indicator-padding !default; -// $form-select-feedback-icon-size: $input-height-inner-half $input-height-inner-half !default; - -// $form-select-border-width: $input-border-width !default; -// $form-select-border-color: $input-border-color !default; -// $form-select-border-radius: $border-radius !default; -// $form-select-box-shadow: $box-shadow-inset !default; - -// $form-select-focus-border-color: $input-focus-border-color !default; -// $form-select-focus-width: $input-focus-width !default; -// $form-select-focus-box-shadow: 0 0 0 $form-select-focus-width $input-btn-focus-color !default; - -// $form-select-padding-y-sm: $input-padding-y-sm !default; -// $form-select-padding-x-sm: $input-padding-x-sm !default; -// $form-select-font-size-sm: $input-font-size-sm !default; - -// $form-select-padding-y-lg: $input-padding-y-lg !default; -// $form-select-padding-x-lg: $input-padding-x-lg !default; -// $form-select-font-size-lg: $input-font-size-lg !default; -// scss-docs-end form-select-variables - -// scss-docs-start form-range-variables -// $form-range-track-width: 100% !default; -// $form-range-track-height: .5rem !default; -// $form-range-track-cursor: pointer !default; -// $form-range-track-bg: $gray-300 !default; -// $form-range-track-border-radius: 1rem !default; -// $form-range-track-box-shadow: $box-shadow-inset !default; - -// $form-range-thumb-width: 1rem !default; -// $form-range-thumb-height: $form-range-thumb-width !default; -// $form-range-thumb-bg: $component-active-bg !default; -// $form-range-thumb-border: 0 !default; -// $form-range-thumb-border-radius: 1rem !default; -// $form-range-thumb-box-shadow: 0 .1rem .25rem rgba($black, .1) !default; -// $form-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg, $input-focus-box-shadow !default; -// $form-range-thumb-focus-box-shadow-width: $input-focus-width !default; // For focus box shadow issue in Edge -// $form-range-thumb-active-bg: tint-color($component-active-bg, 70%) !default; -// $form-range-thumb-disabled-bg: $gray-500 !default; -// $form-range-thumb-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default; -// scss-docs-end form-range-variables - -// scss-docs-start form-file-variables -// $form-file-button-color: $input-color !default; -// $form-file-button-bg: $input-group-addon-bg !default; -// $form-file-button-hover-bg: shade-color($form-file-button-bg, 5%) !default; -// scss-docs-end form-file-variables - -// scss-docs-start form-floating-variables -// $form-floating-height: add(3.5rem, $input-height-border) !default; -// $form-floating-padding-x: $input-padding-x !default; -// $form-floating-padding-y: 1rem !default; -// $form-floating-input-padding-t: 1.625rem !default; -// $form-floating-input-padding-b: .625rem !default; -// $form-floating-label-opacity: .65 !default; -// $form-floating-label-transform: scale(.85) translateY(-.5rem) translateX(.15rem) !default; -// $form-floating-transition: opacity .1s ease-in-out, transform .1s ease-in-out !default; -// scss-docs-end form-floating-variables - -// Form validation - -// scss-docs-start form-feedback-variables -// $form-feedback-margin-top: $form-text-margin-top !default; -// $form-feedback-font-size: $form-text-font-size !default; -// $form-feedback-font-style: $form-text-font-style !default; -// $form-feedback-valid-color: $success !default; -// $form-feedback-invalid-color: $danger !default; - -// $form-feedback-icon-valid-color: $form-feedback-valid-color !default; -// $form-feedback-icon-valid: url("data:image/svg+xml,") !default; -// $form-feedback-icon-invalid-color: $form-feedback-invalid-color !default; -// $form-feedback-icon-invalid: url("data:image/svg+xml,") !default; -// scss-docs-end form-feedback-variables - -// scss-docs-start form-validation-states -// $form-validation-states: ( -// "valid": ( -// "color": $form-feedback-valid-color, -// "icon": $form-feedback-icon-valid -// ), -// "invalid": ( -// "color": $form-feedback-invalid-color, -// "icon": $form-feedback-icon-invalid -// ) -// ) !default; -// scss-docs-end form-validation-states -// scss-docs-end form-variables -// Z-index master list -// -// Warning: Avoid customizing these values. They're used for a bird's eye view -// of components dependent on the z-axis and are designed to all work together. - -// scss-docs-start zindex-stack -// $zindex-dropdown: 1000 !default; -// $zindex-sticky: 1020 !default; -// $zindex-fixed: 1030 !default; -// $zindex-modal-backdrop: 1040 !default; -// $zindex-offcanvas: 1050 !default; -// $zindex-modal: 1060 !default; -// $zindex-popover: 1070 !default; -// $zindex-tooltip: 1080 !default; -// $zindex-toaster: 1090 !default; -// scss-docs-end zindex-stack - -// Navs -// scss-docs-start nav-variables -// $nav-link-padding-y: .5rem !default; -// $nav-link-padding-x: 1rem !default; -// $nav-link-font-size: null !default; -// $nav-link-font-weight: null !default; -// $nav-link-color: $link-color !default; -// $nav-link-hover-color: $link-hover-color !default; -// $nav-link-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out !default; -// $nav-link-disabled-color: $gray-600 !default; - -// $nav-tabs-border-color: $gray-300 !default; -// $nav-tabs-border-width: $border-width !default; -// $nav-tabs-border-radius: $border-radius !default; -// $nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default; -// $nav-tabs-link-active-color: $gray-700 !default; -// $nav-tabs-link-active-bg: $body-bg !default; -// $nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default; - -// $nav-pills-border-radius: $border-radius !default; -// $nav-pills-link-active-color: $component-active-color !default; -// $nav-pills-link-active-bg: $component-active-bg !default; -// scss-docs-end nav-variables - -// Navbar - -// scss-docs-start navbar-variables -// $navbar-padding-y: $spacer / 2 !default; -// $navbar-padding-x: null !default; - -// $navbar-nav-link-padding-x: .5rem !default; - -// $navbar-brand-font-size: $font-size-lg !default; -// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link -// $nav-link-height: $font-size-base * $line-height-base + $nav-link-padding-y * 2 !default; -// $navbar-brand-height: $navbar-brand-font-size * $line-height-base !default; -// $navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) / 2 !default; -// $navbar-brand-margin-end: 1rem !default; - -// $navbar-toggler-padding-y: .25rem !default; -// $navbar-toggler-padding-x: .75rem !default; -// $navbar-toggler-font-size: $font-size-lg !default; -// $navbar-toggler-border-radius: $btn-border-radius !default; -// $navbar-toggler-focus-width: $btn-focus-width !default; -// $navbar-toggler-transition: box-shadow .15s ease-in-out !default; -// scss-docs-end navbar-variables - -// scss-docs-start navbar-theme-variables -// $navbar-dark-color: $medium-emphasis-inverse !default; -// $navbar-dark-hover-color: $high-emphasis-inverse !default; -// $navbar-dark-active-color: $high-emphasis-inverse !default; -// $navbar-dark-disabled-color: $disabled-inverse !default; -// $navbar-dark-toggler-icon-bg: url("data:image/svg+xml,") !default; -// $navbar-dark-toggler-border-color: rgba($white, .1) !default; - -// $navbar-light-color: $medium-emphasis !default; -// $navbar-light-hover-color: $high-emphasis !default; -// $navbar-light-active-color: $high-emphasis !default; -// $navbar-light-disabled-color: $disabled !default; -// $navbar-light-toggler-icon-bg: url("data:image/svg+xml,") !default; -// $navbar-light-toggler-border-color: rgba($black, .1) !default; - -// $navbar-light-brand-color: $navbar-light-active-color !default; -// $navbar-light-brand-hover-color: $navbar-light-active-color !default; -// $navbar-dark-brand-color: $navbar-dark-active-color !default; -// $navbar-dark-brand-hover-color: $navbar-dark-active-color !default; -// scss-docs-end navbar-theme-variables - -// Dropdowns -// -// Dropdown menu container and contents. -// scss-docs-start dropdown-variables -// $dropdown-min-width: 10rem !default; -// $dropdown-padding-x: 0 !default; -// $dropdown-padding-y: .5rem !default; -// $dropdown-spacer: .125rem !default; -// $dropdown-font-size: $font-size-base !default; -// $dropdown-color: $body-color !default; -// $dropdown-bg: $white !default; -// $dropdown-border-color: rgba($black, .15) !default; -// $dropdown-border-radius: $border-radius !default; -// $dropdown-border-width: $border-width !default; -// $dropdown-inner-border-radius: subtract($dropdown-border-radius, $dropdown-border-width) !default; -// $dropdown-divider-bg: $dropdown-border-color !default; -// $dropdown-divider-margin-y: $spacer / 2 !default; -// $dropdown-box-shadow: $box-shadow !default; - -// $dropdown-link-color: $gray-900 !default; -// $dropdown-link-hover-color: shade-color($gray-900, 10%) !default; -// $dropdown-link-hover-bg: $gray-200 !default; - -// $dropdown-link-active-color: $component-active-color !default; -// $dropdown-link-active-bg: $component-active-bg !default; - -// $dropdown-link-disabled-color: $gray-500 !default; - -// $dropdown-item-padding-y: $spacer / 4 !default; -// $dropdown-item-padding-x: $spacer !default; - -// $dropdown-header-color: $gray-600 !default; -// $dropdown-header-padding: $dropdown-padding-y $dropdown-item-padding-x !default; -// scss-docs-end dropdown-variables - -// scss-docs-start dropdown-dark-variables -// $dropdown-dark-color: $gray-300 !default; -// $dropdown-dark-bg: $gray-800 !default; -// $dropdown-dark-border-color: $dropdown-border-color !default; -// $dropdown-dark-divider-bg: $dropdown-divider-bg !default; -// $dropdown-dark-box-shadow: null !default; -// $dropdown-dark-link-color: $dropdown-dark-color !default; -// $dropdown-dark-link-hover-color: $high-emphasis-inverse !default; -// $dropdown-dark-link-hover-bg: rgba($white, .15) !default; -// $dropdown-dark-link-active-color: $dropdown-link-active-color !default; -// $dropdown-dark-link-active-bg: $dropdown-link-active-bg !default; -// $dropdown-dark-link-disabled-color: $gray-500 !default; -// $dropdown-dark-header-color: $gray-500 !default; -// scss-docs-end dropdown-dark-variables - -// Pagination - -// scss-docs-start pagination-variables -// $pagination-padding-y: .375rem !default; -// $pagination-padding-x: .75rem !default; -// $pagination-padding-y-sm: .25rem !default; -// $pagination-padding-x-sm: .5rem !default; -// $pagination-padding-y-lg: .75rem !default; -// $pagination-padding-x-lg: 1.5rem !default; - -// $pagination-color: $link-color !default; -// $pagination-bg: $white !default; -// $pagination-border-width: $border-width !default; -// $pagination-border-radius: $border-radius !default; -// $pagination-margin-start: -$pagination-border-width !default; -// $pagination-border-color: $gray-300 !default; - -// $pagination-focus-color: $link-hover-color !default; -// $pagination-focus-bg: $gray-200 !default; -// $pagination-focus-box-shadow: $input-btn-focus-box-shadow !default; -// $pagination-focus-outline: 0 !default; - -// $pagination-hover-color: $link-hover-color !default; -// $pagination-hover-bg: $gray-200 !default; -// $pagination-hover-border-color: $gray-300 !default; - -// $pagination-active-color: $component-active-color !default; -// $pagination-active-bg: $component-active-bg !default; -// $pagination-active-border-color: $pagination-active-bg !default; - -// $pagination-disabled-color: $gray-600 !default; -// $pagination-disabled-bg: $white !default; -// $pagination-disabled-border-color: $gray-300 !default; - -// $pagination-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default; -// scss-docs-end pagination-variables - -// $pagination-border-radius-sm: $border-radius-sm !default; -// $pagination-border-radius-lg: $border-radius-lg !default; -// scss-docs-end pagination-variables - -// Cards -// scss-docs-start card-variables -// $card-spacer-y: $spacer !default; -// $card-spacer-x: $spacer !default; -// $card-title-spacer-y: $spacer / 2 !default; -// $card-border-width: $border-width !default; -// $card-border-radius: $border-radius !default; -// $card-border-color: rgba($black, .125) !default; -// $card-inner-border-radius: subtract($card-border-radius, $card-border-width) !default; -// $card-cap-padding-y: $card-spacer-y / 2 !default; -// $card-cap-padding-x: $card-spacer-x !default; -// $card-cap-bg: rgba($black, .03) !default; -// $card-cap-color: unset !default; -// $card-height: null !default; -// $card-color: unset !default; -// $card-bg: $white !default; -// $card-img-overlay-padding: $spacer !default; -// $card-group-margin: $grid-gutter-width / 2 !default; -// scss-docs-end card-variables - -// Accordion -// scss-docs-start accordion-variables -// $accordion-padding-y: 1rem !default; -// $accordion-padding-x: 1.25rem !default; -// $accordion-color: $body-color !default; -// $accordion-bg: $body-bg !default; -// $accordion-border-width: $border-width !default; -// $accordion-border-color: rgba($black, .125) !default; -// $accordion-border-radius: $border-radius !default; -// $accordion-inner-border-radius: subtract($accordion-border-radius, $accordion-border-width) !default; - -// $accordion-body-padding-y: $accordion-padding-y !default; -// $accordion-body-padding-x: $accordion-padding-x !default; - -// $accordion-button-padding-y: $accordion-padding-y !default; -// $accordion-button-padding-x: $accordion-padding-x !default; -// $accordion-button-color: $accordion-color !default; -$accordion-button-bg: var(--cipp-accordion-button-bg) !default; - -// $accordion-transition: $btn-transition, border-radius .15s ease !default; -// $accordion-button-active-bg: tint-color($component-active-bg, 90%) !default; -// $accordion-button-active-color: shade-color($primary, 10%) !default; - -// $accordion-button-focus-border-color: $input-focus-border-color !default; -// $accordion-button-focus-box-shadow: $btn-focus-box-shadow !default; - -// $accordion-icon-width: 1.25rem !default; -// $accordion-icon-color: $accordion-color !default; -// $accordion-icon-active-color: $accordion-button-active-color !default; -// $accordion-icon-transition: transform .2s ease-in-out !default; -// $accordion-icon-transform: rotate(-180deg) !default; - -// $accordion-button-icon: url("data:image/svg+xml,") !default; -// $accordion-button-active-icon: url("data:image/svg+xml,") !default; -// scss-docs-end accordion-variables - -// Tooltips - -// scss-docs-start tooltip-variables -// $tooltip-font-size: $font-size-sm !default; -// $tooltip-max-width: 200px !default; -$tooltip-color: var(--cyberdrain-light) !default; -// $tooltip-bg: $black !default; -// $tooltip-border-radius: $border-radius !default; -// $tooltip-opacity: .9 !default; -// $tooltip-padding-y: $spacer / 4 !default; -// $tooltip-padding-x: $spacer / 2 !default; -// $tooltip-margin: 0 !default; - -// $tooltip-arrow-width: .8rem !default; -// $tooltip-arrow-height: .4rem !default; -// $tooltip-arrow-color: $tooltip-bg !default; -// scss-docs-end tooltip-variables - -// Form tooltips must come after regular tooltips -// scss-docs-start tooltip-feedback-variables -// $form-feedback-tooltip-padding-y: $tooltip-padding-y !default; -// $form-feedback-tooltip-padding-x: $tooltip-padding-x !default; -// $form-feedback-tooltip-font-size: $tooltip-font-size !default; -// $form-feedback-tooltip-line-height: null !default; -// $form-feedback-tooltip-opacity: $tooltip-opacity !default; -// $form-feedback-tooltip-border-radius: $tooltip-border-radius !default; -// scss-docs-end tooltip-feedback-variables - -// Popovers -// scss-docs-start popover-variables -// $popover-font-size: $font-size-sm !default; -// $popover-bg: $white !default; -// $popover-max-width: 276px !default; -// $popover-border-width: $border-width !default; -// $popover-border-color: rgba($black, .2) !default; -// $popover-border-radius: $border-radius-lg !default; -// $popover-inner-border-radius: subtract($popover-border-radius, $popover-border-width) !default; -// $popover-box-shadow: $box-shadow !default; - -// $popover-header-bg: shade-color($popover-bg, 6%) !default; -// $popover-header-color: $headings-color !default; -// $popover-header-padding-y: .5rem !default; -// $popover-header-padding-x: $spacer !default; - -// $popover-body-color: $body-color !default; -// $popover-body-padding-y: $spacer !default; -// $popover-body-padding-x: $spacer !default; - -// $popover-arrow-width: 1rem !default; -// $popover-arrow-height: .5rem !default; -// $popover-arrow-color: $popover-bg !default; - -// $popover-arrow-outer-color: fade-in($popover-border-color, .05) !default; -// scss-docs-end popover-variables - -// Toasts -// scss-docs-start toast-variables -// $toast-max-width: 350px !default; -// $toast-padding-x: .75rem !default; -// $toast-padding-y: .5rem !default; -// $toast-font-size: .875rem !default; -$toast-color: var(--cipp-toast-color) !default; -// $toast-border-width: 1px !default; -// $toast-border-color: rgba(0, 0, 0, .1) !default; -// $toast-border-radius: $border-radius !default; -// $toast-box-shadow: $box-shadow !default; -// $toast-spacing: $container-padding-x !default; -$toast-background-color: var(--cipp-toast-bg); -$toast-header-background-color: var(--cipp-toast-header-bg); -$toast-header-color: var(--cipp-toast-color) !default; -// $toast-header-border-color: rgba(0, 0, 0, .05) !default; -// scss-docs-end toast-variables - -// Badges -// scss-docs-start badge-variables -// $badge-font-size: .75em !default; -// $badge-font-weight: $font-weight-bold !default; -// $badge-color: $high-emphasis-inverse !default; -// $badge-padding-y: .35em !default; -// $badge-padding-x: .65em !default; -// $badge-border-radius: $border-radius !default; -// scss-docs-end badge-variables - -// $badge-font-size-sm: .65em !default; -// $badge-padding-y-sm: .3em !default; -// $badge-padding-x-sm: .5em !default; -// scss-docs-end badge-variables - -// Modals - -// scss-docs-start modal-variables -// $modal-inner-padding: $spacer !default; - -// $modal-footer-margin-between: .5rem !default; - -// $modal-dialog-margin: .5rem !default; -// $modal-dialog-margin-y-sm-up: 1.75rem !default; - -// $modal-title-line-height: $line-height-base !default; - -// $modal-content-color: unset !default; -// $modal-content-bg: $white !default; -// $modal-content-border-color: rgba($black, .2) !default; -// $modal-content-border-width: $border-width !default; -// $modal-content-border-radius: $border-radius-lg !default; -// $modal-content-inner-border-radius: subtract($modal-content-border-radius, $modal-content-border-width) !default; -// $modal-content-box-shadow-xs: $box-shadow-sm !default; -// $modal-content-box-shadow-sm-up: $box-shadow !default; - -// $modal-backdrop-bg: $black !default; -// $modal-backdrop-opacity: .5 !default; -// $modal-header-border-color: $border-color !default; -// $modal-footer-border-color: $modal-header-border-color !default; -// $modal-header-border-width: $modal-content-border-width !default; -// $modal-footer-border-width: $modal-header-border-width !default; -// $modal-header-padding-y: $modal-inner-padding !default; -// $modal-header-padding-x: $modal-inner-padding !default; -// $modal-header-padding: $modal-header-padding-y $modal-header-padding-x !default; // Keep this for backwards compatibility - -// $modal-sm: 300px !default; -// $modal-md: 500px !default; -// $modal-lg: 800px !default; -// $modal-xl: 1140px !default; - -// $modal-fade-transform: translate(0, -50px) !default; -// $modal-show-transform: none !default; -// $modal-transition: transform .3s ease-out !default; -// $modal-scale-transform: scale(1.02) !default; -// scss-docs-end modal-variables - -// Avatars -// scss-docs-start avatar-variables -// $avatar-width: 2rem !default; - -// $avatar-widths: ( -// sm: 1.5rem, -// md: 2.5rem, -// lg: 3rem, -// xl: 4rem -// ) !default; - -// $avatar-transition: margin .15s !default; -// scss-docs-end avatar-variables - -// Alerts -// -// Define alert colors, border radius, and padding. - -// scss-docs-start alert-variables -// $alert-padding-y: $spacer !default; -// $alert-padding-x: $spacer !default; -// $alert-margin-bottom: 1rem !default; -// $alert-border-radius: $border-radius !default; -// $alert-link-font-weight: $font-weight-bold !default; -// $alert-border-width: $border-width !default; -// $alert-bg-scale: -80% !default; -// $alert-border-scale: -70% !default; -// $alert-color-scale: 40% !default; -// $alert-dismissible-padding-r: $alert-padding-x * 3 !default; // 3x covers width of x plus default padding on either side -// scss-docs-end alert-variables - -// $alert-variants: ( -// "primary": alert-color-map($primary), -// "secondary": alert-color-map($secondary), -// "success": alert-color-map($success), -// "danger": alert-color-map($danger), -// "warning": alert-color-map($warning), -// "info": alert-color-map($info), -// "light": alert-color-map($light), -// "dark": alert-color-map($dark) -// ) !default; -// scss-docs-end alert-variables - -// Callouts -// scss-docs-start callout-variables -// $callout-padding-y: $spacer !default; -// $callout-padding-x: $spacer !default; -// $callout-margin-y: $spacer !default; -// $callout-margin-x: 0 !default; -// $callout-border-radius: $border-radius !default; -// $callout-border-width: $border-width !default; -// $callout-border-color: $border-color !default; -// $callout-border-left-width: (4 * $callout-border-width) !default; - -// $callout-variants: ( -// "primary": $primary, -// "secondary": $secondary, -// "success": $success, -// "danger": $danger, -// "warning": $warning, -// "info": $info, -// "light": $light, -// "dark": $dark -// ) !default; -// scss-docs-end callout-variables - -// Progress bars - -// scss-docs-start progress-variables -// $progress-height: 1rem !default; -// $progress-font-size: $font-size-base * .75 !default; -// $progress-bg: $gray-200 !default; -// $progress-border-radius: $border-radius !default; -// $progress-box-shadow: $box-shadow-inset !default; -// $progress-bar-color: $high-emphasis-inverse !default; -// $progress-bar-bg: $primary !default; -// $progress-bar-animation-timing: 1s linear infinite !default; -// $progress-bar-transition: width .6s ease !default; -// scss-docs-end progress-variables - -// List group -// scss-docs-start list-group-variables -// $list-group-color: unset !default; -$list-group-bg: var(--cui-color-white) !default; -// $list-group-border-color: rgba($black, .125) !default; -// $list-group-border-width: $border-width !default; -// $list-group-border-radius: $border-radius !default; - -// $list-group-item-padding-y: $spacer / 2 !default; -// $list-group-item-padding-x: $spacer !default; -// $list-group-item-bg-scale: -80% !default; -// $list-group-item-color-scale: 40% !default; - -// $list-group-hover-bg: $gray-100 !default; -// $list-group-active-color: $component-active-color !default; -// $list-group-active-bg: $component-active-bg !default; -// $list-group-active-border-color: $list-group-active-bg !default; - -// $list-group-disabled-color: $gray-600 !default; -// $list-group-disabled-bg: $list-group-bg !default; - -// $list-group-action-color: $gray-700 !default; -// $list-group-action-hover-color: $list-group-action-color !default; - -// $list-group-action-active-color: $body-color !default; -// $list-group-action-active-bg: $gray-200 !default; -// scss-docs-end list-group-variables - -// $list-group-variants: ( -// "primary": list-group-color-map($primary), -// "secondary": list-group-color-map($secondary), -// "success": list-group-color-map($success), -// "danger": list-group-color-map($danger), -// "warning": list-group-color-map($warning), -// "info": list-group-color-map($info), -// "light": list-group-color-map($light), -// "dark": list-group-color-map($dark) -// ) !default; -// scss-docs-end list-group-variables - -// Header -// scss-docs-start header-variables -// $header-min-height: 4rem !default; -// $header-padding-y: $spacer / 2 !default; -// $header-padding-x: $spacer / 2 !default; -// $header-brand-font-size: $font-size-lg !default; -// $header-color: $medium-emphasis !default; -// $header-bg: $white !default; -// $header-border-color: $border-color !default; -// $header-border-width: 1px !default; -// $header-hover-color: $high-emphasis !default; -// $header-active-color: $high-emphasis !default; -// $header-disabled-color: $disabled !default; - -// Compute the header-brand padding-y so the header-brand will have the same height as header-text and nav-link -// $nav-link-height: $font-size-base * $line-height-base + $nav-link-padding-y * 2 !default; -// $header-brand-height: $header-brand-font-size * $line-height-base !default; -// $header-brand-padding-y: ($nav-link-height - $header-brand-height) / 2 !default; -// $header-brand-margin-end: 1rem !default; -// $header-brand-font-size: $font-size-lg !default; -// $header-brand-color: $gray-900 !default; -// $header-brand-hover-color: shade-color($gray-900, 10%) !default; - -// $header-toggler-padding-y: .25rem !default; -// $header-toggler-padding-x: .75rem !default; -// $header-toggler-font-size: $font-size-lg !default; -// $header-toggler-bg: transparent !default; -// $header-toggler-border: 0 !default; -// $header-toggler-border-radius: $btn-border-radius !default; - -// $header-toggler-icon-bg: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$header-color}' stroke-width='2.25' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !default; -// $header-toggler-hover-icon-bg: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$header-hover-color}' stroke-width='2.25' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !default; -// $header-toggler-border-color: rgba($black, .1) !default; - -// $header-nav-link-padding-x: .5rem !default; - -// $header-divider-border-width: 1px !default; -// $header-divider-border-color: $header-border-color !default; -// scss-docs-end header-variables - -// Subheader -// scss-docs-start subheader-variables -// $subheader-min-height: 3rem !default; -// $subheader-padding-y: $spacer / 2 !default; -// $subheader-padding-x: $spacer !default; -// $subheader-border-color: $border-color !default; -// $subheader-border-width: 1px !default; - -// $subheader-nav-link-padding-x: .5rem !default; -// scss-docs-end subheader-variables - -// Default theme -// scss-docs-start subheader-default-themes -// $subheader-bg: $white !default; -// $subheader-color: $medium-emphasis !default; -// $subheader-hover-color: $high-emphasis !default; -// $subheader-active-color: $high-emphasis !default; -// $subheader-disabled-color: $disabled !default; -// scss-docs-end subheader-default-themes - -// Image thumbnails - -// scss-docs-start thumbnail-variables -// $thumbnail-padding: .25rem !default; -// $thumbnail-bg: $body-bg !default; -// $thumbnail-border-width: $border-width !default; -// $thumbnail-border-color: $gray-300 !default; -// $thumbnail-border-radius: $border-radius !default; -// $thumbnail-box-shadow: $box-shadow-sm !default; -// scss-docs-end thumbnail-variables - -// Figures - -// scss-docs-start figure-variables -// $figure-caption-font-size: $small-font-size !default; -// $figure-caption-color: $gray-600 !default; -// scss-docs-end figure-variables - -// Breadcrumbs -// scss-docs-start breadcrumb-variables -// $breadcrumb-font-size: null !default; -// $breadcrumb-padding-y: 0 !default; -// $breadcrumb-padding-x: 0 !default; -// $breadcrumb-item-padding-x: .5rem !default; -// $breadcrumb-margin-bottom: 1rem !default; -// $breadcrumb-bg: unset !default; -// $breadcrumb-divider-color: $gray-600 !default; -// $breadcrumb-active-color: $gray-600 !default; -// $breadcrumb-divider: quote("/") !default; -// $breadcrumb-divider-flipped: $breadcrumb-divider !default; -// $breadcrumb-border-radius: null !default; -// scss-docs-end breadcrumb-variables - -// Carousel -// scss-docs-start carousel-variables -// $carousel-control-color: $high-emphasis-inverse !default; -// $carousel-control-width: 15% !default; -// $carousel-control-opacity: .5 !default; -// $carousel-control-hover-opacity: .9 !default; -// $carousel-control-transition: opacity .15s ease !default; - -// $carousel-indicator-width: 30px !default; -// $carousel-indicator-height: 3px !default; -// $carousel-indicator-hit-area-height: 10px !default; -// $carousel-indicator-spacer: 3px !default; -// $carousel-indicator-opacity: .5 !default; -// $carousel-indicator-active-bg: $white !default; -// $carousel-indicator-active-opacity: 1 !default; -// $carousel-indicator-transition: opacity .6s ease !default; - -// $carousel-caption-width: 70% !default; -// $carousel-caption-color: $high-emphasis-inverse !default; -// $carousel-caption-padding-y: 1.25rem !default; -// $carousel-caption-spacer: 1.25rem !default; - -// $carousel-control-icon-width: 2rem !default; - -// $carousel-control-prev-icon-bg: url("data:image/svg+xml,") !default; -// $carousel-control-next-icon-bg: url("data:image/svg+xml,") !default; - -// $carousel-transition-duration: .6s !default; -// $carousel-transition: transform $carousel-transition-duration ease-in-out !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`) - -// $carousel-dark-indicator-active-bg: $black !default; -// $carousel-dark-caption-color: $high-emphasis !default; -// $carousel-dark-control-icon-filter: invert(1) grayscale(100) !default; -// scss-docs-end carousel-variables - -// scss-docs-start sidebar-variables -$sidebar-width: 17rem !default; -// $sidebar-widths: ( -// sm: 12rem, -// lg: 20rem, -// xl: 24rem -// ) !default; -// $sidebar-padding-y: 0 !default; -// $sidebar-padding-x: 0 !default; -// $sidebar-color: $high-emphasis-inverse !default; -$sidebar-bg: rgb(240, 240, 240) !default; -// $sidebar-border-width: 0 !default; -// $sidebar-border-color: transparent !default; -// $sidebar-transition: margin-left .15s, margin-right .15s, box-shadow .075s, transform .15s, width .15s, z-index 0s ease .15s !default; - -// $sidebar-brand-height: 4rem !default; -// $sidebar-brand-color: $high-emphasis-inverse !default; -// $sidebar-brand-bg: rgba($black, .2) !default; - -// $sidebar-header-height: 4rem !default; -// $sidebar-header-padding-y: .75rem !default; -// $sidebar-header-padding-x: 1rem !default; -// $sidebar-header-bg: rgba($black, .2) !default; -// $sidebar-header-height-transition: height .15s, padding .15s !default; - -// $sidebar-narrow-width: 4rem !default; - -// $sidebar-backdrop-bg: $black !default; -// $sidebar-backdrop-opacity: .5 !default; -// $sidebar-backdrop-transition: opacity .15s linear !default; -$sidebar-nav-title-padding-y: 0.5rem; -// $sidebar-nav-title-padding-x: 1rem !default; -$sidebar-nav-title-margin-top: 0.5rem; -// $sidebar-nav-title-color: $medium-emphasis-inverse !default; -// $sidebar-nav-title-transition: height .15s, margin .15s !default; - -$sidebar-nav-link-padding-y: 0.2rem !default; -$sidebar-nav-link-padding-x: 0.6rem !default; -// $sidebar-nav-link-color: $medium-emphasis-inverse !default; -// $sidebar-nav-link-bg: transparent !default; -// $sidebar-nav-link-transition: background .15s ease, color .15s ease !default; -// $sidebar-nav-link-icon-color: $medium-emphasis-inverse !default; - -// $sidebar-nav-link-hover-color: $high-emphasis-inverse !default; -// $sidebar-nav-link-hover-bg: rgba($white, .05) !default; -// $sidebar-nav-link-hover-icon-color: $high-emphasis-inverse !default; - -$sidebar-nav-link-active-color: rgba(247, 127, 0) !default; -// $sidebar-nav-link-active-bg: rgba($white, .05) !default; -$sidebar-nav-link-active-icon-color: rgba(247, 127, 0) !default; - -// $sidebar-nav-link-disabled-color: $disabled-inverse !default; -// $sidebar-nav-link-disabled-icon-color: $sidebar-nav-link-icon-color !default; - -// $sidebar-nav-icon-width: 4rem !default; -// $sidebar-nav-icon-height: 1.25rem !default; -// $sidebar-nav-icon-font-size: $sidebar-nav-icon-height !default; - -// $sidebar-nav-group-bg: rgba(0, 0, 0, .2) !default; -// $sidebar-nav-group-transition: background .15s ease-in-out !default; -// $sidebar-nav-group-items-transition: height .15s ease !default; -// $sidebar-nav-group-toggle-show-color: $sidebar-nav-link-color !default; - -// $sidebar-nav-group-indicator-color: $medium-emphasis-inverse !default; -// $sidebar-nav-group-indicator-icon: url("data:image/svg+xml,") !default; -// $sidebar-nav-group-indicator-hover-color: $sidebar-nav-link-hover-color !default; -// $sidebar-nav-group-indicator-hover-icon: url("data:image/svg+xml,") !default; -// $sidebar-nav-group-indicator-transition: transform .15s !default; - -// $sidebar-footer-height: auto !default; -// $sidebar-footer-padding-y: .75rem !default; -// $sidebar-footer-padding-x: 1rem !default; -// $sidebar-footer-bg: rgba($black, .2) !default; -// $sidebar-footer-height-transition: height .15s, padding .15s !default; - -// $sidebar-toggler-height: 3rem !default; -// $sidebar-toggler-bg: rgba($black, .2) !default; -// $sidebar-toggler-transition: transform .15s !default; - -// $sidebar-toggler-indicator-width: 4rem !default; -// $sidebar-toggler-indicator-height: 3rem !default; -// $sidebar-toggler-indicator-color: $gray-600 !default; -// $sidebar-toggler-indicator-icon: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath fill='#{$sidebar-toggler-indicator-color}' d='M9.148 2.352l-4.148 4.148 4.148 4.148q0.148 0.148 0.148 0.352t-0.148 0.352l-1.297 1.297q-0.148 0.148-0.352 0.148t-0.352-0.148l-5.797-5.797q-0.148-0.148-0.148-0.352t0.148-0.352l5.797-5.797q0.148-0.148 0.352-0.148t0.352 0.148l1.297 1.297q0.148 0.148 0.148 0.352t-0.148 0.352z'/%3E%3C/svg%3E") !default; -// $sidebar-toggler-hover-bg: rgba(0, 0, 0, .3) !default; -// $sidebar-toggler-indicator-hover-color: $sidebar-nav-link-hover-color !default; -// $sidebar-toggler-indicator-hover-icon: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath fill='#{$sidebar-toggler-indicator-hover-color}' d='M9.148 2.352l-4.148 4.148 4.148 4.148q0.148 0.148 0.148 0.352t-0.148 0.352l-1.297 1.297q-0.148 0.148-0.352 0.148t-0.352-0.148l-5.797-5.797q-0.148-0.148-0.148-0.352t0.148-0.352l5.797-5.797q0.148-0.148 0.352-0.148t0.352 0.148l1.297 1.297q0.148 0.148 0.148 0.352t-0.148 0.352z'/%3E%3C/svg%3E") !default; -// scss-docs-end sidebar-variables - -// Footer -// scss-docs-start footer-variables -$footer-min-height: 4rem !default; -// $footer-padding-y: $spacer / 2 !default; -// $footer-padding-x: $spacer !default; -// $footer-bg: $gray-100 !default; -// $footer-color: $body-color !default; -// $footer-border-width: 1px !default; -// $footer-border-color: $border-color !default; -// scss-docs-end footer-variables - -// Spinners -// scss-docs-start spinner-variables -// $spinner-width: 2rem !default; -// $spinner-height: $spinner-width !default; -// $spinner-vertical-align: -.125em !default; -// $spinner-border-width: .25em !default; -// $spinner-animation-speed: .75s !default; - -// $spinner-width-sm: 1rem !default; -// $spinner-height-sm: $spinner-width-sm !default; -// $spinner-border-width-sm: .2em !default; -// scss-docs-end spinner-variables - -// Close -// scss-docs-start close-variables -// $btn-close-width: 1em !default; -// $btn-close-height: $btn-close-width !default; -// $btn-close-padding-x: .25em !default; -// $btn-close-padding-y: $btn-close-padding-x !default; -// $btn-close-color: $high-emphasis !default; -// $btn-close-bg: url("data:image/svg+xml,") !default; -// $btn-close-focus-shadow: $input-btn-focus-box-shadow !default; -// $btn-close-opacity: .5 !default; -// $btn-close-hover-opacity: .75 !default; -// $btn-close-focus-opacity: 1 !default; -// $btn-close-disabled-opacity: .25 !default; -// $btn-close-white-filter: invert(1) grayscale(100%) brightness(200%) !default; -// scss-docs-end close-variables - -// Offcanvas - -// scss-docs-start offcanvas-variables -// $offcanvas-padding-y: $modal-inner-padding !default; -// $offcanvas-padding-x: $modal-inner-padding !default; -// $offcanvas-horizontal-width: 400px !default; -// $offcanvas-vertical-height: 30vh !default; -// $offcanvas-transition-duration: .3s !default; -// $offcanvas-border-color: $modal-content-border-color !default; -// $offcanvas-border-width: $modal-content-border-width !default; -// $offcanvas-title-line-height: $modal-title-line-height !default; -// $offcanvas-bg-color: $modal-content-bg !default; -// $offcanvas-color: $modal-content-color !default; -// $offcanvas-box-shadow: $modal-content-box-shadow-xs !default; -// scss-docs-end offcanvas-variables - -// Code - -// $code-font-size: $small-font-size !default; -// $code-color: $pink !default; - -// $kbd-padding-y: .2rem !default; -// $kbd-padding-x: .4rem !default; -// $kbd-font-size: $code-font-size !default; -// $kbd-color: $high-emphasis-inverse !default; -// $kbd-bg: $gray-900 !default; - -// $pre-color: unset !default; -/* stylelint-enable */ diff --git a/src/scss/style.scss b/src/scss/style.scss deleted file mode 100644 index 1393a9feccce..000000000000 --- a/src/scss/style.scss +++ /dev/null @@ -1,14 +0,0 @@ -// If you want to override variables do it here -@import 'variables'; - -$enable-ltr: true; -$enable-rtl: true; -@import 'tenantselector'; -// If you want to add custom CSS you can put it here. - -// Import CoreUI for React components library - -@import '@coreui/coreui/scss/coreui'; -@import 'layout'; -@import 'custom'; -@import 'themes'; diff --git a/src/setupTests.js b/src/setupTests.js deleted file mode 100644 index 2b9d16426390..000000000000 --- a/src/setupTests.js +++ /dev/null @@ -1,15 +0,0 @@ -import { configure } from 'enzyme' -import Adapter from '@wojtekmaj/enzyme-adapter-react-17' - -configure({ adapter: new Adapter() }) - -if (global.document) { - document.createRange = () => ({ - setStart: () => {}, - setEnd: () => {}, - commonAncestorContainer: { - nodeName: 'BODY', - ownerDocument: document, - }, - }) -} diff --git a/src/store/ApiClient.js b/src/store/ApiClient.js deleted file mode 100644 index a2852faf5608..000000000000 --- a/src/store/ApiClient.js +++ /dev/null @@ -1,23 +0,0 @@ -import axios from 'axios' - -const methods = ['get', 'post', 'put', 'patch', 'del'] - -export default class ApiClient { - constructor() { - methods.forEach((method) => { - this[method] = (path, { params, data } = {}) => { - return new Promise((resolve, reject) => { - axios({ - method, - baseURL: window.location.origin, - url: path, - data, - params, - }) - .then((result) => resolve(result)) - .catch((error) => reject(error)) - }) - } - }) - } -} diff --git a/src/store/actions/index.js b/src/store/actions/index.js deleted file mode 100644 index e14fe6cd676c..000000000000 --- a/src/store/actions/index.js +++ /dev/null @@ -1,4 +0,0 @@ -import { resetStateAction } from 'src/store/actions/resetState' -import { resetAuthAction } from 'src/store/actions/resetAuth' - -export { resetStateAction, resetAuthAction } diff --git a/src/store/actions/resetAuth.js b/src/store/actions/resetAuth.js deleted file mode 100644 index d74f1d810c22..000000000000 --- a/src/store/actions/resetAuth.js +++ /dev/null @@ -1,6 +0,0 @@ -import { createAction } from '@reduxjs/toolkit' - -export const RESET_AUTH_ACTION_TYPE = 'resetAuth' -export const resetAuthAction = createAction(RESET_AUTH_ACTION_TYPE, () => { - return { payload: null } -}) diff --git a/src/store/actions/resetState.js b/src/store/actions/resetState.js deleted file mode 100644 index ed0eedc6d4d3..000000000000 --- a/src/store/actions/resetState.js +++ /dev/null @@ -1,6 +0,0 @@ -import { createAction } from '@reduxjs/toolkit' - -export const RESET_STATE_ACTION_TYPE = 'resetState' -export const resetStateAction = createAction(RESET_STATE_ACTION_TYPE, () => { - return { payload: null } -}) diff --git a/src/store/api/adconnect.js b/src/store/api/adconnect.js deleted file mode 100644 index d1e0023fdf6e..000000000000 --- a/src/store/api/adconnect.js +++ /dev/null @@ -1,20 +0,0 @@ -import { baseApi } from 'src/store/api/baseApi' - -export const adconnectApi = baseApi.injectEndpoints({ - endpoints: (builder) => ({ - listAdConnectSettings: builder.query({ - query: ({ tenantDomain }) => ({ - path: '/api/ListAzureADConnectStatus', - params: { TenantFilter: tenantDomain, DataToReturn: 'AzureADConnectSettings' }, - }), - transformResponse: (response) => { - if (!response) { - return [] - } - return response - }, - }), - }), -}) - -export const { useListAdConnectSettingsQuery } = adconnectApi diff --git a/src/store/api/app.js b/src/store/api/app.js deleted file mode 100644 index 3eaa06328f84..000000000000 --- a/src/store/api/app.js +++ /dev/null @@ -1,142 +0,0 @@ -import { baseApi } from 'src/store/api/baseApi' - -export const appApi = baseApi.injectEndpoints({ - endpoints: (builder) => ({ - loadVersions: builder.query({ - queryFn: (_args, _baseQueryApi, _options, baseQuery) => - baseQuery({ path: '/version_latest.txt' }).then(({ data }) => - baseQuery({ - path: '/api/GetVersion', - params: { localversion: data.replace(/(\r\n|\n|\r)/gm, '') }, - }), - ), - }), - loadVersionLocal: builder.query({ - query: () => ({ path: '/version_latest.txt' }), - }), - loadVersionRemote: builder.query({ - query: (localVersion) => ({ - path: '/api/GetVersion', - params: { localversion: localVersion }, - }), - }), - loadAlertsDash: builder.query({ - queryFn: (_args, _baseQueryApi, _options, baseQuery) => - baseQuery({ path: '/version_latest.txt' }).then(({ data }) => - baseQuery({ - path: '/api/GetCippAlerts', - params: { localversion: data.replace(/(\r\n|\n|\r)/gm, '') }, - }), - ), - }), - loadDash: builder.query({ - query: (localVersion) => ({ - path: '/api/GetDashboard', - }), - }), - execPermissionsAccessCheck: builder.query({ - query: () => ({ - path: '/api/ExecAccessChecks', - params: { - Permissions: true, - }, - }), - }), - execNotificationConfig: builder.query({ - query: ({ - email, - webhook, - tokenUpdater, - removeUser, - removeStandard, - addPolicy, - addUser, - addStandardsDeploy, - addChocoApp, - onePerTenant, - sendtoIntegration, - includeTenantId, - logsToInclude, - Severity, - }) => ({ - path: '/api/ExecNotificationConfig', - data: { - email: email, - webhook: webhook, - tokenUpdater: tokenUpdater, - removeUser: removeUser, - removeStandard: removeStandard, - addPolicy: addPolicy, - addUser: addUser, - addStandardsDeploy: addStandardsDeploy, - addChocoApp: addChocoApp, - onePerTenant: onePerTenant, - logsToInclude: logsToInclude, - Severity: Severity, - sendtoIntegration: sendtoIntegration, - includeTenantId: includeTenantId, - }, - method: 'post', - }), - }), - execTenantsAccessCheck: builder.query({ - query: ({ tenantDomains }) => ({ - path: '/api/ExecAccessChecks', - params: { - Tenants: true, - }, - data: { - tenantid: tenantDomains.join(','), - }, - method: 'post', - }), - }), - execClearCache: builder.query({ - query: ({ tenantsOnly }) => ({ - path: '/api/ListTenants', - params: { - ClearCache: true, - TenantsOnly: tenantsOnly, - }, - }), - }), - listNotificationConfig: builder.query({ - query: () => ({ - path: '/api/listNotificationConfig', - }), - }), - genericPostRequest: builder.query({ - query: ({ path, values }) => ({ - path, - data: values, - method: 'post', - }), - }), - genericGetRequest: builder.query({ - query: ({ path, params }) => ({ - path, - params: params, - method: 'GET', - }), - }), - }), -}) - -export const { - useLoadVersionLocalQuery, - useLoadVersionRemoteQuery, - useLoadVersionsQuery, - useLoadDashQuery, - useLoadAlertsDashQuery, - useExecPermissionsAccessCheckQuery, - useLazyExecPermissionsAccessCheckQuery, - useExecTenantsAccessCheckQuery, - useLazyExecTenantsAccessCheckQuery, - useExecClearCacheQuery, - useLazyExecClearCacheQuery, - useLazyExecNotificationConfigQuery, - useLazyListNotificationConfigQuery, - useLazyGenericPostRequestQuery, - useLazyGenericGetRequestQuery, - useGenericGetRequestQuery, -} = appApi diff --git a/src/store/api/auth.js b/src/store/api/auth.js deleted file mode 100644 index a61d973b7350..000000000000 --- a/src/store/api/auth.js +++ /dev/null @@ -1,11 +0,0 @@ -import { baseApi } from 'src/store/api/baseApi' - -export const authApi = baseApi.injectEndpoints({ - endpoints: (builder) => ({ - loadClientPrincipal: builder.query({ - query: () => ({ path: '/.auth/me' }), - }), - }), -}) - -export const { useLoadClientPrincipalQuery } = authApi diff --git a/src/store/api/baseApi.js b/src/store/api/baseApi.js deleted file mode 100644 index 84146a9f948b..000000000000 --- a/src/store/api/baseApi.js +++ /dev/null @@ -1,9 +0,0 @@ -import { createApi } from '@reduxjs/toolkit/query/react' -import { baseQuery } from 'src/store/api/baseQuery' - -export const baseApi = createApi({ - reducerPath: 'api', - baseQuery: baseQuery(), - keepUnusedDataFor: 0, - endpoints: () => ({}), -}) diff --git a/src/store/api/baseQuery.js b/src/store/api/baseQuery.js deleted file mode 100644 index 90173f3b7cc2..000000000000 --- a/src/store/api/baseQuery.js +++ /dev/null @@ -1,55 +0,0 @@ -import axios from 'axios' - -let newController = new AbortController() // Controller for managing abortion of requests - -const retryDelays = [100, 200, 300] // Delays in milliseconds for retries - -export const axiosQuery = async ({ path, method = 'get', params, data, hideToast }) => { - let attempt = 0 - - while (attempt <= retryDelays.length) { - try { - const result = await axios({ - signal: newController.signal, - method, - baseURL: window.location.origin, - url: path, - data, - params, - }) - return { data: result.data } // Successful response - } catch (error) { - if (attempt === retryDelays.length || !shouldRetry(error, path)) { - return { - // Max retries reached or error should not trigger a retry - error: { - status: error.response?.status, - data: error.response?.data, - hideToast, - message: error.message, - }, - } - } - await delay(retryDelays[attempt]) // Wait before retrying - attempt++ - } - } -} - -const shouldRetry = (error, path) => { - // Check if the path starts with 'List', error qualifies for a retry, and payload message is 'Backend call failure' - return ( - path.toLowerCase().startsWith('/api/list') && - error.response && - error.response.status >= 500 && - error.response.data === 'Backend call failure' - ) -} -const delay = (ms) => new Promise((resolve) => setTimeout(resolve, ms)) - -export function abortRequestSafe() { - newController.abort() // Abort any ongoing request - newController = new AbortController() // Reset the controller for new requests -} - -export const baseQuery = ({ baseUrl } = { baseUrl: '' }) => axiosQuery diff --git a/src/store/api/datatable.js b/src/store/api/datatable.js deleted file mode 100644 index c8fa09d4b11e..000000000000 --- a/src/store/api/datatable.js +++ /dev/null @@ -1,11 +0,0 @@ -import { baseApi } from 'src/store/api/baseApi' - -export const datatableApi = baseApi.injectEndpoints({ - endpoints: (builder) => ({ - listDatatable: builder.query({ - query: ({ path, params }) => ({ path, params }), - }), - }), -}) - -export const { useListDatatableQuery } = datatableApi diff --git a/src/store/api/devices.js b/src/store/api/devices.js deleted file mode 100644 index bb81611fd683..000000000000 --- a/src/store/api/devices.js +++ /dev/null @@ -1,25 +0,0 @@ -import { baseApi } from 'src/store/api/baseApi' - -export const devicesApi = baseApi.injectEndpoints({ - endpoints: (builder) => ({ - listDevices: builder.query({ - query: ({ tenantDomain }) => ({ path: '/api/ListDevices', params: { tenantDomain } }), - }), - - listUserDevices: builder.query({ - query: ({ userId, tenantDomain }) => ({ - path: '/api/ListUserDevices', - params: { userId, tenantFilter: tenantDomain }, - }), - }), - listDevicePolicies: builder.query({ - query: ({ PolicyID, tenantDomain, urlName }) => ({ - path: '/api/ListIntunePolicy', - params: { ID: PolicyID, tenantFilter: tenantDomain, URLName: urlName }, - }), - }), - }), -}) - -export const { useListDevicesQuery, useListUserDevicesQuery, useListDevicePoliciesQuery } = - devicesApi diff --git a/src/store/api/domains.js b/src/store/api/domains.js deleted file mode 100644 index 462435131760..000000000000 --- a/src/store/api/domains.js +++ /dev/null @@ -1,68 +0,0 @@ -import { baseApi } from 'src/store/api/baseApi' - -export const domainsApi = baseApi.injectEndpoints({ - endpoints: (builder) => ({ - listDomains: builder.query({ - query: ({ tenantDomain }) => ({ - path: '/api/ListDomains', - params: { TenantFilter: tenantDomain }, - }), - transformResponse: (response) => { - if (!response) { - return [] - } - return response - }, - }), - listDomainTests: builder.query({ - query: ({ domain }) => ({ - path: '/api/ListDomainTests', - data: { - DomainToCheck: domain, - }, - method: 'post', - }), - transformResponse: (response) => { - if (Array.isArray(response) && response?.length > 0) { - return response[0] - } - return {} - }, - }), - editDnsConfig: builder.query({ - query: ({ resolver }) => ({ - path: '/api/ExecDnsConfig', - params: { - Action: 'SetConfig', - Resolver: resolver, - }, - }), - }), - listDomainHealth: builder.query({ - query: ({ ...rest }) => ({ - path: '/api/ListDomainHealth', - params: { - ...rest, - }, - }), - }), - getDnsConfig: builder.query({ - query: () => ({ - path: '/api/ExecDnsConfig', - params: { Action: 'GetConfig' }, - }), - }), - }), -}) - -export const { - useListDomainsQuery, - useListDomainTestsQuery, - useLazyListDomainTestsQuery, - useEditDnsConfigQuery, - useLazyEditDnsConfigQuery, - useGetDnsConfigQuery, - useListDomainHealthQuery, - useLazyListDomainHealthQuery, - useLazyGetDnsConfigQuery, -} = domainsApi diff --git a/src/store/api/groups.js b/src/store/api/groups.js deleted file mode 100644 index 59316ad90f02..000000000000 --- a/src/store/api/groups.js +++ /dev/null @@ -1,83 +0,0 @@ -import { baseApi } from 'src/store/api/baseApi' - -export const groupsApi = baseApi.injectEndpoints({ - endpoints: (builder) => ({ - addGroup: builder.mutation({ - query: ({ group }) => ({ - path: '/api/AddGroup', - method: 'post', - data: { group }, - }), - }), - editGroup: builder.mutation({ - query: ({ group }) => ({ - path: '/api/EditGroup', - method: 'post', - data: { group }, - }), - }), - listGroups: builder.query({ - query: ({ tenantDomain }) => ({ - path: '/api/ListGroups', - params: { - TenantFilter: tenantDomain, - }, - }), - }), - listGroup: builder.query({ - query: ({ tenantDomain, groupId }) => ({ - path: '/api/ListGroups', - params: { - TenantFilter: tenantDomain, - GroupId: groupId, - }, - }), - }), - listGroupMembers: builder.query({ - query: ({ tenantDomain, groupId }) => ({ - path: '/api/ListGroups', - params: { - TenantFilter: tenantDomain, - GroupId: groupId, - members: true, - }, - }), - }), - listGroupOwners: builder.query({ - query: ({ tenantDomain, groupId }) => ({ - path: '/api/ListGroups', - params: { - TenantFilter: tenantDomain, - GroupId: groupId, - owners: true, - }, - }), - }), - listUserGroups: builder.query({ - query: ({ tenantDomain, userId }) => ({ - path: '/api/ListUserGroups', - params: { tenantFilter: tenantDomain, userId }, - }), - }), - listGroupSenderAuth: builder.query({ - query: ({ tenantDomain, groupId, type }) => ({ - path: '/api/ListGroupSenderAuthentication', - params: { - TenantFilter: tenantDomain, - GroupId: groupId, - Type: type, - }, - }), - }), - }), -}) -export const { - useAddGroupMutation, - useEditGroupMutation, - useListGroupQuery, - useListGroupsQuery, - useListGroupMembersQuery, - useListGroupOwnersQuery, - useListUserGroupsQuery, - useListGroupSenderAuthQuery, -} = groupsApi diff --git a/src/store/api/licenses.js b/src/store/api/licenses.js deleted file mode 100644 index a2c390e32ef7..000000000000 --- a/src/store/api/licenses.js +++ /dev/null @@ -1,20 +0,0 @@ -import { baseApi } from 'src/store/api/baseApi' - -export const licensesApi = baseApi.injectEndpoints({ - endpoints: (builder) => ({ - listLicenses: builder.query({ - query: ({ tenantDomain }) => ({ - path: '/api/ListLicenses', - params: { TenantFilter: tenantDomain }, - }), - transformResponse: (response) => { - if (!response) { - return [] - } - return response - }, - }), - }), -}) - -export const { useListLicensesQuery, useListUserLicensesQuery } = licensesApi diff --git a/src/store/api/mailbox.js b/src/store/api/mailbox.js deleted file mode 100644 index 76be47a7ba9d..000000000000 --- a/src/store/api/mailbox.js +++ /dev/null @@ -1,43 +0,0 @@ -import { baseApi } from 'src/store/api/baseApi' - -export const mailboxApi = baseApi.injectEndpoints({ - endpoints: (builder) => ({ - listMailboxDetails: builder.query({ - query: ({ userId, tenantDomain }) => ({ - path: '/api/ListUserMailboxDetails', - params: { userId, tenantFilter: tenantDomain }, - }), - transformResponse: (response) => { - if (response?.length > 0) { - return response[0] - } - return {} - }, - }), - listMailboxes: builder.query({ - query: ({ tenantDomain }) => ({ - path: '/api/ListMailboxes', - params: { tenantFilter: tenantDomain }, - }), - }), - listMailboxPermissions: builder.query({ - query: ({ userId, tenantDomain }) => ({ - path: '/api/ListMailboxPermissions', - params: { userId, tenantFilter: tenantDomain }, - }), - }), - listCalendarPermissions: builder.query({ - query: ({ userId, tenantDomain }) => ({ - path: '/api/ListCalendarPermissions', - params: { userId, tenantFilter: tenantDomain }, - }), - }), - }), -}) - -export const { - useListMailboxDetailsQuery, - useListMailboxPermissionsQuery, - useListCalendarPermissionsQuery, - useListMailboxesQuery, -} = mailboxApi diff --git a/src/store/api/oneDrive.js b/src/store/api/oneDrive.js deleted file mode 100644 index dd0f9fbf865a..000000000000 --- a/src/store/api/oneDrive.js +++ /dev/null @@ -1,23 +0,0 @@ -import { baseApi } from 'src/store/api/baseApi' - -export const oneDriveApi = baseApi.injectEndpoints({ - endpoints: (builder) => ({ - listOneDriveUsage: builder.query({ - query: ({ userUPN, tenantDomain }) => ({ - path: '/api/ListSites', - params: { type: 'OneDriveUsageAccount', userUPN, tenantFilter: tenantDomain }, - }), - }), - listOneDrives: builder.query({ - query: ({ tenantDomain }) => ({ - path: '/api/ListSites', - params: { - type: 'OneDriveUsageAccount', - TenantFilter: tenantDomain, - }, - }), - }), - }), -}) - -export const { useListOneDriveUsageQuery, useListOneDrivesQuery } = oneDriveApi diff --git a/src/store/api/reports.js b/src/store/api/reports.js deleted file mode 100644 index 83be1b4fa361..000000000000 --- a/src/store/api/reports.js +++ /dev/null @@ -1,21 +0,0 @@ -import { baseApi } from 'src/store/api/baseApi' - -export const reportsApi = baseApi.injectEndpoints({ - endpoints: (builder) => ({ - listBestPracticeAnalyser: builder.query({ - query: () => ({ path: '/api/BestPracticeAnalyser_List' }), - }), - execBestPracticeAnalyser: builder.mutation({ - query: () => ({ path: '/api/BestPracticeAnalyser_OrchestrationStarter' }), - }), - execDomainsAnalyser: builder.mutation({ - query: () => ({ path: '/api/DomainAnalyser_OrchestrationStarter' }), - }), - }), -}) - -export const { - useListBestPracticeAnalyserQuery, - useExecBestPracticeAnalyserMutation, - useExecDomainsAnalyserMutation, -} = reportsApi diff --git a/src/store/api/security.js b/src/store/api/security.js deleted file mode 100644 index 98f93838f1ef..000000000000 --- a/src/store/api/security.js +++ /dev/null @@ -1,94 +0,0 @@ -import { baseApi } from 'src/store/api/baseApi' - -export const securityApi = baseApi.injectEndpoints({ - endpoints: (builder) => ({ - execAlertsList: builder.query({ - queryFn: async (_args, _baseQueryApi, _options, baseQuery) => { - const startRequest = await baseQuery({ - path: '/api/ExecAlertsList', - params: { tenantFilter: _args.tenantFilter }, - }) - if (startRequest.error) { - return { error: startRequest.error } - } - - return new Promise((resolve) => { - let retries = 0 - const interval = setInterval(async () => { - const { data, error } = await baseQuery({ - path: '/api/ExecAlertsList', - params: { tenantFilter: _args.tenantFilter }, - }) - if (error) { - clearInterval(interval) - resolve({ error }) - } - if (!data['Waiting'] === true) { - if (!Array.isArray(data['MSResults'])) { - data['MSResults'] = [] - } - clearInterval(interval) - resolve({ data }) - } - if (retries >= 60) { - clearInterval(interval) - resolve({ - error: { - message: 'Failed to retrieve data in 5 minutes', - status: 503, - data: 'Request failed with status 503', - }, - }) - } - retries++ - }, 5000) - }) - }, - }), - execIncidentsList: builder.query({ - queryFn: async (_args, _baseQueryApi, _options, baseQuery) => { - const startRequest = await baseQuery({ - path: '/api/ExecIncidentsList', - params: { tenantFilter: _args.tenantFilter }, - }) - if (startRequest.error) { - return { error: startRequest.error } - } - - return new Promise((resolve) => { - let retries = 0 - const interval = setInterval(async () => { - const { data, error } = await baseQuery({ - path: '/api/ExecIncidentsList', - params: { tenantFilter: _args.tenantFilter }, - }) - if (error) { - clearInterval(interval) - resolve({ error }) - } - if (!data['Waiting'] === true) { - if (!Array.isArray(data['MSResults'])) { - data['MSResults'] = [] - } - clearInterval(interval) - resolve({ data }) - } - if (retries >= 60) { - clearInterval(interval) - resolve({ - error: { - message: 'Failed to retrieve data in 5 minutes', - status: 503, - data: 'Request failed with status 503', - }, - }) - } - retries++ - }, 5000) - }) - }, - }), - }), -}) - -export const { useLazyExecAlertsListQuery, useLazyExecIncidentsListQuery } = securityApi diff --git a/src/store/api/sharepoint.js b/src/store/api/sharepoint.js deleted file mode 100644 index 055f2ac49bc2..000000000000 --- a/src/store/api/sharepoint.js +++ /dev/null @@ -1,37 +0,0 @@ -import { baseApi } from 'src/store/api/baseApi' - -export const sharepointApi = baseApi.injectEndpoints({ - endpoints: (builder) => ({ - listSharepointSites: builder.query({ - query: ({ tenantDomain, groupId }) => ({ - path: '/api/ListSites', - params: { - type: 'SharepointSiteUsage', - TenantFilter: tenantDomain, - groupId, - }, - }), - }), - listTeamSites: builder.query({ - query: ({ tenantDomain, groupId }) => ({ - path: '/api/ListTeams', - params: { - type: 'Team', - TenantFilter: tenantDomain, - id: groupId, - }, - }), - }), - listSharepointSitesUsage: builder.query({ - query: ({ tenantDomain }) => ({ - path: '/api/ListSites', - params: { - type: 'SharePointSiteUsage', - TenantFilter: tenantDomain, - }, - }), - }), - }), -}) - -export const { useListSharepointSitesQuery, useListTeamSitesQuery } = sharepointApi diff --git a/src/store/api/tenants.js b/src/store/api/tenants.js deleted file mode 100644 index cde4f00b19a9..000000000000 --- a/src/store/api/tenants.js +++ /dev/null @@ -1,88 +0,0 @@ -import { baseApi } from 'src/store/api/baseApi' - -export const tenantsApi = baseApi - .enhanceEndpoints({ - addTagTypes: ['ExcludedTenants', 'Tenants', 'ConditionalAccessPolicies'], - }) - .injectEndpoints({ - endpoints: (builder) => ({ - listTenants: builder.query({ - query: ({ showAllTenantSelector = false }) => ({ - path: '/api/ListTenants', - params: { AllTenantSelector: showAllTenantSelector }, - }), - providesTags: ['Tenants'], - }), - listTenant: builder.query({ - query: (tenantDomain) => ({ - path: '/api/ListTenants', - params: { TenantFilter: tenantDomain }, - }), - }), - editTenant: builder.mutation({ - query: (tenant) => ({ - path: '/api/EditTenant', - method: 'post', - data: tenant, - }), - }), - listConditionalAccessPolicies: builder.query({ - query: ({ domain }) => ({ - path: '/api/ListConditionalAccessPolicies', - params: { TenantFilter: domain }, - }), - providesTags: ['ConditionalAccessPolicies'], - }), - listExcludedTenants: builder.query({ - query: () => ({ - path: '/api/ExecExcludeTenant', - params: { - list: true, - }, - }), - transformResponse: (response) => { - // @todo fix in api - if (!Array.isArray(response) && Object.keys(response).length > 0) { - return [response] - } - if (!Array.isArray(response)) { - return [] - } - return response - }, - providesTags: ['ExcludedTenants'], - }), - execRemoveExcludeTenant: builder.mutation({ - query: (tenantDomain) => ({ - path: '/api/ExecExcludeTenant', - params: { - RemoveExclusion: true, - TenantFilter: tenantDomain, - }, - }), - invalidatesTags: ['ExcludedTenants'], - }), - execAddExcludeTenant: builder.mutation({ - query: (tenantDomain) => ({ - path: '/api/ExecExcludeTenant', - method: 'POST', - params: { - AddExclusion: true, - }, - data: tenantDomain, - }), - invalidatesTags: ['ExcludedTenants'], - }), - }), - }) - -export const { - useListTenantsQuery, - useListTenantQuery, - useEditTenantMutation, - useListConditionalAccessPoliciesQuery, - useListExcludedTenantsQuery, - useLazyListExcludedTenantsQuery, - useExecRemoveExcludeTenantMutation, - useExecAddExcludeTenantMutation, -} = tenantsApi diff --git a/src/store/api/users.js b/src/store/api/users.js deleted file mode 100644 index 7ef16f12fdb3..000000000000 --- a/src/store/api/users.js +++ /dev/null @@ -1,131 +0,0 @@ -import { baseApi } from 'src/store/api/baseApi' - -export const usersApi = baseApi.injectEndpoints({ - endpoints: (builder) => ({ - editUser: builder.mutation({ - query: (user) => ({ - path: '/api/EditUser', - method: 'post', - data: user, - }), - }), - listUsers: builder.query({ - query: ({ tenantDomain }) => ({ - path: '/api/ListUsers', - params: { - TenantFilter: tenantDomain, - }, - }), - }), - listContacts: builder.query({ - query: ({ tenantDomain, ContactID }) => ({ - path: '/api/ListContacts', - params: { - TenantFilter: tenantDomain, - ContactID, - }, - }), - }), - listUser: builder.query({ - query: ({ tenantDomain, userId, IncludeLogonDetails }) => ({ - path: '/api/ListUsers', - params: { userId, TenantFilter: tenantDomain, IncludeLogonDetails }, - }), - transformResponse: (response) => { - if (response?.length > 0) { - return response[0] - } - return {} - }, - }), - listUserConditionalAccessPolicies: builder.query({ - query: ({ tenantDomain, userId }) => ({ - path: '/api/ListUserConditionalAccessPolicies', - params: { userId, tenantFilter: tenantDomain }, - }), - }), - listUserSigninLogs: builder.query({ - query: ({ tenantDomain, userId }) => ({ - path: '/api/ListUserSigninLogs', - params: { userId, tenantFilter: tenantDomain }, - }), - }), - addUser: builder.mutation({ - query: ({ user }) => ({ - path: '/api/AddUser', - data: user, - }), - }), - execBecCheck: builder.query({ - queryFn: async (_args, _baseQueryApi, _options, baseQuery) => { - const startRequest = await baseQuery({ - path: '/api/execBECCheck', - params: { - userId: _args.userId, - tenantFilter: _args.tenantFilter, - userName: _args.userName, - }, - }) - if (startRequest.error) { - return { error: startRequest.error } - } - - const GUID = startRequest.data?.GUID - - return new Promise((resolve) => { - let retries = 0 - const interval = setInterval(async () => { - const { data, error } = await baseQuery({ - path: '/api/execBECCheck', - params: { GUID }, - }) - if (error) { - clearInterval(interval) - resolve({ error }) - } - if (data.Results) { - clearInterval(interval) - resolve({ - error: { - message: `Error: ${data.Results}`, - status: 503, - data: 'Request failed.', - }, - }) - } - if (!data['Waiting'] === true) { - if (!Array.isArray(data['MSResults'])) { - data['MSResults'] = [] - } - clearInterval(interval) - resolve({ data }) - } - if (retries >= 60) { - clearInterval(interval) - resolve({ - error: { - message: 'Failed to retrieve data in 5 minutes', - status: 503, - data: 'Request failed with status 503', - }, - }) - } - retries++ - }, 5000) - }) - }, - }), - }), -}) - -export const { - useEditUserMutation, - useListUsersQuery, - useListUserQuery, - useListContactsQuery, - useListUserConditionalAccessPoliciesQuery, - useListUserSigninLogsQuery, - useAddUserMutation, - useLazyExecBecCheckQuery, -} = usersApi -export default usersApi diff --git a/src/store/features/app.js b/src/store/features/app.js deleted file mode 100644 index 3f8ce3bcfb0f..000000000000 --- a/src/store/features/app.js +++ /dev/null @@ -1,96 +0,0 @@ -import { createSlice } from '@reduxjs/toolkit' -import { persistReducer } from 'redux-persist' -import storage from 'redux-persist/lib/storage' - -const initialState = { - sidebarShow: true, - sidebarUnfoldable: false, - currentTenant: {}, - themes: ['default', 'cyberdrain', 'impact'], - currentTheme: 'default', - tablePageSize: 25, - pageSizes: [25, 50, 100, 200, 500], - TenantListSelector: false, - defaultColumns: {}, - newUserDefaults: {}, - recentPages: [], - setupCompleted: false, -} - -export const appSlice = createSlice({ - name: 'app', - initialState, - reducers: { - toggleSidebarShow: (state) => { - state.sidebarShow = !state.sidebarShow - }, - toggleSidebarUnfoldable: (state, action) => { - state.sidebarUnfoldable = action.payload?.unfoldable - }, - setCurrentTenant: (state, action) => { - state.currentTenant = action.payload?.tenant - }, - setCurrentTheme: (state, action) => { - state.currentTheme = action.payload?.theme - }, - setCurrentPageSize: (state, action) => { - state.tablePageSize = action.payload?.pageSize - }, - setSidebarVisible: (state, action) => { - state.sidebarShow = action.payload?.visible - }, - setDefaultusageLocation: (state, action) => { - state.usageLocation = action.payload?.usageLocation - }, - setReportImage: (state, action) => { - state.reportImage = action.payload?.reportImage - }, - setTenantList: (state, action) => { - state.TenantListSelector = action.payload?.TenantListSelector - }, - setUserSettingsDefaults: (state, action) => { - state.userSettingsDefaults = action.payload?.userSettingsDefaults - }, - setDefaultColumns: (state, action) => { - state.defaultColumns[action.payload.endpoint] = action.payload?.columns - }, - setUserSettings: (state, action) => { - //foreach key in the userSettings, set the state key to the value of that setting - Object.keys(action.payload?.userSettings).forEach((key) => { - state[key] = action.payload?.userSettings[key] - }) - }, - setRecentPages: (state, action) => { - state.recentPages = action.payload?.recentPages - }, - setSetupCompleted: (state, action) => { - state.setupCompleted = action.payload?.setupCompleted - }, - }, -}) - -export const { - toggleSidebarShow, - toggleSidebarUnfoldable, - setCurrentTenant, - setTenantList, - setCurrentPageSize, - setCurrentTheme, - setSidebarVisible, - setDefaultusageLocation, - setReportImage, - setUserSettingsDefaults, - setUserSettings, - setDefaultColumns, - setNewUserDefaults, - setRecentPages, - setSetupCompleted, -} = appSlice.actions - -export default persistReducer( - { - key: 'rtk:app', - storage, - }, - appSlice.reducer, -) diff --git a/src/store/features/auth.js b/src/store/features/auth.js deleted file mode 100644 index 59ce88f9d715..000000000000 --- a/src/store/features/auth.js +++ /dev/null @@ -1,26 +0,0 @@ -import { createSlice } from '@reduxjs/toolkit' -import { persistReducer } from 'redux-persist' -import storage from 'redux-persist/lib/storage' - -const initialState = {} - -export const authSlice = createSlice({ - name: 'auth', - initialState, - reducers: { - updateAccessToken(state, action) { - state.accessToken = action.payload - }, - }, -}) - -export const { updateAccessToken } = authSlice.actions - -export default persistReducer( - { - key: 'rtk:auth', - storage, - whitelist: ['accessToken'], - }, - authSlice.reducer, -) diff --git a/src/store/features/switcher.js b/src/store/features/switcher.js deleted file mode 100644 index 6799251e3c17..000000000000 --- a/src/store/features/switcher.js +++ /dev/null @@ -1,52 +0,0 @@ -import { createSlice } from '@reduxjs/toolkit' -import _nav from 'src/_nav' - -export const mapNav = () => { - return _nav - .filter(({ section }) => section) - .map(({ name, section, to, icon, items }) => { - if (items) { - return items.map((item) => ({ - name: item.name, - to: item.to, - icon, - section: `${section}/${name}`, - })) - } else { - return { - name, - section, - to, - icon, - } - } - }) - .reduce((pv, cv) => pv.concat(cv), []) -} - -const initialState = { - visible: false, -} - -export const switcherSlice = createSlice({ - name: 'switcher', - initialState, - reducers: { - showSwitcher: (state) => { - state.visible = true - }, - hideSwitcher: (state) => { - state.visible = false - }, - toggleSwitcher: (state) => { - state.visible = !state.visible - }, - setItems: (state, action) => { - state.items = action.payload.items - }, - }, -}) - -export const { showSwitcher, hideSwitcher, toggleSwitcher, setItems, initialize } = - switcherSlice.actions -export default switcherSlice.reducer diff --git a/src/store/features/toasts.js b/src/store/features/toasts.js deleted file mode 100644 index 98a483e8e62d..000000000000 --- a/src/store/features/toasts.js +++ /dev/null @@ -1,27 +0,0 @@ -import { createSlice } from '@reduxjs/toolkit' - -const initialState = { - toasts: [], - currentIndex: 0, -} - -export const TOAST_REDUCER_PATH = 'toasts' -export const toastsSlice = createSlice({ - name: TOAST_REDUCER_PATH, - initialState, - reducers: { - showToast: (state, { payload: { message, title, toastError } }) => { - state.currentIndex++ - state.toasts.push({ message, title, toastError, index: state.currentIndex }) - }, - closeToast: (state, { payload: { index } }) => { - state.toasts = state.toasts.filter((el) => el.index !== index) - }, - resetToast: () => { - return { ...initialState } - }, - }, -}) - -export const { showToast, closeToast, resetToast } = toastsSlice.actions -export default toastsSlice.reducer diff --git a/src/store/index.js b/src/store/index.js deleted file mode 100644 index 8968a728ec7b..000000000000 --- a/src/store/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import { store, persistor } from './store' - -export { store, persistor } diff --git a/src/store/middleware/errorMiddleware.js b/src/store/middleware/errorMiddleware.js deleted file mode 100644 index 074acb4f47c2..000000000000 --- a/src/store/middleware/errorMiddleware.js +++ /dev/null @@ -1,58 +0,0 @@ -// this will catch all errors, or any actions with prop `error` set -// set action.hideToastError to `true` to ignore this middleware -import { showToast } from 'src/store/features/toasts' -import { isRejectedWithValue } from '@reduxjs/toolkit' -import { store } from '../store' - -export const errorMiddleware = - ({ dispatch }) => - (next) => - (action) => { - const { getState } = store - const state = getState() - const setupCompleted = state.app?.setupCompleted - let SamWizardError = false - if (action?.meta?.arg?.originalArgs?.path === '/api/ExecSamSetup') { - SamWizardError = true - } - if ( - isRejectedWithValue(action) && - !action.error?.hideToastError && - action.payload.message !== 'canceled' && - (setupCompleted || SamWizardError) - ) { - if (action.payload.data === 'Backend call failure') { - action.payload.data = - 'The Azure Function has taken too long to respond. Try selecting a different report or a single tenant instead' - } - //if the payload is a string, show the string, if the payload is an object, check if there is a 'Results or 'results' or 'result' property and show that, otherwise show the whole object - let message = action.payload?.data || 'A generic error has occurred.' - if (typeof message === 'string') { - // Do nothing, message is already a string - } else if (typeof message === 'object') { - if (message.Results) { - message = message.Results - } else if (message.results) { - message = message.results - } else if (message.result) { - message = message.result - } else { - message = JSON.stringify(message) - } - } - if (message.length > 240) { - message = message.substring(0, 240) + '...' - } - const toastError = action.payload - - dispatch( - showToast({ - title: 'An error has occurred', - message: message, - toastError, - }), - ) - } - - return next(action) - } diff --git a/src/store/middleware/unauthenticatedMiddleware.js b/src/store/middleware/unauthenticatedMiddleware.js deleted file mode 100644 index b00a2bb8be04..000000000000 --- a/src/store/middleware/unauthenticatedMiddleware.js +++ /dev/null @@ -1,18 +0,0 @@ -import { isRejectedWithValue } from '@reduxjs/toolkit' -//import { resetAuthAction } from 'src/store/actions' -//import { authApi } from 'src/store/api/auth' - -export const unauthenticatedMiddleware = - ({ dispatch }) => - (next) => - (action) => { - if (isRejectedWithValue(action) && action.payload.status === 401) { - //dispatch(resetAuthAction()) - //dispatch(authApi.utils.resetApiState()) - - // Catch API call on timed out SWA session and send to login page - window.location.href = '/.auth/login/aad?post_login_redirect_uri=' + window.location.href - } - - return next(action) - } diff --git a/src/store/root.js b/src/store/root.js deleted file mode 100644 index 2b84c6235a12..000000000000 --- a/src/store/root.js +++ /dev/null @@ -1,46 +0,0 @@ -import { combineReducers } from '@reduxjs/toolkit' - -// features -import appReducer, { appSlice } from 'src/store/features/app' -import authReducer, { authSlice } from 'src/store/features/auth' -import { toastsSlice } from 'src/store/features/toasts' -import { switcherSlice } from 'src/store/features/switcher' - -// apis -import { baseApi } from 'src/store/api/baseApi' - -// actions -import { RESET_STATE_ACTION_TYPE } from 'src/store/actions/resetState' -import { RESET_AUTH_ACTION_TYPE } from 'src/store/actions/resetAuth' - -export const root = { - // slices - [appSlice.name]: appReducer, - [authSlice.name]: authReducer, - [switcherSlice.name]: switcherSlice.reducer, - [toastsSlice.name]: toastsSlice.reducer, - - // api - [baseApi.reducerPath]: baseApi.reducer, -} - -export const apiMiddleware = [baseApi.middleware] - -const combinedReducer = combineReducers(root) - -// global reducer -export const rootReducer = (state = {}, action = {}) => { - switch (action.type) { - case RESET_STATE_ACTION_TYPE: - state = {} - break - case RESET_AUTH_ACTION_TYPE: - state = { ...state, auth: {} } - break - default: - break - } - - // noinspection JSCheckFunctionSignatures - return combinedReducer(state, action) -} diff --git a/src/store/store.js b/src/store/store.js deleted file mode 100644 index b50a0c6eb2b5..000000000000 --- a/src/store/store.js +++ /dev/null @@ -1,22 +0,0 @@ -import { configureStore } from '@reduxjs/toolkit' -import { persistStore, FLUSH, PAUSE, PERSIST, PURGE, REGISTER, REHYDRATE } from 'redux-persist' -import { unauthenticatedMiddleware } from 'src/store/middleware/unauthenticatedMiddleware' -import { errorMiddleware } from 'src/store/middleware/errorMiddleware' -import { rootReducer, apiMiddleware } from 'src/store/root' - -export const store = configureStore({ - reducer: rootReducer, - middleware: (getDefaultMiddleware) => - getDefaultMiddleware({ - serializableCheck: { - ignoredActions: [FLUSH, REHYDRATE, PAUSE, PERSIST, PURGE, REGISTER], - }, - }).concat([unauthenticatedMiddleware, ...apiMiddleware, errorMiddleware]), -}) - -// enable redux module hot reload -if (import.meta.env.NODE_ENV !== 'production' && import.meta.hot) { - import.meta.hot.accept('./root', () => store.replaceReducer(rootReducer)) -} - -export const persistor = persistStore(store) diff --git a/src/validators.js b/src/validators.js deleted file mode 100644 index acd90897022c..000000000000 --- a/src/validators.js +++ /dev/null @@ -1,24 +0,0 @@ -export const required = (value) => (value ? undefined : 'Required') - -export const validJson = (value) => { - try { - JSON.parse(value) - return undefined - } catch (e) { - return 'Invalid JSON' - } -} - -export const password = (value) => { - let strongPassword = new RegExp('(?=.*[a-z])(?=.*[A-Z])(?=.*[^A-Za-z0-9])(?=.{8,})') - - try { - if (strongPassword.test(value)) { - return undefined - } else { - throw new Error() - } - } catch (e) { - return 'Invalid password. Must be a minimum of 8 characters and contain special characters' - } -} diff --git a/src/views/cipp/AppApproval.jsx b/src/views/cipp/AppApproval.jsx deleted file mode 100644 index e23081ec1dc0..000000000000 --- a/src/views/cipp/AppApproval.jsx +++ /dev/null @@ -1,212 +0,0 @@ -import React from 'react' -import { CCol, CRow, CCallout, CSpinner } from '@coreui/react' -import { Field, FormSpy } from 'react-final-form' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons' -import { CippWizard } from 'src/components/layout' -import { CippTable, WizardTableField } from 'src/components/tables' -import PropTypes from 'prop-types' -import { - Condition, - RFFCFormCheck, - RFFCFormInput, - RFFCFormSwitch, - RFFSelectSearch, -} from 'src/components/forms' -import { useLazyGenericPostRequestQuery } from 'src/store/api/app' - -const Error = ({ name }) => ( - - touched && error ? ( - - - {error} - - ) : null - } - /> -) - -Error.propTypes = { - name: PropTypes.string.isRequired, -} - -const AppApproval = () => { - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - - const handleSubmit = async (values) => { - genericPostRequest({ path: '/api/ExecAddMultiTenantApp', values: values }) - } - - const formValues = { - TemplateType: 'Admin', - } - - return ( - - -
    -

    Step 1

    -
    Choose tenants
    -
    -
    - - {(props) => ( - row['displayName'], - sortable: true, - exportselector: 'displayName', - }, - { - name: 'Default Domain Name', - selector: (row) => row['defaultDomainName'], - sortable: true, - exportselector: 'mail', - }, - ]} - fieldProps={props} - /> - )} - - -
    -
    - -
    -

    Step 2

    -
    Enter the information for this application
    -
    -
    - - - - - - - - - - - - - - - {(props) => ( - row['displayName'], - sortable: true, - exportselector: 'displayName', - }, - { - name: 'Value', - selector: (row) => row['value'], - sortable: true, - exportselector: 'value', - }, - { - name: 'Type', - selector: (row) => row['origin'], - sortable: true, - exportselector: 'origin', - }, - ]} - fieldProps={props} - /> - )} - - - -
    -
    - -
    -

    Step 3

    -
    Confirm and apply
    -
    -
    - {!postResults.isSuccess && ( - - {/* eslint-disable react/prop-types */} - {(props) => { - return ( - <> - - - -
    Selected Tenants
    - - {props.values.selectedTenants.map((tenant, idx) => ( -
  • - {tenant.displayName}- {tenant.defaultDomainName} -
  • - ))} -
    -
    Application ID
    - {props.values.AppId} -
    Copy Permissions
    - - {props.values.CopyPermissions ? ( - Yes - ) : ( - No - )} - -
    Selected Permissions
    - - {props.values.permissions?.map((tenant, idx) => ( -
  • - {tenant.displayName} - {tenant.origin} -
  • - ))} -
    -
    -
    - - ) - }} -
    - )} - {postResults.isFetching && ( - - Loading - - )} - {postResults.isSuccess && ( - - {postResults.data.Results.map((message, idx) => { - return
  • {message}
  • - })} -
    - )} -
    -
    -
    - ) -} - -export default AppApproval diff --git a/src/views/cipp/ExtensionMappings.jsx b/src/views/cipp/ExtensionMappings.jsx deleted file mode 100644 index 5bcf9e23e8e8..000000000000 --- a/src/views/cipp/ExtensionMappings.jsx +++ /dev/null @@ -1,385 +0,0 @@ -import { useLazyGenericGetRequestQuery, useLazyGenericPostRequestQuery } from 'src/store/api/app.js' -import { CButton, CCallout, CCardText, CCol, CForm, CRow, CSpinner, CTooltip } from '@coreui/react' -import { Form } from 'react-final-form' -import { RFFSelectSearch } from 'src/components/forms/index.js' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faCircleNotch } from '@fortawesome/free-solid-svg-icons' -import React, { useEffect } from 'react' -import { CippCallout } from 'src/components/layout/index.js' -import { CippTable } from 'src/components/tables' -import { CellTip, cellGenericFormatter } from 'src/components/tables/CellGenericFormat' -import CippButtonCard from 'src/components/contentcards/CippButtonCard' - -/** - * Retrieves and sets the extension mappings for HaloPSA and NinjaOne. - * - * @returns {JSX.Element} - JSX component representing the settings extension mappings. - */ -export default function ExtensionMappings({ type, fieldMappings = false, autoMapSyncApi = false }) { - const [mappingArray, setMappingArray] = React.useState('defaultMapping') - const [mappingValue, setMappingValue] = React.useState({}) - const [tenantMappingArray, setTenantMappingsArray] = React.useState([]) - const [autoMap, setAutoMap] = React.useState(false) - const [listMappingBackend, listMappingBackendResult = []] = useLazyGenericGetRequestQuery() - const [listFieldsBackend, listFieldsBackendResult] = useLazyGenericGetRequestQuery() - const [setExtensionConfig, extensionConfigResult = []] = useLazyGenericPostRequestQuery() - const [setExtensionAutomap, extensionAutomapResult] = useLazyGenericPostRequestQuery() - const [setFieldsExtensionConfig, extensionFieldsConfigResult] = useLazyGenericPostRequestQuery() - - const onOrgSubmit = () => { - console.log(mappingArray) - const originalFormat = mappingArray.reduce((acc, item) => { - acc[item.Tenant?.customerId] = { label: item.companyName, value: item.companyId } - return acc - }, {}) - setExtensionConfig({ - path: `api/ExecExtensionMapping?AddMapping=${type}`, - values: { mappings: originalFormat }, - }).then(() => { - listMappingBackend({ path: `api/ExecExtensionMapping?List=${type}` }) - setMappingValue({}) - }) - } - - const onOrgsAutomap = async (values) => { - if (autoMapSyncApi) { - await setExtensionAutomap({ - path: `api/ExecExtensionMapping?AutoMapping=${type}`, - values: { mappings: values }, - }) - await listMappingBackend({ - path: `api/ExecExtensionMapping?List=${type}`, - }) - } - - var newMappings = [] - listMappingBackendResult.data?.Tenants.map((tenant) => { - const company = listMappingBackendResult.data?.Companies.find( - (client) => client.name === tenant.displayName, - ) - if (company !== undefined && !mappingArray.find((item) => item.companyId === company.value)) { - newMappings.push({ - Tenant: tenant, - companyName: company.name, - companyId: company.value, - }) - } - }) - setMappingArray((currentMappings) => [...currentMappings, ...newMappings]) - setAutoMap(true) - } - - const onFieldsSubmit = (values) => { - setFieldsExtensionConfig({ - path: `api/ExecExtensionMapping?AddMapping=${type}Fields`, - values: { mappings: values }, - }) - } - - useEffect(() => { - if (listMappingBackendResult.isSuccess) { - setMappingArray( - Object.keys(listMappingBackendResult.data?.Mappings).map((key) => ({ - Tenant: listMappingBackendResult.data?.Tenants.find( - (tenant) => tenant.customerId === key, - ), - companyName: listMappingBackendResult.data?.Mappings[key].label, - companyId: listMappingBackendResult.data?.Mappings[key].value, - })), - ) - } - }, [listMappingBackendResult, setMappingArray]) - - const Actions = (row, rowIndex, formatExtraData) => { - return ( - <> - - - setMappingArray((currentMappings) => currentMappings.filter((item) => item !== row)) - } - > - - - - - ) - } - const columns = [ - { - name: 'Tenant', - selector: (row) => row.Tenant?.displayName, - sortable: true, - cell: (row) => CellTip(row.Tenant?.displayName), - exportSelector: 'Tenant', - }, - { - name: 'TenantId', - selector: (row) => row.Tenant?.customerId, - sortable: true, - exportSelector: 'Tenant/customerId', - omit: true, - }, - { - name: `${type} Company Name`, - selector: (row) => row['companyName'], - sortable: true, - cell: cellGenericFormatter(), - exportSelector: 'companyName', - }, - { - name: `${type} Company ID`, - selector: (row) => row['companyId'], - sortable: true, - cell: (row) => CellTip(row['companyId']), - exportSelector: 'companyId', - }, - { - name: 'Actions', - cell: Actions, - maxWidth: '80px', - }, - ] - - return ( - - <> - {listMappingBackendResult.isUninitialized && - listMappingBackend({ path: `api/ExecExtensionMapping?List=${type}` })} - {listFieldsBackendResult.isUninitialized && - fieldMappings && - listFieldsBackend({ path: `api/ExecExtensionMapping?List=${type}Fields` })} - - - - Save Mappings - - onOrgsAutomap()} - className="me-2" - disabled={listMappingBackendResult.isFetching} - > - - Automap {type} Organizations - - - } - > - {listMappingBackendResult.isFetching && listMappingBackendResult.isUninitialized ? ( - - ) : ( - { - return ( - - - Use the table below to map your client to the correct {type} Organization. - { - //load all the existing mappings and show them first in a table. - listMappingBackendResult.isSuccess && ( - - listMappingBackend({ path: `api/ExecExtensionMapping?List=${type}` }) - } - /> - ) - } - - - { - return !Object.keys(listMappingBackendResult.data?.Mappings).includes( - tenant.customerId, - ) - }).map((tenant) => ({ - name: tenant.displayName, - value: tenant.customerId, - }))} - onChange={(e) => setTenantMappingsArray(e.value)} - isLoading={listMappingBackendResult.isFetching} - /> - - - - - - ({ - name: client.name, - value: client.value, - })).sort((a, b) => a.name.localeCompare(b.name))} - onChange={(e) => setMappingValue(e)} - placeholder={`Select a ${type} Organization`} - isLoading={listMappingBackendResult.isFetching} - /> - - { - //set the new mapping in the array - if ( - mappingValue.value !== undefined && - mappingValue.value !== '-1' && - Object.values(mappingArray).map((item) => item.companyId) - ) { - setMappingArray([ - ...mappingArray, - { - Tenant: listMappingBackendResult.data?.Tenants.find( - (tenant) => tenant.customerId === tenantMappingArray, - ), - companyName: mappingValue.label, - companyId: mappingValue.value, - }, - ]) - } - }} - className={`my-4 circular-button`} - title={'+'} - > - - - - - - {(extensionAutomapResult.isSuccess || extensionAutomapResult.isError) && - !extensionAutomapResult.isFetching && ( - - {extensionAutomapResult.isSuccess - ? extensionAutomapResult.data.Results - : 'Error'} - - )} - {(extensionConfigResult.isSuccess || extensionConfigResult.isError) && - !extensionConfigResult.isFetching && ( - - {extensionConfigResult.isSuccess - ? extensionConfigResult.data.Results - : 'Error'} - - )} - - - - After editing the mappings you must click Save Mappings for the changes to - take effect. The table will be saved exactly as presented. - - - ) - }} - /> - )} - - - {fieldMappings && ( - - - Save Mappings - - } - > - {listFieldsBackendResult.isFetching && listFieldsBackendResult.isUninitialized && ( - - )} - {listFieldsBackendResult.isSuccess && listFieldsBackendResult.data?.Mappings && ( - { - return ( - - {listFieldsBackendResult?.data?.CIPPFieldHeaders?.map((header, key) => ( - -
    {header.Title}
    -

    {header.Description}

    - {listFieldsBackendResult?.data?.CIPPFields?.filter( - (f) => f.FieldType == header.FieldType, - ).map((field, fieldkey) => ( - - item?.FieldType === field.FieldType || item?.type === 'unset', - )} - placeholder="Select a Field" - /> - ))} -
    - ))} - - {(extensionFieldsConfigResult.isSuccess || - extensionFieldsConfigResult.isError) && - !extensionFieldsConfigResult.isFetching && ( - - {extensionFieldsConfigResult.isSuccess - ? extensionFieldsConfigResult.data.Results - : 'Error'} - - )} - -
    - ) - }} - /> - )} -
    - )} -
    - ) -} diff --git a/src/views/cipp/ExtensionSync.jsx b/src/views/cipp/ExtensionSync.jsx deleted file mode 100644 index f121bf08e513..000000000000 --- a/src/views/cipp/ExtensionSync.jsx +++ /dev/null @@ -1,97 +0,0 @@ -import React, { useState } from 'react' -import { CCol, CRow } from '@coreui/react' -import { useSelector } from 'react-redux' - -import { useLazyGenericGetRequestQuery, useLazyGenericPostRequestQuery } from 'src/store/api/app' - -import { CippPage, CippPageList } from 'src/components/layout' -import { CellTip, cellGenericFormatter } from 'src/components/tables/CellGenericFormat' -import 'react-datepicker/dist/react-datepicker.css' -import { CellBadge, cellBadgeFormatter, cellDateFormatter } from 'src/components/tables' -import { TitleButton } from 'src/components/buttons' - -const ExtensionSync = () => { - const [ExecuteGetRequest, getResults] = useLazyGenericGetRequestQuery() - const tenantDomain = useSelector((state) => state.app.currentTenant.defaultDomainName) - const [refreshState, setRefreshState] = useState(false) - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - - const columns = [ - { - name: 'Tenant', - selector: (row) => row?.Tenant, - sortable: true, - cell: cellGenericFormatter(), - exportSelector: 'Tenants', - }, - { - name: 'Sync Type', - selector: (row) => row?.SyncType, - sortable: true, - cell: cellBadgeFormatter({ color: 'info' }), - exportSelector: 'SyncType', - }, - { - name: 'Task', - selector: (row) => row?.Name, - sortable: true, - cell: cellGenericFormatter(), - exportSelector: 'Name', - }, - { - name: 'Scheduled Time', - selector: (row) => row?.ScheduledTime, - sortable: true, - cell: cellDateFormatter({ format: 'short' }), - exportSelector: 'ScheduledTime', - }, - { - name: 'Last Run', - selector: (row) => row?.ExecutedTime, - sortable: true, - cell: cellDateFormatter({ format: 'short' }), - exportSelector: 'ExecutedTime', - }, - { - name: 'Repeats every', - selector: (row) => row?.RepeatsEvery, - sortable: true, - cell: (row) => CellTip(row['RepeatsEvery']), - exportSelector: 'RepeatsEvery', - }, - { - name: 'Results', - selector: (row) => row?.Results, - sortable: true, - cell: cellGenericFormatter(), - exportSelector: 'Results', - }, - ] - - return ( - - <> - - - - - - - - ) -} - -export default ExtensionSync diff --git a/src/views/cipp/Extensions.jsx b/src/views/cipp/Extensions.jsx deleted file mode 100644 index 84841ec3ec18..000000000000 --- a/src/views/cipp/Extensions.jsx +++ /dev/null @@ -1,234 +0,0 @@ -import React, { useRef, useState } from 'react' -import { - CButton, - CCardText, - CCol, - CForm, - CNav, - CNavItem, - CRow, - CTabContent, - CTabPane, -} from '@coreui/react' -import { CippCallout, CippPage } from 'src/components/layout' -import { CippLazy } from 'src/components/utilities' -import { useNavigate } from 'react-router-dom' -import useQuery from 'src/hooks/useQuery.jsx' -import Extensions from 'src/data/Extensions.json' -import { useLazyGenericGetRequestQuery, useLazyGenericPostRequestQuery } from 'src/store/api/app.js' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faCircleNotch } from '@fortawesome/free-solid-svg-icons' -import CippButtonCard from 'src/components/contentcards/CippButtonCard.jsx' -import { RFFCFormInput, RFFCFormSwitch } from 'src/components/forms/RFFComponents.jsx' -import { Form } from 'react-final-form' -import ExtensionMappings from 'src/views/cipp/ExtensionMappings.jsx' -import ReactHtmlParser from 'react-html-parser' - -export default function CIPPExtensions() { - const [listBackend, listBackendResult] = useLazyGenericGetRequestQuery() - const inputRef = useRef(null) - const [setExtensionconfig, extensionConfigResult] = useLazyGenericPostRequestQuery() - const [execTestExtension, listExtensionTestResult] = useLazyGenericGetRequestQuery() - const [execSyncExtension, listSyncExtensionResult] = useLazyGenericGetRequestQuery() - - const onSubmitTest = (integrationName) => { - execTestExtension({ - path: 'api/ExecExtensionTest?extensionName=' + integrationName, - }) - } - const onSubmit = (values) => { - setExtensionconfig({ - path: 'api/ExecExtensionsConfig', - values: values, - }).then((res) => { - listBackend({ path: 'api/ListExtensionsConfig' }) - }) - } - - const ButtonGenerate = (integrationType, forceSync, disabled) => ( - <> - - - Save - - onSubmitTest(integrationType)} className="me-2"> - - Test - - {forceSync && ( - - execSyncExtension({ - path: 'api/ExecExtensionSync?Extension=' + integrationType, - }) - } - disabled={disabled} - className="me-2" - > - - Force Sync - - )} - - ) - const queryString = useQuery() - const navigate = useNavigate() - - const tab = queryString.get('tab') - const [active, setActiveTab] = useState(tab ? parseInt(tab) : 0) - const setActive = (tab) => { - setActiveTab(tab) - queryString.set('tab', tab.toString()) - navigate(`${location.pathname}?${queryString}`) - } - const hostedMetaContent = document.querySelector('meta[name="hosted"]')?.getAttribute('content') - - return ( - - {listBackendResult.isUninitialized && listBackend({ path: 'api/ListExtensionsConfig' })} - - {Extensions.map((integration, idx) => ( - setActive(idx)} - href="#" - > - {integration.name} - - ))} - - - {Extensions.map((integration, idx) => ( - - - - - {hostedMetaContent === 'true' && integration.disableWhenhosted && ( - - This extension requires activation in the management portal for hosted - clients. - - )} - {integration?.callToAction && ( - - - {ReactHtmlParser(integration.callToAction)} - - )} - -

    {integration.helpText}

    - { - return ( - - - - {integration.SettingOptions.map( - (integrationOptions, idx) => - integrationOptions.type === 'input' && ( - - - - ), - )} - {integration.SettingOptions.map( - (integrationOptions, idx) => - integrationOptions.type === 'checkbox' && ( - - - - ), - )} - - - - - ) - }} - /> - {extensionConfigResult?.data?.Results && ( - - {extensionConfigResult?.data?.Results} - - )} - {listExtensionTestResult?.data?.Results && ( - - {listExtensionTestResult?.data?.Results} - {listExtensionTestResult?.data?.Link && ( - - Link - - )} - - )} - {listSyncExtensionResult?.data?.Results && ( - - {listSyncExtensionResult?.data?.Results} - - )} -
    -
    - {integration.mappingRequired && ( - - - - )} -
    -
    -
    - ))} -
    -
    - ) -} diff --git a/src/views/cipp/Logs.jsx b/src/views/cipp/Logs.jsx deleted file mode 100644 index 9e41020ced16..000000000000 --- a/src/views/cipp/Logs.jsx +++ /dev/null @@ -1,241 +0,0 @@ -import React, { useState } from 'react' -import { CippPage } from 'src/components/layout' -import { - CButton, - CCard, - CCardBody, - CCardHeader, - CCardTitle, - CCol, - CCollapse, - CForm, - CRow, -} from '@coreui/react' -import useQuery from 'src/hooks/useQuery' -import { Form } from 'react-final-form' -import { RFFCFormInput, RFFCFormSelect } from 'src/components/forms' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faSearch, faChevronRight, faChevronDown } from '@fortawesome/free-solid-svg-icons' -import { CippDatatable, cellDateFormatter, CellTip } from 'src/components/tables' -import { useNavigate } from 'react-router-dom' -import DatePicker from 'react-datepicker' -import 'react-datepicker/dist/react-datepicker.css' -import { cellGenericFormatter } from 'src/components/tables/CellGenericFormat' -const reverseSort = (rowA, rowB) => { - const a = rowA.DateTime.toLowerCase() - const b = rowB.DateTime.toLowerCase() - - if (a > b) { - return -1 - } - - if (b > a) { - return 1 - } - - return 0 -} - -const columns = [ - { - name: 'Date (UTC)', - selector: (row) => row['DateTime'], - sortable: true, - cell: cellDateFormatter(), - exportSelector: 'DateTime', - minWidth: '145px', - maxWidth: '145px', - sortFunction: reverseSort, - }, - { - name: 'Tenant', - selector: (row) => row['Tenant'], - sortable: true, - cell: (row) => CellTip(row['Tenant']), - exportSelector: 'Tenant', - minWidth: '145px', - maxWidth: '145px', - }, - { - name: 'Tenant ID', - selector: (row) => row['TenantID'], - sortable: true, - cell: (row) => CellTip(row['TenantID'] ?? 'None'), - exportSelector: 'TenantID', - minWidth: '145px', - maxWidth: '145px', - }, - { - name: 'User', - selector: (row) => row['User'], - sortable: true, - cell: (row) => CellTip(row['User']), - exportSelector: 'User', - minWidth: '145px', - maxWidth: '145px', - }, - { - name: 'Message', - selector: (row) => row['Message'], - sortable: true, - cell: (row) => CellTip(row['Message']), - exportSelector: 'Message', - }, - { - name: 'API', - selector: (row) => row['API'], - sortable: true, - cell: (row) => CellTip(row['API']), - exportSelector: 'API', - minWidth: '145px', - maxWidth: '145px', - }, - { - name: 'Severity', - selector: (row) => row['Severity'], - sortable: true, - exportSelector: 'Severity', - minWidth: '145px', - maxWidth: '145px', - }, - { - name: 'Data', - selector: (row) => row?.LogData, - cell: cellGenericFormatter(), - }, -] - -const Logs = () => { - let navigate = useNavigate() - let query = useQuery() - const severity = query.get('severity') - const user = query.get('user') - const DateFilter = query.get('DateFilter') - //const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - const [visibleA, setVisibleA] = useState(false) - const [startDate, setStartDate] = useState(DateFilter ? new Date(DateFilter) : new Date()) - const handleSubmit = async (values) => { - Object.keys(values).filter(function (x) { - if (values[x] === null) { - delete values[x] - } - return null - }) - const shippedValues = { - SearchNow: true, - DateFilter: startDate.toISOString().split('T')[0].replace(/-/g, ''), - ...values, - } - var queryString = Object.keys(shippedValues) - .map((key) => key + '=' + shippedValues[key]) - .join('&') - - navigate(`?${queryString}`) - } - - return ( - <> - - - - - - Logbook Settings - setVisibleA(!visibleA)} - > - - - - - - - - - - { - return ( - - - - - - - - - - - - - - setStartDate(date)} - /> - - - - - - - Search - - - - - ) - }} - /> - - - - - -
    - - - - Results - - - - - - - - ) -} - -export default Logs diff --git a/src/views/cipp/Scheduler.jsx b/src/views/cipp/Scheduler.jsx deleted file mode 100644 index e0fd1aea974a..000000000000 --- a/src/views/cipp/Scheduler.jsx +++ /dev/null @@ -1,558 +0,0 @@ -import React, { useCallback, useEffect, useState } from 'react' -import { CButton, CCallout, CCol, CForm, CRow, CSpinner, CTooltip } from '@coreui/react' -import { useDispatch, useSelector } from 'react-redux' -import { Field, Form, FormSpy } from 'react-final-form' -import { - RFFCFormInput, - RFFCFormInputArray, - RFFCFormInputList, - RFFCFormSwitch, - RFFSelectSearch, -} from 'src/components/forms' -import { - useGenericGetRequestQuery, - useLazyGenericGetRequestQuery, - useLazyGenericPostRequestQuery, -} from 'src/store/api/app' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faCircleNotch, faEdit } from '@fortawesome/free-solid-svg-icons' -import { CippContentCard, CippPage, CippPageList } from 'src/components/layout' -import { cellBadgeFormatter, cellDateFormatter } from 'src/components/tables' -import { CellTip, cellGenericFormatter } from 'src/components/tables/CellGenericFormat' -import DatePicker from 'react-datepicker' -import 'react-datepicker/dist/react-datepicker.css' -import { ModalService, TenantSelector } from 'src/components/utilities' -import CippCodeOffCanvas from 'src/components/utilities/CippCodeOffcanvas' -import arrayMutators from 'final-form-arrays' -import { useListTenantsQuery } from 'src/store/api/tenants' -import { setCurrentTenant } from 'src/store/features/app' -import { useNavigate, useSearchParams } from 'react-router-dom' -import { queryString } from 'src/helpers' - -const Scheduler = () => { - const [initialValues, setInitialValues] = useState({}) - const [selectedTenant, setSelectedTenant] = useState('') - const [ExecuteGetRequest, getResults] = useLazyGenericGetRequestQuery() - const { data: tenants, isSuccess: tenantSuccess } = useListTenantsQuery({ - showAllTenantSelector: true, - }) - const dispatch = useDispatch() - const navigate = useNavigate() - const [searchParams, setSearchParams] = useSearchParams() - - const updateSearchParams = useCallback( - (params) => { - navigate(`${queryString(params)}`, { replace: true }) - }, - [navigate], - ) - - const recurrenceOptions = [ - { value: '0', name: 'Only once' }, - { value: '1', name: 'Every 1 day' }, - { value: '7', name: 'Every 7 days' }, - { value: '30', name: 'Every 30 days' }, - { value: '365', name: 'Every 365 days' }, - ] - - const Offcanvas = (row, rowIndex, formatExtraData) => { - const [ocVisible, setOCVisible] = useState(false) - - const handleDeleteSchedule = (apiurl, message) => { - ModalService.confirm({ - title: 'Confirm', - body:
    {message}
    , - onConfirm: () => - ExecuteGetRequest({ path: apiurl }).then((res) => { - setRefreshState(res.requestId) - }), - confirmLabel: 'Continue', - cancelLabel: 'Cancel', - }) - } - let jsonResults - try { - jsonResults = JSON.parse(row.Results) - } catch (error) { - jsonResults = row.Results - } - - return ( - <> - - setOCVisible(true)}> - - - - - onCopy(row)}> - - - - - - handleDeleteSchedule( - `/api/RemoveScheduledItem?&ID=${row.RowKey}`, - 'Do you want to delete this job?', - ) - } - size="sm" - variant="ghost" - color="danger" - > - - - - setOCVisible(false)} - /> - - ) - } - - const currentDate = new Date() - const [startDate, setStartDate] = useState(currentDate) - const tenantDomain = useSelector((state) => state.app.currentTenant.defaultDomainName) - const [refreshState, setRefreshState] = useState(false) - const taskName = `Scheduled Task ${currentDate.toLocaleString()}` - const { data: availableCommands = [], isLoading: isLoadingcmd } = useGenericGetRequestQuery({ - path: 'api/ListFunctionParameters?Module=CIPPCore', - }) - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - const onSubmit = (values) => { - const unixTime = Math.floor(startDate.getTime() / 1000) - const shippedValues = { - TenantFilter: tenantDomain, - Name: values.taskName, - Command: values.command, - Parameters: values.parameters, - ScheduledTime: unixTime, - Recurrence: values.Recurrence, - AdditionalProperties: values.additional, - PostExecution: { - Webhook: values.webhook, - Email: values.email, - PSA: values.psa, - }, - } - genericPostRequest({ path: '/api/AddScheduledItem', values: shippedValues }).then((res) => { - setRefreshState(res.requestId) - }) - } - - const onCopy = (row) => { - // Get post execution options - var postExecActions = row.PostExecution.split(',') - // Get recurrence object - var recurrence = recurrenceOptions.filter((rec) => rec.value === row.Recurrence)[0] - - // Convert parameters into form object - var parameters = {} - Object.keys(row?.Parameters).forEach((key) => { - if (typeof row?.Parameters[key] === 'object') { - var nestedParamList = [] - Object.keys(row?.Parameters[key]).forEach((nestedKey) => { - if (nestedKey >= 0) { - nestedParamList.push(row?.Parameters[key][nestedKey]) - } else { - nestedParamList.push({ - Key: nestedKey, - Value: row?.Parameters[key][nestedKey], - }) - } - }) - parameters[key] = nestedParamList - } else { - parameters[key] = row?.Parameters[key] - } - }) - - // Convert additional properties into form object - var additional = [] - var additionalProps = JSON.parse(row?.AdditionalProperties) - Object.keys(additionalProps).forEach((key) => { - console.log(key) - additional.push({ - Key: key, - Value: additionalProps[key], - }) - }) - - if (!recurrence) { - recurrence = { name: 'Only once', value: '0' } - } - - // Set initial values - var formValues = { - taskName: row.Name, - command: { label: row.Command, value: row.Command }, - Recurrence: { label: recurrence.name, value: recurrence.value }, - additional: additional, - parameters: parameters, - webhook: postExecActions.includes('Webhook'), - email: postExecActions.includes('Email'), - psa: postExecActions.includes('PSA'), - } - setInitialValues(formValues) - setSelectedTenant(row.Tenant) - } - - // Update tenant selector on copy - useEffect(() => { - if (selectedTenant !== '' && tenantSuccess) { - const customerId = searchParams.get('customerId') - const tableFilter = searchParams.get('tableFilter') - var newSearchParams = {} - if (tableFilter) { - newSearchParams.tableFilter = tableFilter - } - const tenant = tenants.filter((t) => t.defaultDomainName === selectedTenant) - if (tenant.length > 0) { - dispatch(setCurrentTenant({ tenant: tenant[0] })) - newSearchParams.customerId = tenant[0]?.customerId - updateSearchParams(newSearchParams) - setSelectedTenant('') - } - } - }, [selectedTenant, tenantSuccess, tenants, dispatch, searchParams, updateSearchParams]) - - const columns = [ - { - name: 'Name', - selector: (row) => row['Name'], - sortable: true, - cell: (row) => CellTip(row['Name']), - exportSelector: 'Name', - }, - { - name: 'Tenant', - selector: (row) => row['Tenant'], - sortable: true, - cell: (row) => CellTip(row['Tenant']), - exportSelector: 'Tenant', - }, - { - name: 'Task State', - selector: (row) => row['TaskState'], - sortable: true, - cell: cellBadgeFormatter(), - exportSelector: 'TaskState', - }, - { - name: 'Command', - selector: (row) => row['Command'], - sortable: true, - cell: (row) => CellTip(row['Command']), - exportSelector: 'Command', - }, - { - name: 'Parameters', - selector: (row) => row['Parameters'], - sortable: true, - cell: cellGenericFormatter(), - exportSelector: 'Parameters', - }, - { - name: 'Scheduled Time', - selector: (row) => row['ScheduledTime'], - sortable: true, - cell: cellDateFormatter({ format: 'relative' }), - exportSelector: 'ScheduledTime', - }, - { - name: 'Last executed time', - selector: (row) => row['ExecutedTime'], - sortable: true, - cell: cellDateFormatter({ format: 'relative' }), - exportSelector: 'ExecutedTime', - }, - { - name: 'Recurrence', - selector: (row) => row['Recurrence'], - sortable: true, - cell: (row) => CellTip(row['Recurrence']), - exportSelector: 'Recurrence', - }, - { - name: 'Sending to', - selector: (row) => row['PostExecution'], - sortable: true, - cell: (row) => CellTip(row['PostExecution']), - exportSelector: 'PostExecution', - }, - { - name: 'Actions', - cell: Offcanvas, - maxWidth: '100px', - }, - ] - return ( - - <> - - - - { - return ( - - - - - {(props) => } - - - - - - - - - - - setStartDate(date)} - /> - - - - - - - - - - ({ - value: cmd.Function, - name: cmd.Function, - }))} - name="command" - placeholder={ - isLoadingcmd ? ( - - ) : ( - 'Select a command or report to execute.' - ) - } - label="Command to execute" - /> - - - - {/* eslint-disable react/prop-types */} - {(props) => { - const selectedCommand = availableCommands.find( - (cmd) => cmd.Function === props.values.command?.value, - ) - return ( - - {selectedCommand?.Synopsis} - - ) - }} - - - - {/* eslint-disable react/prop-types */} - {(props) => { - const selectedCommand = availableCommands.find( - (cmd) => cmd.Function === props.values.command?.value, - ) - let paramblock = null - if (selectedCommand) { - //if the command parameter type is boolean we use else . - const parameters = selectedCommand.Parameters - if (parameters.length > 0) { - paramblock = parameters.map((param, idx) => ( - - - - {param.Type === 'System.Boolean' || - param.Type === - 'System.Management.Automation.SwitchParameter' ? ( - <> - - - - ) : ( - <> - {param.Type === 'System.Collections.Hashtable' ? ( - - ) : ( - <> - {param.Type === 'System.String[]' ? ( - - ) : ( - - )} - - )} - - )} - - - - )) - } - } - return paramblock - }} - - - - - - - - - - - - - - - - - - - Add Schedule - {postResults.isFetching && ( - - )} - - - - {postResults.isSuccess && ( - -
  • {postResults.data.Results}
  • -
    - )} - {getResults.isFetching && ( - - Loading - - )} - {getResults.isSuccess && ( - {getResults.data?.Results} - )} - {getResults.isError && ( - - Could not connect to API: {getResults.error.message} - - )} -
    - ) - }} - /> -
    -
    - - - -
    - -
    - ) -} - -export default Scheduler diff --git a/src/views/cipp/Setup.jsx b/src/views/cipp/Setup.jsx deleted file mode 100644 index 7f18e7c6a661..000000000000 --- a/src/views/cipp/Setup.jsx +++ /dev/null @@ -1,352 +0,0 @@ -import React, { useEffect, useRef, useState } from 'react' -import { CCol, CRow, CCallout, CSpinner, CButton } from '@coreui/react' -import { Field, FormSpy } from 'react-final-form' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faCheck, faExclamationTriangle } from '@fortawesome/free-solid-svg-icons' -import { CippWizard } from 'src/components/layout' -import PropTypes from 'prop-types' -import { Condition, RFFCFormInput, RFFCFormRadio } from 'src/components/forms' -import { - useLazyExecPermissionsAccessCheckQuery, - useLazyGenericGetRequestQuery, - useLazyGenericPostRequestQuery, -} from 'src/store/api/app' -import { Link } from 'react-router-dom' - -function useInterval(callback, delay, state) { - const savedCallback = useRef() - - // Remember the latest callback. - useEffect(() => { - savedCallback.current = callback - }) - - // Set up the interval. - useEffect(() => { - function tick() { - savedCallback.current() - } - - if (delay !== null) { - let id = setInterval(tick, delay) - return () => clearInterval(id) - } - }, [delay, state]) -} - -const Error = ({ name }) => ( - - touched && error ? ( - - - {error} - - ) : null - } - /> -) - -Error.propTypes = { - name: PropTypes.string.isRequired, -} - -const Setup = () => { - const [checkPermissions, permissionsResult] = useLazyExecPermissionsAccessCheckQuery() - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - const [genericGetRequest, getResults] = useLazyGenericGetRequestQuery() - const onSubmit = (values) => { - if (!usedWizard) { - const shippedValues = { - setkeys: true, - ...values, - } - genericPostRequest({ path: 'api/ExecSAMSetup', values: shippedValues }) - } - } - const [usedWizard, setNoSubmit] = useState(false) - - const startCIPPSetup = (partner) => { - genericGetRequest({ - path: 'api/ExecSAMSetup', - params: { CreateSAM: true, partnersetup: true }, - }) - } - - useInterval( - async () => { - if (getResults.data?.step < 5 && getResults.data?.step > 0) { - genericGetRequest({ - path: 'api/ExecSAMSetup', - params: { CheckSetupProcess: true, step: getResults.data?.step }, - }) - } - }, - 10000, - getResults.data, - ) - const formValues = {} - - const stepsDetails = [ - { id: 1, text: 'Step 1 - First Login' }, - { id: 2, text: 'Step 2 - Creating Application & Approving Application' }, - { id: 3, text: 'Step 3 - Receiving Token' }, - { id: 4, text: 'Step 4 - Finishing Authentication Setup' }, - ] - const RenderSteps = ({ currentStep = 0 }) => ( - <> - {currentStep > 0 && - stepsDetails.slice(0, currentStep - 1).map((step) => ( -
    - {step.text} - Completed -
    - ))} - - ) - return ( - - -
    -

    Step 1

    -
    Choose Options
    -
    -
    - This wizard will guide you through setting up CIPPs access to your client tenants. If this - is your first time setting up CIPP you will want to choose the option "I would like CIPP to - create an application for me". - - To successfully finish setup you must follow the instructions{' '} - - here - - - - - - - -
    -
    - -
    -

    Step 2

    -
    Enter the secure application model credentials.
    -
    -
    - - - - Click the buttons below to refresh your token. -
    Remember to login under a service account that has been added to the correct - GDAP groups and the group 'AdminAgents'. -
    -
    - {getResults.isUninitialized && genericGetRequest({ path: 'api/ExecListAppId' })} - {getResults.isSuccess && ( - <> - - - - - Refresh Graph Token - - - - - - - )} - -
    -
    - - -

    - Click the button below to start the setup wizard. You will need the following - prerequisites: -

  • - A CIPP Service Account. For more information on how to create a service account - click{' '} - - here - -
  • -
  • (Temporary) Global Administrator permissions for the CIPP Service Account
  • -
  • - Multi-factor authentication enabled for the CIPP Service Account, with no trusted - locations or other exclusions. -
  • -

    - - startCIPPSetup(true)} - > - {getResults.isFetching && } Start Setup Wizard - - -
    -
    - - - {getResults.isSuccess && ( - <> - - {getResults.data?.step < 5 && getResults.data?.step > 0 && ( - - )} - {getResults.data?.step > 0 && getResults.data?.step < 5 && ( - <> - Step {getResults.data?.step} - {getResults.data.message}{' '} - {getResults.data.url && ( - - HERE - - )} - - )} - - )} - - {getResults.data?.step === 5 && ( -

    - {permissionsResult.isFetching && } Authentication has been received. - Checking if all prerequisites are met to connect to your tenants. - {permissionsResult.isUninitialized && checkPermissions()} -

    - )} - - {permissionsResult.data?.Results && ( - <> - - - {permissionsResult.data.Results?.Messages && ( - <> - {permissionsResult.data.Results?.Messages?.map((m, idx) => ( -
    {m}
    - ))} - - )} -
    -
    - - {permissionsResult.data.Results?.ErrorMessages?.length >= 1 && ( - - {permissionsResult.data.Results?.ErrorMessages?.map((m, idx) => ( -
    {m}
    - ))} -
    - )} -
    - - )} -
    -
    -
    - - you may enter your secrets below, if you only want to update a single value, leave the - other fields blank. - - - - - - - - - - - - - - - - - - - - - - -
    - Submit info -
    -
    -
    - {postResults.isFetching && ( - - Loading - - )} - {postResults.isSuccess && {postResults.data.Results}} -
    - - {(props) => { - if (props.values.SetupType === 'ExistingSAM') { - setNoSubmit(false) - } else { - setNoSubmit(true) - } - }} - -
    -
    -
    - ) -} - -export default Setup diff --git a/src/views/cipp/Statistics.jsx b/src/views/cipp/Statistics.jsx deleted file mode 100644 index abd239f5bab9..000000000000 --- a/src/views/cipp/Statistics.jsx +++ /dev/null @@ -1,153 +0,0 @@ -import React, { useState } from 'react' -import { CippPage } from 'src/components/layout' -import { - CButton, - CCard, - CCardBody, - CCardHeader, - CCardTitle, - CCol, - CCollapse, - CFormInput, - CFormLabel, - CFormSelect, - CRow, - CSpinner, -} from '@coreui/react' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faChevronRight, faChevronDown } from '@fortawesome/free-solid-svg-icons' -import { CippTable } from 'src/components/tables' -import { cellGenericFormatter } from 'src/components/tables/CellGenericFormat' -import { useSelector } from 'react-redux' -import { useGenericGetRequestQuery } from 'src/store/api/app' -import { RFFCFormSelect } from 'src/components/forms' - -const columns = [ - { - name: 'Name', - selector: (row) => row['Name'], - sortable: true, - cell: cellGenericFormatter(), - exportSelector: 'Name', - minWidth: '145px', - maxWidth: '145px', - }, - { - name: 'Executions', - selector: (row) => row['ExecutionCount'], - sortable: true, - exportSelector: 'ExecutionCount', - }, - { - name: 'Total (seconds)', - selector: (row) => row['TotalSeconds'], - sortable: true, - exportSelector: 'TotalSeconds', - }, - { - name: 'Max (seconds)', - selector: (row) => row['MaxSeconds'], - sortable: true, - exportSelector: 'MaxSeconds', - }, - { - name: 'Avg (seconds)', - selector: (row) => row['AvgSeconds'], - sortable: true, - exportSelector: 'AvgSeconds', - cell: (row) => Math.round(row['AvgSeconds'] * 100) / 100, - }, -] - -const Statistics = () => { - const [visibleA, setVisibleA] = useState(false) - const [type, setType] = useState('Functions') - const [interval, setInterval] = useState('Days') - const [time, setTime] = useState(1) - const tenant = useSelector((state) => state.app.currentTenant) - const { data, isFetching, error, isSuccess } = useGenericGetRequestQuery({ - path: '/api/ListFunctionStats', - params: { - FunctionType: 'Durable', - Interval: interval, - Time: time, - TenantFilter: tenant?.defaultDomainName, - }, - }) - - return ( - <> - - - - - - Options - setVisibleA(!visibleA)} - > - - - - - - - - - - - - Report - setType(e.target.value)}> - - - - - -
    - Interval - setInterval(e.target.value)}> - - - - -
    -
    - Time - setTime(e.target.value)} - defaultValue={1} - /> -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - Statistics - - - {isFetching && } - {isSuccess && ( - - )} - - - - - ) -} - -export default Statistics diff --git a/src/views/cipp/TemplateLibrary.jsx b/src/views/cipp/TemplateLibrary.jsx deleted file mode 100644 index 4dbf493d2293..000000000000 --- a/src/views/cipp/TemplateLibrary.jsx +++ /dev/null @@ -1,149 +0,0 @@ -import React, { useState } from 'react' -import { CAlert, CButton, CCallout, CCol, CForm, CRow, CSpinner, CTooltip } from '@coreui/react' -import { useSelector } from 'react-redux' -import { Field, Form } from 'react-final-form' -import { RFFCFormInput, RFFCFormSwitch } from 'src/components/forms' -import { - useGenericGetRequestQuery, - useLazyGenericGetRequestQuery, - useLazyGenericPostRequestQuery, -} from 'src/store/api/app' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faCircleNotch, faEdit, faEye } from '@fortawesome/free-solid-svg-icons' -import { CippPage, CippPageList } from 'src/components/layout' -import 'react-datepicker/dist/react-datepicker.css' -import { ModalService, TenantSelector } from 'src/components/utilities' -import arrayMutators from 'final-form-arrays' -import { useListConditionalAccessPoliciesQuery } from 'src/store/api/tenants' -import CippButtonCard from 'src/components/contentcards/CippButtonCard' -import { CellTip, cellGenericFormatter } from 'src/components/tables/CellGenericFormat' -import { cellBadgeFormatter, cellDateFormatter } from 'src/components/tables' -import { Alert } from '@coreui/coreui' - -const TemplateLibrary = () => { - const [ExecuteGetRequest, getResults] = useLazyGenericGetRequestQuery() - const tenantDomain = useSelector((state) => state.app.currentTenant.defaultDomainName) - const [refreshState, setRefreshState] = useState(false) - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - - const onSubmit = (values) => { - const startDate = new Date() - startDate.setHours(0, 0, 0, 0) - const unixTime = Math.floor(startDate.getTime() / 1000) - 45 - const shippedValues = { - TenantFilter: tenantDomain, - Name: `CIPP Template ${tenantDomain}`, - Command: { value: `New-CIPPTemplateRun` }, - Parameters: { TemplateSettings: { ...values } }, - ScheduledTime: unixTime, - Recurrence: { value: '4h' }, - } - genericPostRequest({ - path: '/api/AddScheduledItem?DisallowDuplicateName=true', - values: shippedValues, - }).then((res) => { - setRefreshState(res.requestId) - }) - } - - const { - data: caPolicies = [], - isFetching: caIsFetching, - error: caError, - } = useListConditionalAccessPoliciesQuery({ domain: tenantDomain }) - - return ( - - <> - - - - Set Tenant as Template Library - {postResults.isFetching && ( - - )} - - } - title="Add Template Library" - icon={faEdit} - > - { - return ( - -

    - Template libraries are tenants setup to retrieve the latest version of - policies from. By setting a tenant as a template library, automatic updates - will be made to the templates within CIPP based on this template library - every 4 hours. - - Enabling this feature will overwrite templates with the same name. - -

    - - - - - {(props) => } - - - - -
    -
    - - -

    Conditional Access

    - -

    Intune

    - - - -
    -
    - {postResults.isSuccess && ( - -
  • {postResults.data.Results}
  • -
    - )} - {getResults.isFetching && ( - - Loading - - )} - {getResults.isSuccess && ( - {getResults.data?.Results} - )} - {getResults.isError && ( - - Could not connect to API: {getResults.error.message} - - )} -
    - ) - }} - /> -
    -
    -
    - -
    - ) -} - -export default TemplateLibrary diff --git a/src/views/cipp/UserSettings.jsx b/src/views/cipp/UserSettings.jsx deleted file mode 100644 index a7fcaa628f3e..000000000000 --- a/src/views/cipp/UserSettings.jsx +++ /dev/null @@ -1,293 +0,0 @@ -import React, { useState } from 'react' -import { - CButton, - CCallout, - CCard, - CCardBody, - CCardHeader, - CCardTitle, - CCol, - CForm, - CRow, - CSpinner, -} from '@coreui/react' -import { useDispatch, useSelector } from 'react-redux' -import { Form } from 'react-final-form' -import { RFFCFormSwitch, RFFSelectSearch } from 'src/components/forms' -import _nav from 'src/_nav' - -import { useGenericGetRequestQuery, useLazyGenericPostRequestQuery } from 'src/store/api/app' - -import 'react-datepicker/dist/react-datepicker.css' -import TenantListSelector from 'src/components/utilities/TenantListSelector' -import { PageSizeSwitcher, ThemeSwitcher, UsageLocation } from 'src/components/utilities' -import ReportImage from 'src/components/utilities/ReportImage' -import { useLoadClientPrincipalQuery } from 'src/store/api/auth' -import { setUserSettingsDefaults } from 'src/store/features/app' -import { CippCallout } from 'src/components/layout' - -const UserSettings = () => { - const tenant = useSelector((state) => state.app.currentTenant) - const [addedAttributes, setAddedAttribute] = React.useState(0) - const [random3, setRandom3] = useState('') - const availableProperties = useGenericGetRequestQuery({ - path: '/api/ListGraphRequest', - params: { - Endpoint: 'users', - ListProperties: true, - TenantFilter: tenant.defaultDomainName, - IgnoreErrors: true, - }, - }) - const exclusionList = [ - 'id', - 'accountEnabled', - 'deletedDateTime', - 'ageGroup', - 'businessPhones', - 'city', - 'createdDateTime', - 'creationType', - 'companyName', - 'country', - 'department', - 'displayName', - 'givenName', - 'imAddresses', - 'infoCatalogs', - 'isLicenseReconciliationNeeded', - 'isManagementRestricted', - 'isResourceAccount', - 'jobTitle', - 'mail', - 'mailNickname', - 'mobilePhone', - 'onPremisesDistinguishedName', - 'onPremisesDomainName', - 'onPremisesImmutableId', - 'onPremisesLastSyncDateTime', - 'onPremisesObjectIdentifier', - 'onPremisesSecurityIdentifier', - 'onPremisesSamAccountName', - 'onPremisesSyncEnabled', - 'onPremisesUserPrincipalName', - 'passwordPolicies', - 'postalCode', - 'preferredDataLocation', - 'preferredLanguage', - 'proxyAddresses', - 'refreshTokensValidFromDateTime', - 'securityIdentifier', - 'signInSessionsValidFromDateTime', - 'streetAddress', - 'surname', - 'usageLocation', - 'userPrincipalName', - 'externalUserConvertedOn', - 'externalUserState', - 'externalUserStateChangeDateTime', - 'userType', - 'employeeOrgData', - 'assignedLicenses', - 'assignedPlans', - 'authorizationInfo', - 'cloudRealtimeCommunicationInfo', - 'deviceKeys', - 'identities', - 'onPremisesExtensionAttributes', - 'onPremisesProvisioningErrors', - 'onPremisesSipInfo', - 'passwordProfile', - 'provisionedPlans', - 'serviceProvisioningErrors', - ] - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - const { data: profile, isFetching, isLoading } = useLoadClientPrincipalQuery() - const dispatch = useDispatch() - const currentSettings = useSelector((state) => state.app) - - const onSubmit = (values) => { - dispatch(setUserSettingsDefaults({ userSettingsDefaults: values })) - const shippedvalues = { - user: values.user, - currentSettings: currentSettings, - } - - genericPostRequest({ path: '/api/ExecUserSettings', values: shippedvalues }).then((res) => {}) - } - - return ( - <> - - - - - - User Settings - {profile.clientPrincipal.userDetails} -{' '} - {profile.clientPrincipal.userRoles - .filter((role) => role !== 'anonymous' && role !== 'authenticated') - .join(', ')} - - - - { - return ( - -

    General

    - - - - - - - -

    Appearance

    - - - - - - - -
    - -

    Offboarding Defaults

    - - - - - - - - - - - - - - - - - -
    - -

    New User Attribute Defaults

    -
    - !exclusionList.includes(prop), - )?.map((prop) => ({ - name: prop, - value: prop, - })) ?? [] - } - allowCreate={true} - refreshFunction={() => - setRandom3((Math.random() + 1).toString(36).substring(7)) - } - isLoading={availableProperties.isFetching} - /> -
    -
    - -

    Favourite Menu Items

    -
    - acc.concat(val.items), []) - //only map if 'name' property is not null - .filter((item) => item?.name) - .map((item) => ({ - name: item?.name, - value: { to: item?.to, name: item?.name }, - }))} - allowCreate={false} - refreshFunction={() => - setRandom3((Math.random() + 1).toString(36).substring(7)) - } - isLoading={availableProperties.isFetching} - /> -
    -
    - - - { - form.change('user', profile.clientPrincipal.userDetails) - }} - className="me-3 mb-3" - name="singleuser" - type="submit" - > - Save Settings - {postResults.isFetching && } - - { - //if the role contains admin, show the all user button. // - profile.clientPrincipal.userRoles.includes('admin') && ( - { - form.change('user', 'allUsers') - }} - className="mb-3" - name="allUsers" - type="submit" - > - Save for all users - {postResults.isFetching && } - - ) - } - - - {postResults.isError && ( - -

    Error

    -

    {postResults.error.message}

    -
    - )} - {postResults.isSuccess && ( - {postResults.data[0]?.Results} - )} -
    - ) - }} - /> -
    -
    -
    -
    - - ) -} - -export default UserSettings diff --git a/src/views/cipp/app-settings/CIPPSettings.jsx b/src/views/cipp/app-settings/CIPPSettings.jsx deleted file mode 100644 index b4dd85cba84f..000000000000 --- a/src/views/cipp/app-settings/CIPPSettings.jsx +++ /dev/null @@ -1,117 +0,0 @@ -import React, { useState } from 'react' -import { CNav, CNavItem, CTabContent, CTabPane } from '@coreui/react' -import { CippPage } from 'src/components/layout' -import { CippLazy } from 'src/components/utilities' -import { useNavigate } from 'react-router-dom' -import { SettingsGeneral } from './SettingsGeneral.jsx' -import { SettingsTenants } from 'src/views/cipp/app-settings/SettingsTenants.jsx' -import { SettingsBackend } from 'src/views/cipp/app-settings/SettingsBackend.jsx' -import { SettingsNotifications } from 'src/views/cipp/app-settings/SettingsNotifications.jsx' -import { SettingsLicenses } from 'src/views/cipp/app-settings/SettingsLicenses.jsx' -import { SettingsMaintenance } from 'src/views/cipp/app-settings/SettingsMaintenance.jsx' -import { SettingsPartner } from 'src/views/cipp/app-settings/SettingsPartner.jsx' -import { SettingsWebhookSubscriptions } from 'src/views/cipp/app-settings/SettingsWebhookSubscriptions.jsx' -import useQuery from 'src/hooks/useQuery.jsx' -import { SettingsSuperAdmin } from './SettingsSuperAdmin.jsx' -import { useLoadClientPrincipalQuery } from 'src/store/api/auth.js' - -/** - * This function returns the settings page content for CIPP. - * - * @returns {JSX.Element} The settings page content. - */ -export default function CIPPSettings() { - const queryString = useQuery() - const navigate = useNavigate() - - const tab = queryString.get('tab') - const [active, setActiveTab] = useState(tab ? parseInt(tab) : 1) - const { data: profile, isFetching } = useLoadClientPrincipalQuery() - const setActive = (tab) => { - setActiveTab(tab) - queryString.set('tab', tab.toString()) - navigate(`${location.pathname}?${queryString}`) - } - const superAdmin = profile?.clientPrincipal?.userRoles?.includes('superadmin') - return ( - - - setActive(1)} href="#"> - General - - setActive(2)} href="#"> - Tenants - - setActive(3)} href="#"> - Backend - - setActive(4)} href="#"> - Notifications - - setActive(5)} href="#"> - Log Subscriptions - - setActive(6)} href="#"> - Partner Webhooks - - setActive(7)} href="#"> - Licenses - - setActive(8)} href="#"> - Maintenance - - {superAdmin && ( - setActive(9)} href="#"> - SuperAdmin Settings - - )} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {superAdmin && ( - - - - - - )} - - - ) -} diff --git a/src/views/cipp/app-settings/SettingsBackend.jsx b/src/views/cipp/app-settings/SettingsBackend.jsx deleted file mode 100644 index 57ea62a28000..000000000000 --- a/src/views/cipp/app-settings/SettingsBackend.jsx +++ /dev/null @@ -1,229 +0,0 @@ -import { useLazyGenericGetRequestQuery } from 'src/store/api/app.js' -import React, { useState } from 'react' -import { - CButton, - CCard, - CCardBody, - CCardHeader, - CCardTitle, - CCol, - CLink, - CRow, -} from '@coreui/react' -import { CippCodeBlock, CippOffcanvas } from 'src/components/utilities/index.js' -import CippButtonCard from 'src/components/contentcards/CippButtonCard' - -/** - * The SettingsBackend method is responsible for rendering a settings panel that contains several resource - * groups and corresponding links to access them. - * The panel displays information about Resource Group, Key Vault, Static Web App (Role Management), - * Function App (Deployment Center), Function App (Configuration), Function App (Overview), and Cloud Shell. - * Wow Kevin, you went hard, sorry I'm going to run it again. // Kelvin 22-04-2024. - * @returns {JSX.Element} The settings panel component. - */ - -const BackendCardList = [ - { - title: 'Resource Group', - description: - 'The Resource group contains all the CIPP resources in your tenant, except the SAM Application', - link: 'ResourceGroup', - }, - { - title: 'Key Vault', - description: - 'The keyvault allows you to check token information. By default you do not have access.', - link: 'KeyVault', - }, - { - title: 'Static Web App (Role Management)', - description: - 'The Static Web App role management allows you to invite other users to the application.', - link: 'SWARoles', - }, - { - title: 'Function App (Deployment Center)', - description: 'The Function App Deployment Center allows you to run updates on the API', - link: 'FunctionDeployment', - }, - { - title: 'Function App (Configuration)', - description: - 'At the Function App Configuration you can check the status of the API access to your keyvault', - link: 'FunctionConfig', - }, - { - title: 'Function App (Overview)', - description: 'At the function App Overview, you can stop and start the backend API', - link: 'FunctionApp', - }, -] - -export function SettingsBackend() { - const [listBackend, listBackendResult] = useLazyGenericGetRequestQuery() - const [visible, setVisible] = useState(false) - const generateButton = (title, link) => ( - window.open(`${listBackendResult.data?.Results?.[link]}`, '_blank')} - rel="noreferrer" - > - {title} - - ) - const hostedMetaContent = document.querySelector('meta[name="hosted"]')?.getAttribute('content') - - return ( - <> - {hostedMetaContent === 'true' ? ( - <> - - - window.open( - 'https://management.cipp.app', - '_blank', - 'toolbar=no,scrollbars=yes,resizable=yes,menubar=no,location=no,status=no', - ) - } - rel="noreferrer" - > - Management Portal - - - } - > - The Management Portal allows you to manage your CIPP resources for the hosted - environment. - - - ) : ( - <> - {listBackendResult.isUninitialized && listBackend({ path: 'api/ExecBackendURLs' })} - - {BackendCardList.map((card, index) => ( - - - {card.description} - - - ))} - - - {' '} - - window.open( - 'https://shell.azure.com/powershell', - '_blank', - 'toolbar=no,scrollbars=yes,resizable=yes,menubar=no,location=no,status=no', - ) - } - rel="noreferrer" - > - Cloud Shell - - setVisible(true)} className="me-2"> - Command Reference - - - } - > -

    Launch an Azure Cloud Shell Window

    -
    -
    -
    - setVisible(false)} - title="Command Reference" - > -
    Function App Config
    - -
    Function App Deployment
    - -
    Watch Function Logs
    - -
    Static Web App Config
    - -
    List CIPP Users
    - -
    - - )} - - ) -} diff --git a/src/views/cipp/app-settings/SettingsExtensionMappings.jsx b/src/views/cipp/app-settings/SettingsExtensionMappings.jsx deleted file mode 100644 index 6d7a63d2a3d0..000000000000 --- a/src/views/cipp/app-settings/SettingsExtensionMappings.jsx +++ /dev/null @@ -1,651 +0,0 @@ -import { useLazyGenericGetRequestQuery, useLazyGenericPostRequestQuery } from 'src/store/api/app.js' -import { - CAccordion, - CButton, - CCallout, - CCardText, - CCol, - CForm, - CRow, - CSpinner, - CTooltip, -} from '@coreui/react' -import { Form } from 'react-final-form' -import { RFFSelectSearch } from 'src/components/forms/index.js' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faCircleNotch } from '@fortawesome/free-solid-svg-icons' -import React, { useEffect } from 'react' -import { CippCallout } from 'src/components/layout/index.js' -import CippAccordionItem from 'src/components/contentcards/CippAccordionItem' -import { CippTable } from 'src/components/tables' -import { CellTip } from 'src/components/tables/CellGenericFormat' -import CippButtonCard from 'src/components/contentcards/CippButtonCard' - -/** - * Retrieves and sets the extension mappings for HaloPSA and NinjaOne. - * - * @returns {JSX.Element} - JSX component representing the settings extension mappings. - */ -export function SettingsExtensionMappings({ type }) { - const [addedAttributes, setAddedAttribute] = React.useState(1) - const [mappingArray, setMappingArray] = React.useState('defaultMapping') - const [mappingValue, setMappingValue] = React.useState({}) - const [haloMappingsArray, setHaloMappingsArray] = React.useState([]) - const [ninjaMappingsArray, setNinjaMappingsArray] = React.useState([]) - const [HaloAutoMap, setHaloAutoMap] = React.useState(false) - const [listHaloBackend, listBackendHaloResult = []] = useLazyGenericGetRequestQuery() - const [listNinjaOrgsBackend, listBackendNinjaOrgsResult] = useLazyGenericGetRequestQuery() - const [listNinjaFieldsBackend, listBackendNinjaFieldsResult] = useLazyGenericGetRequestQuery() - const [setHaloExtensionconfig, extensionHaloConfigResult = []] = useLazyGenericPostRequestQuery() - const [setNinjaOrgsExtensionconfig, extensionNinjaOrgsConfigResult] = - useLazyGenericPostRequestQuery() - const [setNinjaOrgsExtensionAutomap, extensionNinjaOrgsAutomapResult] = - useLazyGenericPostRequestQuery() - const [setNinjaFieldsExtensionconfig, extensionNinjaFieldsConfigResult] = - useLazyGenericPostRequestQuery() - - const onHaloSubmit = () => { - const originalFormat = haloMappingsArray.reduce((acc, item) => { - acc[item.Tenant?.customerId] = { label: item.haloName, value: item.haloId } - return acc - }, {}) - setHaloExtensionconfig({ - path: 'api/ExecExtensionMapping?AddMapping=Halo', - values: { mappings: originalFormat }, - }).then(() => { - listHaloBackend({ path: 'api/ExecExtensionMapping?List=Halo' }) - setMappingValue({}) - }) - } - const onNinjaOrgsSubmit = () => { - const originalFormat = ninjaMappingsArray.reduce((acc, item) => { - acc[item.Tenant?.customerId] = { label: item.ninjaName, value: item.ninjaId } - return acc - }, {}) - - setNinjaOrgsExtensionconfig({ - path: 'api/ExecExtensionMapping?AddMapping=NinjaOrgs', - values: { mappings: originalFormat }, - }).then(() => { - listNinjaOrgsBackend({ path: 'api/ExecExtensionMapping?List=NinjaOrgs' }) - setMappingValue({}) - }) - } - - const onNinjaOrgsAutomap = async (values) => { - await setNinjaOrgsExtensionAutomap({ - path: 'api/ExecExtensionMapping?AutoMapping=NinjaOrgs', - values: { mappings: values }, - }) - await listNinjaOrgsBackend({ - path: 'api/ExecExtensionMapping?List=NinjaOrgs', - }) - } - - const onNinjaFieldsSubmit = (values) => { - setNinjaFieldsExtensionconfig({ - path: 'api/ExecExtensionMapping?AddMapping=NinjaFields', - values: { mappings: values }, - }) - } - - const onHaloAutomap = () => { - const newMappings = listBackendHaloResult.data?.Tenants.map( - (tenant) => { - const haloClient = listBackendHaloResult.data?.HaloClients.find( - (client) => client.name === tenant.displayName, - ) - if (haloClient) { - console.log(haloClient) - console.log(tenant) - return { - Tenant: tenant, - haloName: haloClient.name, - haloId: haloClient.value, - } - } - }, - //filter out any undefined values - ).filter((item) => item !== undefined) - setHaloMappingsArray((currentHaloMappings) => [...currentHaloMappings, ...newMappings]).then( - () => { - listHaloBackend({ path: 'api/ExecExtensionMapping?List=Halo' }) - }, - ) - setHaloAutoMap(true) - } - - useEffect(() => { - if (listBackendHaloResult.isSuccess) { - setHaloMappingsArray( - Object.keys(listBackendHaloResult.data?.Mappings).map((key) => ({ - Tenant: listBackendHaloResult.data?.Tenants.find((tenant) => tenant.customerId === key), - haloName: listBackendHaloResult.data?.Mappings[key].label, - haloId: listBackendHaloResult.data?.Mappings[key].value, - })), - ) - } - }, [listBackendHaloResult.isSuccess]) - - useEffect(() => { - if (listBackendNinjaOrgsResult.isSuccess) { - setNinjaMappingsArray( - Object.keys(listBackendNinjaOrgsResult.data?.Mappings).map((key) => ({ - Tenant: listBackendNinjaOrgsResult.data?.Tenants.find( - (tenant) => tenant.customerId === key, - ), - ninjaName: listBackendNinjaOrgsResult.data?.Mappings[key].label, - ninjaId: listBackendNinjaOrgsResult.data?.Mappings[key].value, - })), - ) - } - }, [ - listBackendNinjaOrgsResult.data?.Mappings, - listBackendNinjaOrgsResult.data?.Tenants, - listBackendNinjaOrgsResult.isSuccess, - ]) - - const Offcanvas = (row, rowIndex, formatExtraData) => { - return ( - <> - - - row.haloId - ? setHaloMappingsArray((currentHaloMappings) => - currentHaloMappings.filter((item) => item !== row), - ) - : setNinjaMappingsArray((currentNinjaMappings) => - currentNinjaMappings.filter((item) => item !== row), - ) - } - > - - - - - ) - } - const halocolumns = [ - { - name: 'Tenant', - selector: (row) => row.Tenant?.displayName, - sortable: true, - cell: (row) => CellTip(row.Tenant?.displayName), - exportSelector: 'Tenant', - }, - { - name: 'TenantId', - selector: (row) => row.Tenant?.customerId, - sortable: true, - exportSelector: 'Tenant/customerId', - omit: true, - }, - { - name: 'Halo Client Name', - selector: (row) => row['haloName'], - sortable: true, - cell: (row) => CellTip(row['haloName']), - exportSelector: 'haloName', - }, - { - name: 'Halo ID', - selector: (row) => row['haloId'], - sortable: true, - cell: (row) => CellTip(row['haloId']), - exportSelector: 'haloId', - }, - { - name: 'Actions', - cell: Offcanvas, - maxWidth: '80px', - }, - ] - - const ninjacolumns = [ - { - name: 'Tenant', - selector: (row) => row.Tenant?.displayName, - sortable: true, - cell: (row) => CellTip(row.Tenant?.displayName), - exportSelector: 'Tenant', - }, - { - name: 'TenantId', - selector: (row) => row.Tenant?.customerId, - sortable: true, - exportSelector: 'Tenant/customerId', - omit: true, - }, - { - name: 'NinjaOne Organization Name', - selector: (row) => row['ninjaName'], - sortable: true, - cell: (row) => CellTip(row['ninjaName']), - exportSelector: 'ninjaName', - }, - { - name: 'NinjaOne Organization ID', - selector: (row) => row['ninjaId'], - sortable: true, - cell: (row) => CellTip(row['ninjaId']), - exportSelector: 'ninjaId', - }, - { - name: 'Actions', - cell: Offcanvas, - maxWidth: '80px', - }, - ] - - return ( - - {type === 'HaloPSA' && ( - <> - {listBackendHaloResult.isUninitialized && - listHaloBackend({ path: 'api/ExecExtensionMapping?List=Halo' })} - - - - {extensionHaloConfigResult.isFetching && ( - - )} - Save Mappings - - onHaloAutomap()} className="me-2"> - {extensionNinjaOrgsAutomapResult.isFetching && ( - - )} - Automap HaloPSA Clients - - - } - > - {listBackendHaloResult.isFetching && listBackendHaloResult.isUninitialized ? ( - - ) : ( - { - return ( - - - Use the table below to map your client to the correct PSA client. - { - //load all the existing mappings and show them first in a table. - listBackendHaloResult.isSuccess && ( - - ) - } - - - { - return !Object.keys(listBackendHaloResult.data?.Mappings).includes( - tenant.customerId, - ) - }).map((tenant) => ({ - name: tenant.displayName, - value: tenant.customerId, - }))} - onChange={(e) => { - setMappingArray(e.value) - }} - isLoading={listBackendHaloResult.isFetching} - /> - - - - - - { - return !Object.values(listBackendHaloResult.data?.Mappings) - .map((value) => { - return value.value - }) - .includes(client.value) - }).map((client) => ({ - name: client.name, - value: client.value, - }))} - onChange={(e) => setMappingValue(e)} - placeholder="Select a HaloPSA Client" - isLoading={listBackendHaloResult.isFetching} - /> - - { - if ( - mappingValue.value !== undefined && - mappingValue.value !== '-1' && - Object.values(haloMappingsArray) - .map((item) => item.haloId) - .includes(mappingValue.value) === false - ) { - //set the new mapping in the array - setHaloMappingsArray([ - ...haloMappingsArray, - { - Tenant: listBackendHaloResult.data?.Tenants.find( - (tenant) => tenant.customerId === mappingArray, - ), - haloName: mappingValue.label, - haloId: mappingValue.value, - }, - ]) - } - }} - className={`my-4 circular-button`} - title={'+'} - > - - - - - - {HaloAutoMap && ( - - Automapping has been executed. Remember to check the changes and save - them. - - )} - {(extensionHaloConfigResult.isSuccess || - extensionHaloConfigResult.isError) && - !extensionHaloConfigResult.isFetching && ( - - {extensionHaloConfigResult.isSuccess - ? extensionHaloConfigResult.data.Results - : 'Error'} - - )} - - - - After editing the mappings you must click Save Mappings for the changes to - take effect. The table will be saved exactly as presented. - - - ) - }} - /> - )} - - - )} - {type === 'NinjaOne' && ( - <> - {listBackendNinjaOrgsResult.isUninitialized && - listNinjaOrgsBackend({ path: 'api/ExecExtensionMapping?List=NinjaOrgs' })} - {listBackendNinjaFieldsResult.isUninitialized && - listNinjaFieldsBackend({ path: 'api/ExecExtensionMapping?List=NinjaFields' })} - - - {extensionNinjaOrgsConfigResult.isFetching && ( - - )} - Set Mappings - - onNinjaOrgsAutomap()} className="me-2"> - {extensionNinjaOrgsAutomapResult.isFetching && ( - - )} - Automap NinjaOne Organizations - - - } - > - {listBackendNinjaOrgsResult.isFetching && listBackendNinjaOrgsResult.isUninitialized ? ( - - ) : ( - { - return ( - - - Use the table below to map your client to the correct NinjaOne Organization. - { - //load all the existing mappings and show them first in a table. - listBackendNinjaOrgsResult.isSuccess && ( - - ) - } - - - { - return !Object.keys( - listBackendNinjaOrgsResult.data?.Mappings, - ).includes(tenant.customerId) - }).map((tenant) => ({ - name: tenant.displayName, - value: tenant.customerId, - }))} - onChange={(e) => { - setMappingArray(e.value) - }} - isLoading={listBackendNinjaOrgsResult.isFetching} - /> - - - - - - { - return !Object.values(listBackendNinjaOrgsResult.data?.Mappings) - .map((value) => { - return value.value - }) - .includes(client.value.toString()) - }, - ).map((client) => ({ - name: client.name, - value: client.value, - }))} - onChange={(e) => setMappingValue(e)} - placeholder="Select a NinjaOne Organization" - isLoading={listBackendNinjaOrgsResult.isFetching} - /> - - { - //set the new mapping in the array - if ( - mappingValue.value !== undefined && - mappingValue.value !== '-1' && - Object.values(ninjaMappingsArray) - .map((item) => item.ninjaId) - .includes(mappingValue.value) === false - ) { - setNinjaMappingsArray([ - ...ninjaMappingsArray, - { - Tenant: listBackendNinjaOrgsResult.data?.Tenants.find( - (tenant) => tenant.customerId === mappingArray, - ), - ninjaName: mappingValue.label, - ninjaId: mappingValue.value, - }, - ]) - } - }} - className={`my-4 circular-button`} - title={'+'} - > - - - - - - {(extensionNinjaOrgsAutomapResult.isSuccess || - extensionNinjaOrgsAutomapResult.isError) && - !extensionNinjaOrgsAutomapResult.isFetching && ( - - {extensionNinjaOrgsAutomapResult.isSuccess - ? extensionNinjaOrgsAutomapResult.data.Results - : 'Error'} - - )} - {(extensionNinjaOrgsConfigResult.isSuccess || - extensionNinjaOrgsConfigResult.isError) && - !extensionNinjaOrgsConfigResult.isFetching && ( - - {extensionNinjaOrgsConfigResult.isSuccess - ? extensionNinjaOrgsConfigResult.data.Results - : 'Error'} - - )} - - - - After editing the mappings you must click Save Mappings for the changes to - take effect. The table will be saved exactly as presented. - - - ) - }} - /> - )} - - - )} - {type === 'NinjaOne' && ( - - {extensionNinjaFieldsConfigResult.isFetching && ( - - )} - Set Mappings - - } - > - {listBackendNinjaFieldsResult.isFetching ? ( - - ) : ( - { - return ( - - -
    Organization Global Custom Field Mapping
    -

    - Use the table below to map your Organization Field to the correct NinjaOne - Field -

    - {listBackendNinjaFieldsResult.isSuccess && - listBackendNinjaFieldsResult.data.CIPPOrgFields.map((CIPPOrgFields) => ( - item.type === CIPPOrgFields.Type || item.type === 'unset', - )} - placeholder="Select a Field" - /> - ))} -
    - -
    Device Custom Field Mapping
    -

    - Use the table below to map your Device field to the correct NinjaOne WYSIWYG - Field -

    - {listBackendNinjaFieldsResult.isSuccess && - listBackendNinjaFieldsResult.data.CIPPNodeFields.map((CIPPNodeFields) => ( - item.type === CIPPNodeFields.Type || item.type === 'unset', - )} - placeholder="Select a Field" - /> - ))} -
    - - {(extensionNinjaFieldsConfigResult.isSuccess || - extensionNinjaFieldsConfigResult.isError) && - !extensionNinjaFieldsConfigResult.isFetching && ( - - {extensionNinjaFieldsConfigResult.isSuccess - ? extensionNinjaFieldsConfigResult.data.Results - : 'Error'} - - )} - -
    - ) - }} - /> - )} -
    - )} -
    - ) -} diff --git a/src/views/cipp/app-settings/SettingsExtensions.jsx b/src/views/cipp/app-settings/SettingsExtensions.jsx deleted file mode 100644 index ab686d2c1df9..000000000000 --- a/src/views/cipp/app-settings/SettingsExtensions.jsx +++ /dev/null @@ -1,157 +0,0 @@ -import { useLazyGenericGetRequestQuery, useLazyGenericPostRequestQuery } from 'src/store/api/app.js' -import React, { useRef } from 'react' -import { CAccordion, CButton, CCardText, CCol, CForm, CSpinner } from '@coreui/react' -import Extensions from 'src/data/Extensions.json' -import { Form } from 'react-final-form' -import { RFFCFormInput, RFFCFormSwitch } from 'src/components/forms/index.js' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faCircleNotch } from '@fortawesome/free-solid-svg-icons' -import { CippCallout } from 'src/components/layout/index.js' -import CippButtonCard from 'src/components/contentcards/CippButtonCard' -import CippAccordionItem from 'src/components/contentcards/CippAccordionItem' - -/** - * Executes various operations related to settings and extensions. - * - * @returns {JSX.Element} - The rendered component. - */ -export function SettingsExtensions() { - const [listBackend, listBackendResult] = useLazyGenericGetRequestQuery() - const inputRef = useRef(null) - const [setExtensionconfig, extensionConfigResult] = useLazyGenericPostRequestQuery() - const [execTestExtension, listExtensionTestResult] = useLazyGenericGetRequestQuery() - const [execSyncExtension, listSyncExtensionResult] = useLazyGenericGetRequestQuery() - - const onSubmitTest = (integrationName) => { - execTestExtension({ - path: 'api/ExecExtensionTest?extensionName=' + integrationName, - }) - } - const onSubmit = (values) => { - setExtensionconfig({ - path: 'api/ExecExtensionsConfig', - values: values, - }) - } - - const ButtonGenerate = (integrationType, forceSync) => ( - <> - - {extensionConfigResult.isFetching && ( - - )} - Set Extension Settings - - onSubmitTest(integrationType)} className="me-2"> - {listExtensionTestResult.isFetching && ( - - )} - Test Extension - - {forceSync && ( - - execSyncExtension({ - path: 'api/ExecExtensionSync?Extension=' + integrationType, - }) - } - className="me-2" - > - {listSyncExtensionResult.isFetching && ( - - )} - Force Sync - - )} - - ) - - return ( -
    - {listBackendResult.isUninitialized && listBackend({ path: 'api/ListExtensionsConfig' })} - <> - {(listBackendResult.isFetching || - extensionConfigResult.isFetching || - listExtensionTestResult.isFetching || - listSyncExtensionResult.isFetching) && ( - - - - )} - {listSyncExtensionResult.isSuccess && !listSyncExtensionResult.isFetching && ( - - {listSyncExtensionResult.data.Results} - - )} - {listExtensionTestResult.isSuccess && !listExtensionTestResult.isFetching && ( - - {listExtensionTestResult.data.Results} - - )} - {extensionConfigResult.isSuccess && !extensionConfigResult.isFetching && ( - - {extensionConfigResult.data.Results} - - )} - - {Extensions.map((integration, idx) => ( - -

    {integration.helpText}

    - { - return ( - - - - {integration.SettingOptions.map( - (integrationOptions, idx) => - integrationOptions.type === 'input' && ( - - - - ), - )} - {integration.SettingOptions.map( - (integrationOptions, idx) => - integrationOptions.type === 'checkbox' && ( - - - - ), - )} - - - - - ) - }} - /> -
    - ))} -
    - -
    - ) -} diff --git a/src/views/cipp/app-settings/SettingsGeneral.jsx b/src/views/cipp/app-settings/SettingsGeneral.jsx deleted file mode 100644 index b5dd40624064..000000000000 --- a/src/views/cipp/app-settings/SettingsGeneral.jsx +++ /dev/null @@ -1,424 +0,0 @@ -import { useListTenantsQuery } from 'src/store/api/tenants.js' -import { - useLazyExecClearCacheQuery, - useLazyExecPermissionsAccessCheckQuery, - useLazyExecTenantsAccessCheckQuery, - useLazyGenericGetRequestQuery, -} from 'src/store/api/app.js' -import React, { useRef, useState } from 'react' -import { cellGenericFormatter } from 'src/components/tables/CellGenericFormat.jsx' -import { cellTableFormatter } from 'src/components/tables/CellTable.jsx' -import { - CButton, - CCallout, - CCard, - CCardBody, - CCardHeader, - CCol, - CFormSwitch, - CLink, - CListGroup, - CListGroupItem, - CRow, - CTable, -} from '@coreui/react' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faCircleNotch } from '@fortawesome/free-solid-svg-icons' -import CippListOffcanvas from 'src/components/utilities/CippListOffcanvas.jsx' -import { TableModalButton } from 'src/components/buttons/index.js' -import { CippTable } from 'src/components/tables/index.js' -import { TenantSelectorMultiple } from 'src/components/utilities/index.js' -import { SettingsGeneralRow } from 'src/views/cipp/app-settings/components/SettingsGeneralRow.jsx' -import CippButtonCard from 'src/components/contentcards/CippButtonCard' -import { ListGroupContentCard } from 'src/components/contentcards' - -/** - * SettingsGeneral component. - * This method is responsible for managing general settings. - * @returns {JSX.Element} - */ -export function SettingsGeneral() { - const { data: tenants = [] } = useListTenantsQuery({ AllTenantSelector: false }) - const [checkPermissions, permissionsResult] = useLazyExecPermissionsAccessCheckQuery() - const [checkGDAP, GDAPResult] = useLazyGenericGetRequestQuery() - - const [clearCache, clearCacheResult] = useLazyExecClearCacheQuery() - const [checkAccess, accessCheckResult] = useLazyExecTenantsAccessCheckQuery() - const [selectedTenants, setSelectedTenants] = useState([]) - const [showMaxSelected, setShowMaxSelected] = useState(false) - const [tokenOffcanvasVisible, setTokenOffcanvasVisible] = useState(false) - const [showExtendedInfo, setShowExtendedInfo] = useState(true) - - const maxSelected = 2 - const tenantSelectorRef = useRef(null) - - const handleSetSelectedTenants = (value) => { - if (value.length <= maxSelected) { - setSelectedTenants(value) - setShowMaxSelected(false) - } else { - setSelectedTenants(value) - setShowMaxSelected(true) - } - } - - const checkAccessColumns = [ - { - name: 'Tenant Domain', - selector: (row) => row['TenantName'], - grow: 0, - cell: cellGenericFormatter(), - }, - { - name: 'Result', - selector: (row) => row['Status'], - minWidth: '380px', - maxWidth: '380px', - cell: cellGenericFormatter(), - }, - { - name: 'Missing GDAP Roles', - selector: (row) => row?.MissingRoles, - cell: cellTableFormatter('MissingRoles', true, false, true), - }, - { - name: 'Roles available', - selector: (row) => row?.GDAPRoles, - cell: cellTableFormatter('GDAPRoles', false, true), - omit: showExtendedInfo, - exportSelector: 'GDAPRoles', - }, - ] - - const checkGDAPColumns = [ - { - name: 'Tenant', - selector: (row) => row['Tenant'], - sortable: true, - cell: cellGenericFormatter(), - minWidth: '200px', - maxWidth: '200px', - }, - { - name: 'Error Type', - selector: (row) => row['Type'], - sortable: true, - cell: cellGenericFormatter(), - minWidth: '100px', - maxWidth: '100px', - }, - { - name: 'Issue', - selector: (row) => row?.Issue, - sortable: true, - cell: cellGenericFormatter(), - }, - { - name: 'Resolution Link', - sortable: true, - selector: (row) => row?.Link, - cell: cellGenericFormatter(), - }, - { - name: 'Relationship ID', - sortable: true, - selector: (row) => row?.Relationship, - cell: cellGenericFormatter(), - }, - ] - - const handleCheckAccess = () => { - const mapped = tenants.reduce( - (current, { customerId, ...rest }) => ({ - ...current, - [customerId]: { ...rest }, - }), - {}, - ) - const AllTenantSelector = selectedTenants.map( - (customerId) => mapped[customerId].defaultDomainName, - ) - checkAccess({ tenantDomains: AllTenantSelector }) - } - - const tableProps = { - pagination: false, - actions: [ - { - //console.log(e) - setShowExtendedInfo(!e.target.checked) - }} - key={'Show Extended Info'} - />, - ], - } - const permissionsCheckButton = ( - checkPermissions()} - disabled={permissionsResult.isFetching} - className="me-2" - > - {permissionsResult.isFetching && ( - - )} - Run Permissions Check - - ) - - const gdapButton = ( - checkGDAP({ path: '/api/ExecAccessChecks?GDAP=true' })} - disabled={GDAPResult.isFetching} - className="me-2" - > - {GDAPResult.isFetching && ( - - )} - Run GDAP Check - - ) - - const tenantAccessCheckButton = ( - handleCheckAccess()} - disabled={accessCheckResult.isFetching || selectedTenants.length < 1} - > - {accessCheckResult.isFetching && ( - - )} - Run access check - - ) - return ( -
    - - - - - - - - -

    Click the button below to start a permissions check.

    - - {permissionsResult.isSuccess && ( - <> - {permissionsResult.data.Results?.AccessTokenDetails?.Name !== '' && ( - <> - - - - Authentication User - Authentication IP - Application - - - - - - {permissionsResult.data.Results?.AccessTokenDetails?.UserPrincipalName} - - {permissionsResult.data.Results?.AccessTokenDetails?.IPAddress} - - - Link - - - - - - - )} - - - - {permissionsResult.data.Results?.Messages && ( - <> - {permissionsResult.data.Results?.Messages?.map((m, idx) => ( -
    {m}
    - ))} - - )} -
    -
    - - {(permissionsResult.data.Results?.ErrorMessages?.length > 0 || - permissionsResult.data.Results?.MissingPermissions.length > 0) && ( - - <> - {permissionsResult.data.Results?.ErrorMessages?.map((m, idx) => ( -
    {m}
    - ))} - - {permissionsResult.data.Results?.MissingPermissions.length > 0 && ( - <> - Your Secure Application Model is missing the following permissions. See - the documentation on how to add permissions{' '} - - here - - . - - {permissionsResult.data.Results?.MissingPermissions?.map( - (r, index) => ( - {r} - ), - )} - - - )} -
    - )} -
    -
    - - )} -
    -
    - - -

    Click the button below to start a check for general GDAP settings.

    - - {GDAPResult.isSuccess && ( - <> - p['@odata.type'] == '#microsoft.graph.group', - )} - title="Groups" - /> - p['@odata.type'] == '#microsoft.graph.directoryRole', - )} - title="Roles" - /> - - )} - - - {GDAPResult.isSuccess && GDAPResult.data.Results.GDAPIssues?.length > 0 && ( - <> - {GDAPResult.data.Results.GDAPIssues?.filter((e) => e.Type === 'Error').length > - 0 && ( - - Relationship errors detected. Review the table below for more details. - - )} - {GDAPResult.data.Results.GDAPIssues?.filter((e) => e.Type === 'Warning') - .length > 0 && ( - - Relationship warnings detected. Review the table below for more details. - - )} - - - )} - {GDAPResult.isSuccess && GDAPResult.data.Results.GDAPIssues?.length === 0 && ( - - No relationships with issues found. Please perform a Permissions Check or Tenant - Access Check if you are experiencing issues. - - )} - - -
    -
    -
    - - - - - -
    - Click the button below to start a tenant access check. You can select multiple, - but a maximum of {maxSelected + 1} tenants is recommended. -
    - - - handleSetSelectedTenants( - value.map((val) => { - return val.value - }), - ) - } - /> - {showMaxSelected && ( - - A maximum of {maxSelected + 1} tenants is recommended. - - )} -
    -
    - - - - - - - {accessCheckResult.isSuccess && ( - - )} - - -
    -
    -
    -
    - ) -} diff --git a/src/views/cipp/app-settings/SettingsLicenses.jsx b/src/views/cipp/app-settings/SettingsLicenses.jsx deleted file mode 100644 index dd9695b6ca6c..000000000000 --- a/src/views/cipp/app-settings/SettingsLicenses.jsx +++ /dev/null @@ -1,142 +0,0 @@ -import { useLazyGenericGetRequestQuery, useLazyGenericPostRequestQuery } from 'src/store/api/app.js' -import React, { useRef } from 'react' -import { ModalService } from 'src/components/utilities/index.js' -import { Form } from 'react-final-form' -import { RFFCFormInput } from 'src/components/forms/index.js' -import { TitleButton } from 'src/components/buttons/index.js' -import { CButton, CCallout, CSpinner } from '@coreui/react' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faTrash } from '@fortawesome/free-solid-svg-icons' -import { CippCallout, CippPageList } from 'src/components/layout/index.js' - -/** - * SettingsLicenses component is used to manage excluded licenses in a settings page. - * - * @returns {JSX.Element} The generated settings page component. - */ -export function SettingsLicenses() { - const [setExclusion, setExclusionResults] = useLazyGenericPostRequestQuery() - const formRef = useRef(null) - - const handleAddLicense = (selected) => { - ModalService.confirm({ - body: ( -
    - { - formRef.current = values - return ( - <> -
    Add a license to exclude
    - - - - ) - }} - /> -
    - ), - title: 'Add Exclusion', - onConfirm: () => - setExclusion({ - path: '/api/ExecExcludeLicenses?AddExclusion=true', - values: { ...formRef.current }, - }), - }) - } - - const titleButton = - const [executeGetRequest, getResults] = useLazyGenericGetRequestQuery() - - const Offcanvas = (row, rowIndex, formatExtraData) => { - const handleDeleteIntuneTemplate = (apiurl, message) => { - ModalService.confirm({ - title: 'Confirm', - body:
    {message}
    , - onConfirm: () => executeGetRequest({ path: apiurl }), - confirmLabel: 'Continue', - cancelLabel: 'Cancel', - }) - } - return ( - <> - - handleDeleteIntuneTemplate( - `/api/ExecExcludeLicenses?RemoveExclusion=true&GUID=${row.GUID}`, - 'Do you want to delete this exclusion?', - ) - } - > - - - - ) - } - - const columns = [ - { - name: 'Display Name', - selector: (row) => row['Product_Display_Name'], - exportSelector: 'Product_Display_Name', - sortable: true, - minWidth: '300px', - }, - { - name: 'License ID', - selector: (row) => row['GUID'], - exportSelector: 'GUID', - sortable: true, - minWidth: '350px', - }, - { - name: 'Actions', - cell: Offcanvas, - }, - ] - return ( - <> - {setExclusionResults.isFetching || - (getResults.isFetching && ( - - Loading - - ))} - {setExclusionResults.isSuccess && !setExclusionResults.isFetching && ( - - {setExclusionResults.data?.Results} - - )} - {setExclusionResults.isError && !setExclusionResults.isFetching && ( - - Could not connect to API: {setExclusionResults.error.message} - - )} - {getResults.isError && !getResults.isFetching && ( - - Could not connect to API: {getResults.error.message} - - )} - {getResults.isSuccess && !getResults.isFetching && ( - - {getResults.data?.Results} - - )} - - - ) -} diff --git a/src/views/cipp/app-settings/SettingsMaintenance.jsx b/src/views/cipp/app-settings/SettingsMaintenance.jsx deleted file mode 100644 index a65add447d5d..000000000000 --- a/src/views/cipp/app-settings/SettingsMaintenance.jsx +++ /dev/null @@ -1,246 +0,0 @@ -import React, { useState } from 'react' -import { useGenericGetRequestQuery, useLazyGenericGetRequestQuery } from 'src/store/api/app.js' -import { CButton, CCallout, CCol, CRow, CSpinner } from '@coreui/react' -import CippChartCard from 'src/components/contentcards/CippChartCard' -import { CippDatatable, CippTable, cellDateFormatter } from 'src/components/tables' -import { cellGenericFormatter } from 'src/components/tables/CellGenericFormat' -import { CippCallout, CippContentCard } from 'src/components/layout' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import CippButtonCard from 'src/components/contentcards/CippButtonCard' -import { CippActionsOffcanvas, ModalService } from 'src/components/utilities' - -/** - * Performs maintenance operations on settings. - * - * @returns {JSX.Element} The JSX element representing the settings maintenance component. - */ -export function SettingsMaintenance() { - const orchestrators = useGenericGetRequestQuery({ - path: '/api/ExecDurableFunctions', - params: { Action: 'ListOrchestrators' }, - }) - const durableStats = useGenericGetRequestQuery({ - path: '/api/ExecDurableFunctions', - params: { Action: 'ListStats' }, - }) - - const [resetDurables, resetDurableStatus] = useLazyGenericGetRequestQuery() - - const handleResetDurables = (action) => { - var actionText = '' - if (action === 'ResetDurables') { - actionText = 'clear Durable Queues? This will stop all queued functions from executing.' - } else if (action === 'PurgeOrchestrators') { - actionText = - 'purge Orchestrator Instances and History? This will also remove the largemessages blob container.' - } - ModalService.confirm({ - title: 'Danger Zone', - body:
    Are you sure you want to {actionText}
    , - onConfirm: () => - resetDurables({ - path: '/api/ExecDurableFunctions', - params: { Action: action }, - }).then(() => { - orchestrators.refetch() - durableStats.refetch() - }), - confirmLabel: 'Reset', - cancelLabel: 'Cancel', - }) - } - - const Actions = (row, rowIndex, formatExtraData) => { - const [ocVisible, setOCVisible] = useState(false) - const [getOrchestratorHistory, orchestratorHistory] = useLazyGenericGetRequestQuery() - - function loadOffCanvasDetails(id) { - setOCVisible(true) - getOrchestratorHistory({ - path: 'api/ExecDurableFunctions', - params: { Action: 'ListOrchestratorHistory', PartitionKey: id }, - }) - } - var actions = [ - { - label: 'View History', - color: 'info', - modal: true, - modalType: 'table', - modalBody: orchestratorHistory?.data?.Results ? orchestratorHistory?.data?.Results : '', - }, - { - label: 'Purge Orchestrator', - color: 'danger', - modal: true, - icon: , - modalUrl: `/api/ExecDurableFunctions?Action=PurgeOrchestrators&PartitionKey=${row.PartitionKey}`, - modalMessage: - 'Are you sure you want to purge this orchestrator instance and related history?', - }, - ] - - return ( - <> - loadOffCanvasDetails(row.PartitionKey)}> - - - setOCVisible(false)} - /> - - ) - } - - const ResetButton = ( - <> - handleResetDurables('ResetDurables')} - color="danger" - className="me-2" - > - Clear Durable Queues - - handleResetDurables('PurgeOrchestrators')} - color="danger" - className="me-2" - > - Purge Orchestrators - - - ) - - return ( -
    - - - { - return queue?.Name - })} - ChartData={durableStats.data?.Queues?.map((queue) => { - return queue?.ApproximateMessageCount - })} - isFetching={durableStats.isFetching} - refreshFunction={() => durableStats.refetch()} - /> - - - { - return status.Name - })} - ChartData={durableStats?.data?.Orchestrators?.map((status) => { - return status.Count - })} - isFetching={durableStats.isFetching} - refreshFunction={() => durableStats.refetch()} - /> - - - - -

    Use these actions when troubleshooting performance issues with the backend.

    -

    - NOTE: Resetting durables will terminate any running processes. -

    -
    - - {resetDurableStatus.isFetching && } - {!resetDurableStatus.isFetching && resetDurableStatus.isSuccess && ( - - {resetDurableStatus?.data?.Message} - - )} -
    -
    -
    - - - - , - modalUrl: `/api/ExecDurableFunctions?Action=PurgeOrchestrators&PartitionKey=!PartitionKey`, - modalMessage: - 'Are you sure you want to purge the selected orchestrator instances and related history?', - }, - ], - }} - columns={[ - { - name: 'Created', - selector: (row) => row['CreatedTime'], - sortable: true, - exportSelector: 'CreatedTime', - cell: cellDateFormatter({ format: 'short' }), - }, - { - name: 'Completed', - selector: (row) => row?.CompletedTime, - sortable: true, - exportSelector: 'CompletedTime', - cell: cellDateFormatter({ format: 'short' }), - }, - { - name: 'Name', - selector: (row) => row['Name'], - sortable: true, - exportSelector: 'Name', - cell: cellGenericFormatter(), - }, - { - name: 'Status', - selector: (row) => row['RuntimeStatus'], - sortable: true, - exportSelector: 'RuntimeStatus', - cell: cellGenericFormatter(), - }, - { - name: 'Input', - selector: (row) => row['Input'], - cell: cellGenericFormatter(), - }, - { - name: 'Actions', - cell: Actions, - maxWidth: '100px', - }, - ]} - filterlist={[ - { filterName: 'Running', filter: 'Complex: RuntimeStatus eq Running' }, - { filterName: 'Pending', filter: 'Complex: RuntimeStatus eq Pending' }, - { filterName: 'Completed', filter: 'Complex: RuntimeStatus eq Completed' }, - { filterName: 'Failed', filter: 'Complex: RuntimeStatus eq Failed' }, - ]} - isFetching={orchestrators.isFetching} - refreshFunction={() => orchestrators.refetch()} - /> - - - -
    - ) -} diff --git a/src/views/cipp/app-settings/SettingsNotifications.jsx b/src/views/cipp/app-settings/SettingsNotifications.jsx deleted file mode 100644 index f38bb2f1fd1f..000000000000 --- a/src/views/cipp/app-settings/SettingsNotifications.jsx +++ /dev/null @@ -1,211 +0,0 @@ -import { - useLazyExecNotificationConfigQuery, - useLazyGenericPostRequestQuery, - useLazyListNotificationConfigQuery, -} from 'src/store/api/app.js' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faCircleNotch } from '@fortawesome/free-solid-svg-icons' -import { CButton, CCol, CForm, CSpinner } from '@coreui/react' -import { Form, useForm } from 'react-final-form' -import { RFFCFormInput, RFFCFormSwitch, RFFSelectSearch } from 'src/components/forms/index.js' -import React from 'react' -import { CippCallout } from 'src/components/layout/index.js' -import CippButtonCard from 'src/components/contentcards/CippButtonCard' - -/** - * Sets the notification settings. - * @returns {JSX.Element} The notification settings component. - */ -export function SettingsNotifications() { - const [configNotifications, notificationConfigResult] = useLazyExecNotificationConfigQuery() - const [listNotification, notificationListResult] = useLazyListNotificationConfigQuery() - const [generateAlert, generateAlertResult] = useLazyGenericPostRequestQuery() - const generateTestAlert = (values) => { - generateAlert({ path: 'api/ExecAddAlert', values: values }) - } - - const onSubmit = (values) => { - configNotifications(values) - } - return ( - - - - Set Notification Settings - - - generateTestAlert({ text: 'Manually Generated Test Alert', Severity: 'Alert' }) - } - disabled={generateAlertResult.isFetching} - > - {generateAlertResult.isFetching ? ( - - ) : ( - <> - {generateAlertResult.isSuccess && ( - - )} - - )} - Generate Test Alert - - - } - isFetching={notificationListResult.isFetching} - > - <> - {notificationListResult.isUninitialized && listNotification()} - {notificationListResult.isFetching || - (generateAlertResult.isFetching && ( - - ))} - {!notificationListResult.isFetching && notificationListResult.error && ( - Error loading data - )} - {notificationListResult.isSuccess && ( - true} - initialValues={{ - ...notificationListResult.data, - logsToInclude: notificationListResult.data?.logsToInclude?.map((m) => ({ - label: m, - value: m, - })), - Severity: notificationListResult.data?.Severity?.map((s) => ({ - label: s, - value: s, - })), - }} - onSubmit={onSubmit} - render={({ handleSubmit, submitting, values }) => { - return ( - - {notificationConfigResult.isFetching && ( - - Loading - - )} - {notificationConfigResult.isSuccess && !notificationConfigResult.isFetching && ( - - {notificationConfigResult.data?.Results} - - )} - {notificationConfigResult.isError && !notificationConfigResult.isFetching && ( - - Could not connect to API: {notificationConfigResult.error.message} - - )} - - - - - - - - - - - - - - - - - - - - - - - - - ) - }} - /> - )} - - Use the button below to save the changes, or generate a test alert. The test alert will - be processed in a batch with other alerts - - - - - ) -} diff --git a/src/views/cipp/app-settings/SettingsPartner.jsx b/src/views/cipp/app-settings/SettingsPartner.jsx deleted file mode 100644 index 823844ac56b5..000000000000 --- a/src/views/cipp/app-settings/SettingsPartner.jsx +++ /dev/null @@ -1,290 +0,0 @@ -import { - useGenericGetRequestQuery, - useLazyGenericGetRequestQuery, - useLazyGenericPostRequestQuery, -} from 'src/store/api/app.js' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { - CBadge, - CButton, - CCallout, - CCard, - CCardBody, - CCardHeader, - CCardTitle, - CCol, - CForm, - CLink, - CRow, - CSpinner, -} from '@coreui/react' -import { Form } from 'react-final-form' -import { RFFCFormSwitch, RFFSelectSearch } from 'src/components/forms/index.js' -import React, { useEffect } from 'react' -import { CippCallout } from 'src/components/layout/index.js' -import { CippCodeBlock } from 'src/components/utilities' -import { CellDate } from 'src/components/tables' -import Skeleton from 'react-loading-skeleton' - -/** - * Sets the notification settings. - * @returns {JSX.Element} The notification settings component. - */ -export function SettingsPartner() { - const webhookConfig = useGenericGetRequestQuery({ - path: '/api/ExecPartnerWebhook', - params: { Action: 'ListSubscription' }, - }) - const webhookEvents = useGenericGetRequestQuery({ - path: '/api/ExecPartnerWebhook', - params: { Action: 'ListEventTypes' }, - }) - const [submitWebhook, webhookCreateResult] = useLazyGenericPostRequestQuery() - const [sendTest, sendTestResult] = useLazyGenericGetRequestQuery() - const [checkTest, checkTestResult] = useLazyGenericGetRequestQuery() - - const onSubmit = (values) => { - const shippedValues = { - EventType: values?.EventType?.map((event) => event.value), - standardsExcludeAllTenants: values?.standardsExcludeAllTenants, - } - submitWebhook({ - path: '/api/ExecPartnerWebhook?Action=CreateSubscription', - values: shippedValues, - }).then((res) => { - webhookConfig.refetch() - }) - } - - useEffect(() => { - if ( - sendTestResult.isSuccess && - sendTestResult?.data?.Results?.correlationId && - !checkTestResult?.data?.Results?.results - ) { - setTimeout( - checkTest({ - path: '/api/ExecPartnerWebhook', - params: { - Action: 'ValidateTest', - CorrelationId: sendTestResult?.data?.Results?.correlationId, - }, - }), - 1000, - ) - } - }, [sendTestResult, checkTest, checkTestResult]) - - return ( - - - - <> - webhookConfig.refetch()} - className="mb-2" - disabled={webhookConfig.isFetching} - > - {webhookConfig.isFetching ? ( - <> - Loading... - - ) : ( - <> - - Refresh - - )} - - - {!webhookConfig.isFetching && webhookConfig.error && ( - Error loading data - )} - {webhookConfig.isSuccess && ( - <> -

    Webhook Configuration

    - - - Subscribe to Microsoft Partner center webhooks to enable automatic tenant - onboarding and alerting. Updating the settings will replace any existing webhook - subscription with one pointing to CIPP. Refer to the{' '} - - Microsoft Partner Center documentation - {' '} - for more information on the webhook types. - - - - -

    Webhook URL

    - -
    - -

    Last Updated

    - -
    - -

    Subscribed Events

    - ({ - label: event, - value: event, - })), - standardsExcludeAllTenants: - webhookConfig?.data?.Results?.standardsExcludeAllTenants, - }} - render={({ handleSubmit }) => ( - <> - - {webhookEvents.isSuccess ? ( - ({ - name: event, - value: event, - }))} - multi={true} - refreshFunction={() => webhookEvents.refetch()} - helpText="Select the events you want to receive notifications for." - /> - ) : ( - - )} - - - {webhookCreateResult.isFetching ? ( - <> - - Saving... - - ) : ( - 'Save' - )} - - - - )} - /> - {webhookCreateResult.isSuccess && ( - - {webhookCreateResult?.data?.Results} - - )} -
    -
    -

    Webhook Test

    - - - - sendTest({ - path: '/api/ExecPartnerWebhook', - params: { Action: 'SendTest' }, - }) - } - > - {sendTestResult.isFetching ? ( - <> - - Running Test... - - ) : ( - 'Start Test' - )} - - {checkTestResult.isFetching && !checkTestResult?.data?.Results?.result && ( - <> - Waiting for results - - )} - {sendTestResult.isSuccess && sendTestResult?.data?.Results?.code && ( - <> - Error{' '} - {sendTestResult?.data?.Results?.code} -{' '} - {sendTestResult?.data?.Results?.description} - - )} - - - - {checkTestResult.isSuccess && ( - <> - -

    Status

    - {checkTestResult?.data?.Results.status} -
    - {Array.isArray(checkTestResult?.data?.Results?.results) && ( - <> - -

    Status Code

    - - {checkTestResult?.data?.Results?.results[0].responseCode} -
    - {checkTestResult?.data?.Results?.results[0].responseMessage !== '' && ( - -

    Response Message

    - {checkTestResult.data.Results.results[0].responseMessage} -
    - )} - -

    Date/Time

    - -
    - - )} - - )} -
    - - )} - -
    -
    - ) -} diff --git a/src/views/cipp/app-settings/SettingsSuperAdmin.jsx b/src/views/cipp/app-settings/SettingsSuperAdmin.jsx deleted file mode 100644 index 842c53ae8cc2..000000000000 --- a/src/views/cipp/app-settings/SettingsSuperAdmin.jsx +++ /dev/null @@ -1,190 +0,0 @@ -import { useGenericGetRequestQuery, useLazyGenericPostRequestQuery } from 'src/store/api/app.js' -import { CAccordion, CButton, CCol, CForm, CLink, CRow, CSpinner } from '@coreui/react' -import { Form } from 'react-final-form' -import { RFFCFormRadio, RFFCFormSwitch } from 'src/components/forms/index.js' -import React from 'react' -import { CippCallout } from 'src/components/layout/index.js' -import CippAccordionItem from 'src/components/contentcards/CippAccordionItem' -import SettingsCustomRoles from 'src/views/cipp/app-settings/components/SettingsCustomRoles' -import CippButtonCard from 'src/components/contentcards/CippButtonCard' -import SettingsSAMRoles from './components/SettingsSAMRoles' -import SettingsAppPermissions from './components/SettingsAppPermissions' - -export function SettingsSuperAdmin() { - const partnerConfig = useGenericGetRequestQuery({ - path: '/api/ExecPartnerMode', - params: { Action: 'ListCurrent' }, - }) - const offloadConfig = useGenericGetRequestQuery({ - path: '/api/ExecOffloadFunctions', - params: { Action: 'ListCurrent' }, - }) - - const [execPartnerMode, execPartnerModeResult] = useLazyGenericPostRequestQuery() - const [execOffloadFunctions, execOffloadFunctionsResult] = useLazyGenericPostRequestQuery() - - const onSubmit = (values) => { - execPartnerMode({ - path: '/api/ExecPartnerMode', - values: values, - }).then((res) => {}) - } - const buttonCard = ( - - {execPartnerModeResult.isFetching ? ( - <> - - - ) : ( - 'Save' - )} - - ) - - const onSubmitOffload = (values) => { - execOffloadFunctions({ - path: '/api/ExecOffloadFunctions', - values: values, - }).then((res) => {}) - } - - const buttonCardOffload = ( - - {execOffloadFunctionsResult.isFetching ? ( - <> - - - ) : ( - 'Save' - )} - - ) - - return ( - <> - - - - <> - <> - - -

    - The configuration settings below should only be modified by a super admin. - Super admins can configure what tenant mode CIPP operates in. See - - our documentation - - for more information on how to configure these modes and what they mean. -

    -
    -
    - - -

    Tenant Mode

    - ( - <> - - - - - - - )} - /> - {execPartnerModeResult.isSuccess && ( - - {execPartnerModeResult?.data?.results} - - )} -
    -
    - - -
    -
    - - - <> - - -

    - This mode enables offloading some of the more processor intensive functions to a - separate function app. This can be useful in environments where the CIPP server - is under heavy load. -

    -
    Current Functions
    -
      -
    • Audit Logs
    • -
    -
    -
    - - - ( - <> - - - - - )} - /> - {execOffloadFunctionsResult.isSuccess && ( - - {execOffloadFunctionsResult?.data?.results} - - )} - - - -
    -
    -
    - - - - - ) -} diff --git a/src/views/cipp/app-settings/SettingsTenants.jsx b/src/views/cipp/app-settings/SettingsTenants.jsx deleted file mode 100644 index bbced7def29a..000000000000 --- a/src/views/cipp/app-settings/SettingsTenants.jsx +++ /dev/null @@ -1,295 +0,0 @@ -import { useDispatch, useSelector } from 'react-redux' -import { - useExecAddExcludeTenantMutation, - useExecRemoveExcludeTenantMutation, -} from 'src/store/api/tenants.js' -import { useLazyGenericGetRequestQuery } from 'src/store/api/app.js' -import React, { useEffect, useRef } from 'react' -import { ModalService, TenantSelectorMultiple } from 'src/components/utilities/index.js' -import { setCurrentTenant } from 'src/store/features/app.js' -import { CButton, CSpinner, CTooltip } from '@coreui/react' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { - faCheckCircle, - faExclamationTriangle, - faEye, - faEyeSlash, - faRecycle, -} from '@fortawesome/free-solid-svg-icons' -import { cellBooleanFormatter, CellTip } from 'src/components/tables/index.js' -import { CippCallout, CippPageList } from 'src/components/layout/index.js' - -/** - * The SettingsTenants method is used to manage the tenants in the application. It allows the user to add or - * remove exclusions, refresh permissions for a tenant, and view the list of excluded tenants. - * - * @return {JSXElement} The rendered component for managing the excluded tenants. - */ -export function SettingsTenants() { - const dispatch = useDispatch() - const currentTenant = useSelector((state) => state.app.currentTenant) - const [removeExcludeTenant, removeExcludeTenantResult] = useExecRemoveExcludeTenantMutation() - const [addExcludeTenant, addExcludeTenantResult] = useExecAddExcludeTenantMutation() - const [refreshPermissions, refreshPermissionsResults] = useLazyGenericGetRequestQuery() - - // const [selectedTenant, setSelectedTenant] = useState() - const selectedTenant = useRef() - - useEffect(() => { - // if a tenant is already selected and that's the tenant the - // user wants to exclude, we need to set that to the current state - selectedTenant.current = currentTenant - // eslint-disable-next-line react-hooks/exhaustive-deps - }, []) - - const handleRemoveExclusion = (domain) => - ModalService.confirm({ - title: 'Remove Exclusion', - body:
    Are you sure you want to remove the exclusion for {domain}?
    , - onConfirm: () => removeExcludeTenant(domain), - }) - - const handleCPVPermissions = (domain, resetsp = false) => - ModalService.confirm({ - title: 'Refresh Permissions', - body:
    Are you sure you want to refresh permissions for {domain.defaultDomainName}?
    , - onConfirm: () => - refreshPermissions({ - path: `/api/ExecCPVPermissions?TenantFilter=${domain.customerId}&ResetSP=${resetsp}`, - }), - }) - const handleConfirmExcludeTenant = (tenant) => { - ModalService.confirm({ - title: 'Exclude Tenant', - body:
    Are you sure you want to exclude this tenant?
    , - onConfirm: () => addExcludeTenant(tenant), - }) - .unwrap() - .then(() => { - dispatch(setCurrentTenant({})) - }) - } - - const handleExcludeTenant = (selected) => { - ModalService.confirm({ - body: ( -
    -
    Select a tenant to exclude
    - (selected = tenant)} /> -
    - ), - title: 'Add Exclusion', - onConfirm: () => handleConfirmExcludeTenant(selected), - }) - } - const titleButton = ( - handleExcludeTenant(selectedTenant)} - > - Add Excluded Tenant - - ) - - function StatusIcon(graphErrorCount) { - if (graphErrorCount > 0) { - return - } else { - return - } - } - - function StatusText(graphErrorCount, lastGraphError) { - if (graphErrorCount > 0) { - return 'Error Count: ' + graphErrorCount + ' - Last Error: ' + lastGraphError - } else { - return 'No errors detected with this tenant' - } - } - - const Offcanvas = (row, rowIndex, formatExtraData) => { - return ( - <> - {row.Excluded && ( - - handleRemoveExclusion(row.defaultDomainName)} - > - - - - )} - {!row.Excluded && ( - - handleConfirmExcludeTenant({ value: row.customerId })} - > - - - - )} - - handleCPVPermissions(row, false)} - > - - - - - ) - } - const columns = [ - { - name: 'Name', - selector: (row) => row['displayName'], - sortable: true, - cell: (row) => CellTip(row['displayName']), - exportSelector: 'displayName', - }, - { - name: 'Default Domain', - selector: (row) => row['defaultDomainName'], - sortable: true, - cell: (row) => CellTip(row['defaultDomainName']), - exportSelector: 'defaultDomainName', - }, - { - name: 'Excluded', - selector: (row) => row['Excluded'], - sortable: true, - cell: cellBooleanFormatter({ colourless: true }), - exportSelector: 'Excluded', - maxWidth: '100px', - minWidth: '100px', - }, - { - name: 'Exclude Date', - selector: (row) => row['ExcludeDate'], - sortable: true, - exportSelector: 'ExcludeDate', - maxWidth: '150px', - minWidth: '150px', - }, - { - name: 'Exclude User', - selector: (row) => row['ExcludeUser'], - sortable: true, - exportSelector: 'ExcludeUser', - maxWidth: '130px', - minWidth: '130px', - }, - { - name: 'Actions', - cell: Offcanvas, - maxWidth: '80px', - }, - ] - return ( - <> - {(refreshPermissionsResults.isFetching || removeExcludeTenantResult.isFetching) && ( - - - - )} - {removeExcludeTenantResult.isSuccess && !removeExcludeTenantResult.isFetching && ( - - {removeExcludeTenantResult.data?.Results} - - )} - {refreshPermissionsResults.isSuccess && - refreshPermissionsResults.data?.Results && - !refreshPermissionsResults.isFetching && - Array.isArray(refreshPermissionsResults.data.Results) ? ( - - {refreshPermissionsResults.data.Results.map((result, idx) => ( -
  • {result}
  • - ))} -
    - ) : null} - {addExcludeTenantResult.isSuccess && !addExcludeTenantResult.isFetching && ( - - {addExcludeTenantResult.data?.Results} - - )} - - - ) -} diff --git a/src/views/cipp/app-settings/SettingsWebhookSubscriptions.jsx b/src/views/cipp/app-settings/SettingsWebhookSubscriptions.jsx deleted file mode 100644 index 61d74b736f06..000000000000 --- a/src/views/cipp/app-settings/SettingsWebhookSubscriptions.jsx +++ /dev/null @@ -1,79 +0,0 @@ -import React from 'react' -import { CippPageList } from 'src/components/layout/index.js' -import { cellGenericFormatter } from 'src/components/tables/CellGenericFormat' -import { cellBadgeFormatter, cellDateFormatter } from 'src/components/tables' - -/** - * SettingsWebhookSubscriptions component is used to manage webhook subscriptions in a settings page. - * - * @returns {JSX.Element} The generated settings page component. - */ -export function SettingsWebhookSubscriptions() { - const columns = [ - { - name: 'Tenant', - selector: (row) => row['PartitionKey'], - exportSelector: 'PartitionKey', - sortable: true, - cell: cellGenericFormatter(), - }, - { - name: 'Resource', - selector: (row) => row['Resource'], - exportSelector: 'Resource', - sortable: true, - cell: cellGenericFormatter(), - }, - { - name: 'Status', - selector: (row) => row['Status'], - exportSelector: 'Status', - sortable: true, - cell: cellBadgeFormatter({ color: 'info' }), - }, - { - name: 'Last Update', - selector: (row) => row['Timestamp'], - sortable: true, - cell: cellDateFormatter({ format: 'short' }), - exportSelector: 'Timestamp', - }, - ] - return ( - <> - - - ) -} diff --git a/src/views/cipp/app-settings/components/SettingsAppPermissions.jsx b/src/views/cipp/app-settings/components/SettingsAppPermissions.jsx deleted file mode 100644 index d36dffb0b597..000000000000 --- a/src/views/cipp/app-settings/components/SettingsAppPermissions.jsx +++ /dev/null @@ -1,70 +0,0 @@ -import React, { useRef, useState } from 'react' -import { - CButton, - CCallout, - CCol, - CForm, - CRow, - CAccordion, - CAccordionHeader, - CAccordionBody, - CAccordionItem, -} from '@coreui/react' -import { Field, Form, FormSpy } from 'react-final-form' -import { RFFCFormRadioList, RFFSelectSearch } from 'src/components/forms' -import { useGenericGetRequestQuery, useLazyGenericPostRequestQuery } from 'src/store/api/app' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { TenantSelectorMultiple, ModalService, CippOffcanvas } from 'src/components/utilities' -import PropTypes from 'prop-types' -import { OnChange } from 'react-final-form-listeners' -import { useListTenantsQuery } from 'src/store/api/tenants' -import { OffcanvasListSection } from 'src/components/utilities/CippListOffcanvas' -import CippButtonCard from 'src/components/contentcards/CippButtonCard' -import CippAppPermissionBuilder from 'src/components/utilities/CippAppPermissionBuilder' - -const SettingsAppPermissions = () => { - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - const handleSubmit = (values) => { - genericPostRequest({ - path: 'api/ExecSAMAppPermissions?Action=Update', - values: values, - }).then(() => { - refetchSam() - }) - } - - const { - data: samAppPermissions = [], - isFetching: samAppPermissionsFetching, - refetch: refetchSam, - } = useGenericGetRequestQuery({ - path: 'api/ExecSAMAppPermissions', - }) - - return ( - - <> -

    Manage the permissions for the CIPP-SAM App Registration and CPV.

    -

    - This functionality is in - beta and should be treated as such. Removing permissions from the CIPP-SAM App is not - advised. -

    - - - - {postResults.data && ( - - {postResults?.data?.Results} - - )} - -
    - ) -} - -export default SettingsAppPermissions diff --git a/src/views/cipp/app-settings/components/SettingsCustomRoles.jsx b/src/views/cipp/app-settings/components/SettingsCustomRoles.jsx deleted file mode 100644 index 5799c900323f..000000000000 --- a/src/views/cipp/app-settings/components/SettingsCustomRoles.jsx +++ /dev/null @@ -1,489 +0,0 @@ -import React, { useRef, useState } from 'react' -import { - CButton, - CCallout, - CCol, - CForm, - CRow, - CAccordion, - CAccordionHeader, - CAccordionBody, - CAccordionItem, -} from '@coreui/react' -import { Field, Form, FormSpy } from 'react-final-form' -import { RFFCFormRadioList, RFFSelectSearch } from 'src/components/forms' -import { useGenericGetRequestQuery, useLazyGenericPostRequestQuery } from 'src/store/api/app' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { TenantSelectorMultiple, ModalService, CippOffcanvas } from 'src/components/utilities' -import PropTypes from 'prop-types' -import { OnChange } from 'react-final-form-listeners' -import { useListTenantsQuery } from 'src/store/api/tenants' -import { OffcanvasListSection } from 'src/components/utilities/CippListOffcanvas' -import CippButtonCard from 'src/components/contentcards/CippButtonCard' - -const SettingsCustomRoles = () => { - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - const [selectedTenant, setSelectedTenant] = useState([]) - const [blockedTenants, setBlockedTenants] = useState([]) - const tenantSelectorRef = useRef() - const blockedTenantSelectorRef = useRef() - const { data: tenants = [], tenantsFetching } = useListTenantsQuery({ - showAllTenantSelector: true, - }) - const [allTenantSelected, setAllTenantSelected] = useState(false) - const [cippApiRoleSelected, setCippApiRoleSelected] = useState(false) - - const { - data: apiPermissions = [], - isFetching, - isSuccess, - } = useGenericGetRequestQuery({ - path: 'api/ExecAPIPermissionList', - }) - - const { - data: customRoleList = [], - isFetching: customRoleListFetching, - isSuccess: customRoleListSuccess, - refetch: refetchCustomRoleList, - } = useGenericGetRequestQuery({ - path: 'api/ExecCustomRole', - }) - - const handleTenantChange = (e) => { - var alltenant = false - e.map((tenant) => { - if (tenant.value === 'AllTenants') { - alltenant = true - } - }) - if (alltenant && blockedTenants.length === 0) { - setAllTenantSelected(true) - } else { - setAllTenantSelected(false) - } - setSelectedTenant(e) - } - - const handleBlockedTenantChange = (e) => { - setBlockedTenants(e) - if (e.length > 0) { - setAllTenantSelected(false) - } - } - - const handleSubmit = async (values) => { - //filter on only objects that are 'true' - genericPostRequest({ - path: '/api/ExecCustomRole?Action=AddUpdate', - values: { - RoleName: values.RoleName.value, - Permissions: values.Permissions, - AllowedTenants: selectedTenant.map((tenant) => tenant.value), - BlockedTenants: blockedTenants.map((tenant) => tenant.value), - }, - }).then(() => { - refetchCustomRoleList() - }) - } - const handleDelete = async (values) => { - ModalService.confirm({ - title: 'Delete Custom Role', - body: 'Are you sure you want to delete this custom role? Any users with this role will have their permissions reset to the default for their base role.', - onConfirm: () => { - genericPostRequest({ - path: '/api/ExecCustomRole?Action=Delete', - values: { - RoleName: values.RoleName.value, - }, - }).then(() => { - refetchCustomRoleList() - }) - }, - }) - } - - const WhenFieldChanges = ({ field, set }) => ( - - {( - // No subscription. We only use Field to get to the change function - { input: { onChange } }, - ) => ( - - {({ form }) => ( - - {(value) => { - if (field === 'RoleName' && value?.value) { - let customRole = customRoleList.filter(function (obj) { - return obj.RowKey === value.value - }) - if (customRole[0]?.RowKey === 'CIPP-API') { - setCippApiRoleSelected(true) - } else { - setCippApiRoleSelected(false) - } - - if (customRole === undefined || customRole === null || customRole.length === 0) { - return false - } else { - if (set === 'AllowedTenants') { - setSelectedTenant(customRole[0][set]) - var selectedTenantList = [] - tenants.map((tenant) => { - if (customRole[0][set].includes(tenant.customerId)) { - selectedTenantList.push({ - label: tenant.displayName, - value: tenant.customerId, - }) - } - }) - - tenantSelectorRef.current.setValue(selectedTenantList) - } else if (set === 'BlockedTenants') { - setBlockedTenants(customRole[0][set]) - var blockedTenantList = [] - tenants.map((tenant) => { - if (customRole[0][set].includes(tenant.customerId)) { - blockedTenantList.push({ - label: tenant.displayName, - value: tenant.customerId, - }) - } - }) - - blockedTenantSelectorRef.current.setValue(blockedTenantList) - } else { - onChange(customRole[0][set]) - } - } - } - if (field === 'Defaults') { - let newPermissions = {} - Object.keys(apiPermissions).forEach((cat) => { - Object.keys(apiPermissions[cat]).forEach((obj) => { - var newval = '' - if (cat == 'CIPP' && obj == 'Core' && value == 'None') { - newval = 'Read' - } else { - newval = value - } - newPermissions[`${cat}${obj}`] = `${cat}.${obj}.${newval}` - }) - }) - onChange(newPermissions) - } - }} - - )} - - )} - - ) - WhenFieldChanges.propTypes = { - field: PropTypes.node, - set: PropTypes.string, - } - - const ApiPermissionRow = ({ obj, cat }) => { - const [offcanvasVisible, setOffcanvasVisible] = useState(false) - - var items = [] - for (var key in apiPermissions[cat][obj]) - for (var key2 in apiPermissions[cat][obj][key]) { - items.push({ heading: '', content: apiPermissions[cat][obj][key][key2] }) - } - var group = [{ items: items }] - - return ( - <> - -
    -
    {obj}
    -
    -
    - - setOffcanvasVisible(true)} variant="ghost" size="sm" color="info"> - - - - - - - setOffcanvasVisible(false)} - title="Permission Info" - placement="end" - size="lg" - > -

    {`${cat}.${obj}`}

    -

    - Listed below are the available API endpoints based on permission level, ReadWrite level - includes endpoints under Read. -

    - {[apiPermissions[cat][obj]].map((permissions, key) => { - var sections = Object.keys(permissions).map((type) => { - var items = [] - for (var api in permissions[type]) { - items.push({ heading: '', content: permissions[type][api] }) - } - return ( - - ) - }) - return sections - })} -
    - - ) - } - ApiPermissionRow.propTypes = { - obj: PropTypes.node, - cat: PropTypes.node, - } - - return ( - - <> -

    - Custom roles can be used to restrict permissions for users with the 'editor' or 'readonly' - roles in CIPP. They can be limited to a subset of tenants and API permissions. To restrict - direct API access, create a role with the name 'CIPP-API'. -

    -

    - This functionality is in - beta and should be treated as such. The custom role must be added to the user in SWA in - conjunction with the base role. (e.g. editor,mycustomrole) -

    - {isSuccess && !isFetching && !tenantsFetching && ( - { - return ( - - - -
    - ({ - name: role.RowKey, - value: role.RowKey, - }))} - isLoading={customRoleListFetching} - refreshFunction={() => refetchCustomRoleList()} - allowCreate={true} - placeholder="Select an existing role or enter a custom role name" - /> - - - - {cippApiRoleSelected && ( - - This role will limit access for the CIPP-API integration. It is not - intended to be used for users. - - )} -
    -
    -
    Allowed Tenants
    - handleTenantChange(e)} - /> - {allTenantSelected && ( - - All tenants selected, no tenant restrictions will be applied. - - )} -
    -
    -
    Blocked Tenants
    - handleBlockedTenantChange(e)} - /> -
    - -
    API Permissions
    - - -
    -
    Set All Permissions
    -
    -
    - - - - - -
    - - <> - {Object.keys(apiPermissions) - .sort() - .map((cat, catIndex) => ( - - {cat} - - {Object.keys(apiPermissions[cat]) - .sort() - .map((obj, index) => { - return ( - - - - ) - })} - - - ))} - - -
    - - - - {({ values }) => { - return ( - <> - {values['RoleName'] && selectedTenant.length > 0 && ( - <> -
    Allowed Tenants
    -
      - {selectedTenant.map((tenant, idx) => ( -
    • {tenant.label}
    • - ))} -
    - - )} - {values['RoleName'] && blockedTenants.length > 0 && ( - <> -
    Blocked Tenants
    -
      - {blockedTenants.map((tenant, idx) => ( -
    • {tenant.label}
    • - ))} -
    - - )} - {values['RoleName'] && values['Permissions'] && ( - <> -
    Selected Permissions
    -
      - {values['Permissions'] && - Object.keys(values['Permissions']) - ?.sort() - .map((cat, idx) => ( - <> - {!values['Permissions'][cat].includes('None') && ( -
    • {values['Permissions'][cat]}
    • - )} - - ))} -
    - - )} - - ) - }} -
    -
    -
    - - {postResults.isSuccess && ( - {postResults.data.Results} - )} - - - - - Save - - - {({ values }) => { - return ( - handleDelete(values)} - disabled={!values['RoleName']} - > - - Delete - - ) - }} - - - - -
    - ) - }} - /> - )} - -
    - ) -} - -export default SettingsCustomRoles diff --git a/src/views/cipp/app-settings/components/SettingsDNSResolver.jsx b/src/views/cipp/app-settings/components/SettingsDNSResolver.jsx deleted file mode 100644 index 02067c5c8db2..000000000000 --- a/src/views/cipp/app-settings/components/SettingsDNSResolver.jsx +++ /dev/null @@ -1,65 +0,0 @@ -import { CAlert, CButton, CButtonGroup } from '@coreui/react' -import React, { useState } from 'react' -import { useLazyEditDnsConfigQuery, useLazyGetDnsConfigQuery } from 'src/store/api/domains.js' -import { CippCallout } from 'src/components/layout/index.js' -import CippButtonCard from 'src/components/contentcards/CippButtonCard' - -/** - * Sets the DNS resolver based on user selection. - * - * @return {JSX.Element} - The component that renders the DNS resolver settings. - */ -export function SettingsDNSResolver() { - const resolvers = ['Google', 'Cloudflare', 'Quad9'] - const [getDnsConfig, getDnsConfigResult] = useLazyGetDnsConfigQuery() - const [editDnsConfig, editDnsConfigResult] = useLazyEditDnsConfigQuery() - - const switchResolver = async (resolver) => { - await editDnsConfig({ resolver }) - await getDnsConfig() - } - const cardbuttonGroup = ( - - {resolvers.map((resolver, index) => ( - switchResolver(resolver)} - color={resolver === getDnsConfigResult.data?.Resolver ? 'primary' : 'secondary'} - key={index} - > - {resolver} - - ))} - - ) - return ( - <> - - {getDnsConfigResult.isUninitialized && getDnsConfig()} - {getDnsConfigResult.isSuccess && ( - <> - - Select your DNS Resolver. The DNS resolve is used for the domain analyser only, and - not for generic DNS resolution. - - {(editDnsConfigResult.isSuccess || editDnsConfigResult.isError) && - !editDnsConfigResult.isFetching && ( - - {editDnsConfigResult.isSuccess - ? editDnsConfigResult.data.Results - : 'Error setting resolver'} - - )} - - )} - - - ) -} diff --git a/src/views/cipp/app-settings/components/SettingsGeneralRow.jsx b/src/views/cipp/app-settings/components/SettingsGeneralRow.jsx deleted file mode 100644 index fa85482d11a1..000000000000 --- a/src/views/cipp/app-settings/components/SettingsGeneralRow.jsx +++ /dev/null @@ -1,245 +0,0 @@ -import { - useLazyExecClearCacheQuery, - useLazyGenericGetRequestQuery, - useLazyGenericPostRequestQuery, - useLoadVersionsQuery, -} from 'src/store/api/app.js' -import React, { useRef } from 'react' -import useConfirmModal from 'src/hooks/useConfirmModal.jsx' -import { CButton, CCard, CCardBody, CCardHeader, CCol, CFormCheck, CRow } from '@coreui/react' -import { StatusIcon } from 'src/components/utilities/index.js' -import { CippCallout } from 'src/components/layout/index.js' -import Skeleton from 'react-loading-skeleton' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faCircleNotch } from '@fortawesome/free-solid-svg-icons' -import { SettingsPassword } from 'src/views/cipp/app-settings/components/SettingsPassword.jsx' -import { SettingsDNSResolver } from 'src/views/cipp/app-settings/components/SettingsDNSResolver.jsx' -import CippButtonCard from 'src/components/contentcards/CippButtonCard' -import { RFFCFormCheck } from 'src/components/forms' - -/** - * Fetches and maintains DNS configuration settings for the application. - * - * @return {JSX.Element | void} The settings DNS component or nothing if data not ready. - */ -export function SettingsGeneralRow() { - const [setBackupSchedule, BackupScheduleResult] = useLazyGenericGetRequestQuery() - const [runBackup, RunBackupResult] = useLazyGenericGetRequestQuery() - const [restoreBackup, restoreBackupResult] = useLazyGenericPostRequestQuery() - - const inputRef = useRef(null) - const [clearCache, clearCacheResult] = useLazyExecClearCacheQuery() - const { - data: versions, - isSuccess: isSuccessVersion, - refetch: RefechVersion, - } = useLoadVersionsQuery() - - const downloadTxtFile = (data) => { - const txtdata = [JSON.stringify(RunBackupResult.data.backup)] - const file = new Blob(txtdata, { type: 'text/plain' }) - const element = document.createElement('a') - element.href = URL.createObjectURL(file) - element.download = 'CIPP-Backup' + Date.now() + '.json' - document.body.appendChild(element) - element.click() - } - const handleChange = (e) => { - const fileReader = new FileReader() - fileReader.readAsText(e.target.files[0], 'UTF-8') - fileReader.onload = (e) => { - restoreBackup({ path: '/api/ExecRestoreBackup', values: e.target.result }) - } - } - const handleBackupSchedule = () => { - setBackupSchedule({ path: `/api/ExecSetCIPPAutoBackup?Enabled=true` }) - } - - const handleClearCache = useConfirmModal({ - body:
    Are you sure you want to clear the cache?
    , - onConfirm: () => { - clearCache({ tenantsOnly: false }) - localStorage.clear() - }, - }) - - const handleClearCacheTenant = useConfirmModal({ - body:
    Are you sure you want to clear the cache?
    , - onConfirm: () => { - clearCache({ tenantsOnly: true }) - }, - }) - const refreshVersionButton = ( - RefechVersion()}>Check version update - ) - - const cacheButton = ( - <> - handleClearCache()} - disabled={clearCacheResult.isFetching} - > - {clearCacheResult.isFetching && ( - - )} - Clear All Cache - - handleClearCacheTenant()} - disabled={clearCacheResult.isFetching} - > - {clearCacheResult.isFetching && ( - - )} - Clear Tenant Cache - - - ) - const backupButton = ( - <> - runBackup({ path: '/api/ExecRunBackup' })} - disabled={RunBackupResult.isFetching} - > - {RunBackupResult.isFetching && ( - - )} - Run backup - - inputRef.current.click()} - disabled={restoreBackupResult.isFetching} - > - {restoreBackupResult.isFetching && ( - - )} - Restore backup - - handleBackupSchedule()} - disabled={BackupScheduleResult.isFetching} - > - {BackupScheduleResult.isFetching && ( - - )} - Create Automated Backup Task - - - ) - return ( - <> - - - - - - - - - - - -
    Latest: {isSuccessVersion ? versions.RemoteCIPPVersion : }
    -
    Current: {isSuccessVersion ? versions.LocalCIPPVersion : }
    -
    -
    -
    -
    - - - - - Use this button to clear the caches used by CIPP. This will slow down some aspects of - the application, and should only be used when instructed to do so by support. - - {clearCacheResult.isSuccess && !clearCacheResult.isFetching && ( - - {clearCacheResult.data?.Results} - - )} - - - - - handleChange(e)} - /> - - - Use this button to backup the system configuration for CIPP. This will not include - authentication information or extension configuration. You can also set an automated - daily backup schedule by clicking the button below. This will create a scheduled - task for you. - - - {restoreBackupResult.isSuccess && !restoreBackupResult.isFetching && ( - - {restoreBackupResult.data.Results} - - )} - {BackupScheduleResult.isSuccess && !BackupScheduleResult.isFetching && ( - - {BackupScheduleResult.data.Results} - - )} - {RunBackupResult.isSuccess && !restoreBackupResult.isFetching && ( - - downloadTxtFile(RunBackupResult.data.backup)}> - Download Backup - - - )} - - - - - - -
    Latest: {isSuccessVersion ? versions.RemoteCIPPAPIVersion : }
    -
    Current: {isSuccessVersion ? versions.LocalCIPPAPIVersion : }
    -
    -
    -
    -
    - - ) -} diff --git a/src/views/cipp/app-settings/components/SettingsPassword.jsx b/src/views/cipp/app-settings/components/SettingsPassword.jsx deleted file mode 100644 index 971f9b161a4b..000000000000 --- a/src/views/cipp/app-settings/components/SettingsPassword.jsx +++ /dev/null @@ -1,83 +0,0 @@ -import { useLazyGenericGetRequestQuery, useLazyGenericPostRequestQuery } from 'src/store/api/app.js' -import React, { useState } from 'react' -import { CButton, CButtonGroup, CCallout, CCardText } from '@coreui/react' -import { CippCallout } from 'src/components/layout/index.js' -import CippButtonCard from 'src/components/contentcards/CippButtonCard' - -/** - * This method is responsible for handling password settings in the application. - * It uses two custom hooks, `useLazyGenericGetRequestQuery()` and `useLazyGenericPostRequestQuery()`, - * to fetch and update password configuration data respectively. - * - * The method maintains the state of a password alert visibility using the `useState()` hook. - * - * It also provides a switchResolver function that updates the password configuration using the editPasswordConfig function. - * After updating the configuration, it fetches the updated configuration using getPasswordConfig to reflect the changes. - * Finally, it sets the password alert visibility to true. - * - * The method renders a password style section in the UI which displays a list of resolvers. - * The resolver that matches the current password configuration is highlighted with a primary color button. - * By clicking on a resolver button, the switchResolver function is called to update the password configuration and show the password alert. - * - * @returns {JSXElement} The rendered password settings component with the password style section and password alert section. - */ -export function SettingsPassword() { - const [getPasswordConfig, getPasswordConfigResult] = useLazyGenericGetRequestQuery() - const [editPasswordConfig, editPasswordConfigResult] = useLazyGenericPostRequestQuery() - - const switchResolver = async (resolver) => { - await editPasswordConfig({ - path: '/api/ExecPasswordConfig', - values: { passwordType: resolver }, - }) - await getPasswordConfig({ path: '/api/ExecPasswordConfig', params: { list: true } }) - } - - const resolvers = ['Classic', 'Correct-Battery-Horse'] - const cardbuttonGroup = ( - - {resolvers.map((r, index) => ( - switchResolver(r)} - color={ - r === getPasswordConfigResult.data?.Results?.passwordType ? 'primary' : 'secondary' - } - key={index} - > - {r} - - ))} - - ) - return ( - <> - - {getPasswordConfigResult.isUninitialized && - getPasswordConfig({ path: '/api/ExecPasswordConfig?list=true' })} - - - Choose your password style. Classic passwords are a combination of letters and symbols. - Correct-Battery-Horse style is a passphrase, which is easier to remember and more secure - than classic passwords. - - - {(editPasswordConfigResult.isSuccess || editPasswordConfigResult.isError) && - !editPasswordConfigResult.isFetching && ( - - {editPasswordConfigResult.isSuccess - ? editPasswordConfigResult.data.Results - : 'Error setting password style'} - - )} - - - ) -} diff --git a/src/views/cipp/app-settings/components/SettingsSAMRoles.jsx b/src/views/cipp/app-settings/components/SettingsSAMRoles.jsx deleted file mode 100644 index fdce15fb39cd..000000000000 --- a/src/views/cipp/app-settings/components/SettingsSAMRoles.jsx +++ /dev/null @@ -1,149 +0,0 @@ -import React, { useEffect, useRef, useState } from 'react' -import { - CButton, - CCallout, - CCol, - CForm, - CRow, - CAccordion, - CAccordionHeader, - CAccordionBody, - CAccordionItem, -} from '@coreui/react' -import { Field, Form, FormSpy } from 'react-final-form' -import { RFFCFormRadioList, RFFSelectSearch } from 'src/components/forms' -import { useGenericGetRequestQuery, useLazyGenericPostRequestQuery } from 'src/store/api/app' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { TenantSelectorMultiple, ModalService } from 'src/components/utilities' -import PropTypes from 'prop-types' -import { OnChange } from 'react-final-form-listeners' -import { useListTenantsQuery } from 'src/store/api/tenants' -import CippButtonCard from 'src/components/contentcards/CippButtonCard' -import GDAPRoles from 'src/data/GDAPRoles' - -const SettingsSAMRoles = () => { - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - const [selectedTenant, setSelectedTenant] = useState([]) - const tenantSelectorRef = useRef() - const { - data: tenants = [], - isFetching: tenantsFetching, - isSuccess: tenantSuccess, - } = useListTenantsQuery({ - showAllTenantSelector: true, - }) - - const { - data: cippSAMRoles = [], - isFetching: roleListFetching, - isSuccess: roleListSuccess, - refetch: refetchRoleList, - } = useGenericGetRequestQuery({ - path: 'api/ExecSAMRoles', - }) - - const handleTenantChange = (e) => { - setSelectedTenant(e) - } - - const handleSubmit = async (values) => { - //filter on only objects that are 'true' - genericPostRequest({ - path: '/api/ExecSAMRoles?Action=Update', - values: { - Roles: values.Roles, - Tenants: selectedTenant.map((tenant) => tenant.value), - }, - }).then(() => { - refetchRoleList() - }) - } - - useEffect(() => { - if (roleListSuccess && cippSAMRoles.Tenants.length > 0) { - var selectedTenants = [] - tenants.map((tenant) => { - if (cippSAMRoles.Tenants.includes(tenant.customerId)) { - selectedTenants.push({ label: tenant.displayName, value: tenant.customerId }) - } - }) - tenantSelectorRef.current.setValue(selectedTenants) - } - }, [cippSAMRoles, roleListSuccess, tenantSuccess, tenantSelectorRef, tenants]) - - return ( - - <> -

    - Add your CIPP-SAM application Service Principal directly to Admin Roles in the tenant. - This is an advanced use case where you need access to additional Graph endpoints or - Exchange Cmdlets otherwise unavailable via Delegated permissions. -

    -

    - This functionality is in - beta and should be treated as such. Roles are added during the Update Permissions process - or a CPV refresh. -

    - - {roleListSuccess && ( - { - return ( - - - -
    - ({ - name: role.Name, - value: role.ObjectId, - }))} - multi={true} - refreshFunction={() => refetchRoleList()} - placeholder="Select admin roles" - /> -
    -
    -
    Selected Tenants
    - handleTenantChange(e)} - /> -
    -
    -
    - - {postResults.isSuccess && ( - {postResults.data.Results} - )} - - - - - Save - - - - -
    - ) - }} - /> - )} - -
    - ) -} - -export default SettingsSAMRoles diff --git a/src/views/email-exchange/administration/AddContact.jsx b/src/views/email-exchange/administration/AddContact.jsx deleted file mode 100644 index 9a75405d2ba1..000000000000 --- a/src/views/email-exchange/administration/AddContact.jsx +++ /dev/null @@ -1,95 +0,0 @@ -import React from 'react' -import { - CCallout, - CButton, - CCol, - CForm, - CRow, - CSpinner, - CCard, - CCardHeader, - CCardTitle, - CCardBody, -} from '@coreui/react' -import { Form } from 'react-final-form' -import { RFFCFormCheck, RFFCFormInput } from 'src/components/forms' -import { CippPage } from 'src/components/layout/CippPage' -import { useLazyGenericPostRequestQuery } from 'src/store/api/app' -import { useSelector } from 'react-redux' - -const AddContact = () => { - const tenantDomain = useSelector((state) => state.app.currentTenant.defaultDomainName) - - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - const onSubmit = (values) => { - const shippedValues = { - tenantID: tenantDomain, - firstName: values.firstName, - lastName: values.lastName, - displayName: values.displayName, - email: values.email, - hidefromGAL: values.hidefromGAL, - } - genericPostRequest({ path: '/api/AddContact', values: shippedValues }) - } - return ( - - - - Add Contact - - - { - return ( - - - - - - - - - - - - - - - - - - - - - - - - - - - - Add Contact - - - - {postResults.isFetching && ( - - - - )} - {postResults.isSuccess && ( - {postResults.data.Results} - )} - - ) - }} - /> - - - - ) -} - -export default AddContact diff --git a/src/views/email-exchange/administration/AddSharedMailbox.jsx b/src/views/email-exchange/administration/AddSharedMailbox.jsx deleted file mode 100644 index ff95dc92de3c..000000000000 --- a/src/views/email-exchange/administration/AddSharedMailbox.jsx +++ /dev/null @@ -1,117 +0,0 @@ -import React from 'react' -import { - CCallout, - CButton, - CCol, - CForm, - CRow, - CSpinner, - CCard, - CCardHeader, - CCardTitle, - CCardBody, -} from '@coreui/react' -import { Form } from 'react-final-form' -import { RFFCFormInput, RFFCFormSelect, RFFCFormTextarea } from 'src/components/forms' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faCircleNotch } from '@fortawesome/free-solid-svg-icons' -import { CippPage } from 'src/components/layout/CippPage' -import { useLazyGenericPostRequestQuery } from 'src/store/api/app' -import { useListDomainsQuery } from 'src/store/api/domains' -import { useSelector } from 'react-redux' - -const AddSharedMailbox = () => { - const tenantDomain = useSelector((state) => state.app.currentTenant.defaultDomainName) - const { - data: domains = [], - isFetching: domainsIsFetching, - error: domainsError, - } = useListDomainsQuery({ tenantDomain }) - - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - const onSubmit = (values) => { - const shippedValues = { - tenantID: tenantDomain, - domain: values.domain, - displayName: values.displayName, - username: values.username, - addedAliases: values.addedAliases, - } - //window.alert(JSON.stringify(shippedValues)) - genericPostRequest({ path: '/api/AddSharedMailbox', values: shippedValues }) - } - return ( - - - - Add Shared Mailbox - - - { - return ( - - - - - - - - - - - - {domainsIsFetching && } - {!domainsIsFetching && ( - ({ - value: domain.id, - label: domain.id, - }))} - /> - )} - {domainsError && Failed to load list of domains} - - - - - - - - - Add Shared Mailbox - {postResults.isFetching && ( - - )} - - - - {postResults.isSuccess && ( - - {postResults.data.Results.map((message, idx) => { - return
  • {message}
  • - })} -
    - )} -
    - ) - }} - /> -
    -
    -
    - ) -} - -export default AddSharedMailbox diff --git a/src/views/email-exchange/administration/AddTenantAllowBlockList.jsx b/src/views/email-exchange/administration/AddTenantAllowBlockList.jsx deleted file mode 100644 index 09c48987a730..000000000000 --- a/src/views/email-exchange/administration/AddTenantAllowBlockList.jsx +++ /dev/null @@ -1,126 +0,0 @@ -import React from 'react' -import { - CCallout, - CButton, - CCol, - CForm, - CRow, - CSpinner, - CCard, - CCardHeader, - CCardTitle, - CCardBody, -} from '@coreui/react' -import { Form } from 'react-final-form' -import { RFFCFormSelect, RFFCFormInput, RFFCFormCheck } from 'src/components/forms' -import { CippPage } from 'src/components/layout/CippPage' -import { useLazyGenericPostRequestQuery } from 'src/store/api/app' -import { useSelector } from 'react-redux' - -const AddTenantAllowBlockList = () => { - const tenantDomain = useSelector((state) => state.app.currentTenant.defaultDomainName) - - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - const onSubmit = (values) => { - const shippedValues = { - tenantID: tenantDomain, - entries: values.entries, - listType: values.listType, - notes: values.notes, - listMethod: values.listMethod, - NoExpiration: values.NoExpiration, - } - genericPostRequest({ path: '/api/AddTenantAllowBlockList', values: shippedValues }) - } - return ( - - - - Add Tenant Allow/Block List - - - { - return ( - - - - - - - - - - - - - - - - - - - - - - - - - - - - Add Entry - - - - {postResults.isFetching && ( - - - - )} - {postResults.isSuccess && ( - {postResults.data.Results} - )} - - ) - }} - /> - - - - ) -} - -export default AddTenantAllowBlockList diff --git a/src/views/email-exchange/administration/ContactsList.jsx b/src/views/email-exchange/administration/ContactsList.jsx deleted file mode 100644 index f25a8a56dc0a..000000000000 --- a/src/views/email-exchange/administration/ContactsList.jsx +++ /dev/null @@ -1,130 +0,0 @@ -import React, { useState } from 'react' -import { useSelector } from 'react-redux' -import { CButton } from '@coreui/react' -import { CippPageList } from 'src/components/layout' -import { CellTip, cellBooleanFormatter } from 'src/components/tables' -import { Link, useSearchParams } from 'react-router-dom' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faEdit, faEllipsisV } from '@fortawesome/free-solid-svg-icons' -import { TitleButton } from 'src/components/buttons' -import { CippActionsOffcanvas } from 'src/components/utilities' - -const Actions = (row, rowIndex, formatExtraData) => { - const tenant = useSelector((state) => state.app.currentTenant) - const [ocVisible, setOCVisible] = useState(false) - const editLink = row?.tenant - ? `/email/administration/edit-contact?ContactID=${row.id}&tenantDomain=${row.Tenant}` - : `/email/administration/edit-contact?ContactID=${row.id}&tenantDomain=${tenant.defaultDomainName}` - return ( - <> - - - - - - setOCVisible(true)}> - - - setOCVisible(false)} - /> - - ) -} -//TODO: Add CellBoolean -const columns = [ - { - selector: (row) => row['displayName'], - name: 'Display Name', - sortable: true, - cell: (row) => CellTip(row['displayName']), - exportSelector: 'displayName', - }, - { - selector: (row) => row['mail'], - name: 'E-Mail Address', - sortable: true, - cell: (row) => CellTip(row['mail']), - exportSelector: 'mail', - }, - { - selector: (row) => row['companyName'], - name: 'Company', - sortable: true, - cell: (row) => CellTip(row['companyName']), - exportSelector: 'company', - }, - { - selector: (row) => row['id'], - name: 'id', - omit: true, - exportSelector: 'id', - }, - { - selector: (row) => row['onPremisesSyncEnabled'], - name: 'On Premises Sync', - sortable: true, - exportSelector: 'onPremisesSyncEnabled', - cell: cellBooleanFormatter({ colourless: true }), - }, - { - name: 'Actions', - cell: Actions, - maxWidth: '80px', - }, -] - -const ContactList = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - return ( - } - title="Contacts" - datatable={{ - keyField: 'id', - reportName: `${tenant?.defaultDomainName}-Contacts-List`, - path: '/api/ListContacts', - columns, - tableProps: { - selectableRows: true, - actionsList: [ - { - label: 'Remove selected Contacts', - color: 'danger', - modal: true, - modalUrl: `/api/RemoveContact?TenantFilter=${tenant.defaultDomainName}&GUID=!id`, - }, - ], - }, - params: { TenantFilter: tenant?.defaultDomainName }, - }} - /> - ) -} - -export default ContactList diff --git a/src/views/email-exchange/administration/DeletedMailboxes.jsx b/src/views/email-exchange/administration/DeletedMailboxes.jsx deleted file mode 100644 index 0c115973a2b0..000000000000 --- a/src/views/email-exchange/administration/DeletedMailboxes.jsx +++ /dev/null @@ -1,159 +0,0 @@ -import React, { useState } from 'react' -import { CButton } from '@coreui/react' -import { useSelector } from 'react-redux' -import { faEllipsisV } from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { cellBooleanFormatter } from 'src/components/tables' -import { CippPageList } from 'src/components/layout' -import { TitleButton } from 'src/components/buttons' -import { CippActionsOffcanvas } from 'src/components/utilities' - -const Offcanvas = (row, rowIndex, formatExtraData) => { - const tenant = useSelector((state) => state.app.currentTenant) - const [ocVisible, setOCVisible] = useState(false) - - const now = new Date() // Get the current date and time - const requestName = `${row.UPN}-${String(now.getDate()).padStart(2, '0')}-${String( - now.getMonth() + 1, - ).padStart(2, '0')}-${now.getFullYear()}-${String(now.getHours()).padStart(2, '0')}${String( - now.getMinutes(), - ).padStart(2, '0')}` - - return ( - <> - setOCVisible(true)}> - - - setOCVisible(false)} - /> - - ) -} - -const columns = [ - { - name: 'Display Name', - selector: (row) => row['displayName'], - sortable: true, - exportSelector: 'displayName', - }, - { - name: 'User Principal Name', - selector: (row) => row['UPN'], - sortable: true, - exportSelector: 'UPN', - minWidth: '350px', - }, - { - name: 'Primary SMTP Address', - selector: (row) => row['primarySmtpAddress'], - sortable: true, - exportSelector: 'primarySmtpAddress', - minWidth: '350px', - }, - { - name: 'Date Deleted', - selector: (row) => row['WhenSoftDeleted'], - sortable: true, - exportSelector: 'WhenSoftDeleted', - }, - { - name: 'Recipient Type', - selector: (row) => row['recipientType'], - omit: true, - exportSelector: 'recipientType', - }, - { - name: 'Recipient Type Details', - selector: (row) => row['recipientTypeDetails'], - omit: true, - exportSelector: 'recipientTypeDetails', - }, - { - name: 'Additional Email Addresses', - selector: (row) => row['AdditionalEmailAddresses'], - omit: true, - exportSelector: 'AdditionalEmailAddresses', - }, - { - name: 'Exchange Guid', - selector: (row) => row['ExchangeGuid'], - sortable: true, - exportSelector: 'ExchangeGuid', - minWidth: '350px', - }, - { - name: 'Archive Guid', - selector: (row) => row['ArchiveGuid'], - sortable: true, - exportSelector: 'ArchiveGuid', - }, - { - name: 'id', - selector: (row) => row['Id'], - omit: true, - exportSelector: 'Id', - }, - { - name: 'Actions', - cell: Offcanvas, - }, -] - -const DeletedMailboxes = () => { - const tenant = useSelector((state) => state.app.currentTenant) - const titleButton = ( - - ) - return ( - - ) -} - -export default DeletedMailboxes diff --git a/src/views/email-exchange/administration/EditCalendarPermissions.jsx b/src/views/email-exchange/administration/EditCalendarPermissions.jsx deleted file mode 100644 index 589b5f3c248c..000000000000 --- a/src/views/email-exchange/administration/EditCalendarPermissions.jsx +++ /dev/null @@ -1,236 +0,0 @@ -import React, { useEffect, useState } from 'react' -import { - CButton, - CCallout, - CCard, - CCardBody, - CCardHeader, - CCardTitle, - CCol, - CForm, - CRow, - CSpinner, -} from '@coreui/react' -import useQuery from 'src/hooks/useQuery' -import { useDispatch } from 'react-redux' -import { Form } from 'react-final-form' -import { RFFSelectSearch } from 'src/components/forms' -import { ModalService } from 'src/components/utilities' -import { useLazyGenericGetRequestQuery } from 'src/store/api/app' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faCircleNotch } from '@fortawesome/free-solid-svg-icons' -import { useListCalendarPermissionsQuery, useListMailboxesQuery } from 'src/store/api/mailbox' -import { CippTable } from 'src/components/tables' - -const columns = [ - { - name: 'User', - selector: (row) => row['User'], - sortable: true, - wrap: true, - cell: (row) => row['User'], - exportSelector: 'User', - maxWidth: '150px', - }, - { - name: 'AccessRights', - selector: (row) => row['AccessRights'], - sortable: true, - wrap: true, - cell: (row) => row['AccessRights'], - exportSelector: 'AccessRights', - maxWidth: '150px', - }, - { - name: 'Identity', - selector: (row) => row['Identity'], - sortable: true, - wrap: true, - cell: (row) => row['Identity'], - exportSelector: 'Identity', - maxWidth: '150px', - }, -] - -const EditCalendarPermission = () => { - const dispatch = useDispatch() - let query = useQuery() - const userId = query.get('userId') - const tenantDomain = query.get('tenantDomain') - - const [queryError, setQueryError] = useState(false) - - const { - data: user = {}, - isFetching: userIsFetching, - error: userError, - } = useListCalendarPermissionsQuery({ tenantDomain, userId }) - - const { - data: users = [], - isFetching: usersIsFetching, - error: usersError, - } = useListMailboxesQuery({ tenantDomain }) - - useEffect(() => { - if (!userId || !tenantDomain) { - ModalService.open({ - body: 'Error invalid request, could not load requested user.', - title: 'Invalid Request', - }) - setQueryError(true) - } else { - setQueryError(false) - } - }, [userId, tenantDomain, dispatch]) - const [genericPostRequest, postResults] = useLazyGenericGetRequestQuery() - const onSubmit = (values) => { - const shippedValues = { - FolderName: user[0].FolderName, - userid: userId, - tenantFilter: tenantDomain, - Permissions: values.Permissions ? values.Permissions.value : '', - UserToGetPermissions: values.UserToGetPermissions ? values.UserToGetPermissions.value : '', - RemoveAccess: values.RemoveAccess ? values.RemoveAccess.value : '', - } - //window.alert(JSON.stringify(shippedValues)) - genericPostRequest({ path: '/api/ExecEditCalendarPermissions', params: shippedValues }) - } - const initialState = {} - - // this is dumb - const formDisabled = queryError === true - - const UsersMapped = users?.map((user) => ({ - value: `${user.primarySmtpAddress}`, - name: `${user.displayName} - (${user.primarySmtpAddress})`, - })) - UsersMapped.unshift({ value: 'Default', name: 'Default' }) - - return ( - - {!queryError && ( - <> - {postResults.isSuccess && ( - {postResults.data?.Results} - )} - {queryError && ( - - - - {/* @todo add more descriptive help message here */} - Failed to load user - - - - )} - - - - - Account Details - - - {userIsFetching && } - {userError && Error loading user} - {!userIsFetching && ( - { - return ( - - - - - {usersError && Failed to load list of users} - - - - {usersError && Failed to load list of users} - - - - {usersError && Failed to load list of users} - - - - - - Edit Permissions - {postResults.isFetching && ( - - )} - - - - {postResults.isSuccess && ( - {postResults.data?.Results} - )} - - ) - }} - /> - )} - - - - - - - Current Permissions - - - {userIsFetching && } - {!userIsFetching && !userError && ( - <> - {user.length > 0 && ( - - )} - - )} - - - - - - )} - - ) -} - -export default EditCalendarPermission diff --git a/src/views/email-exchange/administration/EditContact.jsx b/src/views/email-exchange/administration/EditContact.jsx deleted file mode 100644 index f1a0c6eeb77c..000000000000 --- a/src/views/email-exchange/administration/EditContact.jsx +++ /dev/null @@ -1,307 +0,0 @@ -import React, { useEffect, useState } from 'react' -import { CButton, CCallout, CCol, CForm, CRow, CSpinner } from '@coreui/react' -import countryList from 'src/data/countryList' -import useQuery from 'src/hooks/useQuery' -import { useDispatch, useSelector } from 'react-redux' -import { Form } from 'react-final-form' -import { RFFCFormInput, RFFSelectSearch } from 'src/components/forms' -import { useListContactsQuery } from 'src/store/api/users' -import { CippCodeBlock, ModalService } from 'src/components/utilities' -import { useLazyGenericPostRequestQuery } from 'src/store/api/app' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faCircleNotch, faEdit, faEye } from '@fortawesome/free-solid-svg-icons' -import { CippContentCard, CippPage } from 'src/components/layout' -import { required } from 'src/validators' - -const EditContact = () => { - const dispatch = useDispatch() - let query = useQuery() - const ContactID = query.get('ContactID') - const tenantDomain = query.get('tenantDomain') - - const [queryError, setQueryError] = useState(false) - - const { - data: Contact = [], - isFetching: ContactIsFetching, - error: ContactError, - } = useListContactsQuery({ tenantDomain, ContactID }) - - useEffect(() => { - if (!ContactID || !tenantDomain) { - ModalService.open({ - body: 'Error invalid request, could not load requested contact.', - title: 'Invalid Request', - }) - setQueryError(true) - } else { - setQueryError(false) - } - }, [ContactID, tenantDomain, dispatch]) - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - const onSubmit = (values) => { - if (values.defaultAttributes) { - //map default attributes to the addedAttributes array. If addedAttributes is not present, create it. - values.addedAttributes = values.addedAttributes ? values.addedAttributes : [] - Object.keys(values.defaultAttributes).forEach((key) => { - values.addedAttributes.push({ Key: key, Value: values.defaultAttributes[key].Value }) - }) - } - const countryValue = values.country ? values.country.value : '' - - const shippedValues = { - BusinessPhone: values.businessPhones, - City: values.city, - CompanyName: values.companyName, - Country: countryValue, - mail: values.mail, - DisplayName: values.displayName, - firstName: values.givenName, - Jobtitle: values.jobTitle, - LastName: values.surname, - MobilePhone: values.mobilePhone, - PostalCode: values.postalCode, - ContactID: ContactID, - streetAddress: values.streetAddress, - tenantID: tenantDomain, - } - // window.alert(JSON.stringify(shippedValues)) - genericPostRequest({ path: '/api/EditContact', values: shippedValues }) - } - const [addedAttributes, setAddedAttribute] = React.useState(0) - const currentSettings = useSelector((state) => state.app) - const country = useSelector((state) => state.app.usageLocation) - - // Extract the first contact from the array - const contactData = Contact.length > 0 ? Contact[0] : {} - - // Extract address and phone details - const address = - contactData.addresses && contactData.addresses.length > 0 ? contactData.addresses[0] : {} - const mobilePhone = contactData.phones - ? contactData.phones.find((phone) => phone.type === 'mobile') - : {} - const businessPhones = contactData.phones - ? contactData.phones - .filter((phone) => phone.type === 'business') - .map((phone) => phone.number) - .join(', ') - : '' - - const initialState = { - ...contactData, - streetAddress: address.street || '', - postalCode: address.postalCode || '', - city: address.city || '', - country: { - value: address.countryOrRegion ? address.countryOrRegion : country?.value, - label: address.countryOrRegion ? address.countryOrRegion : country?.label, - }, - mobilePhone: mobilePhone ? mobilePhone.number : '', - businessPhones: businessPhones || '', - } - - const formDisabled = - queryError === true || !!ContactError || !Contact || Object.keys(contactData).length === 0 - const RawUser = JSON.stringify(contactData, null, 2) - return ( - - {!queryError && ( - <> - {postResults.isSuccess && ( - {postResults.data?.Results} - )} - {queryError && ( - - - - {/* @todo add more descriptive help message here */} - Failed to load contact - - - - )} - - - - {ContactIsFetching && } - {ContactError && Error loading user} - {!ContactIsFetching && ( - { - return ( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ({ - value: Code, - name: Name, - }))} - name="country" - placeholder="Type to search..." - label="Country" - validate={required} - /> - - - - - - - - - - - - - - - - - - - Edit Contact - {postResults.isFetching && ( - - )} - - - - {postResults.isSuccess && ( - - {Array.isArray(postResults.data.Results) ? ( - postResults.data.Results.map((message, idx) => ( -
  • {message}
  • - )) - ) : ( - {postResults.data.Results} - )} -
    - )} -
    - ) - }} - /> - )} -
    -
    - - - {ContactIsFetching && } - {ContactError && Error loading user} - {!ContactIsFetching && ( - <> - This is the (raw) information for this contact. - - - )} - - -
    - - )} -
    - ) -} - -export default EditContact diff --git a/src/views/email-exchange/administration/EditMailboxPermissions.jsx b/src/views/email-exchange/administration/EditMailboxPermissions.jsx deleted file mode 100644 index 3f16a1e389d9..000000000000 --- a/src/views/email-exchange/administration/EditMailboxPermissions.jsx +++ /dev/null @@ -1,1017 +0,0 @@ -import React, { useEffect, useRef, useState } from 'react' -import { - CButton, - CCallout, - CCard, - CCardBody, - CCardHeader, - CCardTitle, - CCol, - CNav, - CNavItem, - CTabContent, - CTabPane, - CForm, - CRow, - CSpinner, -} from '@coreui/react' -import useQuery from 'src/hooks/useQuery' -import { useDispatch } from 'react-redux' -import { Form, Field } from 'react-final-form' -import { RFFSelectSearch, RFFCFormCheck, RFFCFormInput, RFFCFormSwitch } from 'src/components/forms' -import { CippLazy, ModalService } from 'src/components/utilities' -import { - useLazyGenericPostRequestQuery, - useLazyGenericGetRequestQuery, - useGenericGetRequestQuery, -} from 'src/store/api/app' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faCircleNotch } from '@fortawesome/free-solid-svg-icons' -import { useListMailboxDetailsQuery, useListMailboxPermissionsQuery } from 'src/store/api/mailbox' -import { CellBoolean, CippDatatable } from 'src/components/tables' -import DatePicker from 'react-datepicker' -import 'react-datepicker/dist/react-datepicker.css' -import PropTypes from 'prop-types' - -const formatter = (cell, warning = false, reverse = false, colourless = false) => - CellBoolean({ cell, warning, reverse, colourless }) - -const MailboxSettings = () => { - const dispatch = useDispatch() - let query = useQuery() - const userId = query.get('userId') - const tenantDomain = query.get('tenantDomain') - const [active, setActive] = useState(1) - const columnsCal = [ - { - name: 'User', - selector: (row) => row['User'], - sortable: true, - wrap: true, - cell: (row) => row['User'], - exportSelector: 'User', - maxWidth: '150px', - }, - { - name: 'AccessRights', - selector: (row) => row['AccessRights'], - sortable: true, - wrap: true, - cell: (row) => row['AccessRights'], - exportSelector: 'AccessRights', - maxWidth: '150px', - }, - { - name: 'Identity', - selector: (row) => row['Identity'], - sortable: true, - wrap: true, - cell: (row) => row['Identity'], - exportSelector: 'Identity', - maxWidth: '150px', - }, - ] - const columns = [ - { - name: 'User', - selector: (row) => row.User, - sortable: true, - wrap: true, - exportSelector: 'User', - }, - { - name: 'Permissions', - selector: (row) => row['Permissions'], - sortable: true, - wrap: true, - exportSelector: 'Permissions', - }, - ] - - return ( - - - - - - setActive(1)} href="#"> - Mailbox Permissions - - setActive(2)} href="#"> - Calendar Permissions - - setActive(3)} href="#"> - Mailbox Forwarding - - setActive(4)} href="#"> - Out Of Office - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Account Information - {userId} - - - {active === 1 && ( - - )} - {active === 2 && ( - - )} - {active === 3 && ( - <> - - - )} - {active === 4 && ( - <> - - - )} - - - - - ) -} - -export default MailboxSettings - -const MailboxPermissions = () => { - const dispatch = useDispatch() - let query = useQuery() - const userId = query.get('userId') - const tenantDomain = query.get('tenantDomain') - - const [queryError, setQueryError] = useState(false) - - //const [EditMailboxPermission, { error: EditMailboxPermissionError, isFetching: EditMailboxPermissionIsFetching }] = useEditMailboxPermissionMutation() - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - - const { - data: users = [], - isFetching: usersIsFetching, - error: usersError, - } = useGenericGetRequestQuery({ - path: '/api/ListGraphRequest', - params: { - Endpoint: 'users', - TenantFilter: tenantDomain, - $filter: 'assignedLicenses/$count ne 0 and accountEnabled eq true', - $count: true, - }, - }) - - useEffect(() => { - if (!userId || !tenantDomain) { - ModalService.open({ - body: 'Error invalid request, could not load requested user.', - title: 'Invalid Request', - }) - setQueryError(true) - } else { - setQueryError(false) - } - }, [userId, tenantDomain, dispatch, postResults]) - const onSubmit = (values) => { - const shippedValues = { - userid: userId, - tenantFilter: tenantDomain, - AddFullAccessNoAutoMap: values.AddFullAccessNoAutoMap ? values.AddFullAccessNoAutoMap : null, - AddFullAccess: values.AddFullAccess ? values.AddFullAccess : null, - RemoveFullAccess: values.RemoveFullAccess ? values.RemoveFullAccess : null, - AddSendAs: values.AddSendAs ? values.AddSendAs : null, - RemoveSendAs: values.RemoveSendAs ? values.RemoveSendAs : null, - AddSendOnBehalf: values.AddSendOnBehalf ? values.AddSendOnBehalf : null, - RemoveSendOnBehalf: values.RemoveSendOnBehalf ? values.RemoveSendOnBehalf : null, - } - //window.alert(JSON.stringify(shippedValues)) - genericPostRequest({ path: '/api/ExecEditMailboxPermissions', values: shippedValues }) - } - - const formDisabled = queryError === true - - return ( - <> - {!queryError && ( - <> - {queryError && ( - - - - {/* @todo add more descriptive help message here */} - Failed to load user - - - - )} - - {usersIsFetching && } - {!usersIsFetching && ( - { - return ( - - - - ({ - value: user.mail, - name: `${user.displayName} - ${user.mail} `, - }))} - placeholder={!usersIsFetching ? 'Select user' : 'Loading...'} - name="RemoveFullAccess" - /> - {usersError && Failed to load list of users} - - - ({ - value: user.mail, - name: `${user.displayName} - ${user.mail} `, - }))} - placeholder={!usersIsFetching ? 'Select user' : 'Loading...'} - name="AddFullAccess" - /> - {usersError && Failed to load list of users} - - - ({ - value: user.mail, - name: `${user.displayName} - ${user.mail} `, - }))} - placeholder={!usersIsFetching ? 'Select user' : 'Loading...'} - name="AddFullAccessNoAutoMap" - /> - {usersError && Failed to load list of users} - - - ({ - value: user.mail, - name: `${user.displayName} - ${user.mail} `, - }))} - placeholder={!usersIsFetching ? 'Select user' : 'Loading...'} - name="AddSendAs" - /> - {usersError && Failed to load list of users} - - - ({ - value: user.mail, - name: `${user.displayName} - ${user.mail} `, - }))} - placeholder={!usersIsFetching ? 'Select user' : 'Loading...'} - name="RemoveSendAs" - /> - {usersError && Failed to load list of users} - - - ({ - value: user.mail, - name: `${user.displayName} - ${user.mail} `, - }))} - placeholder={!usersIsFetching ? 'Select user' : 'Loading...'} - name="AddSendOnBehalf" - /> - {usersError && Failed to load list of users} - - - ({ - value: user.mail, - name: `${user.displayName} - ${user.mail} `, - }))} - placeholder={!usersIsFetching ? 'Select user' : 'Loading...'} - name="RemoveSendOnBehalf" - /> - {usersError && Failed to load list of users} - - - - - - Edit User Permissions - {postResults.isFetching && ( - - )} - - - - {postResults.isSuccess && ( - - {postResults.data.Results.map((result, idx) => ( -
  • {result}
  • - ))} -
    - )} -
    - ) - }} - /> - )} -
    - - )} - - ) -} - -const CalendarPermissions = () => { - const dispatch = useDispatch() - let query = useQuery() - const userId = query.get('userId') - const tenantDomain = query.get('tenantDomain') - - const [queryError, setQueryError] = useState(false) - - const { - data: user = [], - isFetching: userIsFetching, - error: userError, - } = useGenericGetRequestQuery({ - path: '/api/ListCalendarPermissions', - params: { TenantFilter: tenantDomain, UserId: userId }, - }) - - const { - data: users = [], - isFetching: usersIsFetching, - error: usersError, - } = useGenericGetRequestQuery({ - path: '/api/ListMailboxes', - params: { TenantFilter: tenantDomain, SkipLicense: true }, - }) - - useEffect(() => { - if (!userId || !tenantDomain) { - ModalService.open({ - body: 'Error invalid request, could not load requested user.', - title: 'Invalid Request', - }) - setQueryError(true) - } else { - setQueryError(false) - } - }, [userId, tenantDomain, dispatch]) - const [genericPostRequest, postResults] = useLazyGenericGetRequestQuery() - const onSubmit = (values) => { - const shippedValues = { - FolderName: user[0].FolderName, - userid: userId, - tenantFilter: tenantDomain, - Permissions: values.Permissions ? values.Permissions.value : '', - UserToGetPermissions: values.UserToGetPermissions ? values.UserToGetPermissions.value : '', - RemoveAccess: values.RemoveAccess ? values.RemoveAccess.value : '', - } - //window.alert(JSON.stringify(shippedValues)) - genericPostRequest({ path: '/api/ExecEditCalendarPermissions', params: shippedValues }) - } - const initialState = {} - - // this is dumb - const formDisabled = queryError === true - - const UsersMapped = users?.map((user) => ({ - value: `${user.primarySmtpAddress}`, - name: `${user.displayName} - (${user.primarySmtpAddress})`, - })) - UsersMapped.unshift({ value: 'Default', name: 'Default' }) - - return ( - <> - {queryError && ( - - - - {/* @todo add more descriptive help message here */} - Failed to load user - - - - )} - {!queryError && ( - <> - - - {userIsFetching && } - {userError && Error loading user} - {!userIsFetching && ( - { - return ( - - - - - {usersError && Failed to load list of users} - - - - {usersError && Failed to load list of users} - - - - {usersError && Failed to load list of users} - - - - - - Edit Permissions - {postResults.isFetching && ( - - )} - - - - {postResults.isSuccess && ( - {postResults.data?.Results} - )} - - ) - }} - /> - )} - - - - )} - - ) -} - -const MailboxForwarding = () => { - const dispatch = useDispatch() - let query = useQuery() - const userId = query.get('userId') - const tenantDomain = query.get('tenantDomain') - - const [queryError, setQueryError] = useState(false) - - //const [EditMailboxPermission, { error: EditMailboxPermissionError, isFetching: EditMailboxPermissionIsFetching }] = useEditMailboxPermissionMutation() - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - - const { - data: user = {}, - isFetching: userIsFetching, - error: userError, - } = useListMailboxPermissionsQuery({ tenantDomain, userId }) - - const { - data: users = [], - isFetching: usersIsFetching, - error: usersError, - } = useGenericGetRequestQuery({ - path: '/api/ListGraphRequest', - params: { - Endpoint: 'users', - TenantFilter: tenantDomain, - $filter: "userType eq 'Member' and mail ge ' '", // filter out guests and users with no mailbox. #HACK "mail ne 'null'" does not work so this horrible hack is required - }, - }) - useEffect(() => { - if (postResults.isSuccess) { - // @TODO do something here? - } - if (!userId || !tenantDomain) { - ModalService.open({ - body: 'Error invalid request, could not load requested user.', - title: 'Invalid Request', - }) - setQueryError(true) - } else { - setQueryError(false) - } - }, [userId, tenantDomain, dispatch, postResults]) - const onSubmit = (values) => { - const shippedValues = { - userid: userId, - tenantFilter: tenantDomain, - ForwardInternal: values.ForwardInternal ? values.ForwardInternal : '', - ForwardExternal: values.ForwardExternal ? values.ForwardExternal : '', - KeepCopy: values.KeepCopy ? true : false, - disableForwarding: values.forwardOption === 'disabled', - } - //window.alert(JSON.stringify(shippedValues)) - genericPostRequest({ path: '/api/ExecEmailForward', values: shippedValues }) - } - const initialState = { - ...user, - } - - const formDisabled = queryError === true - - return ( - <> - {!queryError && ( - <> - {queryError && ( - - - - {/* @todo add more descriptive help message here */} - Failed to load user - - - - )} - - - {usersIsFetching && } - {userError && Error loading user} - {!usersIsFetching && ( - { - return ( - - - -
    - -
    - {values.forwardOption === 'internalAddress' && ( - ({ - value: user.mail, - name: `${user.displayName} - ${user.mail} `, - }))} - placeholder={!usersIsFetching ? 'Select user' : 'Loading...'} - name="ForwardInternal" - /> - )} - {usersError && Failed to load list of users} -
    -
    - - -
    - -
    - {values.forwardOption === 'ExternalAddress' && ( - - )} -
    -
    - - -
    - -
    -
    -
    - - - - - Edit Forwarding - {postResults.isFetching && ( - - )} - - - - {postResults.isSuccess && ( - - {postResults.data.Results.map((result, idx) => ( -
  • {result}
  • - ))} -
    - )} -
    - ) - }} - /> - )} -
    -
    - - )} - - ) -} - -const ForwardingSettings = () => { - const query = useQuery() - const userId = query.get('userId') - const tenantDomain = query.get('tenantDomain') - const { data: details, isFetching, error } = useListMailboxDetailsQuery({ userId, tenantDomain }) - const content = [ - { - heading: 'Forward and Deliver', - body: formatter(details?.ForwardAndDeliver, false, false, true), - }, - { - heading: 'Forwarding Address', - body: details?.ForwardingAddress ? details?.ForwardingAddress : 'N/A', - }, - ] - - return ( - - {isFetching && } - {!isFetching && ( - - {content.map((item, index) => ( -
    -
    {item.heading}
    -

    {item.body}

    -
    - ))} -
    - )} -
    - ) -} - -const OutOfOffice = () => { - const dispatch = useDispatch() - let query = useQuery() - const userId = query.get('userId') - const tenantDomain = query.get('tenantDomain') - const [queryError, setQueryError] = useState(false) - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - const [startDate, setStartDate] = useState(new Date()) - const [endDate, setEndDate] = useState(new Date()) - const { - data: user = {}, - isFetching: userIsFetching, - error: userError, - } = useListMailboxPermissionsQuery({ tenantDomain, userId }) - - const { - data: users = [], - isFetching: usersIsFetching, - error: usersError, - } = useGenericGetRequestQuery({ - path: '/api/ListGraphRequest', - params: { - Endpoint: 'users', - TenantFilter: tenantDomain, - $filter: 'assignedLicenses/$count ne 0 and accountEnabled eq true', - $count: true, - }, - }) - useEffect(() => { - if (postResults.isSuccess) { - // @TODO do something here? - } - if (!userId || !tenantDomain) { - ModalService.open({ - body: 'Error invalid request, could not load requested user.', - title: 'Invalid Request', - }) - setQueryError(true) - } else { - setQueryError(false) - } - }, [userId, tenantDomain, dispatch, postResults]) - const onSubmit = (values) => { - const shippedValues = { - user: userId, - tenantFilter: tenantDomain, - AutoReplyState: values.AutoReplyState ? 'Scheduled' : 'Disabled', - StartTime: startDate.toUTCString(), - EndTime: endDate.toUTCString(), - InternalMessage: values.InternalMessage ? values.InternalMessage : '', - ExternalMessage: values.ExternalMessage ? values.ExternalMessage : '', - } - //window.alert(JSON.stringify(shippedValues)) - genericPostRequest({ path: '/api/ExecSetOoO', values: shippedValues }) - } - const initialState = { - ...user, - } - - const formDisabled = queryError === true - - return ( - <> - {!queryError && ( - <> - {queryError && ( - - - - {/* @todo add more descriptive help message here */} - Failed to load user - - - - )} - - - {usersIsFetching && } - {userError && Error loading user} - {!usersIsFetching && ( - { - return ( - - - - - - - - - - setStartDate(date)} - showTimeSelect - /> - - - - - - setEndDate(date)} - showTimeSelect - /> - - - - - - - - - - - - - - - - Edit Out of Office - {postResults.isFetching && ( - - )} - - - - {postResults.isSuccess && ( - {postResults.data?.Results} - )} - - ) - }} - /> - )} - - - - )} - - ) -} - -const OutOfOfficeSettings = () => { - const query = useQuery() - const userId = query.get('userId') - const tenantDomain = query.get('tenantDomain') - const tenantFilter = tenantDomain - const { - data: details, - isFetching, - error, - } = useGenericGetRequestQuery({ - path: '/api/ListOoO', - params: { userId, tenantFilter }, - }) - const combinedRegex = /(<([^>]+)>)|| /gi - const content = [ - { - heading: 'Auto Reply State', - body: formatter(details?.AutoReplyState, false, false, true), - }, - { - heading: 'Start Date/Time', - body: details?.StartTime ? details?.StartTime : 'N/A', - }, - { - heading: 'End Date/Time', - body: details?.EndTime ? details?.EndTime : 'N/A', - }, - { - heading: 'Internal Message', - body: details?.InternalMessage ? details?.InternalMessage.replace(combinedRegex, '') : 'N/A', - }, - { - heading: 'External Message', - body: details?.ExternalMessage ? details?.ExternalMessage.replace(combinedRegex, '') : 'N/A', - }, - ] - return ( - - {isFetching && ( - - Loading - - )} - {!isFetching && ( - - {content.map((item, index) => ( -
    -
    {item.heading}
    -

    {item.body}

    -
    - ))} -
    - )} - {error && Could not connect to API: {error.message}} -
    - ) -} diff --git a/src/views/email-exchange/administration/ListTenantAllowBlockList.jsx b/src/views/email-exchange/administration/ListTenantAllowBlockList.jsx deleted file mode 100644 index e3a44ab7e7cc..000000000000 --- a/src/views/email-exchange/administration/ListTenantAllowBlockList.jsx +++ /dev/null @@ -1,125 +0,0 @@ -import React, { useState } from 'react' -import { useSelector } from 'react-redux' -import { CButton } from '@coreui/react' -import { CippPageList } from 'src/components/layout' -import { CellTip, cellBooleanFormatter } from 'src/components/tables' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faEdit, faEllipsisV } from '@fortawesome/free-solid-svg-icons' -import { TitleButton } from 'src/components/buttons' -import { CippActionsOffcanvas } from 'src/components/utilities' - -const Actions = (row, rowIndex, formatExtraData) => { - const tenant = useSelector((state) => state.app.currentTenant) - const [ocVisible, setOCVisible] = useState(false) - return ( - <> - setOCVisible(true)}> - - - setOCVisible(false)} - /> - - ) -} - -const columns = [ - { - name: 'Value', - selector: (row) => row['Value'], - sortable: true, - cell: (row) => CellTip(row['Value']), - exportSelector: 'Value', - }, - { - name: 'ListType', - selector: (row) => row['ListType'], - sortable: true, - cell: (row) => CellTip(row['ListType']), - exportSelector: 'ListType', - maxWidth: '80px', - }, - { - name: 'Action', - selector: (row) => row['Action'], - sortable: true, - cell: (row) => CellTip(row['Action']), - exportSelector: 'Action', - maxWidth: '80px', - }, - { - name: 'Notes', - selector: (row) => row['Notes'], - sortable: true, - cell: (row) => CellTip(row['Notes']), - exportSelector: 'Notes', - }, - { - name: 'LastModifiedDateTime', - selector: (row) => row['LastModifiedDateTime'], - sortable: true, - cell: (row) => CellTip(row['LastModifiedDateTime']), - exportSelector: 'LastModifiedDateTime', - }, - { - name: 'ExpirationDate', - selector: (row) => row['ExpirationDate'], - sortable: true, - cell: (row) => CellTip(row['ExpirationDate']), - exportSelector: 'ExpirationDate', - }, - /*{ - name: 'Actions', - cell: Actions, - maxWidth: '80px', - },*/ -] - -const AllowBlockList = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - return ( - - } - title="Tenant Allow/Block Lists" - datatable={{ - keyField: 'id', - reportName: `${tenant?.defaultDomainName}-TenantAllowBlockList`, - path: '/api/ListTenantAllowBlockList', - columns, - params: { TenantFilter: tenant?.defaultDomainName }, - }} - /> - ) -} - -export default AllowBlockList diff --git a/src/views/email-exchange/administration/MailboxRuleList.jsx b/src/views/email-exchange/administration/MailboxRuleList.jsx deleted file mode 100644 index 34f3798900d8..000000000000 --- a/src/views/email-exchange/administration/MailboxRuleList.jsx +++ /dev/null @@ -1,82 +0,0 @@ -import React from 'react' -import { useSelector } from 'react-redux' -import { CippPageList } from 'src/components/layout' -import { CellTip } from 'src/components/tables' -import { cellGenericFormatter } from 'src/components/tables/CellGenericFormat' - -const MailboxRuleList = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - const columns = [ - { - selector: (row) => row?.Tenant, - name: 'Tenant', - sortable: true, - exportSelector: 'Tenant', - maxWidth: '150px', - cell: cellGenericFormatter(), - }, - { - selector: (row) => row?.UserPrincipalName, - name: 'User Principal Name', - sortable: true, - exportSelector: 'UserPrincipalName', - maxWidth: '200px', - cell: cellGenericFormatter(), - }, - { - selector: (row) => row?.Enabled, - name: 'Enabled', - sortable: true, - cell: cellGenericFormatter(), - exportSelector: 'Enabled', - maxWidth: '50px', - }, - { - selector: (row) => row?.Name, - name: 'Display Name', - sortable: true, - cell: cellGenericFormatter(), - maxWidth: '200px', - exportSelector: 'Name', - }, - { - selector: (row) => row?.Description, - name: 'Description', - sortable: true, - cell: cellGenericFormatter(), - exportSelector: 'Description', - }, - { - selector: (row) => row?.MailboxOwnerId, - name: 'Mailbox', - sortable: true, - exportSelector: 'MailboxOwnerId', - maxWidth: '150px', - cell: cellGenericFormatter(), - }, - { - selector: (row) => row?.ForwardTo, - name: 'Forwards To', - sortable: true, - exportSelector: 'ForwardTo', - cell: cellGenericFormatter(), - }, - ] - - return ( - - ) -} - -export default MailboxRuleList diff --git a/src/views/email-exchange/administration/MailboxesList.jsx b/src/views/email-exchange/administration/MailboxesList.jsx deleted file mode 100644 index ee624c2cfa7a..000000000000 --- a/src/views/email-exchange/administration/MailboxesList.jsx +++ /dev/null @@ -1,395 +0,0 @@ -import React, { useState } from 'react' -import { useSelector } from 'react-redux' -import { CippPageList } from 'src/components/layout' -import { CButton } from '@coreui/react' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faEye, faEdit, faEllipsisV, faMobileAlt } from '@fortawesome/free-solid-svg-icons' -import { Link } from 'react-router-dom' -import { CippActionsOffcanvas } from 'src/components/utilities' -import { TitleButton } from 'src/components/buttons' -import { CellTip } from 'src/components/tables' -import { cellGenericFormatter } from 'src/components/tables/CellGenericFormat' - -const MailboxList = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - const Offcanvas = (row, rowIndex, formatExtraData) => { - const [ocVisible, setOCVisible] = useState(false) - return ( - <> - - - - - - - - - - - - - - - - setOCVisible(true)}> - - - setOCVisible(false)} - /> - - ) - } - - //TODO: Add CellBoolean - const columns = [ - { - selector: (row) => row['UPN'], - name: 'User Prinicipal Name', - sortable: true, - exportSelector: 'UPN', - cell: (row) => CellTip(row['UPN']), - maxWidth: '300px', - }, - { - selector: (row) => row['displayName'], - name: 'Display Name', - sortable: true, - cell: (row) => CellTip(row['displayName']), - exportSelector: 'displayName', - maxWidth: '300px', - }, - { - selector: (row) => row['primarySmtpAddress'], - name: 'Primary E-mail Address', - sortable: true, - cell: (row) => CellTip(row['primarySmtpAddress']), - exportSelector: 'primarySmtpAddress', - maxWidth: '300px', - }, - { - selector: (row) => row['recipientType'], - name: 'Recipient Type', - sortable: true, - exportSelector: 'recipientType', - maxWidth: '150px', - }, - { - selector: (row) => row['recipientTypeDetails'], - name: 'Recipient Type Details', - sortable: true, - exportSelector: 'recipientTypeDetails', - maxWidth: '170px', - }, - { - name: 'Additional Email Addresses', - selector: (row) => row.AdditionalEmailAddresses, - exportSelector: 'AdditionalEmailAddresses', - sortable: true, - cell: cellGenericFormatter(), - }, - { - name: 'Actions', - cell: Offcanvas, - maxWidth: '150px', - }, - ] - - const titleButtons = ( -
    -
    - -
    -
    - -
    -
    - ) - - return ( - - ) -} - -export default MailboxList diff --git a/src/views/email-exchange/administration/QuarantineList.jsx b/src/views/email-exchange/administration/QuarantineList.jsx deleted file mode 100644 index 6c5de828afec..000000000000 --- a/src/views/email-exchange/administration/QuarantineList.jsx +++ /dev/null @@ -1,189 +0,0 @@ -import React, { useState } from 'react' -import { useSelector } from 'react-redux' -import { CippPageList } from 'src/components/layout' -import { CButton } from '@coreui/react' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faEllipsisV, faMinusCircle, faPaperPlane } from '@fortawesome/free-solid-svg-icons' -import { CippActionsOffcanvas } from 'src/components/utilities' -import { cellDateFormatter, CellTip } from 'src/components/tables' - -const QuarantineList = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - const Offcanvas = (row, rowIndex, formatExtraData) => { - const [ocVisible, setOCVisible] = useState(false) - return ( - <> - setOCVisible(true)}> - - - , - }, - { - label: 'Deny', - color: 'info', - modal: true, - modalUrl: `/api/ExecQuarantineManagement?TenantFilter=${tenant.defaultDomainName}&ID=${row.Identity}&Type=Deny`, - modalMessage: 'Are you sure you want to deny this message?', - icon: , - }, - { - label: 'Release & Allow Sender', - color: 'info', - modal: true, - modalUrl: `/api/ExecQuarantineManagement?TenantFilter=${tenant.defaultDomainName}&ID=${row.Identity}&Type=Release&AllowSender=true`, - modalMessage: - 'Are you sure you want to release this email, and add the sender to the whitelist?', - icon: , - }, - ]} - placement="end" - visible={ocVisible} - id={row.id} - hideFunction={() => setOCVisible(false)} - /> - - ) - } - - //TODO: Add CellBoolean - const columns = [ - { - selector: (row) => row['SenderAddress'], - name: 'Sender', - sortable: true, - cell: (row) => CellTip(row['SenderAddress']), - exportSelector: 'SenderAddress', - }, - { - selector: (row) => row.RecipientAddress.join(', '), - name: 'Recipient', - sortable: true, - exportSelector: 'RecipientAddress', - cell: (row) => CellTip(row.RecipientAddress.join(', ')), - }, - { - selector: (row) => row['Subject'], - name: 'Subject', - sortable: true, - cell: (row) => CellTip(row['Subject']), - exportSelector: 'Subject', - maxWidth: '300px', - }, - { - selector: (row) => row['Type'], - name: 'Reason', - sortable: true, - exportSelector: 'Type', - maxWidth: '200px', - }, - { - selector: (row) => row['ReceivedTime'], - name: 'Received on', - sortable: true, - exportSelector: 'ReceivedTime', - maxWidth: '150px', - cell: cellDateFormatter(), - }, - { - selector: (row) => row['ReleaseStatus'], - name: 'Status', - sortable: true, - exportSelector: 'ReleaseStatus', - maxWidth: '150px', - }, - { - selector: (row) => row['PolicyName'], - name: 'Blocked by Policy', - sortable: true, - exportSelector: 'PolicyName', - maxWidth: '170px', - cell: (row) => CellTip(row['PolicyName']), - }, - { - name: 'Actions', - cell: Offcanvas, - maxWidth: '100px', - }, - ] - - return ( - - ) -} - -export default QuarantineList diff --git a/src/views/email-exchange/administration/ViewMobileDevices.jsx b/src/views/email-exchange/administration/ViewMobileDevices.jsx deleted file mode 100644 index 19a58344894a..000000000000 --- a/src/views/email-exchange/administration/ViewMobileDevices.jsx +++ /dev/null @@ -1,198 +0,0 @@ -import React, { useState } from 'react' -import { useSelector } from 'react-redux' -import { CippPageList } from 'src/components/layout' -import useQuery from 'src/hooks/useQuery' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { CellTip, cellDateFormatter } from 'src/components/tables' -import { faEllipsisV } from '@fortawesome/free-solid-svg-icons' -import { CippActionsOffcanvas } from 'src/components/utilities' -import { CButton } from '@coreui/react' - -//TODO: Add CellBoolean - -const MobileDeviceList = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - const Offcanvas = (row, rowIndex, formatExtraData) => { - const [ocVisible, setOCVisible] = useState(false) - return ( - <> - setOCVisible(true)}> - - - setOCVisible(false)} - /> - - ) - } - - const columns = [ - { - selector: (row) => query.get('userId'), - name: 'User ID', - sortable: true, - cell: (row) => CellTip(query.get('userId')), - exportSelector: 'userId', - }, - { - selector: (row) => row['clientType'], - name: 'Client Type', - sortable: true, - cell: (row) => CellTip(row['clientType']), - exportSelector: 'clientType', - }, - { - selector: (row) => row['clientVersion'], - name: 'Client Version', - sortable: true, - exportSelector: 'clientVersion', - }, - { - selector: (row) => row['deviceAccessState'], - name: 'Access State', - sortable: true, - exportSelector: 'deviceAccessState', - }, - { - selector: (row) => row['deviceFriendlyName'], - name: 'Friendly Name', - sortable: true, - cell: (row) => CellTip(row['deviceFriendlyName']), - exportSelector: 'deviceFriendlyName', - }, - { - selector: (row) => row['deviceModel'], - name: 'Model', - sortable: true, - cell: (row) => CellTip(row['deviceModel']), - exportSelector: 'deviceModel', - }, - { - selector: (row) => row['deviceOS'], - name: 'OS', - sortable: true, - cell: (row) => CellTip(row['deviceOS']), - exportSelector: 'deviceOS', - }, - { - selector: (row) => row['deviceType'], - name: 'Device Type', - sortable: true, - cell: (row) => CellTip(row['deviceType']), - exportSelector: 'deviceType', - }, - { - selector: (row) => row['deviceID'], - name: 'Device ID', - sortable: true, - cell: (row) => CellTip(row['deviceID']), - exportSelector: 'deviceID', - }, - { - selector: (row) => row['firstSync'], - name: 'First Sync', - sortable: true, - exportSelector: 'firstSync', - cell: cellDateFormatter(), - }, - { - selector: (row) => row['lastSyncAttempt'], - name: 'Last Sync Attempt', - sortable: true, - exportSelector: 'lastSyncAttempt', - cell: cellDateFormatter(), - }, - { - selector: (row) => row['lastSuccessSync'], - name: 'Last Succesfull Sync', - sortable: true, - exportSelector: 'lastSuccessSync', - cell: cellDateFormatter(), - }, - { - selector: (row) => row['status'], - name: 'Status', - sortable: true, - exportSelector: 'status', - }, - { - selector: (row) => row['Guid'], - name: 'Guid', - sortable: true, - exportSelector: 'Guid', - }, - { - name: 'Actions', - cell: Offcanvas, - maxWidth: '75px', - }, - ] - - let query = useQuery() - const userId = query.get('userId') - return ( - - ) -} -export default MobileDeviceList diff --git a/src/views/email-exchange/connectors/AddConnectorTemplate.jsx b/src/views/email-exchange/connectors/AddConnectorTemplate.jsx deleted file mode 100644 index d2936d2f7352..000000000000 --- a/src/views/email-exchange/connectors/AddConnectorTemplate.jsx +++ /dev/null @@ -1,61 +0,0 @@ -import React from 'react' -import { CButton, CCallout, CCol, CForm, CRow, CSpinner } from '@coreui/react' -import { Form } from 'react-final-form' -import { CippContentCard, CippPage } from 'src/components/layout' -import { RFFCFormTextarea } from 'src/components/forms' -import { useLazyGenericPostRequestQuery } from 'src/store/api/app' - -const ConnectorAddTemplate = () => { - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - - const handleSubmit = async (values) => { - // alert(JSON.stringify(values, null, 2)) - // @todo hook this up - genericPostRequest({ path: '/api/AddEXConnectorTemplate', values }) - } - - return ( - - - {postResults.isFetching && ( - - Loading - - )} - {postResults.isSuccess && {postResults.data.Results}} - { - return ( - - - - - - - - - - Add Template - - - - {/**/} - {/* */} - {/*
    {JSON.stringify(values, null, 2)}
    */} - {/*
    */} - {/*
    */} -
    - ) - }} - /> -
    -
    - ) -} - -export default ConnectorAddTemplate diff --git a/src/views/email-exchange/connectors/ConnectorList.jsx b/src/views/email-exchange/connectors/ConnectorList.jsx deleted file mode 100644 index 1f3829abcb1d..000000000000 --- a/src/views/email-exchange/connectors/ConnectorList.jsx +++ /dev/null @@ -1,177 +0,0 @@ -import { CButton } from '@coreui/react' -import { faBan, faBook, faCheck, faEllipsisV, faTrash } from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import React, { useState } from 'react' -import { useSelector } from 'react-redux' -import { CippPageList } from 'src/components/layout' -import { CippActionsOffcanvas } from 'src/components/utilities' -import { CellBoolean, cellBooleanFormatter, CellTip } from 'src/components/tables' -import { TitleButton } from 'src/components/buttons' - -const Offcanvas = (row, rowIndex, formatExtraData) => { - const tenant = useSelector((state) => state.app.currentTenant) - const [ocVisible, setOCVisible] = useState(false) - //console.log(row) - return ( - <> - setOCVisible(true)}> - - - , - modalBody: row, - modalType: 'POST', - modalUrl: `/api/AddExConnectorTemplate`, - modalMessage: 'Are you sure you want to create a template based on this rule?', - }, - { - label: 'Enable Rule', - color: 'info', - icon: , - modal: true, - modalUrl: `/api/EditExConnector?State=Enable&TenantFilter=${tenant.defaultDomainName}&GUID=${row.Guid}&Type=${row.cippconnectortype}`, - modalMessage: 'Are you sure you want to enable this rule?', - }, - { - label: 'Disable Rule', - color: 'info', - icon: , - modal: true, - modalUrl: `/api/EditExConnector?State=Disable&TenantFilter=${tenant.defaultDomainName}&GUID=${row.Guid}&Type=${row.cippconnectortype}`, - modalMessage: 'Are you sure you want to disable this rule?', - }, - { - label: 'Delete Rule', - color: 'danger', - modal: true, - icon: , - modalUrl: `/api/RemoveExConnector?TenantFilter=${tenant.defaultDomainName}&GUID=${row.Guid}&Type=${row.cippconnectortype}`, - modalMessage: 'Are you sure you want to delete this rule?', - }, - ]} - placement="end" - visible={ocVisible} - id={row.id} - hideFunction={() => setOCVisible(false)} - /> - - ) -} - -const columns = [ - { - name: 'Name', - selector: (row) => row['Name'], - sortable: true, - wrap: true, - cell: (row) => CellTip(row['Name']), - exportSelector: 'Name', - }, - { - name: 'State', - selector: (row) => row['Enabled'], - cell: cellBooleanFormatter(), - sortable: true, - exportSelector: 'Enabled', - }, - { - name: 'Comment', - selector: (row) => row['Comment'], - sortable: true, - exportSelector: 'Comment', - }, - { - name: 'Direction', - selector: (row) => row['cippconnectortype'], - sortable: true, - exportSelector: 'cippconnectortype', - }, - { - name: 'Inbound Connector Hostname', - selector: (row) => row['TlsSenderCertificateName'], - exportSelector: 'TlsSenderCertificateName', - }, - { - name: 'Sender IP Addresses', - selector: (row) => row.SenderIPAddresses?.join(','), - exportSelector: 'SenderIPAddresses', - }, - { - name: 'Only apply via transport rules', - selector: (row) => row.IsTransportRuleScoped, - exportSelector: 'IsTransportRuleScoped', - cell: cellBooleanFormatter(), - }, - { - name: 'Smarthost', - selector: (row) => row.SmartHosts?.join(','), - exportSelector: 'Smarthost', - }, - { - name: 'TLS Settings', - selector: (row) => row.TlsSettings, - exportSelector: 'TlsSettings', - }, - { - name: 'TLS Domain', - selector: (row) => row.TlsDomain, - exportSelector: 'Smarthost', - }, - { - name: 'Actions', - cell: Offcanvas, - maxWidth: '80px', - }, -] - -const ConnectorList = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - return ( - - - - } - tenantSelector={true} - datatable={{ - filterlist: [ - { filterName: 'Enabled connectors', filter: 'Complex: Enabled eq true' }, - { filterName: 'Disabled connectors', filter: 'Complex: Enabled eq false' }, - { filterName: 'Inbound connectors', filter: 'Complex: cippconnectortype eq inbound' }, - { filterName: 'Outbound connectors', filter: 'Complex: cippconnectortype eq outbound' }, - { - filterName: 'Transport rule connectors', - filter: 'Complex: IsTransportRuleScoped eq true', - }, - { - filterName: 'Non-transport rule connectors', - filter: 'Complex: IsTransportRuleScoped eq false', - }, - ], - reportName: `${tenant?.defaultDomainName}-connectors-list`, - path: '/api/ListExchangeConnectors', - params: { TenantFilter: tenant?.defaultDomainName }, - columns, - }} - /> - ) -} - -export default ConnectorList diff --git a/src/views/email-exchange/connectors/DeployConnector.jsx b/src/views/email-exchange/connectors/DeployConnector.jsx deleted file mode 100644 index f2465f19d8ef..000000000000 --- a/src/views/email-exchange/connectors/DeployConnector.jsx +++ /dev/null @@ -1,207 +0,0 @@ -import React from 'react' -import { CCol, CRow, CCallout, CSpinner } from '@coreui/react' -import { Field, FormSpy } from 'react-final-form' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons' -import { CippWizard } from 'src/components/layout' -import { WizardTableField } from 'src/components/tables' -import PropTypes from 'prop-types' -import { RFFCFormSelect, RFFCFormTextarea } from 'src/components/forms' -import { useLazyGenericGetRequestQuery, useLazyGenericPostRequestQuery } from 'src/store/api/app' -import { OnChange } from 'react-final-form-listeners' - -const Error = ({ name }) => ( - - touched && error ? ( - - - {error} - - ) : null - } - /> -) - -Error.propTypes = { - name: PropTypes.string.isRequired, -} - -const requiredArray = (value) => (value && value.length !== 0 ? undefined : 'Required') -const DeployConnectorTemplate = () => { - const [EXConnectorGetRequest, EXConnectorTemplates] = useLazyGenericGetRequestQuery() - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - - const handleSubmit = async (values) => { - values.selectedTenants.map( - (tenant) => (values[`Select_${tenant.defaultDomainName}`] = tenant.defaultDomainName), - ) - values.TemplateType = values.Type - genericPostRequest({ path: '/api/AddExConnector', values: values }) - } - const WhenFieldChanges = ({ field, set }) => ( - - {( - // No subscription. We only use Field to get to the change function - { input: { onChange } }, - ) => ( - - {({ form }) => ( - - {(value) => { - let template = EXConnectorTemplates.data.filter(function (obj) { - return obj.GUID === value - }) - onChange(JSON.stringify(template[0])) - }} - - )} - - )} - - ) - - WhenFieldChanges.propTypes = { - field: PropTypes.node, - set: PropTypes.string, - } - - const formValues = { - TemplateType: 'Admin', - } - - return ( - - -
    -

    Step 1

    -
    Choose tenants
    -
    -
    - - {/* eslint-disable react/prop-types */} - {(props) => ( - row['displayName'], - sortable: true, - exportselector: 'displayName', - }, - { - name: 'Default Domain Name', - selector: (row) => row['defaultDomainName'], - sortable: true, - exportselector: 'mail', - }, - ]} - fieldProps={props} - /> - )} - - -
    -
    - -
    -

    Step 2

    -
    - Enter the raw JSON for this policy, or select from a template. You can create templates - from existing policies. -
    -
    -
    - - - {EXConnectorTemplates.isUninitialized && - EXConnectorGetRequest({ path: 'api/ListExConnectorTemplates' })} - {EXConnectorTemplates.isSuccess && ( - ({ - value: template.GUID, - label: template.name, - }))} - placeholder="Select a template" - label="Please choose a template to apply, or enter the information manually." - /> - )} - - - - - - - -
    - -
    - -
    -

    Step 3

    -
    Confirm and apply
    -
    -
    - {!postResults.isSuccess && ( - - {(props) => { - return ( - <> - - - -
    Selected Tenants
    - - {props.values.selectedTenants.map((tenant, idx) => ( -
  • - {tenant.displayName}- {tenant.defaultDomainName} -
  • - ))} -
    -
    Rule Settings
    - {props.values.PowerShellCommand} -
    -
    - - ) - }} -
    - )} - {postResults.isFetching && ( - - Loading - - )} - {postResults.isSuccess && ( - - {postResults.data.Results.map((message, idx) => { - return
  • {message}
  • - })} -
    - )} -
    -
    -
    - ) -} - -export default DeployConnectorTemplate diff --git a/src/views/email-exchange/connectors/ListConnectorTemplates.jsx b/src/views/email-exchange/connectors/ListConnectorTemplates.jsx deleted file mode 100644 index 7dd9f3ea8e0e..000000000000 --- a/src/views/email-exchange/connectors/ListConnectorTemplates.jsx +++ /dev/null @@ -1,113 +0,0 @@ -import React, { useState } from 'react' -import { useSelector } from 'react-redux' -import { CellTip } from 'src/components/tables' -import { CButton, CCallout, CCol, CRow, CSpinner } from '@coreui/react' -import { faEye, faTrash } from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { useLazyGenericGetRequestQuery } from 'src/store/api/app' -import { CippPageList } from 'src/components/layout' -import { ModalService } from 'src/components/utilities' -import { TitleButton } from 'src/components/buttons' -import { Editor } from '@monaco-editor/react' -import CippCodeOffCanvas from 'src/components/utilities/CippCodeOffcanvas' - -const ConnectorListTemplates = () => { - const tenant = useSelector((state) => state.app.currentTenant) - const [ExecuteGetRequest, getResults] = useLazyGenericGetRequestQuery() - const Offcanvas = (row, rowIndex, formatExtraData) => { - const [ocVisible, setOCVisible] = useState(false) - const handleDeleteEXConnectorTemplate = (apiurl, message) => { - ModalService.confirm({ - title: 'Confirm', - body:
    {message}
    , - onConfirm: () => ExecuteGetRequest({ path: apiurl }), - confirmLabel: 'Continue', - cancelLabel: 'Cancel', - }) - } - return ( - <> - setOCVisible(true)}> - - - - handleDeleteEXConnectorTemplate( - `/api/RemoveExConnectorTemplate?ID=${row.GUID}`, - 'Do you want to delete the template?', - ) - } - > - - - - setOCVisible(false)} - /> - - ) - } - - const columns = [ - { - name: 'Display Name', - selector: (row) => row['name'], - sortable: true, - cell: (row) => CellTip(row['name']), - exportSelector: 'name', - }, - { - name: 'Type', - selector: (row) => row['cippconnectortype'], - sortable: true, - cell: (row) => CellTip(row['cippconnectortype']), - exportSelector: 'cippconnectortype', - }, - { - name: 'GUID', - selector: (row) => row['GUID'], - sortable: true, - cell: (row) => CellTip(row['GUID']), - exportSelector: 'GUID', - }, - { - name: 'Actions', - cell: Offcanvas, - maxWidth: '80px', - }, - ] - - return ( - <> - {getResults.isFetching && ( - - Loading - - )} - {getResults.isSuccess && {getResults.data?.Results}} - {getResults.isError && ( - Could not connect to API: {getResults.error.message} - )} - - } - datatable={{ - reportName: `${tenant?.defaultDomainName}-Groups`, - path: '/api/ListExconnectorTemplates', - params: { TenantFilter: tenant?.defaultDomainName }, - columns, - }} - /> - - ) -} - -export default ConnectorListTemplates diff --git a/src/views/email-exchange/reports/AntiPhishingFilters.jsx b/src/views/email-exchange/reports/AntiPhishingFilters.jsx deleted file mode 100644 index ed68929c2005..000000000000 --- a/src/views/email-exchange/reports/AntiPhishingFilters.jsx +++ /dev/null @@ -1,293 +0,0 @@ -import { CButton } from '@coreui/react' -import { faBan, faBook, faCheck, faEllipsisV, faTrash } from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import React, { useState } from 'react' -import { CippActionsOffcanvas } from 'src/components/utilities' -import { useSelector } from 'react-redux' -import { CippPageList } from 'src/components/layout' -import { cellDateFormatter, cellBooleanFormatter, CellTip } from 'src/components/tables' -import { cellTableFormatter } from 'src/components/tables/CellTable' - -const ListAntiPhishingFilters = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - const Offcanvas = (row, rowIndex, formatExtraData) => { - const [ocVisible, setOCVisible] = useState(false) - - return ( - <> - setOCVisible(true)}> - - - , - modal: true, - modalUrl: `/api/EditAntiPhishingFilter?State=Enable&TenantFilter=${tenant.defaultDomainName}&RuleName=${row.RuleName}`, - modalMessage: 'Are you sure you want to enable this rule?', - }, - { - label: 'Disable Rule', - color: 'info', - icon: , - modal: true, - modalUrl: `/api/EditAntiPhishingFilter?State=Disable&TenantFilter=${tenant.defaultDomainName}&RuleName=${row.RuleName}`, - modalMessage: 'Are you sure you want to disable this rule?', - }, - /*{ - label: 'Delete Rule', - color: 'danger', - modal: true, - icon: , - modalUrl: `/api/RemoveAntiPhishingFilter?TenantFilter=${tenant.defaultDomainName}&RuleName=${row.RuleName}`, - modalMessage: 'Are you sure you want to delete this rule?', - },*/ - ]} - placement="end" - visible={ocVisible} - id={row.id} - hideFunction={() => setOCVisible(false)} - /> - - ) - } - - const columns = [ - { - name: 'Rule Name', - selector: (row) => row['RuleName'], - sortable: true, - exportSelector: 'RuleName', - }, - { - name: 'Policy Name', - selector: (row) => row['Name'], - sortable: true, - exportSelector: 'Name', - }, - { - name: 'Enabled', - selector: (row) => row['State'], - exportSelector: 'State', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'Priority', - selector: (row) => row['Priority'], - sortable: true, - exportSelector: 'Priority', - maxWidth: '40px', - }, - { - name: 'Recipient Domains', - selector: (row) => row['RecipientDomainIs'], - sortable: true, - exportSelector: 'RecipientDomainIs', - cell: cellTableFormatter('RecipientDomainIs'), - }, - { - name: 'Excluded Domains', - selector: (row) => row['ExcludedDomains'], - sortable: true, - exportSelector: 'ExcludedDomains', - cell: cellTableFormatter('ExcludedDomains'), - }, - { - name: 'Excluded Senders', - selector: (row) => row['ExcludedSenders'], - sortable: true, - exportSelector: 'ExcludedSenders', - cell: cellTableFormatter('ExcludedSenders'), - }, - { - name: 'PhishThresholdLevel', - selector: (row) => row['PhishThresholdLevel'], - sortable: true, - exportSelector: 'PhishThresholdLevel', - }, - { - name: 'Mailbox Intelligence', - selector: (row) => row['EnableMailboxIntelligence'], - exportSelector: 'EnableMailboxIntelligence', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'Mailbox Intelligence Protection', - selector: (row) => row['EnableMailboxIntelligenceProtection'], - exportSelector: 'EnableMailboxIntelligenceProtection', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'Spoof Intelligence', - selector: (row) => row['EnableSpoofIntelligence'], - exportSelector: 'EnableSpoofIntelligence', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'First Contact Safety Tips', - selector: (row) => row['EnableFirstContactSafetyTips'], - exportSelector: 'EnableFirstContactSafetyTips', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'Similar Users Safety Tips', - selector: (row) => row['EnableSimilarUsersSafetyTips'], - exportSelector: 'EnableSimilarUsersSafetyTips', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'Similar Domain Safety Tips', - selector: (row) => row['EnableSimilarDomainsSafetyTips'], - exportSelector: 'EnableSimilarDomainsSafetyTips', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'Unusual Characters Safety Tips', - selector: (row) => row['EnableUnusualCharactersSafetyTips'], - exportSelector: 'EnableUnusualCharactersSafetyTips', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'Unauthenticated Sender', - selector: (row) => row['EnableUnauthenticatedSender'], - exportSelector: 'EnableUnauthenticatedSender', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'ViaTag', - selector: (row) => row['EnableViaTag'], - exportSelector: 'EnableViaTag', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'Organization Domains Protection', - selector: (row) => row['EnableOrganizationDomainsProtection'], - exportSelector: 'EnableOrganizationDomainsProtection', - cell: cellBooleanFormatter(), - }, - { - name: 'Authentication Fail Action', - selector: (row) => row['AuthenticationFailAction'], - exportSelector: 'AuthenticationFailAction', - maxWidt: '100px', - }, - { - name: 'Spoof Quarantine Tag', - selector: (row) => row['SpoofQuarantineTag'], - exportSelector: 'SpoofQuarantineTag', - maxWidth: '100px', - }, - { - name: 'MailboxIntelligence Protection Action', - selector: (row) => row['MailboxIntelligenceProtectionAction'], - exportSelector: 'MailboxIntelligenceProtectionAction', - maxWidth: '100px', - }, - { - name: 'Mailbox Intelligence Quarantine Tag', - selector: (row) => row['MailboxIntelligenceQuarantineTag'], - exportSelector: 'MailboxIntelligenceQuarantineTag', - maxWidth: '100px', - }, - { - name: 'Targeted UserProtection Action', - selector: (row) => row['TargetedUserProtectionAction'], - exportSelector: 'TargetedUserProtectionAction', - maxWidth: '100px', - }, - { - name: 'Targeted UserQuarantine Tag', - selector: (row) => row['TargetedUserQuarantineTag'], - exportSelector: 'TargetedUserQuarantineTag', - maxWidth: '100px', - }, - { - name: 'Targeted Domain Protection Action', - selector: (row) => row['TargetedDomainProtectionAction'], - exportSelector: 'TargetedDomainProtectionAction', - maxWidth: '100px', - }, - { - name: 'Targeted Domain Quarantine Tag', - selector: (row) => row['TargetedDomainQuarantineTag'], - exportSelector: 'TargetedDomainQuarantineTag', - maxWidth: '100px', - }, - { - name: 'Creation Date', - selector: (row) => row['WhenCreated'], - sortable: true, - exportSelector: 'WhenCreated', - cell: cellDateFormatter(), - maxWidth: '150px', - }, - { - name: 'Last Modified Date', - selector: (row) => row['WhenChanged'], - sortable: true, - exportSelector: 'WhenChanged', - cell: cellDateFormatter(), - maxWidth: '150px', - }, - { - name: 'Actions', - cell: Offcanvas, - maxWidth: '80px', - }, - ] - - return ( - <> - - - ) -} - -export default ListAntiPhishingFilters diff --git a/src/views/email-exchange/reports/MailboxClientAccessSettingsList.jsx b/src/views/email-exchange/reports/MailboxClientAccessSettingsList.jsx deleted file mode 100644 index 65fd6e080534..000000000000 --- a/src/views/email-exchange/reports/MailboxClientAccessSettingsList.jsx +++ /dev/null @@ -1,98 +0,0 @@ -import React from 'react' -import { useSelector } from 'react-redux' -import { CellTip, cellBooleanFormatter } from 'src/components/tables' -import { CippPageList } from 'src/components/layout' - -const columns = [ - { - selector: (row) => row['displayName'], - name: 'Display Name', - sortable: true, - cell: (row) => CellTip(row['displayName']), - exportSelector: 'displayName', - minWidth: '200px', - }, - { - selector: (row) => row['primarySmtpAddress'], - name: 'Primary E-mail', - sortable: true, - cell: (row) => CellTip(row['primarySmtpAddress']), - exportSelector: 'primarySmtpAddress', - minWidth: '200px', - }, - { - selector: (row) => row['ecpenabled'], - name: 'ECP Enabled', - sortable: true, - cell: cellBooleanFormatter({ colourless: true }), - center: true, - exportSelector: 'ecpenabled', - }, - { - selector: (row) => row['ewsenabled'], - name: 'EWS Enabled', - sortable: true, - cell: cellBooleanFormatter({ colourless: true }), - center: true, - exportSelector: 'ewsenabled', - }, - { - selector: (row) => row['imapenabled'], - name: 'IMAP Enabled', - sortable: true, - cell: cellBooleanFormatter({ colourless: true }), - center: true, - exportSelector: 'imapenabled', - }, - { - selector: (row) => row['mapienabled'], - name: 'MAPI Enabled', - sortable: true, - cell: cellBooleanFormatter({ colourless: true }), - center: true, - exportSelector: 'mapienabled', - }, - { - selector: (row) => row['owaenabled'], - name: 'OWA Enabled', - sortable: true, - cell: cellBooleanFormatter({ colourless: true }), - center: true, - exportSelector: 'owaenabled', - }, - { - selector: (row) => row['popenabled'], - name: 'POP Enabled', - sortable: true, - cell: cellBooleanFormatter({ colourless: true }), - center: true, - exportSelector: 'popenabled', - }, - { - selector: (row) => row['activesyncenabled'], - name: 'ActiveSync Enabled', - sortable: true, - cell: cellBooleanFormatter({ colourless: true }), - center: true, - exportSelector: 'activesyncenabled', - }, -] - -const MailboxCASList = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - return ( - - ) -} - -export default MailboxCASList diff --git a/src/views/email-exchange/reports/MailboxStatisticsList.jsx b/src/views/email-exchange/reports/MailboxStatisticsList.jsx deleted file mode 100644 index abe707575e83..000000000000 --- a/src/views/email-exchange/reports/MailboxStatisticsList.jsx +++ /dev/null @@ -1,143 +0,0 @@ -import React, { useEffect, useState } from 'react' -import { useSelector } from 'react-redux' -import { CellTip, cellBooleanFormatter } from 'src/components/tables' -import { CippPageList } from 'src/components/layout' -import { - CellBytes, - CellBytesToPercentage, - cellBytesFormatter, -} from 'src/components/tables/CellBytes' - -const MailboxStatsList = () => { - const [tenantColumnSet, setTenantColumn] = useState(true) - const tenant = useSelector((state) => state.app.currentTenant) - const conditionalRowStyles = [ - { - when: (row) => (row.UsedGB / row.QuotaGB) * 100 > 80 && (row.UsedGB / row.QuotaGB) * 100 < 90, - classNames: ['mbusage-warning'], - }, - { - when: (row) => - (row.UsedGB / row.QuotaGB) * 100 > 90 && (row.UsedGB / row.QuotaGB) * 100 < 100, - classNames: ['mbusage-danger'], - }, - ] - - const columns = [ - { - name: 'Tenant', - selector: (row) => row['Tenant'], - sortable: true, - cell: (row) => CellTip(row['Tenant']), - exportSelector: 'Tenant', - omit: tenantColumnSet, - }, - { - name: 'Retrieval Status', - selector: (row) => row['CippStatus'], - sortable: true, - cell: (row) => CellTip(row['CippStatus']), - exportSelector: 'CippStatus', - omit: tenantColumnSet, - }, - { - selector: (row) => row['userPrincipalName'], - name: 'User Prinicipal Name', - sortable: true, - cell: (row) => CellTip(row['userPrincipalName']), - exportSelector: 'userPrincipalName', - minWidth: '200px', - }, - { - selector: (row) => row['displayName'], - name: 'Display Name', - sortable: true, - cell: (row) => CellTip(row['displayName']), - exportSelector: 'displayName', - }, - { - selector: (row) => row[' recipientType'], - name: 'Mailbox Type', - sortable: true, - cell: (row) => CellTip(row['recipientType']), - exportSelector: 'recipientType', - }, - { - selector: (row) => row['lastActivityDate'], - name: 'Last Active', - sortable: true, - exportSelector: 'lastActivityDate', - }, - { - selector: (row) => row['storageUsedInBytes'], - cell: cellBytesFormatter(), - name: 'Used Space (GB)', - sortable: true, - exportSelector: 'storageUsedInBytes', - exportFormatter: CellBytes, - }, - { - selector: (row) => row['prohibitSendReceiveQuotaInBytes'], - cell: cellBytesFormatter(), - name: 'Quota (GB)', - sortable: true, - exportSelector: 'prohibitSendReceiveQuotaInBytes', - exportFormatter: CellBytes, - }, - { - selector: (row) => - Math.round((row.storageUsedInBytes / row.prohibitSendReceiveQuotaInBytes) * 100 * 10) / 10, - name: 'Quota Used(%)', - sortable: true, - exportSelector: 'CippStatus', - exportFormatter: CellBytesToPercentage, - exportFormatterArgs: { - value: 'storageUsedInBytes', - dividedBy: 'prohibitSendReceiveQuotaInBytes', - }, - }, - { - selector: (row) => row['itemCount'], - name: 'Item Count (Total)', - sortable: true, - exportSelector: 'itemCount', - }, - { - selector: (row) => row['hasArchive'], - name: 'Archiving Enabled', - sortable: true, - cell: cellBooleanFormatter({ colourless: true }), - exportSelector: 'hasArchive', - }, - ] - useEffect(() => { - if (tenant.defaultDomainName === 'AllTenants') { - setTenantColumn(false) - } - if (tenant.defaultDomainName !== 'AllTenants') { - setTenantColumn(true) - } - }, [tenant.defaultDomainName, tenantColumnSet]) - return ( - - ) -} - -export default MailboxStatsList diff --git a/src/views/email-exchange/reports/MalwareFilters.jsx b/src/views/email-exchange/reports/MalwareFilters.jsx deleted file mode 100644 index ebd9d5ad354c..000000000000 --- a/src/views/email-exchange/reports/MalwareFilters.jsx +++ /dev/null @@ -1,217 +0,0 @@ -import { CButton } from '@coreui/react' -import { faBan, faBook, faCheck, faEllipsisV, faTrash } from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import React, { useState } from 'react' -import { CippActionsOffcanvas } from 'src/components/utilities' -import { useSelector } from 'react-redux' -import { CippPageList } from 'src/components/layout' -import { cellDateFormatter, cellBooleanFormatter, CellTip } from 'src/components/tables' -import { cellTableFormatter } from 'src/components/tables/CellTable' - -const ListMalwareFilters = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - const Offcanvas = (row, rowIndex, formatExtraData) => { - const [ocVisible, setOCVisible] = useState(false) - - return ( - <> - setOCVisible(true)}> - - - , - modal: true, - modalUrl: `/api/EditMalwareFilter?State=Enable&TenantFilter=${tenant.defaultDomainName}&RuleName=${row.RuleName}`, - modalMessage: 'Are you sure you want to enable this rule?', - }, - { - label: 'Disable Rule', - color: 'info', - icon: , - modal: true, - modalUrl: `/api/EditMalwareFilter?State=Disable&TenantFilter=${tenant.defaultDomainName}&RuleName=${row.RuleName}`, - modalMessage: 'Are you sure you want to disable this rule?', - }, - /*{ - label: 'Delete Rule', - color: 'danger', - modal: true, - icon: , - modalUrl: `/api/RemoveMalwareFilter?TenantFilter=${tenant.defaultDomainName}&RuleName=${row.RuleName}`, - modalMessage: 'Are you sure you want to delete this rule?', - },*/ - ]} - placement="end" - visible={ocVisible} - id={row.id} - hideFunction={() => setOCVisible(false)} - /> - - ) - } - - const columns = [ - { - name: 'Rule Name', - selector: (row) => row['RuleName'], - sortable: true, - exportSelector: 'RuleName', - }, - { - name: 'Policy Name', - selector: (row) => row['Name'], - sortable: true, - exportSelector: 'Name', - }, - { - name: 'Enabled', - selector: (row) => row['State'], - exportSelector: 'State', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'Priority', - selector: (row) => row['Priority'], - sortable: true, - exportSelector: 'Priority', - maxWidth: '40px', - }, - { - name: 'Recipient Domains', - selector: (row) => row['RecipientDomainIs'], - sortable: true, - exportSelector: 'RecipientDomainIs', - cell: cellTableFormatter('RecipientDomainIs'), - }, - { - name: 'File Filter', - selector: (row) => row['EnableFileFilter'], - exportSelector: 'EnableFileFilter', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'File Types', - selector: (row) => row['FileTypes'], - sortable: true, - exportSelector: 'FileTypes', - cell: cellTableFormatter('FileTypes'), - }, - { - name: 'File Type Action', - selector: (row) => row['FileTypeAction'], - sortable: true, - exportSelector: 'FileTypeAction', - maxWidth: '200px', - }, - { - name: 'Zap', - selector: (row) => row['ZapEnabled'], - exportSelector: 'ZapEnabled', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'Quarantine Tag', - selector: (row) => row['QuarantineTag'], - sortable: true, - exportSelector: 'QuarantineTag', - maxWidth: '200px', - }, - { - name: 'Internal Admin Notifications', - selector: (row) => row['EnableInternalSenderAdminNotifications'], - exportSelector: 'EnableInternalSenderAdminNotifications', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'Internal Sender Admin Address', - selector: (row) => row['InternalSenderAdminAddress'], - sortable: true, - exportSelector: 'InternalSenderAdminAddress', - }, - { - name: 'External Admin Notifications', - selector: (row) => row['EnableExternalSenderAdminNotifications'], - exportSelector: 'EnableExternalSenderAdminNotifications', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'External Sender Admin Address', - selector: (row) => row['ExternalSenderAdminAddress'], - sortable: true, - exportSelector: 'ExternalSenderAdminAddress', - }, - { - name: 'Creation Date', - selector: (row) => row['WhenCreated'], - sortable: true, - exportSelector: 'WhenCreated', - cell: cellDateFormatter(), - maxWidth: '150px', - }, - { - name: 'Last Modified Date', - selector: (row) => row['WhenChanged'], - sortable: true, - exportSelector: 'WhenChanged', - cell: cellDateFormatter(), - maxWidth: '150px', - }, - { - name: 'Actions', - cell: Offcanvas, - maxWidth: '80px', - }, - ] - - return ( - <> - - - ) -} - -export default ListMalwareFilters diff --git a/src/views/email-exchange/reports/MessageTrace.jsx b/src/views/email-exchange/reports/MessageTrace.jsx deleted file mode 100644 index 253aa6821beb..000000000000 --- a/src/views/email-exchange/reports/MessageTrace.jsx +++ /dev/null @@ -1,221 +0,0 @@ -import React, { useState } from 'react' -import { - CButton, - CCard, - CCardBody, - CCardHeader, - CCardTitle, - CCol, - CCollapse, - CForm, - CRow, -} from '@coreui/react' -import useQuery from 'src/hooks/useQuery' -import { Form } from 'react-final-form' -import { RFFCFormInput, RFFCFormSelect } from 'src/components/forms' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faChevronRight, faChevronDown, faSearch } from '@fortawesome/free-solid-svg-icons' -import { CippDatatable } from 'src/components/tables' -import { TenantSelector } from 'src/components/utilities' -import { useSelector } from 'react-redux' -import { useNavigate } from 'react-router-dom' -import { CippPage } from 'src/components/layout/CippPage' - -const columns = [ - { - name: 'Date', - selector: (row) => row['Date'], - sortable: true, - exportSelector: 'Date', - }, - { - name: 'Recipient', - selector: (row) => row['RecipientAddress'], - sortable: true, - exportSelector: 'RecipientAddress', - }, - { - name: 'Sender', - selector: (row) => row['SenderAddress'], - sortable: true, - exportSelector: 'SenderAddress', - }, - { - name: 'Subject', - selector: (row) => row['Subject'], - sortable: true, - exportSelector: 'Subject', - }, - { - name: 'Status', - selector: (row) => row['Status'], - sortable: true, - exportSelector: 'Status', - }, -] - -const MessageTrace = () => { - let navigate = useNavigate() - const tenant = useSelector((state) => state.app.currentTenant) - let query = useQuery() - const sender = query.get('sender') - const recipient = query.get('recipient') - const days = query.get('days') - const SearchNow = query.get('SearchNow') - //const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - const [visibleA, setVisibleA] = useState(true) - - const handleSubmit = async (values) => { - setVisibleA(false) - Object.keys(values).filter(function (x) { - if (values[x] === null) { - delete values[x] - } - return null - }) - const shippedValues = { - tenantFilter: tenant.defaultDomainName, - SearchNow: true, - ...values, - } - var queryString = Object.keys(shippedValues) - .map((key) => key + '=' + shippedValues[key]) - .join('&') - - //alert(JSON.stringify(values, null, 2)) - navigate(`?${queryString}`) - // @todo hook this up - // genericPostRequest({ path: '/api/AddIntuneTemplate', values }) - } - return ( - <> - - - - - - Message Trace Settings - setVisibleA(!visibleA)} - > - - - - - - - - - - { - return ( - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - Search - - - - {/**/} - {/* */} - {/*
    {JSON.stringify(values, null, 2)}
    */} - {/*
    */} - {/*
    */} -
    - ) - }} - /> -
    -
    -
    -
    -
    -
    - - {!SearchNow && Execute a search to get started.} - {SearchNow && ( - - - Results - - - - - - )} - - - ) -} - -export default MessageTrace diff --git a/src/views/email-exchange/reports/SafeAttachmentsFilters.jsx b/src/views/email-exchange/reports/SafeAttachmentsFilters.jsx deleted file mode 100644 index a9257edfd7e4..000000000000 --- a/src/views/email-exchange/reports/SafeAttachmentsFilters.jsx +++ /dev/null @@ -1,181 +0,0 @@ -import { CButton } from '@coreui/react' -import { faBan, faBook, faCheck, faEllipsisV, faTrash } from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import React, { useState } from 'react' -import { CippActionsOffcanvas } from 'src/components/utilities' -import { useSelector } from 'react-redux' -import { CippPageList } from 'src/components/layout' -import { cellDateFormatter, cellBooleanFormatter, CellTip } from 'src/components/tables' -import { cellTableFormatter } from 'src/components/tables/CellTable' - -const ListSafeAttachmentsFilters = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - const Offcanvas = (row, rowIndex, formatExtraData) => { - const [ocVisible, setOCVisible] = useState(false) - - return ( - <> - setOCVisible(true)}> - - - , - modal: true, - modalUrl: `/api/EditSafeAttachmentsFilter?State=Enable&TenantFilter=${tenant.defaultDomainName}&RuleName=${row.RuleName}`, - modalMessage: 'Are you sure you want to enable this rule?', - }, - { - label: 'Disable Rule', - color: 'info', - icon: , - modal: true, - modalUrl: `/api/EditSafeAttachmentsFilter?State=Disable&TenantFilter=${tenant.defaultDomainName}&RuleName=${row.RuleName}`, - modalMessage: 'Are you sure you want to disable this rule?', - }, - /*{ - label: 'Delete Rule', - color: 'danger', - modal: true, - icon: , - modalUrl: `/api/RemoveSafeAttachmentsFilter?TenantFilter=${tenant.defaultDomainName}&RuleName=${row.RuleName}`, - modalMessage: 'Are you sure you want to delete this rule?', - },*/ - ]} - placement="end" - visible={ocVisible} - id={row.id} - hideFunction={() => setOCVisible(false)} - /> - - ) - } - - const columns = [ - { - name: 'Rule Name', - selector: (row) => row['RuleName'], - sortable: true, - exportSelector: 'RuleName', - }, - { - name: 'Policy Name', - selector: (row) => row['Name'], - sortable: true, - exportSelector: 'Name', - }, - { - name: 'Enabled', - selector: (row) => row['State'], - exportSelector: 'State', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'Priority', - selector: (row) => row['Priority'], - sortable: true, - exportSelector: 'Priority', - maxWidth: '40px', - }, - { - name: 'Recipient Domains', - selector: (row) => row['RecipientDomainIs'], - sortable: true, - exportSelector: 'RecipientDomainIs', - cell: cellTableFormatter('RecipientDomainIs'), - }, - { - name: 'Action', - selector: (row) => row['Action'], - sortable: true, - exportSelector: 'Action', - }, - { - name: 'QuarantineTag', - selector: (row) => row['QuarantineTag'], - sortable: true, - exportSelector: 'QuarantineTag', - }, - { - name: 'Redirect', - selector: (row) => row['Redirect'], - exportSelector: 'Redirect', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'Redirect Address', - selector: (row) => row['RedirectAddress'], - sortable: true, - exportSelector: 'RedirectAddress', - }, - { - name: 'Creation Date', - selector: (row) => row['WhenCreated'], - sortable: true, - exportSelector: 'WhenCreated', - cell: cellDateFormatter(), - maxWidth: '150px', - }, - { - name: 'Last Modified Date', - selector: (row) => row['WhenChanged'], - sortable: true, - exportSelector: 'WhenChanged', - cell: cellDateFormatter(), - maxWidth: '150px', - }, - { - name: 'Actions', - cell: Offcanvas, - maxWidth: '80px', - }, - ] - - return ( - <> - - - ) -} - -export default ListSafeAttachmentsFilters diff --git a/src/views/email-exchange/reports/SafeLinksFilters.jsx b/src/views/email-exchange/reports/SafeLinksFilters.jsx deleted file mode 100644 index 68c9d07305ff..000000000000 --- a/src/views/email-exchange/reports/SafeLinksFilters.jsx +++ /dev/null @@ -1,226 +0,0 @@ -import { CButton } from '@coreui/react' -import { faBan, faBook, faCheck, faEllipsisV, faTrash } from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import React, { useState } from 'react' -import { CippActionsOffcanvas } from 'src/components/utilities' -import { useSelector } from 'react-redux' -import { CippPageList } from 'src/components/layout' -import { cellDateFormatter, cellBooleanFormatter, CellTip } from 'src/components/tables' -import { cellTableFormatter } from 'src/components/tables/CellTable' - -const ListSafeLinksFilters = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - const Offcanvas = (row, rowIndex, formatExtraData) => { - const [ocVisible, setOCVisible] = useState(false) - - return ( - <> - setOCVisible(true)}> - - - , - modal: true, - modalUrl: `/api/EditSafeLinksFilter?State=Enable&TenantFilter=${tenant.defaultDomainName}&RuleName=${row.RuleName}`, - modalMessage: 'Are you sure you want to enable this rule?', - }, - { - label: 'Disable Rule', - color: 'info', - icon: , - modal: true, - modalUrl: `/api/EditSafeLinksFilter?State=Disable&TenantFilter=${tenant.defaultDomainName}&RuleName=${row.RuleName}`, - modalMessage: 'Are you sure you want to disable this rule?', - }, - /*{ - label: 'Delete Rule', - color: 'danger', - modal: true, - icon: , - modalUrl: `/api/RemoveSafeLinksFilter?TenantFilter=${tenant.defaultDomainName}&RuleName=${row.RuleName}`, - modalMessage: 'Are you sure you want to delete this rule?', - },*/ - ]} - placement="end" - visible={ocVisible} - id={row.id} - hideFunction={() => setOCVisible(false)} - /> - - ) - } - - const columns = [ - { - name: 'Rule Name', - selector: (row) => row['RuleName'], - sortable: true, - exportSelector: 'RuleName', - }, - { - name: 'Policy Name', - selector: (row) => row['Name'], - sortable: true, - exportSelector: 'Name', - }, - { - name: 'Enabled', - selector: (row) => row['State'], - exportSelector: 'State', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'Priority', - selector: (row) => row['Priority'], - sortable: true, - exportSelector: 'Priority', - maxWidth: '40px', - }, - { - name: 'Recipient Domains', - selector: (row) => row['RecipientDomainIs'], - sortable: true, - exportSelector: 'RecipientDomainIs', - cell: cellTableFormatter('RecipientDomainIs'), - }, - { - name: 'SafeLinks For Email', - selector: (row) => row['EnableSafeLinksForEmail'], - exportSelector: 'EnableSafeLinksForEmail', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'SafeLinks For Teams', - selector: (row) => row['EnableSafeLinksForTeams'], - exportSelector: 'EnableSafeLinksForTeams', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'SafeLinks For Office', - selector: (row) => row['EnableSafeLinksForOffice'], - exportSelector: 'EnableSafeLinksForOffice', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'Track Clicks', - selector: (row) => row['TrackClicks'], - exportSelector: 'TrackClicks', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'Scan Urls', - selector: (row) => row['ScanUrls'], - exportSelector: 'ScanUrls', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'Enable For Internal Senders', - selector: (row) => row['EnableForInternalSenders'], - exportSelector: 'EnableForInternalSenders', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'Deliver Message After Scan', - selector: (row) => row['DeliverMessageAfterScan'], - exportSelector: 'DeliverMessageAfterScan', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'Allow Click Through', - selector: (row) => row['AllowClickThrough'], - exportSelector: 'AllowClickThrough', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'Disable Url Rewrite', - selector: (row) => row['DisableUrlRewrite'], - exportSelector: 'DisableUrlRewrite', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'Organization Branding', - selector: (row) => row['EnableOrganizationBranding'], - exportSelector: 'EnableOrganizationBranding', - cell: cellBooleanFormatter(), - maxWidth: '40px', - }, - { - name: 'Creation Date', - selector: (row) => row['WhenCreated'], - sortable: true, - exportSelector: 'WhenCreated', - cell: cellDateFormatter(), - maxWidth: '150px', - }, - { - name: 'Last Modified Date', - selector: (row) => row['WhenChanged'], - sortable: true, - exportSelector: 'WhenChanged', - cell: cellDateFormatter(), - maxWidth: '150px', - }, - { - name: 'Actions', - cell: Offcanvas, - maxWidth: '80px', - }, - ] - - return ( - <> - - - ) -} - -export default ListSafeLinksFilters diff --git a/src/views/email-exchange/reports/SharedMailboxEnabledAccount.jsx b/src/views/email-exchange/reports/SharedMailboxEnabledAccount.jsx deleted file mode 100644 index b290c2ea9f3f..000000000000 --- a/src/views/email-exchange/reports/SharedMailboxEnabledAccount.jsx +++ /dev/null @@ -1,103 +0,0 @@ -import React from 'react' -import { CButton } from '@coreui/react' -import { faBan } from '@fortawesome/free-solid-svg-icons' -import { useSelector } from 'react-redux' -import { CellTip, cellBooleanFormatter } from 'src/components/tables' -import { CippPageList } from 'src/components/layout' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { ModalService } from 'src/components/utilities' -import { useLazyGenericGetRequestQuery } from 'src/store/api/app' - -const DisableSharedMailbox = (userId) => { - const tenant = useSelector((state) => state.app.currentTenant) - const [genericGetRequest, getResults] = useLazyGenericGetRequestQuery() - const handleModal = (modalMessage, modalUrl) => { - ModalService.confirm({ - body: ( -
    -
    {modalMessage}
    -
    - ), - title: 'Confirm', - onConfirm: () => genericGetRequest({ path: modalUrl }), - }) - } - - return ( - <> - { - ModalService.confirm( - handleModal( - 'Are you sure you want to block this user from signing in?', - `/api/ExecDisableUser?TenantFilter=${tenant?.defaultDomainName}&ID=${userId}`, - ), - ) - }} - > - - - - ) -} - -const columns = [ - { - selector: (row) => row['UserPrincipalName'], - name: 'User Prinicipal Name', - sortable: true, - cell: (row) => CellTip(row['UserPrincipalName']), - exportSelector: 'UserPrincipalName', - minWidth: '200px', - }, - { - selector: (row) => row['displayName'], - name: 'Display Name', - sortable: true, - cell: (row) => CellTip(row['displayName']), - exportSelector: 'displayName', - minWidth: '200px', - }, - { - name: 'Account Enabled', - selector: (row) => row['accountEnabled'], - cell: cellBooleanFormatter({ colourless: true }), - sortable: true, - exportSelector: 'accountEnabled', - minWidth: '50px', - }, - { - name: 'AD Synced', - selector: (row) => row['onPremisesSyncEnabled'], - cell: cellBooleanFormatter({ colourless: true }), - sortable: true, - exportSelector: 'onPremisesSyncEnabled', - minWidth: '75px', - }, - { - name: 'Block sign-in', - cell: (row) => DisableSharedMailbox(row['id']), - minWidth: '100px', - }, -] - -const SharedMailboxEnabledAccount = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - return ( - - ) -} - -export default SharedMailboxEnabledAccount diff --git a/src/views/email-exchange/rooms/AddRoomMailbox.jsx b/src/views/email-exchange/rooms/AddRoomMailbox.jsx deleted file mode 100644 index 7cddd93b8974..000000000000 --- a/src/views/email-exchange/rooms/AddRoomMailbox.jsx +++ /dev/null @@ -1,118 +0,0 @@ -import React from 'react' -import { - CCallout, - CButton, - CCol, - CForm, - CRow, - CSpinner, - CCard, - CCardHeader, - CCardTitle, - CCardBody, -} from '@coreui/react' -import { Form } from 'react-final-form' -import { RFFCFormInput, RFFCFormSelect, RFFCFormTextarea } from 'src/components/forms' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faCircleNotch } from '@fortawesome/free-solid-svg-icons' -import { CippPage } from 'src/components/layout/CippPage' -import { useLazyGenericPostRequestQuery } from 'src/store/api/app' -import { useListDomainsQuery } from 'src/store/api/domains' -import { useSelector } from 'react-redux' - -const AddRoomMailbox = () => { - const tenantDomain = useSelector((state) => state.app.currentTenant.defaultDomainName) - const { - data: domains = [], - isFetching: domainsIsFetching, - error: domainsError, - } = useListDomainsQuery({ tenantDomain }) - - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - const onSubmit = (values) => { - const shippedValues = { - tenantID: tenantDomain, - domain: values.domain, - displayName: values.displayName.trim(), - username: values.username.trim(), - userPrincipalName: values.username.trim() + '@' + values.domain.trim(), - resourceCapacity: values.resourceCapacity ? values.resourceCapacity.trim() : undefined, - } - // window.alert(JSON.stringify(shippedValues)) - genericPostRequest({ path: '/api/AddRoomMailbox', values: shippedValues }) - } - - // TODO: Add functionality to set location, office, floor and other things here - return ( - - - - Add Room - - - { - return ( - - - - - - - - - - - - {domainsIsFetching && } - {!domainsIsFetching && ( - ({ - value: domain.id, - label: domain.id, - }))} - /> - )} - {domainsError && Failed to load list of domains} - - - - - - - - - Add Room Mailbox - {postResults.isFetching && ( - - )} - - - - {postResults.isSuccess && ( - - {postResults.data.Results.map((message, idx) => { - return
  • {message}
  • - })} -
    - )} -
    - ) - }} - /> -
    -
    -
    - ) -} - -export default AddRoomMailbox diff --git a/src/views/email-exchange/rooms/ListRoomLists.jsx b/src/views/email-exchange/rooms/ListRoomLists.jsx deleted file mode 100644 index b6db3bcd2b40..000000000000 --- a/src/views/email-exchange/rooms/ListRoomLists.jsx +++ /dev/null @@ -1,76 +0,0 @@ -import React from 'react' -import { useSelector } from 'react-redux' -import { CButton } from '@coreui/react' -import { faEye, faEdit } from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { Link } from 'react-router-dom' -import { CippPageList } from 'src/components/layout' -import { CellTip } from 'src/components/tables' - -const RoomLists = () => { - const tenant = useSelector((state) => state.app.currentTenant) - /* const Actions = (row, rowIndex, formatExtraData) => ( - <> - - - - - - - )*/ - - const columns = [ - { - name: 'Name', - selector: (row) => row['displayName'], - sortable: true, - cell: (row) => CellTip(row['displayName']), - exportSelector: 'displayName', - maxWidth: '500px', - }, - { - name: 'Coordinates', - selector: (row) => row['geoCoordinates'], - sortable: true, - exportSelector: 'geoCoordinates', - maxWidth: '200px', - }, - { - name: 'PlaceId', - selector: (row) => row['placeId'], - sortable: true, - cell: (row) => CellTip(row['placeId']), - exportSelector: 'placeId', - maxWidth: '300px', - }, - /*{ - name: 'Address', - selector: (row) => row['address'], - sortable: true, - cell: (row) => CellTip(row['address']), - exportSelector: 'address', - maxWidth: '200px', - },*/ - /*{ - name: 'Actions', - cell: Actions, - maxWidth: '80px', - },*/ - ] - - return ( - - ) -} - -export default RoomLists diff --git a/src/views/email-exchange/rooms/ListRooms.jsx b/src/views/email-exchange/rooms/ListRooms.jsx deleted file mode 100644 index 77d4132ff906..000000000000 --- a/src/views/email-exchange/rooms/ListRooms.jsx +++ /dev/null @@ -1,93 +0,0 @@ -import React from 'react' -import { useSelector } from 'react-redux' -import { CButton } from '@coreui/react' -import { faEye, faEdit } from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { Link } from 'react-router-dom' -import { TitleButton } from 'src/components/buttons' -import { CippPageList } from 'src/components/layout' -import { CellTip } from 'src/components/tables' - -const Rooms = () => { - const tenant = useSelector((state) => state.app.currentTenant) - /* const Actions = (row, rowIndex, formatExtraData) => ( - <> - - - - - - - )*/ - const titleButton = - const columns = [ - { - name: 'Name', - selector: (row) => row['displayName'], - sortable: true, - cell: (row) => CellTip(row['displayName']), - exportSelector: 'displayName', - }, - { - name: 'Building', - selector: (row) => row['building'], - sortable: true, - exportSelector: 'building', - maxWidth: '200px', - }, - { - name: 'Floor', - selector: (row) => row['floorNumber'], - sortable: true, - cell: (row) => CellTip(row['floorNumber']), - exportSelector: 'floorNumber', - maxWidth: '100px', - }, - { - name: 'Capacity', - selector: (row) => row['capacity'], - sortable: true, - cell: (row) => CellTip(row['capacity']), - exportSelector: 'capacity', - maxWidth: '100px', - }, - { - name: 'bookingType', - selector: (row) => row['bookingType'], - sortable: true, - cell: (row) => CellTip(row['bookingType']), - exportSelector: 'bookingType', - maxWidth: '200px', - }, - /*{ - name: 'Address', - selector: (row) => row['address'], - sortable: true, - cell: (row) => CellTip(row['address']), - exportSelector: 'address', - maxWidth: '100px', - },*/ - /*{ - name: 'Actions', - cell: Actions, - maxWidth: '80px', - },*/ - ] - - return ( - - ) -} - -export default Rooms diff --git a/src/views/email-exchange/spamfilter/AddSpamfilterTemplate.jsx b/src/views/email-exchange/spamfilter/AddSpamfilterTemplate.jsx deleted file mode 100644 index 73b0a0670b3f..000000000000 --- a/src/views/email-exchange/spamfilter/AddSpamfilterTemplate.jsx +++ /dev/null @@ -1,61 +0,0 @@ -import React from 'react' -import { CButton, CCallout, CCol, CForm, CRow, CSpinner } from '@coreui/react' -import { Form } from 'react-final-form' -import { CippContentCard, CippPage } from 'src/components/layout' -import { RFFCFormTextarea } from 'src/components/forms' -import { useLazyGenericPostRequestQuery } from 'src/store/api/app' - -const SpamFilterAddTemplate = () => { - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - - const handleSubmit = async (values) => { - // alert(JSON.stringify(values, null, 2)) - // @todo hook this up - genericPostRequest({ path: '/api/AddTransportTemplate', values }) - } - - return ( - - - {postResults.isFetching && ( - - Loading - - )} - {postResults.isSuccess && {postResults.data.Results}} - { - return ( - - - - - - - - - - Add Template - - - - {/**/} - {/* */} - {/*
    {JSON.stringify(values, null, 2)}
    */} - {/*
    */} - {/*
    */} -
    - ) - }} - /> -
    -
    - ) -} - -export default SpamFilterAddTemplate diff --git a/src/views/email-exchange/spamfilter/DeploySpamfilter.jsx b/src/views/email-exchange/spamfilter/DeploySpamfilter.jsx deleted file mode 100644 index c2135ec9c833..000000000000 --- a/src/views/email-exchange/spamfilter/DeploySpamfilter.jsx +++ /dev/null @@ -1,214 +0,0 @@ -import React from 'react' -import { CCol, CRow, CCallout, CSpinner } from '@coreui/react' -import { Field, FormSpy } from 'react-final-form' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons' -import { CippWizard } from 'src/components/layout' -import { WizardTableField } from 'src/components/tables' -import PropTypes from 'prop-types' -import { RFFCFormSelect, RFFCFormTextarea, RFFCFormInput } from 'src/components/forms' -import { useLazyGenericGetRequestQuery, useLazyGenericPostRequestQuery } from 'src/store/api/app' -import { OnChange } from 'react-final-form-listeners' - -const Error = ({ name }) => ( - - touched && error ? ( - - - {error} - - ) : null - } - /> -) - -Error.propTypes = { - name: PropTypes.string.isRequired, -} - -const requiredArray = (value) => (value && value.length !== 0 ? undefined : 'Required') -const SpamFilterAdd = () => { - const [intuneGetRequest, intuneTemplates] = useLazyGenericGetRequestQuery() - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - - const handleSubmit = async (values) => { - values.selectedTenants.map( - (tenant) => (values[`Select_${tenant.defaultDomainName}`] = tenant.defaultDomainName), - ) - values.TemplateType = values.Type - genericPostRequest({ path: '/api/AddSpamfilter', values: values }) - } - const WhenFieldChanges = ({ field, set }) => ( - - {( - // No subscription. We only use Field to get to the change function - { input: { onChange } }, - ) => ( - - {({ form }) => ( - - {(value) => { - let template = intuneTemplates.data.filter(function (obj) { - return obj.GUID === value - }) - onChange(JSON.stringify(template[0])) - }} - - )} - - )} - - ) - - WhenFieldChanges.propTypes = { - field: PropTypes.node, - set: PropTypes.string, - } - - const formValues = { - TemplateType: 'Admin', - } - - return ( - - -
    -

    Step 1

    -
    Choose tenants
    -
    -
    - - {(props) => ( - row['displayName'], - sortable: true, - exportselector: 'displayName', - }, - { - name: 'Default Domain Name', - selector: (row) => row['defaultDomainName'], - sortable: true, - exportselector: 'mail', - }, - ]} - fieldProps={props} - /> - )} - - -
    -
    - -
    -

    Step 2

    -
    - Enter the raw JSON for this policy, or select from a template. You can create templates - from existing policies. -
    -
    -
    - - - {intuneTemplates.isUninitialized && - intuneGetRequest({ path: 'api/ListSpamFilterTemplates' })} - {intuneTemplates.isSuccess && ( - ({ - value: template.GUID, - label: template.name, - }))} - placeholder="Select a template" - label="Please choose a template to apply, or enter the information manually." - /> - )} - - - - - - - - - - - - -
    - -
    - -
    -

    Step 3

    -
    Confirm and apply
    -
    -
    - {!postResults.isSuccess && ( - - {/* eslint-disable react/prop-types */} - {(props) => { - return ( - <> - - - -
    Selected Tenants
    - - {props.values.selectedTenants.map((tenant, idx) => ( -
  • - {tenant.displayName}- {tenant.defaultDomainName} -
  • - ))} -
    -
    Rule Settings
    - {props.values.PowerShellCommand} -
    Priority
    - {props.values.Priority} -
    -
    - - ) - }} -
    - )} - {postResults.isFetching && ( - - Loading - - )} - {postResults.isSuccess && ( - - {postResults.data.Results.map((message, idx) => { - return
  • {message}
  • - })} -
    - )} -
    -
    -
    - ) -} - -export default SpamFilterAdd diff --git a/src/views/email-exchange/spamfilter/ListSpamfilterTemplates.jsx b/src/views/email-exchange/spamfilter/ListSpamfilterTemplates.jsx deleted file mode 100644 index eb5bad83bbc3..000000000000 --- a/src/views/email-exchange/spamfilter/ListSpamfilterTemplates.jsx +++ /dev/null @@ -1,120 +0,0 @@ -import React, { useState } from 'react' -import { useSelector } from 'react-redux' -import { CellTip } from 'src/components/tables' -import { CButton, CCallout, CSpinner } from '@coreui/react' -import { faEye, faTrash } from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { useLazyGenericGetRequestQuery } from 'src/store/api/app' -import { CippPageList } from 'src/components/layout' -import { ModalService } from 'src/components/utilities' -import CippCodeOffCanvas from 'src/components/utilities/CippCodeOffcanvas' - -const SpamFilterListTemplates = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - const [ExecuteGetRequest, getResults] = useLazyGenericGetRequestQuery() - const Offcanvas = (row, rowIndex, formatExtraData) => { - const [ocVisible, setOCVisible] = useState(false) - const handleDeleteIntuneTemplate = (apiurl, message) => { - ModalService.confirm({ - title: 'Confirm', - body:
    {message}
    , - onConfirm: () => ExecuteGetRequest({ path: apiurl }), - confirmLabel: 'Continue', - cancelLabel: 'Cancel', - }) - } - return ( - <> - setOCVisible(true)}> - - - - handleDeleteIntuneTemplate( - `/api/RemoveSpamfilterTemplate?ID=${row.GUID}`, - 'Do you want to delete the template?', - ) - } - > - - - - setOCVisible(false)} - /> - - ) - } - - const columns = [ - { - name: 'Display Name', - selector: (row) => row['name'], - sortable: true, - cell: (row) => CellTip(row['name']), - exportSelector: 'name', - }, - { - name: 'High Confidence Spam Action', - selector: (row) => row['HighConfidenceSpamAction'], - sortable: true, - exportSelector: 'HighConfidenceSpamAction', - }, - { - name: 'Bulk Spam Action', - selector: (row) => row['BulkSpamAction'], - sortable: true, - exportSelector: 'BulkSpamAction', - }, - { - name: 'Phish Spam Action', - selector: (row) => row['PhishSpamAction'], - sortable: true, - exportSelector: 'PhishSpamAction', - }, - { - name: 'GUID', - selector: (row) => row['GUID'], - sortable: true, - cell: (row) => CellTip(row['GUID']), - exportSelector: 'GUID', - }, - { - name: 'Actions', - cell: Offcanvas, - maxWidth: '80px', - }, - ] - - return ( - <> - {getResults.isFetching && ( - - Loading - - )} - {getResults.isSuccess && {getResults.data?.Results}} - {getResults.isError && ( - Could not connect to API: {getResults.error.message} - )} - - - ) -} - -export default SpamFilterListTemplates diff --git a/src/views/email-exchange/spamfilter/Spamfilter.jsx b/src/views/email-exchange/spamfilter/Spamfilter.jsx deleted file mode 100644 index 0ae3082db8a3..000000000000 --- a/src/views/email-exchange/spamfilter/Spamfilter.jsx +++ /dev/null @@ -1,195 +0,0 @@ -import { CButton } from '@coreui/react' -import { faBan, faBook, faCheck, faEllipsisV, faTrash } from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import React, { useState } from 'react' -import { useSelector } from 'react-redux' -import { CippPageList } from 'src/components/layout' -import { CippActionsOffcanvas } from 'src/components/utilities' -import { cellBooleanFormatter, cellDateFormatter, CellTip } from 'src/components/tables' -import { TitleButton } from 'src/components/buttons' - -const Offcanvas = (row, rowIndex, formatExtraData) => { - const tenant = useSelector((state) => state.app.currentTenant) - const [ocVisible, setOCVisible] = useState(false) - //console.log(row) - return ( - <> - setOCVisible(true)}> - - - , - modalBody: row, - modalType: 'POST', - modalUrl: `/api/AddSpamfilterTemplate`, - modalMessage: 'Are you sure you want to create a template based on this rule?', - }, - { - label: 'Enable Rule', - color: 'info', - icon: , - modal: true, - modalUrl: `/api/EditSpamfilter?State=enable&TenantFilter=${tenant.defaultDomainName}&name=${row.Name}`, - modalMessage: 'Are you sure you want to enable this rule?', - }, - { - label: 'Disable Rule', - color: 'info', - icon: , - modal: true, - modalUrl: `/api/EditSpamfilter?State=disable&TenantFilter=${tenant.defaultDomainName}&name=${row.Name}`, - modalMessage: 'Are you sure you want to disable this rule?', - }, - { - label: 'Delete Rule', - color: 'danger', - modal: true, - icon: , - modalUrl: `/api/RemoveSpamFilter?TenantFilter=${tenant.defaultDomainName}&name=${row.Name}`, - modalMessage: 'Are you sure you want to delete this rule?', - }, - ]} - placement="end" - visible={ocVisible} - id={row.id} - hideFunction={() => setOCVisible(false)} - /> - - ) -} - -const columns = [ - { - name: 'Name', - selector: (row) => row['Name'], - sortable: true, - wrap: true, - cell: (row) => CellTip(row['Name']), - exportSelector: 'Name', - }, - { - name: 'Default Rule', - selector: (row) => row['IsDefault'], - sortable: true, - cell: cellBooleanFormatter(), - exportSelector: 'IsDefault', - }, - { - name: 'Rule State', - selector: (row) => row['ruleState'], - sortable: true, - exportSelector: 'ruleState', - }, - { - name: 'Priority', - selector: (row) => row['rulePrio'], - sortable: true, - exportSelector: 'rulePrio', - }, - { - name: 'High Confidence Spam Action', - selector: (row) => row['HighConfidenceSpamAction'], - sortable: true, - exportSelector: 'HighConfidenceSpamAction', - }, - { - name: 'Bulk Spam Action', - selector: (row) => row['BulkSpamAction'], - sortable: true, - exportSelector: 'BulkSpamAction', - }, - { - name: 'Phish Spam Action', - selector: (row) => row['PhishSpamAction'], - sortable: true, - exportSelector: 'PhishSpamAction', - }, - { - name: 'Creation Date', - selector: (row) => row['WhenCreated'], - sortable: true, - exportSelector: 'WhenChanged', - cell: cellDateFormatter(), - }, - { - name: 'Last Edit Date', - selector: (row) => row['WhenChanged'], - sortable: true, - exportSelector: 'WhenChanged', - cell: cellDateFormatter(), - }, - { - name: 'Actions', - cell: Offcanvas, - maxWidth: '80px', - }, -] - -const SpamFilterList = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - return ( - - - - } - tenantSelector={true} - datatable={{ - reportName: `${tenant?.defaultDomainName}-Spamfilter-list`, - path: '/api/Listspamfilter', - params: { TenantFilter: tenant?.defaultDomainName }, - columns, - }} - /> - ) -} - -export default SpamFilterList diff --git a/src/views/email-exchange/tools/MailTest.jsx b/src/views/email-exchange/tools/MailTest.jsx deleted file mode 100644 index 27b55070f6db..000000000000 --- a/src/views/email-exchange/tools/MailTest.jsx +++ /dev/null @@ -1,126 +0,0 @@ -import { CButton, CSpinner } from '@coreui/react' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import React from 'react' -import { CippCallout, CippPageList } from 'src/components/layout' -import { cellBooleanFormatter, cellDateFormatter } from 'src/components/tables' -import { cellGenericFormatter } from 'src/components/tables/CellGenericFormat' -import { useGenericGetRequestQuery } from 'src/store/api/app' - -const MailTest = () => { - const configQuery = useGenericGetRequestQuery({ - path: '/api/ExecMailTest', - params: { Action: 'CheckConfig' }, - }) - - function handleConfigRetry() { - configQuery.refetch() - } - - const columns = [ - { - name: 'Received', - selector: (row) => row['Received'], - sortable: true, - exportSelector: 'Received', - cell: cellDateFormatter({ format: 'short' }), - }, - { - name: 'From', - selector: (row) => row['From'], - sortable: true, - exportSelector: 'From', - cell: cellGenericFormatter(), - }, - { - name: 'Subject', - selector: (row) => row['Subject'], - sortable: true, - exportSelector: 'Subject', - cell: cellGenericFormatter(), - }, - { - name: 'SPF', - selector: (row) => row?.AuthResult?.find((x) => x?.Name === 'spf')?.Status == 'pass', - cell: cellBooleanFormatter(), - }, - { - name: 'DKIM', - selector: (row) => row?.AuthResult?.find((x) => x?.Name === 'dkim')?.Status == 'pass', - cell: cellBooleanFormatter(), - }, - { - name: 'DMARC', - selector: (row) => row?.AuthResult?.find((x) => x?.Name === 'dmarc')?.Status == 'pass', - cell: cellBooleanFormatter(), - }, - { - name: 'Comp Auth', - selector: (row) => row?.AuthResult?.find((x) => x?.Name === 'compauth')?.Status == 'pass', - cell: cellBooleanFormatter(), - }, - { - name: 'Auth Details', - selector: (row) => row['AuthResult'], - exportSelector: 'AuthResult', - cell: cellGenericFormatter(), - }, - { - name: 'Headers', - selector: (row) => row['Headers'], - exportSelector: 'Headers', - cell: cellGenericFormatter(), - }, - { - name: 'Open Message', - selector: (row) => row['Link'], - exportSelector: 'Link', - cell: cellGenericFormatter(), - }, - ] - return ( -
    - {configQuery.isSuccess && ( - - {configQuery.data?.HasMailRead && ( - <> - Mail test email: - x?.IsPrimary)[0]?.Address - } - > - {configQuery.data?.MailAddresses.filter((x) => x?.IsPrimary)[0]?.Address} - - - )} - {configQuery.data?.HasMailRead == false && ( - <> - Permission Check: {configQuery.data?.Message}{' '} - handleConfigRetry()}> - {configQuery.isLoading ? : } Retry - - - )} - - )} - {configQuery.isLoading && } - {configQuery.isSuccess && configQuery.data?.HasMailRead === true && ( - - )} -
    - ) -} - -export default MailTest diff --git a/src/views/email-exchange/tools/MailboxRestoreWizard.jsx b/src/views/email-exchange/tools/MailboxRestoreWizard.jsx deleted file mode 100644 index 490c7d54f98d..000000000000 --- a/src/views/email-exchange/tools/MailboxRestoreWizard.jsx +++ /dev/null @@ -1,223 +0,0 @@ -import React, { useState } from 'react' -import { CCallout, CCol, CListGroup, CListGroupItem, CRow, CSpinner } from '@coreui/react' -import { Field, FormSpy } from 'react-final-form' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faExclamationTriangle, faTimes, faCheck } from '@fortawesome/free-solid-svg-icons' -import { useSelector } from 'react-redux' -import { CippWizard } from 'src/components/layout' -import PropTypes from 'prop-types' -import { - RFFCFormCheck, - RFFCFormInput, - RFFCFormSelect, - RFFCFormSwitch, - RFFSelectSearch, -} from 'src/components/forms' -import { TenantSelector } from 'src/components/utilities' -import { useListUsersQuery } from 'src/store/api/users' -import { useGenericGetRequestQuery, useLazyGenericPostRequestQuery } from 'src/store/api/app' - -const Error = ({ name }) => ( - - touched && error ? ( - - - {error} - - ) : null - } - /> -) - -Error.propTypes = { - name: PropTypes.string.isRequired, -} - -const MailboxRestoreWizard = () => { - const tenantDomain = useSelector((state) => state.app.currentTenant.defaultDomainName) - const [anrFilter, setAnrFilter] = useState('') - const { - data: sourceMailboxes = [], - isFetching: sMailboxesIsFetching, - error: sMailboxError, - } = useGenericGetRequestQuery({ - path: '/api/ListMailboxes', - params: { - TenantFilter: tenantDomain, - SoftDeletedMailbox: true, - SkipLicense: true, - }, - }) - const { - data: targetMailboxes = [], - isFetching: tMailboxesIsFetching, - error: tMailboxError, - } = useGenericGetRequestQuery({ - path: '/api/ListMailboxes', - params: { TenantFilter: tenantDomain, Anr: anrFilter, SkipLicense: true }, - }) - const currentSettings = useSelector((state) => state.app) - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - - const handleSubmit = async (values) => { - const shippedValues = { - TenantFilter: tenantDomain, - RequestName: values.RequestName, - SourceMailbox: values.SourceMailbox.value, - TargetMailbox: values.TargetMailbox.value, - BadItemLimit: values.BadItemLimit, - LargeItemLimit: values.LargeItemLimit, - AcceptLargeDataLoss: values.AcceptLargeDataLoss, - } - - //alert(JSON.stringify(values, null, 2)) - genericPostRequest({ path: '/api/ExecMailboxRestore', values: shippedValues }) - } - - return ( - - -
    -

    Step 1

    -
    Choose a tenant
    -
    -
    - {(props) => } -
    -
    - -
    -

    Step 2

    -
    Select a soft deleted mailbox to restore.
    -
    -
    -
    - ({ - value: mbx.ExchangeGuid, - name: `${mbx.displayName} <${mbx.UPN}>`, - }))} - placeholder={!sMailboxesIsFetching ? 'Select mailbox' : 'Loading...'} - name="SourceMailbox" - isLoading={sMailboxesIsFetching} - /> - {sMailboxError && Failed to load source mailboxes} -
    -
    -
    - -
    -

    Step 2

    -
    Select a mailbox to restore to.
    -
    -
    -
    - ({ - value: mbx.ExchangeGuid, - name: `${mbx.displayName} <${mbx.UPN}>`, - }))} - retainInput={true} - onInputChange={setAnrFilter} - isLoading={tMailboxesIsFetching} - /> - {sMailboxError && Failed to load source mailboxes} -
    -
    -
    - -
    -

    Step 3

    -
    Enter Restore Request Options
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - -
    -
    -
    - -
    -

    Step 4

    -
    Confirm and apply
    -
    -
    -
    - {postResults.isFetching && ( - - Loading - - )} - {postResults.isSuccess && ( - - {postResults.data.Results.map((message, idx) => { - return
  • {message}
  • - })} -
    - )} - {!postResults.isSuccess && ( - - {/* eslint-disable react/prop-types */} - {(props) => ( - <> - - - - -
    Selected Tenant:
    - {tenantDomain} -
    - -
    Source Mailbox:
    - {props.values.SourceMailbox.label} -
    - -
    Target Mailbox:
    - {props.values.TargetMailbox.label} -
    -
    -
    -
    - - )} -
    - )} -
    -
    -
    -
    - ) -} - -export default MailboxRestoreWizard diff --git a/src/views/email-exchange/tools/MailboxRestores.jsx b/src/views/email-exchange/tools/MailboxRestores.jsx deleted file mode 100644 index 3a12702dd2ce..000000000000 --- a/src/views/email-exchange/tools/MailboxRestores.jsx +++ /dev/null @@ -1,179 +0,0 @@ -import { CButton } from '@coreui/react' -import { faEllipsisV } from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import React, { useState } from 'react' -import { useSelector } from 'react-redux' -import { CippPageList } from 'src/components/layout' -import { cellDateFormatter } from 'src/components/tables' -import { CippActionsOffcanvas } from 'src/components/utilities' -import { useLazyGenericGetRequestQuery } from 'src/store/api/app' -import Skeleton from 'react-loading-skeleton' -import { cellGenericFormatter } from 'src/components/tables/CellGenericFormat' - -const Actions = (row, rowIndex, formatExtraData) => { - const [ocVisible, setOCVisible] = useState(false) - const [getMailboxRestoreStats, mailboxRestoreStats] = useLazyGenericGetRequestQuery() - const tenant = useSelector((state) => state.app.currentTenant) - - function statProperty(mailboxRestoreStats, propertyName) { - return ( - <> - {mailboxRestoreStats.isFetching && } - {!mailboxRestoreStats.isFetching && - mailboxRestoreStats.isSuccess && - (mailboxRestoreStats?.data[0][propertyName]?.toString() ?? ' ')} - - ) - } - - function loadOffCanvasDetails(id) { - setOCVisible(true) - getMailboxRestoreStats({ - path: 'api/ListMailboxRestores', - params: { - TenantFilter: tenant.defaultDomainName, - Identity: id, - Statistics: true, - IncludeReport: true, - }, - }) - } - var extendedInfo = [ - { label: 'Status', value: statProperty(mailboxRestoreStats, 'Status') }, - { label: 'Status Detail', value: statProperty(mailboxRestoreStats, 'StatusDetail') }, - { label: 'Sync Stage', value: statProperty(mailboxRestoreStats, 'SyncStage') }, - { label: 'Data Consistency', value: statProperty(mailboxRestoreStats, 'DataConsistencyScore') }, - { - label: 'Estimated Transfer', - value: statProperty(mailboxRestoreStats, 'EstimatedTransferSize'), - }, - { - label: 'Bytes Transferred', - value: statProperty(mailboxRestoreStats, 'BytesTransferred'), - }, - { - label: 'Percent Complete', - value: statProperty(mailboxRestoreStats, 'PercentComplete'), - }, - { - label: 'Estimated Item Count', - value: statProperty(mailboxRestoreStats, 'EstimatedTransferItemCount'), - }, - { - label: 'Transferred Items', - value: statProperty(mailboxRestoreStats, 'ItemsTransferred'), - }, - ] - - return ( - <> - loadOffCanvasDetails(row.Identity)}> - - - setOCVisible(false)} - /> - - ) -} - -const MailboxRestores = () => { - const tenant = useSelector((state) => state.app.currentTenant) - const columns = [ - { - name: 'Name', - selector: (row) => row['Name'], - sortable: true, - exportSelector: 'Name', - cell: cellGenericFormatter(), - }, - { - name: 'Status', - selector: (row) => row['Status'], - sortable: true, - exportSelector: 'Status', - cell: cellGenericFormatter(), - }, - { - name: 'Target Mailbox', - selector: (row) => row['TargetMailbox'], - sortable: true, - exportSelector: 'TargetMailbox', - cell: cellGenericFormatter(), - }, - { - name: 'Created', - selector: (row) => row['WhenCreated'], - sortable: true, - exportSelector: 'WhenCreated', - cell: cellDateFormatter({ format: 'short' }), - }, - { - name: 'Changed', - selector: (row) => row['WhenChanged'], - sortable: true, - exportSelector: 'WhenChanged', - cell: cellDateFormatter({ format: 'short' }), - }, - { - name: 'Actions', - cell: Actions, - maxWidth: '80px', - }, - ] - return ( -
    - -
    - ) -} - -export default MailboxRestores diff --git a/src/views/email-exchange/tools/MessageViewer.jsx b/src/views/email-exchange/tools/MessageViewer.jsx deleted file mode 100644 index f010c0b37c4f..000000000000 --- a/src/views/email-exchange/tools/MessageViewer.jsx +++ /dev/null @@ -1,342 +0,0 @@ -import React, { useCallback, useEffect, useMemo, useState } from 'react' -import PropTypes from 'prop-types' -import { CippPage, CippMasonry, CippMasonryItem, CippContentCard } from 'src/components/layout' -import { parseEml, readEml, GBKUTF8, decode } from 'eml-parse-js' -import { useMediaPredicate } from 'react-media-hook' -import { useSelector } from 'react-redux' -import { CellDate } from 'src/components/tables' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { - CButton, - CCard, - CCardBody, - CCol, - CDropdown, - CDropdownMenu, - CDropdownToggle, - CLink, - CRow, -} from '@coreui/react' -import ReactTimeAgo from 'react-time-ago' -import { CippCodeBlock, ModalService } from 'src/components/utilities' -import DOMPurify from 'dompurify' -import ReactHtmlParser from 'react-html-parser' -import CippDropzone from 'src/components/utilities/CippDropzone' - -const MessageViewer = ({ emailSource }) => { - const [emlContent, setEmlContent] = useState(null) - const [emlError, setEmlError] = useState(false) - const [messageHtml, setMessageHtml] = useState('') - const [emlHeaders, setEmlHeaders] = useState(null) - - const getAttachmentIcon = (contentType) => { - if (contentType.includes('image')) { - return 'image' - } else if (contentType.includes('audio')) { - return 'volume-up' - } else if (contentType.includes('video')) { - return 'video' - } else if (contentType.includes('text')) { - return 'file-lines' - } else if (contentType.includes('pdf')) { - return 'file-pdf' - } else if ( - contentType.includes('zip') || - contentType.includes('compressed') || - contentType.includes('tar') || - contentType.includes('gzip') - ) { - return 'file-zipper' - } else if (contentType.includes('msword')) { - return 'file-word' - } else if (contentType.includes('spreadsheet')) { - return 'file-excel' - } else if (contentType.includes('presentation')) { - return 'file-powerpoint' - } else if (contentType.includes('json') || contentType.includes('xml')) { - return 'file-code' - } else if (contentType.includes('rfc822')) { - return 'envelope' - } else { - return 'file' - } - } - - const downloadAttachment = (attachment, newTab = false) => { - var contentType = attachment?.contentType?.split(';')[0] ?? 'text/plain' - var fileBytes = attachment.data - if (fileBytes instanceof Uint8Array && attachment?.data64) { - fileBytes = new Uint8Array( - atob(attachment.data64) - .split('') - .map((c) => c.charCodeAt(0)), - ) - } - var fileName = attachment.name - const blob = new Blob([fileBytes], { type: contentType ?? 'application/octet-stream' }) - const url = URL.createObjectURL(blob) - const link = document.createElement('a') - if (newTab) { - if (contentType.includes('rfc822')) { - var content = fileBytes - const nestedMessage = - ModalService.open({ - body: nestedMessage, - title: fileName, - size: 'lg', - }) - } else if (contentType.includes('pdf')) { - const embeddedPdf = - ModalService.open({ - body: embeddedPdf, - title: fileName, - size: 'lg', - }) - } else if (contentType.includes('image')) { - const embeddedImage = {fileName} - ModalService.open({ - body: embeddedImage, - title: fileName, - size: 'lg', - }) - } else if (contentType.includes('text')) { - const textContent = fileBytes - ModalService.open({ - data: textContent, - componentType: 'codeblock', - title: fileName, - size: 'lg', - }) - setTimeout(() => { - URL.revokeObjectURL(url) - }, 1000) - } else { - const newWindow = window.open() - newWindow.location.href = url - URL.revokeObjectURL(url) - } - } else { - link.href = url - link.download = fileName - link.click() - URL.revokeObjectURL(url) - } - } - - function isValidDate(d) { - return d instanceof Date && !isNaN(d) - } - - const showEmailModal = (emailSource, title = 'Email Source') => { - ModalService.open({ - data: emailSource, - componentType: 'codeblock', - title: title, - size: 'lg', - }) - } - - const EmailButtons = (emailHeaders, emailSource) => { - const emailSourceBytes = new TextEncoder().encode(emailSource) - const blob = new Blob([emailSourceBytes], { type: 'message/rfc822' }) - const url = URL.createObjectURL(blob) - return ( - - {emailHeaders && ( - showEmailModal(emailHeaders, 'Email Headers')} className="me-2"> - - View Headers - - )} - showEmailModal(emailSource)}> - - View Source - - - ) - } - - useEffect(() => { - readEml(emailSource, (err, ReadEmlJson) => { - if (err) { - setEmlError(true) - setEmlContent(null) - setMessageHtml(null) - setEmlHeaders(null) - } else { - setEmlContent(ReadEmlJson) - setEmlError(false) - if (ReadEmlJson.html) { - var sanitizedHtml = DOMPurify.sanitize(ReadEmlJson.html) - var parsedHtml = ReactHtmlParser(sanitizedHtml) - setMessageHtml(parsedHtml) - } else { - setMessageHtml(null) - } - const header_regex = /(?:^[\w-]+:\s?.*(?:\r?\n[ \t].*)*\r?\n?)+/gm - const headers = emailSource.match(header_regex) - setEmlHeaders(headers ? headers[0] : null) - } - }) - }, [emailSource, setMessageHtml, setEmlError, setEmlContent, setEmlHeaders]) - - var buttons = EmailButtons(emlHeaders, emailSource) - - return ( - <> - {emlError && ( - - Unable to parse the EML file, email source is displayed below. - - - )} - - {emlContent && ( - <> - - <> - - -
    - - {emlContent?.from?.name} <{emlContent?.from?.email}> -
    - {emlContent?.to?.length > 0 && ( -
    - - To:{' '} - {emlContent?.to?.map((to) => to.name + ' <' + to.email + '>').join(', ')} - -
    - )} - {emlContent?.cc?.length > 0 && ( -
    - - CC:{' '} - {emlContent?.cc?.map((cc) => cc.name + ' <' + cc.email + '>').join(', ')} - -
    - )} -
    - -
    - - - {emlContent.date && isValidDate(emlContent.date) - ? emlContent.date.toLocaleDateString() - : 'Invalid Date'} - - {emlContent.date && isValidDate(emlContent.date) && ( - <> - () - - )} - -
    -
    -
    - - - {emlContent.attachments && emlContent.attachments.length > 0 && ( - - - {emlContent.attachments.map((attachment, index) => ( - - - - {attachment.name ?? 'No name'} - - - downloadAttachment(attachment)} - > - - Download - - {(attachment?.contentType === undefined || - attachment?.contentType?.includes('text') || - attachment?.contentType?.includes('pdf') || - attachment?.contentType?.includes('image') || - attachment?.contentType?.includes('rfc822')) && ( - downloadAttachment(attachment, true)} - > - - View - - )} - - - ))} - - - )} - - {(emlContent?.text || emlContent?.html) && ( - - - {messageHtml ? ( -
    {messageHtml}
    - ) : ( -
    - -
    - )} -
    -
    - )} -
    - - )} - - ) -} - -MessageViewer.propTypes = { - emailSource: PropTypes.string, -} - -const MessageViewerPage = () => { - const [emlFile, setEmlFile] = useState(null) - const onDrop = useCallback((acceptedFiles) => { - acceptedFiles.forEach((file) => { - const reader = new FileReader() - reader.onabort = () => console.log('file reading was aborted') - reader.onerror = () => console.log('file reading has failed') - reader.onload = () => { - setEmlFile(reader.result) - } - reader.readAsText(file) - }) - }, []) - - return ( - - - {emlFile && } - - ) -} - -export default MessageViewerPage diff --git a/src/views/email-exchange/transport/AddTransportTemplate.jsx b/src/views/email-exchange/transport/AddTransportTemplate.jsx deleted file mode 100644 index 339ff4fd87d7..000000000000 --- a/src/views/email-exchange/transport/AddTransportTemplate.jsx +++ /dev/null @@ -1,61 +0,0 @@ -import React from 'react' -import { CButton, CCallout, CCol, CForm, CRow, CSpinner } from '@coreui/react' -import { Form } from 'react-final-form' -import { CippContentCard, CippPage } from 'src/components/layout' -import { RFFCFormTextarea } from 'src/components/forms' -import { useLazyGenericPostRequestQuery } from 'src/store/api/app' - -const TransportAddTemplate = () => { - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - - const handleSubmit = async (values) => { - // alert(JSON.stringify(values, null, 2)) - // @todo hook this up - genericPostRequest({ path: '/api/AddTransportTemplate', values }) - } - - return ( - - - {postResults.isFetching && ( - - Loading - - )} - {postResults.isSuccess && {postResults.data.Results}} - { - return ( - - - - - - - - - - Add Template - - - - {/**/} - {/* */} - {/*
    {JSON.stringify(values, null, 2)}
    */} - {/*
    */} - {/*
    */} -
    - ) - }} - /> -
    -
    - ) -} - -export default TransportAddTemplate diff --git a/src/views/email-exchange/transport/DeployTransport.jsx b/src/views/email-exchange/transport/DeployTransport.jsx deleted file mode 100644 index 8a0e5b6c35cb..000000000000 --- a/src/views/email-exchange/transport/DeployTransport.jsx +++ /dev/null @@ -1,208 +0,0 @@ -import React from 'react' -import { CCol, CRow, CCallout, CSpinner } from '@coreui/react' -import { Field, FormSpy } from 'react-final-form' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons' -import { CippWizard } from 'src/components/layout' -import { WizardTableField } from 'src/components/tables' -import PropTypes from 'prop-types' -import { RFFCFormSelect, RFFCFormTextarea } from 'src/components/forms' -import { useLazyGenericGetRequestQuery, useLazyGenericPostRequestQuery } from 'src/store/api/app' -import { OnChange } from 'react-final-form-listeners' - -const Error = ({ name }) => ( - - touched && error ? ( - - - {error} - - ) : null - } - /> -) - -Error.propTypes = { - name: PropTypes.string.isRequired, -} - -const requiredArray = (value) => (value && value.length !== 0 ? undefined : 'Required') -const AddPolicy = () => { - const [TransportGetRequest, TransportTemplates] = useLazyGenericGetRequestQuery() - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - - const handleSubmit = async (values) => { - values.selectedTenants.map( - (tenant) => (values[`Select_${tenant.defaultDomainName}`] = tenant.defaultDomainName), - ) - values.TemplateType = values.Type - genericPostRequest({ path: '/api/AddTransportRule', values: values }) - } - const WhenFieldChanges = ({ field, set }) => ( - - {( - // No subscription. We only use Field to get to the change function - { input: { onChange } }, - ) => ( - - {({ form }) => ( - - {(value) => { - let template = TransportTemplates.data.filter(function (obj) { - return obj.GUID === value - }) - onChange(JSON.stringify(template[0])) - }} - - )} - - )} - - ) - - WhenFieldChanges.propTypes = { - field: PropTypes.node, - set: PropTypes.string, - } - - const formValues = { - TemplateType: 'Admin', - } - - return ( - - -
    -

    Step 1

    -
    Choose tenants
    -
    -
    - - {/* eslint-disable react/prop-types */} - {(props) => ( - row['displayName'], - sortable: true, - exportselector: 'displayName', - }, - { - name: 'Default Domain Name', - selector: (row) => row['defaultDomainName'], - sortable: true, - exportselector: 'mail', - }, - ]} - fieldProps={props} - /> - )} - - -
    -
    - -
    -

    Step 2

    -
    - Enter the raw JSON for this policy, or select from a template. You can create templates - from existing policies. -
    -
    -
    - - - {TransportTemplates.isUninitialized && - TransportGetRequest({ path: 'api/ListTransportRulesTemplates' })} - {TransportTemplates.isSuccess && ( - ({ - value: template.GUID, - label: template.name, - }))} - placeholder="Select a template" - label="Please choose a template to apply, or enter the information manually." - /> - )} - - - - - - - -
    - -
    - -
    -

    Step 3

    -
    Confirm and apply
    -
    -
    - {!postResults.isSuccess && ( - - {(props) => { - //* eslint-disable react/prop-types */ - return ( - <> - - - -
    Selected Tenants
    - - {props.values.selectedTenants.map((tenant, idx) => ( -
  • - {tenant.displayName}- {tenant.defaultDomainName} -
  • - ))} -
    -
    Rule Settings
    - {props.values.PowerShellCommand} -
    -
    - - ) - }} -
    - )} - {postResults.isFetching && ( - - Loading - - )} - {postResults.isSuccess && ( - - {postResults.data.Results.map((message, idx) => { - return
  • {message}
  • - })} -
    - )} -
    -
    -
    - ) -} - -export default AddPolicy diff --git a/src/views/email-exchange/transport/ListTransportTemplates.jsx b/src/views/email-exchange/transport/ListTransportTemplates.jsx deleted file mode 100644 index 44117dea0fa0..000000000000 --- a/src/views/email-exchange/transport/ListTransportTemplates.jsx +++ /dev/null @@ -1,111 +0,0 @@ -import React, { useState } from 'react' -import { useSelector } from 'react-redux' -import { CellTip } from 'src/components/tables' -import { CButton, CCallout, CSpinner } from '@coreui/react' -import { faEye, faTrash } from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { useLazyGenericGetRequestQuery } from 'src/store/api/app' -import { CippPageList } from 'src/components/layout' -import { ModalService } from 'src/components/utilities' -import { TitleButton } from 'src/components/buttons' -import CippCodeOffCanvas from 'src/components/utilities/CippCodeOffcanvas' - -const TransportListTemplates = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - const [ExecuteGetRequest, getResults] = useLazyGenericGetRequestQuery() - const Offcanvas = (row, rowIndex, formatExtraData) => { - const [ocVisible, setOCVisible] = useState(false) - const handleDeleteTransportTemplate = (apiurl, message) => { - ModalService.confirm({ - title: 'Confirm', - body:
    {message}
    , - onConfirm: () => ExecuteGetRequest({ path: apiurl }), - confirmLabel: 'Continue', - cancelLabel: 'Cancel', - }) - } - return ( - <> - setOCVisible(true)}> - - - - handleDeleteTransportTemplate( - `/api/RemoveTransportRuleTemplate?ID=${row.GUID}`, - 'Do you want to delete the template?', - ) - } - > - - - - setOCVisible(false)} - /> - - ) - } - - const columns = [ - { - name: 'Display Name', - selector: (row) => row['name'], - sortable: true, - cell: (row) => CellTip(row['name']), - exportSelector: 'name', - }, - { - name: 'Comments', - selector: (row) => row['comments'], - sortable: true, - cell: (row) => CellTip(row['comments']), - exportSelector: 'Comments', - }, - { - name: 'GUID', - selector: (row) => row['GUID'], - sortable: true, - cell: (row) => CellTip(row['GUID']), - exportSelector: 'GUID', - }, - { - name: 'Actions', - cell: Offcanvas, - maxWidth: '80px', - }, - ] - - return ( - <> - {getResults.isFetching && ( - - Loading - - )} - {getResults.isSuccess && {getResults.data?.Results}} - {getResults.isError && ( - Could not connect to API: {getResults.error.message} - )} - } - datatable={{ - reportName: `${tenant?.defaultDomainName}-Groups`, - path: '/api/ListTransportRulesTemplates', - params: { TenantFilter: tenant?.defaultDomainName }, - columns, - }} - /> - - ) -} - -export default TransportListTemplates diff --git a/src/views/email-exchange/transport/TransportRules.jsx b/src/views/email-exchange/transport/TransportRules.jsx deleted file mode 100644 index 9d534e17dee5..000000000000 --- a/src/views/email-exchange/transport/TransportRules.jsx +++ /dev/null @@ -1,147 +0,0 @@ -import { CButton } from '@coreui/react' -import { faBan, faBook, faCheck, faEllipsisV, faTrash } from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import React, { useState } from 'react' -import { useSelector } from 'react-redux' -import { CippPageList } from 'src/components/layout' -import { CippActionsOffcanvas } from 'src/components/utilities' -import { CellTip } from 'src/components/tables' -import { TitleButton } from 'src/components/buttons' - -const Offcanvas = (row, rowIndex, formatExtraData) => { - const tenant = useSelector((state) => state.app.currentTenant) - const [ocVisible, setOCVisible] = useState(false) - //console.log(row) - return ( - <> - setOCVisible(true)}> - - - , - modalBody: row, - modalType: 'POST', - modalUrl: `/api/AddTransportTemplate`, - modalMessage: 'Are you sure you want to create a template based on this rule?', - }, - { - label: 'Enable Rule', - color: 'info', - icon: , - modal: true, - modalUrl: `/api/EditTransportRule?State=Enable&TenantFilter=${tenant.defaultDomainName}&GUID=${row.Guid}`, - modalMessage: 'Are you sure you want to enable this rule?', - }, - { - label: 'Disable Rule', - color: 'info', - icon: , - modal: true, - modalUrl: `/api/EditTransportRule?State=Disable&TenantFilter=${tenant.defaultDomainName}&GUID=${row.Guid}`, - modalMessage: 'Are you sure you want to disable this rule?', - }, - { - label: 'Delete Rule', - color: 'danger', - modal: true, - icon: , - modalUrl: `/api/RemoveTransportRule?TenantFilter=${tenant.defaultDomainName}&GUID=${row.Guid}`, - modalMessage: 'Are you sure you want to disable this rule?', - }, - ]} - placement="end" - visible={ocVisible} - id={row.id} - hideFunction={() => setOCVisible(false)} - /> - - ) -} - -const columns = [ - { - name: 'Name', - selector: (row) => row['Name'], - sortable: true, - wrap: true, - cell: (row) => CellTip(row['Name']), - exportSelector: 'Name', - }, - { - name: 'State', - selector: (row) => row['State'], - sortable: true, - exportSelector: 'State', - }, - { - name: 'Mode', - selector: (row) => row['Mode'], - sortable: true, - exportSelector: 'Mode', - }, - { - name: 'Error Action', - selector: (row) => row['RuleErrorAction'], - sortable: true, - exportSelector: 'RuleErrorAction', - }, - { - name: 'description', - selector: (row) => row['Description'], - omit: true, - exportSelector: 'Description', - }, - { - name: 'GUID', - selector: (row) => row['Guid'], - omit: true, - exportSelector: 'Guid', - }, - { - name: 'Actions', - cell: Offcanvas, - maxWidth: '80px', - }, -] - -const TransportRulesList = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - return ( - - - - } - datatable={{ - filterlist: [ - { filterName: 'Enabled rules', filter: 'Complex: State eq Enabled' }, - { filterName: 'Disabled rules', filter: 'Complex: State eq Disabled' }, - ], - reportName: `${tenant?.defaultDomainName}-transport-rules-list`, - path: '/api/ListTransportRules', - params: { TenantFilter: tenant?.defaultDomainName }, - columns, - }} - /> - ) -} - -export default TransportRulesList diff --git a/src/views/endpoint/applications/ApplicationsAddChocoApp.jsx b/src/views/endpoint/applications/ApplicationsAddChocoApp.jsx deleted file mode 100644 index 2995fd32bb16..000000000000 --- a/src/views/endpoint/applications/ApplicationsAddChocoApp.jsx +++ /dev/null @@ -1,331 +0,0 @@ -import React, { useRef } from 'react' -import { - CCol, - CRow, - CForm, - CListGroup, - CListGroupItem, - CCallout, - CSpinner, - CInputGroup, - CFormInput, - CButton, -} from '@coreui/react' -import { Field, FormSpy } from 'react-final-form' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons' -import { CippWizard } from 'src/components/layout' -import { WizardTableField } from 'src/components/tables' -import PropTypes from 'prop-types' -import { - Condition, - RFFCFormCheck, - RFFCFormInput, - RFFCFormRadio, - RFFCFormSelect, - RFFCFormSwitch, -} from 'src/components/forms' -import { useLazyGenericPostRequestQuery } from 'src/store/api/app' -import { OnChange } from 'react-final-form-listeners' - -const Error = ({ name }) => ( - - touched && error ? ( - - - {error} - - ) : null - } - /> -) - -Error.propTypes = { - name: PropTypes.string.isRequired, -} - -const requiredArray = (value) => (value && value.length !== 0 ? undefined : 'Required') - -const ApplyStandard = () => { - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - const [searchPostRequest, foundPackages] = useLazyGenericPostRequestQuery() - - const handleSubmit = async (values) => { - values.selectedTenants.map( - (tenant) => (values[`Select_${tenant.defaultDomainName}`] = tenant.defaultDomainName), - ) - if (values.AssignTo === 'customGroup') { - values.AssignTo = values.customGroup - } - genericPostRequest({ path: '/api/AddChocoApp', values: values }) - } - const handleSearch = async ({ searchString, customRepo }) => { - searchPostRequest({ - path: '/api/ListAppsRepository', - values: { Search: searchString, Repository: customRepo }, - }) - } - const formValues = { - InstallAsSystem: true, - DisableRestart: true, - AssignTo: 'On', - } - const searchRef = useRef(null) - const customRepoRef = useRef(null) - - const WhenFieldChanges = ({ field, set }) => ( - - {( - // No subscription. We only use Field to get to the change function - { input: { onChange } }, - ) => ( - - {({ form }) => ( - - {(value) => { - let template = foundPackages.data.Results.filter(function (obj) { - //console.log(value) - return obj.packagename === value - }) - onChange(template[0][set]) - }} - - )} - - )} - - ) - - WhenFieldChanges.propTypes = { - field: PropTypes.node, - set: PropTypes.string, - } - - return ( - - -
    -

    Step 1

    -
    Choose a tenant
    -
    -
    - - {(props) => ( - row['displayName'], - sortable: true, - exportselector: 'displayName', - }, - { - name: 'Default Domain Name', - selector: (row) => row['defaultDomainName'], - sortable: true, - exportselector: 'mail', - }, - ]} - fieldProps={props} - /> - )} - - -
    -
    - -
    -

    Step 2

    -
    Supply the app information
    -
    -
    - - - - - - - handleSearch({ - searchString: searchRef.current.value, - customRepo: customRepoRef.current.value, - }) - } - > - Search - - - - - - - - - - {foundPackages.isFetching && } - {foundPackages.isSuccess && ( - ({ - value: chocoPackage.packagename, - label: `${chocoPackage.applicationName} - ${chocoPackage.packagename}`, - }))} - placeholder={!foundPackages.isFetching ? 'Select package' : 'Loading...'} - name="PackageSelector" - /> - )} - - - - - - -
    - - - - - - - - - - - - - - - - - - - Install options: - - - - - - - - - - - -
    -
    -
    - -
    -

    Step 3

    -
    Confirm and apply
    -
    -
    - {!postResults.isSuccess && ( - - {/* eslint-disable react/prop-types */} - {(props) => { - return ( - <> - - - - - - Chocolatey Package: {props.values.packagename} - - - Application name: {props.values.applicationName} - - - Description: {props.values.description} - - - Custom Repo: - {props.values.customRepo ? props.values.customRepo : ' No'} - - - Install as System: {props.values.InstallAsSystem ? 'Yes' : 'No'} - - - Disable Restart: {props.values.DisableRestart ? 'Yes' : 'No'} - - - Assign to: - {props.values.AssignTo == 'on' ? ' None' : ` ${props.values.AssignTo}`} - - - - - - ) - }} - - )} - {postResults.isFetching && ( - - Loading - - )} - {postResults.isSuccess && {postResults.data.Results}} -
    -
    -
    - ) -} - -export default ApplyStandard diff --git a/src/views/endpoint/applications/ApplicationsAddOffice.jsx b/src/views/endpoint/applications/ApplicationsAddOffice.jsx deleted file mode 100644 index a3cb1890bbff..000000000000 --- a/src/views/endpoint/applications/ApplicationsAddOffice.jsx +++ /dev/null @@ -1,247 +0,0 @@ -import React from 'react' -import { CCol, CRow, CForm, CListGroup, CListGroupItem, CCallout, CSpinner } from '@coreui/react' -import { Field, FormSpy } from 'react-final-form' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons' -import { CippWizard } from 'src/components/layout' -import { WizardTableField } from 'src/components/tables' -import PropTypes from 'prop-types' -import { RFFCFormRadio, RFFCFormSwitch, RFFSelectSearch } from 'src/components/forms' -import { useLazyGenericPostRequestQuery } from 'src/store/api/app' -import langaugeList from 'src/data/languageList' - -const Error = ({ name }) => ( - - touched && error ? ( - - - {error} - - ) : null - } - /> -) - -Error.propTypes = { - name: PropTypes.string.isRequired, -} - -const requiredArray = (value) => (value && value.length !== 0 ? undefined : 'Required') - -const AddOffice = () => { - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - - const handleSubmit = async (values) => { - values.selectedTenants.map( - (tenant) => (values[`Select_${tenant.defaultDomainName}`] = tenant.defaultDomainName), - ) - genericPostRequest({ path: '/api/AddOfficeApp', values: values }) - } - - const formValues = { - excludedApps: [ - { value: 'access', label: 'Access' }, - { value: 'lync', label: 'Skype for Business' }, - { value: 'bing', label: 'Bing' }, - ], - updateChannel: { value: 'current', label: 'Current Channel' }, - arch: true, - RemoveVersions: true, - AcceptLicense: true, - AssignTo: 'On', - } - - return ( - - -
    -

    Step 1

    -
    Choose a tenant
    -
    -
    - - {(props) => ( - row['displayName'], - sortable: true, - exportselector: 'displayName', - }, - { - name: 'Default Domain Name', - selector: (row) => row['defaultDomainName'], - sortable: true, - exportselector: 'mail', - }, - ]} - fieldProps={props} - /> - )} - - -
    -
    - -
    -

    Step 2

    -
    Supply the app information
    -
    -
    - - - - - - - - - - - - ({ - value: tag, - name: language, - }))} - name="languages" - multi={true} - label="Languages" - /> - - - - - - - - - - - - - - -
    -
    - -
    -

    Step 3

    -
    Confirm and apply
    -
    -
    - {!postResults.isSuccess && ( - - {/* eslint-disable react/prop-types */} - {(props) => { - return ( - <> - - - - - - Channel: {props.values.updateChannel.value} - - - 64-bit : {props.values.arch ? 'Yes' : ' No'} - - - Remove old versions: {props.values.RemoveVersions ? 'Yes' : 'No'} - - - Shared Computer Activation:{' '} - {props.values.SharedComputerActivation ? 'Yes' : 'No'} - - - Accept EULA: {props.values.AcceptLicense ? 'Yes' : 'No'} - - - Assign to: {props.values.AssignTo} - - - - - - ) - }} - - )} - {postResults.isFetching && ( - - Loading - - )} - {postResults.isSuccess && {postResults.data.Results}} -
    -
    -
    - ) -} - -export default AddOffice diff --git a/src/views/endpoint/applications/ApplicationsAddRMM.jsx b/src/views/endpoint/applications/ApplicationsAddRMM.jsx deleted file mode 100644 index a6583e00fd4c..000000000000 --- a/src/views/endpoint/applications/ApplicationsAddRMM.jsx +++ /dev/null @@ -1,366 +0,0 @@ -import React from 'react' -import { CCol, CRow, CForm, CCallout, CSpinner } from '@coreui/react' -import { Field, FormSpy } from 'react-final-form' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons' -import { CippWizard } from 'src/components/layout' -import { WizardTableField } from 'src/components/tables' -import PropTypes from 'prop-types' -import { Condition, RFFCFormInput, RFFCFormRadio, RFFSelectSearch } from 'src/components/forms' -import { useLazyGenericPostRequestQuery } from 'src/store/api/app' - -const Error = ({ name }) => ( - - touched && error ? ( - - - {error} - - ) : null - } - /> -) - -Error.propTypes = { - name: PropTypes.string.isRequired, -} - -const requiredArray = (value) => (value && value.length !== 0 ? undefined : 'Required') - -const AddRMM = () => { - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - - const handleSubmit = async (values) => { - values.selectedTenants.map( - (tenant) => (values[`Select_${tenant.defaultDomainName}`] = tenant.defaultDomainName), - ) - if (values.AssignTo === 'customGroup') { - values.AssignTo = values.customGroup - } - genericPostRequest({ path: '/api/AddMSPApp', values: values }) - } - - const formValues = { - arch: true, - RemoveVersions: true, - AcceptLicense: true, - AssignTo: 'On', - } - - return ( - - -
    -

    Step 1

    -
    Choose a tenant
    -
    -
    - - {(props) => ( - row['displayName'], - sortable: true, - exportselector: 'displayName', - }, - { - name: 'Default Domain Name', - selector: (row) => row['defaultDomainName'], - sortable: true, - exportselector: 'mail', - }, - ]} - fieldProps={props} - /> - )} - - -
    -
    - -
    -

    Step 2

    -
    Supply the app information
    -
    -
    - - - - - - - - - - - {/* eslint-disable react/prop-types */} - {(props) => { - return ( - <> - - - - - - - - {props.values.selectedTenants.map((item, index) => ( - - - - ))} - - - - - - - - - - - - - - {props.values.selectedTenants.map((item, index) => ( - - - - ))} - - - {props.values.selectedTenants.map((item, index) => ( - - - - ))} - - - - - - - - - {props.values.selectedTenants.map((item, index) => ( - - - - ))} - - - - - - - - - - {props.values.selectedTenants.map((item, index) => ( - - - - ))} - - - - - - - - - - - - - - - - - - {props.values.selectedTenants.map((item, index) => ( - - - - ))} - {props.values.selectedTenants.map((item, index) => ( - - - - ))} - - - - {props.values.selectedTenants.map((item, index) => ( - - - - ))} - - - ) - }} - - - - - - - - - - -
    -
    - -
    -

    Step 3

    -
    Confirm and apply
    -
    -
    - {!postResults.isSuccess && ( - - {(props) => { - return ( - <> - - - - - - ) - }} - - )} - {postResults.isFetching && ( - - Loading - - )} - {postResults.isSuccess && {postResults.data.Results}} -
    -
    -
    - ) -} - -export default AddRMM diff --git a/src/views/endpoint/applications/ApplicationsAddWinGet.jsx b/src/views/endpoint/applications/ApplicationsAddWinGet.jsx deleted file mode 100644 index 0880a67e3755..000000000000 --- a/src/views/endpoint/applications/ApplicationsAddWinGet.jsx +++ /dev/null @@ -1,313 +0,0 @@ -import React, { useRef } from 'react' -import { - CCol, - CRow, - CForm, - CListGroup, - CListGroupItem, - CCallout, - CSpinner, - CButton, - CInputGroup, - CFormInput, -} from '@coreui/react' -import { Field, FormSpy } from 'react-final-form' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons' -import { CippWizard } from 'src/components/layout' -import { WizardTableField } from 'src/components/tables' -import PropTypes from 'prop-types' -import { - Condition, - RFFCFormCheck, - RFFCFormInput, - RFFCFormRadio, - RFFCFormSelect, -} from 'src/components/forms' -import { useLazyGenericPostRequestQuery } from 'src/store/api/app' -import { OnChange } from 'react-final-form-listeners' - -const Error = ({ name }) => ( - - touched && error ? ( - - - {error} - - ) : null - } - /> -) - -Error.propTypes = { - name: PropTypes.string.isRequired, -} - -const requiredArray = (value) => (value && value.length !== 0 ? undefined : 'Required') - -const AddWinGet = () => { - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - const [searchPostRequest, foundPackages] = useLazyGenericPostRequestQuery() - - const handleSubmit = async (values) => { - if (values.AssignTo === 'customGroup') { - values.AssignTo = values.customGroup - } - values.selectedTenants.map( - (tenant) => (values[`Select_${tenant.defaultDomainName}`] = tenant.defaultDomainName), - ) - genericPostRequest({ path: '/api/AddWinGetApp', values: values }) - } - const handleSearch = async (values) => { - searchPostRequest({ - path: '/api/ListPotentialApps', - values: { type: 'WinGet', searchString: values }, - }) - } - const searchRef = useRef(null) - - const packageIdRef = useRef(null) - const packageNameRef = useRef(null) - - const formValues = { - InstallAsSystem: true, - DisableRestart: true, - AssignTo: 'On', - } - const WhenFieldChanges = ({ field, set }) => ( - - {( - // No subscription. We only use Field to get to the change function - { input: { onChange } }, - ) => ( - - {({ form }) => ( - - {(value) => { - let template = foundPackages.data.filter(function (obj) { - return obj.packagename === value - }) - onChange(template[0][set]) - }} - - )} - - )} - - ) - - WhenFieldChanges.propTypes = { - field: PropTypes.node, - set: PropTypes.string, - } - - return ( - - -
    -

    Step 1

    -
    Choose a tenant
    -
    -
    - - {(props) => ( - row['displayName'], - sortable: true, - exportselector: 'displayName', - }, - { - name: 'Default Domain Name', - selector: (row) => row['defaultDomainName'], - sortable: true, - exportselector: 'mail', - }, - ]} - fieldProps={props} - /> - )} - - -
    -
    - -
    -

    Step 2

    -
    Supply the app information
    -
    -
    - - - - - - handleSearch(searchRef.current.value)} - > - Search - - - - - - - {foundPackages.isFetching && } - {foundPackages.isSuccess && ( - ({ - value: packagename.packagename, - label: `${packagename.applicationName} - ${packagename.packagename}`, - }))} - placeholder={!foundPackages.isFetching ? 'Select package' : 'Loading...'} - name="PackageSelector" - /> - )} - - - - -
    - - - - - - - - - - - - - - - - Install options: - - - - - - - - - - - -
    -
    -
    - -
    -

    Step 3

    -
    Confirm and apply
    -
    -
    - {!postResults.isSuccess && ( - - {/* eslint-disable react/prop-types */} - {(props) => { - return ( - <> - - - - - - Chocolatey Package: {props.values.packagename} - - - Application name: {props.values.applicationName} - - - Description: {props.values.description} - - - Assign to: {props.values.AssignTo} - - - - - - ) - }} - - )} - {postResults.isFetching && ( - - Loading - - )} - {postResults.isSuccess && {postResults.data.Results}} -
    -
    -
    - ) -} - -export default AddWinGet diff --git a/src/views/endpoint/applications/ApplicationsList.jsx b/src/views/endpoint/applications/ApplicationsList.jsx deleted file mode 100644 index 6df4a06d221a..000000000000 --- a/src/views/endpoint/applications/ApplicationsList.jsx +++ /dev/null @@ -1,209 +0,0 @@ -import React, { useState } from 'react' -import { useSelector } from 'react-redux' -import { CButton } from '@coreui/react' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { CippPageList } from 'src/components/layout' -import { faEllipsisV, faGlobeEurope, faPager, faUser } from '@fortawesome/free-solid-svg-icons' -import { CippActionsOffcanvas } from 'src/components/utilities' -import { CellTip } from 'src/components/tables' -import { TitleButton } from 'src/components/buttons' - -const Offcanvas = (row, rowIndex, formatExtraData) => { - const tenant = useSelector((state) => state.app.currentTenant) - const [ocVisible, setOCVisible] = useState(false) - return ( - <> - {/* future version: add edit app - - */} - {/* Future version: add delete app. - - */} - setOCVisible(true)}> - - - , - label: ' Assign to All Users', - color: 'info', - modal: true, - modalUrl: `/api/ExecAssignApp?AssignTo=AllUsers&TenantFilter=${tenant.defaultDomainName}&ID=${row.id}`, - modalMessage: `Are you sure you want to assign ${row.displayName} to all users?`, - }, - { - icon: , - label: ' Assign to All Devices', - color: 'info', - modal: true, - modalUrl: `/api/ExecAssignApp?AssignTo=AllDevices&TenantFilter=${tenant.defaultDomainName}&ID=${row.id}`, - modalMessage: `Are you sure you want to assign ${row.displayName} to all devices?`, - }, - { - icon: , - label: ' Assign Globally (All Users / All Devices)', - color: 'info', - modal: true, - modalUrl: `/api/ExecAssignApp?AssignTo=Both&TenantFilter=${tenant.defaultDomainName}&ID=${row.id}`, - modalMessage: `Are you sure you want to assign ${row.displayName} to all users and devices?`, - }, - { - label: 'Delete Application', - color: 'danger', - modal: true, - modalUrl: `/api/RemoveApp?TenantFilter=${tenant.defaultDomainName}&ID=${row.id}`, - modalMessage: 'Are you sure you want to delete this policy?', - }, - ]} - placement="end" - visible={ocVisible} - id={row.id} - hideFunction={() => setOCVisible(false)} - /> - - ) -} -const columns = [ - { - selector: (row) => row.displayName, - name: 'Name', - sortable: true, - cell: (row) => CellTip(row.displayName), - exportSelector: 'displayName', - minWidth: '350px', - }, - { - selector: (row) => row.publishingState, - name: 'Published', - sortable: true, - exportSelector: 'publishingState', - }, - { - selector: (row) => row.installCommandLine, - name: 'Install Command', - sortable: true, - cell: (row) => CellTip(row.installCommandLine), - exportSelector: 'installCommandLine', - }, - { - selector: (row) => row.uninstallCommandLine, - name: 'Uninstall Command', - sortable: true, - cell: (row) => CellTip(row.uninstallCommandLine), - exportSelector: 'uninstallCommandLine', - }, - { - name: 'Actions', - cell: Offcanvas, - button: true, - }, -] - -const ApplicationsList = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - const titleButtons = ( -
    -
    - -
    -
    - -
    -
    - -
    -
    - -
    -
    - ) - - return ( - , - label: ' Assign to All Users', - color: 'info', - modal: true, - modalUrl: `/api/ExecAssignApp?AssignTo=AllUsers&TenantFilter=${tenant.defaultDomainName}&ID=!id`, - modalMessage: `Are you sure you want to assign these apps to all users?`, - }, - { - icon: , - label: ' Assign to All Devices', - color: 'info', - modal: true, - modalUrl: `/api/ExecAssignApp?AssignTo=AllDevices&TenantFilter=${tenant.defaultDomainName}&ID=!id`, - modalMessage: `Are you sure you want to assign these apps to all devices?`, - }, - { - icon: , - label: ' Assign Globally (All Users / All Devices)', - color: 'info', - modal: true, - modalUrl: `/api/ExecAssignApp?AssignTo=Both&TenantFilter=${tenant.defaultDomainName}&ID=!id`, - modalMessage: `Are you sure you want to assign these apps to all users and devices?`, - }, - { - label: 'Delete Application', - color: 'danger', - modal: true, - modalUrl: `/api/RemoveApp?TenantFilter=${tenant.defaultDomainName}&ID=!id`, - modalMessage: 'Are you sure you want to delete this policy?', - }, - ], - }, - }} - /> - ) -} - -export default ApplicationsList diff --git a/src/views/endpoint/applications/ListApplicationQueue.jsx b/src/views/endpoint/applications/ListApplicationQueue.jsx deleted file mode 100644 index 53f1e9197d33..000000000000 --- a/src/views/endpoint/applications/ListApplicationQueue.jsx +++ /dev/null @@ -1,139 +0,0 @@ -import React from 'react' -import { useSelector } from 'react-redux' -import { CSpinner, CButton, CCallout } from '@coreui/react' -import { faCheck, faExclamationTriangle, faTrash } from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { CippPageList } from 'src/components/layout' -import { ModalService } from 'src/components/utilities' -import { useLazyGenericGetRequestQuery } from 'src/store/api/app' -import { CellTip } from 'src/components/tables' - -const RefreshAction = () => { - const [execStandards, execStandardsResults] = useLazyGenericGetRequestQuery() - - const showModal = () => - ModalService.confirm({ - body: ( -
    - Deploy all queued applications to tenants? -
    - Please note: This job runs automatically every 12 hours. -
    - ), - onConfirm: () => execStandards({ path: 'api/AddChocoApp_OrchestrationStarter' }), - }) - - return ( - <> - {execStandardsResults.data?.Results === - 'Already running. Please wait for the current instance to finish' && ( -
    {execStandardsResults.data?.Results}
    - )} - - {execStandardsResults.isLoading && } - {execStandardsResults.error && ( - - )} - {execStandardsResults.isSuccess && } - Deploy now - - - ) -} -const ListApplicationQueue = () => { - const [ExecuteGetRequest, getResults] = useLazyGenericGetRequestQuery() - const Actions = (row, index, column) => { - const handleDeleteStandard = (apiurl, message) => { - ModalService.confirm({ - title: 'Confirm', - body:
    {message}
    , - onConfirm: () => ExecuteGetRequest({ path: apiurl }), - confirmLabel: 'Continue', - cancelLabel: 'Cancel', - }) - } - return ( - - handleDeleteStandard( - `api/RemoveQueuedApp?ID=${row.id}`, - 'Do you want to delete the queued application?', - ) - } - > - - - ) - } - const columns = [ - { - name: 'Tenant', - selector: (row) => row['tenantName'], - sortable: true, - cell: (row) => CellTip(row['tenantName']), - exportSelector: 'tenantName', - minWidth: '200px', - }, - { - name: 'Application Name', - selector: (row) => row['applicationName'], - sortable: true, - cell: (row) => CellTip(row['applicationName']), - exportSelector: 'applicationName', - minWidth: '200px', - }, - { - name: 'Install command', - selector: (row) => row['cmdLine'], - sortable: true, - cell: (row) => CellTip(row['cmdLine']), - exportSelector: 'cmdLine', - }, - { - name: 'Assign To', - selector: (row) => row['assignTo'], - sortable: true, - cell: (row) => CellTip(row['assignTo']), - exportSelector: 'assignTo', - }, - { - name: 'Actions', - cell: Actions, - }, - ] - const tenant = useSelector((state) => state.app.currentTenant) - - return ( -
    - {getResults.isFetching && ( - - Loading - - )} - {getResults.isSuccess && {getResults.data?.Results}} - {getResults.isError && ( - Could not connect to API: {getResults.error.message} - )} - ], - }, - keyField: 'id', - columns, - reportName: `ApplicationQueue-List`, - path: '/api/ListApplicationQueue', - params: { TenantFilter: tenant?.defaultDomainName }, - }} - /> -
    - ) -} - -export default ListApplicationQueue diff --git a/src/views/endpoint/autopilot/AutopilotAddDevice.jsx b/src/views/endpoint/autopilot/AutopilotAddDevice.jsx deleted file mode 100644 index b475e2712388..000000000000 --- a/src/views/endpoint/autopilot/AutopilotAddDevice.jsx +++ /dev/null @@ -1,318 +0,0 @@ -import React, { useState } from 'react' -import { CButton, CCallout, CCol, CRow, CSpinner } from '@coreui/react' -import { Field, FormSpy } from 'react-final-form' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faExclamationTriangle, faPlus, faTrash } from '@fortawesome/free-solid-svg-icons' -import { CippWizard } from 'src/components/layout' -import PropTypes from 'prop-types' -import { RFFCFormInput } from 'src/components/forms' -import { CippTable } from 'src/components/tables' -import { TenantSelector } from 'src/components/utilities' -import { CSVReader } from 'react-papaparse' -import { useLazyGenericPostRequestQuery } from 'src/store/api/app' -import { useSelector } from 'react-redux' - -const Error = ({ name }) => ( - - touched && error ? ( - - - {error} - - ) : null - } - /> -) - -Error.propTypes = { - name: PropTypes.string.isRequired, -} - -const AddAPDevice = () => { - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - const [autopilotData, setAutopilotdata] = useState([]) - const completeColumns = [ - { - name: 'Serial Number', - selector: (row) => row['serialNumber'], - sortable: true, - }, - { - name: 'Status', - selector: (row) => row['status'], - sortable: true, - }, - { - name: 'Error Code', - selector: (row) => row['errorCode'], - sortable: true, - }, - { - name: 'Error Description', - selector: (row) => row['errorDescription'], - sortable: true, - }, - ] - const tableColumns = [ - { - name: 'serialNumber', - selector: (row) => row['SerialNumber'], - sortable: true, - }, - { - name: 'Device Manufacturer', - selector: (row) => row['oemManufacturerName'], - sortable: true, - }, - { - name: 'Device Model', - selector: (row) => row['modelName'], - sortable: true, - }, - { - name: 'Windows Product ID', - selector: (row) => row['productKey'], - sortable: true, - }, - { - name: 'Hardware Hash', - selector: (row) => row['hardwareHash'], - sortable: true, - width: '200px', - }, - { - name: 'Remove', - button: true, - cell: (row, index) => { - return ( - handleRemove(row)} size="sm" variant="ghost" color="danger"> - - - ) - }, - }, - ] - const valbutton = (value) => - autopilotData.length - ? undefined - : 'You must add at least one device. Did you forget to click add?' - const handleOnDrop = (data) => { - const importdata = data.map((item) => { - const normalizedData = {} - Object.keys(item.data).forEach((key) => { - normalizedData[key.toLowerCase()] = item.data[key] - }) - return { - //Device serial number,Windows product ID,Hardware hash,Manufacturer name,Device Model - SerialNumber: normalizedData['device serial number'], - productKey: normalizedData['windows product id'], - hardwareHash: normalizedData['hardware hash'], - oemManufacturerName: normalizedData['manufacturer name'], - modelName: normalizedData['device model'], - } - }) - setAutopilotdata([...autopilotData, ...importdata]) - } - - const handleOnError = (err, file, inputElem, reason) => { - //set upload error - } - const tenantDomain = useSelector((state) => state.app.currentTenant.defaultDomainName) - - const handleSubmit = async (values) => { - const shippedValues = { - TenantFilter: tenantDomain, - autopilotData, - ...values, - } - //alert(JSON.stringify(values, null, 2)) - genericPostRequest({ path: '/api/AddAPDevice', values: shippedValues }) - } - const addRowtoData = (values) => { - setAutopilotdata((prevState) => { - if (prevState) { - return [values, ...prevState] - } else { - return [values] - } - }) - } - const handleRemove = async (itemindex) => { - //alert(JSON.stringify(values, null, 2)) - //find arr index, delete from state. - //console.log(itemindex) - let RemovedItems = autopilotData.filter((item) => item !== itemindex) - setAutopilotdata((prevState) => { - return RemovedItems - }) - } - return ( - - -
    -

    Step 1

    -
    Choose a tenant
    -
    -
    - {(props) => } - -
    -
    - -
    -

    Step 2

    -
    Enter autopilot information
    -
    -
    -
    -

    - As a partner, you can register devices to Windows Autopilot using any one of these - methods: -

  • Hardware Hash (available from OEM or on-device script)
  • -
  • Combination of Manufacturer, Device Model, Device Serial Number
  • -
  • Windows Product Key ID.
  • -

    -

    - You can also upload a CSV file if your vendor has supplied you with one. -
    - - Example CSV - -

    -
    - - - Drop CSV file here or click to upload. - - -

    - - - - - - - - - - - - - - - - - - - {/* eslint-disable react/prop-types */} - {(props) => { - return ( - <> - addRowtoData(props.values)} - name="addButton" - className="mb-3" - > - - Add - - - ) - }} - - - - - - - - {autopilotData && ( - - )} - - - -
    -
    - -
    -

    Step 3

    -
    Choose options
    -
    -
    -
    - - - -
    -
    -
    - -
    -

    Step 4

    -
    Confirm and apply
    -
    - {postResults.isFetching && ( - - Loading - - )} - {postResults.isSuccess && ( - <> - {postResults.data?.Results?.Status} - - - )} - {autopilotData && !postResults.isSuccess && ( - - )} -
    -
    -
    -
    - ) -} - -export default AddAPDevice diff --git a/src/views/endpoint/autopilot/AutopilotAddProfile.jsx b/src/views/endpoint/autopilot/AutopilotAddProfile.jsx deleted file mode 100644 index 0dc6e02636cf..000000000000 --- a/src/views/endpoint/autopilot/AutopilotAddProfile.jsx +++ /dev/null @@ -1,296 +0,0 @@ -import React from 'react' -import { CCol, CRow, CForm, CListGroup, CListGroupItem, CCallout, CSpinner } from '@coreui/react' -import { Field, FormSpy } from 'react-final-form' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faCheck, faExclamationTriangle, faTimes } from '@fortawesome/free-solid-svg-icons' -import { CippWizard } from 'src/components/layout' -import { WizardTableField } from 'src/components/tables' -import PropTypes from 'prop-types' -import { RFFCFormInput, RFFCFormSwitch, RFFSelectSearch } from 'src/components/forms' -import { useLazyGenericPostRequestQuery } from 'src/store/api/app' -import langaugeList from 'src/data/languageList' - -const Error = ({ name }) => ( - - touched && error ? ( - - - {error} - - ) : null - } - /> -) - -Error.propTypes = { - name: PropTypes.string.isRequired, -} - -const requiredArray = (value) => (value && value.length !== 0 ? undefined : 'Required') - -const ApplyStandard = () => { - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - - const handleSubmit = async (values) => { - values.selectedTenants.map( - (tenant) => (values[`Select_${tenant.defaultDomainName}`] = tenant.defaultDomainName), - ) - genericPostRequest({ path: '/api/AddAutopilotConfig', values: values }) - } - - const formValues = { - Assignto: true, - DeploymentMode: true, - HideTerms: true, - HidePrivacy: true, - CollectHash: true, - NotLocalAdmin: true, - allowWhiteglove: true, - Autokeyboard: true, - HideChangeAccount: true, - } - - return ( - - -
    -

    Step 1

    -
    Choose tenants
    -
    -
    - - {(props) => ( - row['displayName'], - sortable: true, - exportselector: 'displayName', - }, - { - name: 'Default Domain Name', - selector: (row) => row['defaultDomainName'], - sortable: true, - exportselector: 'mail', - }, - ]} - fieldProps={props} - /> - )} - - -
    -
    - -
    -

    Step 2

    -
    Supply the ESP Information
    -
    -
    - - - - - - - - - ({ - value: tag, - name: language, - }))} - name="languages" - multi={false} - label="Languages" - /> - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - -
    -

    Step 3

    -
    Confirm and apply
    -
    -
    - {!postResults.isSuccess && ( - - {/* eslint-disable react/prop-types */} - {(props) => { - return ( - <> - - - - - - Display Name: {props.values.DisplayName} - - - - Naming template: {props.values.DeviceNameTemplate} - - - - Self-Deploying - - - - Hide Terms - - - - Hide Privacy - - - - Convert to Autopilot device - - - - Standard Account - - - - Allow Whiteglove - - - - Automatically setup keyboard - - - - Allow Whiteglove - - - - - - - ) - }} - - )} - {postResults.isFetching && ( - - Loading - - )} - {postResults.isSuccess && {postResults.data.Results}} -
    -
    -
    - ) -} - -export default ApplyStandard diff --git a/src/views/endpoint/autopilot/AutopilotAddStatusPage.jsx b/src/views/endpoint/autopilot/AutopilotAddStatusPage.jsx deleted file mode 100644 index 85f83fd385a3..000000000000 --- a/src/views/endpoint/autopilot/AutopilotAddStatusPage.jsx +++ /dev/null @@ -1,235 +0,0 @@ -import React from 'react' -import { CCol, CRow, CForm, CListGroup, CListGroupItem, CCallout, CSpinner } from '@coreui/react' -import { Field, FormSpy } from 'react-final-form' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faCheck, faExclamationTriangle, faTimes } from '@fortawesome/free-solid-svg-icons' -import { CippWizard } from 'src/components/layout' -import { WizardTableField } from 'src/components/tables' -import PropTypes from 'prop-types' -import { RFFCFormInput, RFFCFormSwitch } from 'src/components/forms' -import { useLazyGenericPostRequestQuery } from 'src/store/api/app' - -const Error = ({ name }) => ( - - touched && error ? ( - - - {error} - - ) : null - } - /> -) - -Error.propTypes = { - name: PropTypes.string.isRequired, -} - -const requiredArray = (value) => (value && value.length !== 0 ? undefined : 'Required') - -const ApplyStandard = () => { - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - - const handleSubmit = async (values) => { - values.selectedTenants.map( - (tenant) => (values[`Select_${tenant.defaultDomainName}`] = tenant.defaultDomainName), - ) - genericPostRequest({ path: '/api/AddEnrollment', values: values }) - } - - const formValues = { - InstallAsSystem: true, - DisableRestart: true, - } - - return ( - - -
    -

    Step 1

    -
    Choose tenants
    -
    -
    - - {(props) => ( - row['displayName'], - sortable: true, - exportselector: 'displayName', - }, - { - name: 'Default Domain Name', - selector: (row) => row['defaultDomainName'], - sortable: true, - exportselector: 'mail', - }, - ]} - fieldProps={props} - /> - )} - - -
    -
    - -
    -

    Step 2

    -
    Supply the ESP Information
    -
    -
    - - - - - - - - - - - - - - - - - - - -
    -
    - -
    -

    Step 3

    -
    Confirm and apply
    -
    -
    - {!postResults.isSuccess && ( - - {/* eslint-disable react/prop-types */} - {(props) => { - return ( - <> - - - - - - Timeout: {props.values.TimeOutInMinutes} - - - - Show Progress - - - - Turn on log collection - - - - Show OOBE page - - - - Block during setup - - - - Allow retry - - - - Allow device reset - - - - Allow usage if failed - - - - - - - ) - }} - - )} - {postResults.isFetching && ( - - Loading - - )} - {postResults.isSuccess && {postResults.data.Results}}{' '} -
    -
    -
    - ) -} - -export default ApplyStandard diff --git a/src/views/endpoint/autopilot/AutopilotListDevices.jsx b/src/views/endpoint/autopilot/AutopilotListDevices.jsx deleted file mode 100644 index 486d289bb881..000000000000 --- a/src/views/endpoint/autopilot/AutopilotListDevices.jsx +++ /dev/null @@ -1,175 +0,0 @@ -import React, { useState } from 'react' -import { useSelector } from 'react-redux' -import { CButton, CCallout, CSpinner } from '@coreui/react' -import { - faArrowCircleDown, - faEllipsisV, - faSyncAlt, - faTrash, -} from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { CippPageList } from 'src/components/layout' -import { CippActionsOffcanvas, ModalService } from 'src/components/utilities' -import { useLazyGenericGetRequestQuery } from 'src/store/api/app' -import { CellTip } from 'src/components/tables' -import { TitleButton } from 'src/components/buttons' - -const OffCanvas = (row, index, column) => { - const tenant = useSelector((state) => state.app.currentTenant) - - const [ocVisible, setOCVisible] = useState(false) - - return ( - <> - setOCVisible(true)}> - - - setOCVisible(false)} - /> - - ) -} -const AutopilotListDevices = () => { - const [ExecuteGetRequest, getResults] = useLazyGenericGetRequestQuery() - const tenant = useSelector((state) => state.app.currentTenant) - - const columns = [ - { - selector: (row) => row['displayName'], - name: 'Display Name', - sortable: true, - cell: (row) => CellTip(row['displayName']), - exportSelector: 'displayName', - }, - { - selector: (row) => row['serialNumber'], - name: 'Serial', - sortable: true, - cell: (row) => CellTip(row['serialNumber']), - exportSelector: 'serialNumber', - }, - { - selector: (row) => row['model'], - name: 'Model', - sortable: true, - cell: (row) => CellTip(row['model']), - exportSelector: 'model', - }, - { - selector: (row) => row['manufacturer'], - name: 'Manufacturer', - sortable: true, - cell: (row) => CellTip(row['manufacturer']), - exportSelector: 'manufacturer', - }, - { - selector: (row) => row['groupTag'], - name: 'Group Tag', - sortable: true, - cell: (row) => CellTip(row['groupTag']), - exportSelector: 'groupTag', - }, - { - selector: (row) => row['enrollmentState'], - name: 'Enrollment', - sortable: true, - cell: (row) => CellTip(row['enrollmentState']), - exportSelector: 'enrollmentState', - }, - { - name: 'Actions', - cell: OffCanvas, - }, - ] - - return ( - <> - {getResults.isFetching && ( - - Loading - - )} - {getResults.isSuccess && {getResults.data?.Results}} - {getResults.isError && ( - Could not connect to API: {getResults.error.message} - )} - - -
    - - ExecuteGetRequest({ - path: `/api/ExecSyncAPDevices?tenantFilter=${tenant.defaultDomainName}`, - }) - } - title="Sync Devices" - /> -
    - - } - datatable={{ - keyField: 'id', - reportName: `${tenant?.defaultDomainName}-AutopilotDevices-List`, - path: `/api/ListAPDevices`, - columns, - params: { TenantFilter: tenant?.defaultDomainName }, - }} - /> - - ) -} - -export default AutopilotListDevices diff --git a/src/views/endpoint/autopilot/AutopilotListProfiles.jsx b/src/views/endpoint/autopilot/AutopilotListProfiles.jsx deleted file mode 100644 index 659ef1a81d15..000000000000 --- a/src/views/endpoint/autopilot/AutopilotListProfiles.jsx +++ /dev/null @@ -1,113 +0,0 @@ -import React, { useState } from 'react' -import { useSelector } from 'react-redux' -import { CellTip, cellBooleanFormatter } from 'src/components/tables' -import { CButton } from '@coreui/react' -import { faEye } from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { CippCodeBlock, CippOffcanvas } from 'src/components/utilities' -import { CippPageList } from 'src/components/layout' -import { TitleButton } from 'src/components/buttons' - -const Offcanvas = (row, rowIndex, formatExtraData) => { - const [visible, setVisible] = useState(false) - - const jsonContent = JSON.stringify(row, null, 2) - - return ( - <> - setVisible(true)}> - - View JSON - - setVisible(false)} - > - - - - ) -} - -const columns = [ - { - selector: (row) => row['displayName'], - name: 'Name', - sortable: true, - cell: (row) => CellTip(row['displayName']), - wrap: true, - exportSelector: 'displayName', - }, - { - selector: (row) => row['Description'], - name: 'Description', - sortable: true, - cell: (row) => CellTip(row['Description']), - wrap: true, - exportSelector: 'Description', - }, - { - selector: (row) => row['language'], - name: 'Language', - sortable: true, - cell: (row) => CellTip(row['language']), - exportSelector: 'language', - }, - { - selector: (row) => row['extractHardwareHash'], - name: 'Convert to Autopilot', - sortable: true, - cell: cellBooleanFormatter({ colourless: true }), - exportSelector: 'extractHardwareHash', - }, - { - selector: (row) => row['deviceNameTemplate'], - name: 'Device Name Template', - sortable: true, - cell: (row) => CellTip(row['deviceNameTemplate']), - exportSelector: 'deviceNameTemplate', - }, - { - selector: (row) => ['JSON'], - name: '', - cell: Offcanvas, - }, -] - -const AutopilotListProfiles = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - return ( - - - - } - tenantSelector={true} - datatable={{ - reportName: `${tenant?.defaultDomainName}-AutopilotProfile-List`, - columns, - path: '/api/ListAutopilotConfig?type=ApProfile', - params: { - TenantFilter: tenant?.defaultDomainName, - }, - }} - /> - ) -} - -export default AutopilotListProfiles diff --git a/src/views/endpoint/autopilot/AutopilotListStatusPages.jsx b/src/views/endpoint/autopilot/AutopilotListStatusPages.jsx deleted file mode 100644 index 352ecfee0800..000000000000 --- a/src/views/endpoint/autopilot/AutopilotListStatusPages.jsx +++ /dev/null @@ -1,86 +0,0 @@ -import React from 'react' -import { useSelector } from 'react-redux' -import { CellTip, cellBooleanFormatter } from 'src/components/tables' -import { CippPageList } from 'src/components/layout' -import { TitleButton } from 'src/components/buttons' - -const columns = [ - { - selector: (row) => row['displayName'], - name: 'Name', - sortable: true, - cell: (row) => CellTip(row['displayName']), - exportSelector: 'displayName', - minWidth: '250px', - }, - { - selector: (row) => row['Description'], - name: 'Description', - sortable: true, - cell: (row) => CellTip(row['Description']), - exportSelector: 'Description', - }, - { - selector: (row) => row['installProgressTimeoutInMinutes'], - name: 'Installation Timeout (Minutes)', - sortable: true, - exportSelector: 'installProgressTimeoutInMinutes', - }, - { - selector: (row) => row['showInstallationProgress'], - name: 'Show Installation Progress', - sortable: true, - cell: cellBooleanFormatter({ colourless: true }), - exportSelector: 'showInstallationProgress', - }, - { - selector: (row) => row['blockDeviceSetupRetryByUser'], - name: 'Block Retries', - sortable: true, - cell: cellBooleanFormatter({ colourless: true }), - exportSelector: 'blockDeviceSetupRetryByUser', - }, - { - selector: (row) => row['allowDeviceResetOnInstallFailure'], - name: 'Allow reset on failure', - sortable: true, - cell: cellBooleanFormatter({ colourless: true }), - exportSelector: 'allowDeviceResetOnInstallFailure', - }, - { - selector: (row) => row['allowDeviceUseOnInstallFailure'], - name: 'Allow usage on failure', - sortable: true, - exportSelector: 'allowDeviceUseOnInstallFailure', - cell: cellBooleanFormatter({ colourless: true }), - }, -] - -const AutopilotListESP = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - return ( - - - - } - tenantSelector={true} - datatable={{ - reportName: `${tenant?.defaultDomainName}-AutopilotStatusPages-List`, - path: '/api/ListAutopilotConfig?type=ESP', - columns, - params: { - TenantFilter: tenant?.defaultDomainName, - }, - }} - /> - ) -} - -export default AutopilotListESP diff --git a/src/views/endpoint/intune/Devices.jsx b/src/views/endpoint/intune/Devices.jsx deleted file mode 100644 index 01ab8dd14071..000000000000 --- a/src/views/endpoint/intune/Devices.jsx +++ /dev/null @@ -1,329 +0,0 @@ -import { CButton } from '@coreui/react' -import { faEllipsisV } from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import React, { useState } from 'react' -import { useSelector } from 'react-redux' -import { CippPageList } from 'src/components/layout' -import { cellBooleanFormatter, cellDateFormatter, CellTip } from 'src/components/tables' -import { CippActionsOffcanvas } from 'src/components/utilities' - -const Offcanvas = (row, rowIndex, formatExtraData) => { - const tenant = useSelector((state) => state.app.currentTenant) - const [ocVisible, setOCVisible] = useState(false) - //console.log(row) - return ( - <> - setOCVisible(true)}> - - - setOCVisible(false)} - /> - - ) -} - -const columns = [ - { - name: 'Name', - selector: (row) => row['deviceName'], - sortable: true, - cell: (row) => CellTip(row['deviceName']), - exportSelector: 'deviceName', - }, - { - name: 'Used by', - selector: (row) => row['userPrincipalName'], - sortable: true, - cell: (row) => CellTip(row['userPrincipalName']), - exportSelector: 'userPrincipalName', - }, - { - name: 'complianceState', - selector: (row) => row['complianceState'], - sortable: true, - cell: cellBooleanFormatter(), - exportSelector: 'complianceState', - }, - { - name: 'Manufacturer', - selector: (row) => row['manufacturer'], - sortable: true, - cell: (row) => CellTip(row['manufacturer']), - exportSelector: 'manufacturer', - }, - { - name: 'Model', - selector: (row) => row['model'], - sortable: true, - cell: (row) => CellTip(row['model']), - exportSelector: 'model', - }, - { - name: 'Operating System', - selector: (row) => row['operatingSystem'], - sortable: true, - exportSelector: 'operatingSystem', - }, - { - name: 'Operating System Version', - selector: (row) => row['osVersion'], - sortable: true, - exportSelector: 'osVersion', - }, - { - name: 'Enrolled on', - selector: (row) => row['enrolledDateTime'], - sortable: true, - cell: cellDateFormatter({ format: 'short', showTime: false }), - exportSelector: 'enrolledDateTime', - }, - - { - name: 'Ownership', - selector: (row) => row['managedDeviceOwnerType'], - sortable: true, - exportSelector: 'managedDeviceOwnerType', - }, - { - name: 'Enrollment Type', - selector: (row) => row['deviceEnrollmentType'], - sortable: true, - exportSelector: 'deviceEnrollmentType', - cell: (row) => CellTip(row['deviceEnrollmentType']), - }, - { - name: 'Management Type', - selector: (row) => row['joinType'], - sortable: true, - exportSelector: 'joinType', - }, - { - name: 'Actions', - cell: Offcanvas, - }, -] - -const DevicesList = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - return ( - - ) -} - -export default DevicesList diff --git a/src/views/endpoint/intune/MEMAddPolicy.jsx b/src/views/endpoint/intune/MEMAddPolicy.jsx deleted file mode 100644 index d742ba0c203a..000000000000 --- a/src/views/endpoint/intune/MEMAddPolicy.jsx +++ /dev/null @@ -1,350 +0,0 @@ -import React, { useState } from 'react' -import { CCol, CRow, CListGroup, CListGroupItem, CCallout, CSpinner } from '@coreui/react' -import { Field, FormSpy } from 'react-final-form' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { - faCheck, - faExclamationTriangle, - faFunnelDollar, - faTimes, -} from '@fortawesome/free-solid-svg-icons' -import { CippWizard } from 'src/components/layout' -import { WizardTableField } from 'src/components/tables' -import { validateAlphabeticalSort } from 'src/components/utilities' -import PropTypes from 'prop-types' -import { - Condition, - RFFCFormInput, - RFFCFormRadio, - RFFCFormSelect, - RFFCFormTextarea, -} from 'src/components/forms' -import { useLazyGenericGetRequestQuery, useLazyGenericPostRequestQuery } from 'src/store/api/app' -import { OnChange } from 'react-final-form-listeners' -import CippJsonView from 'src/components/utilities/CippJsonView' -import { value } from 'lodash-es' - -const Error = ({ name }) => ( - - touched && error ? ( - - - {error} - - ) : null - } - /> -) - -Error.propTypes = { - name: PropTypes.string.isRequired, -} - -const requiredArray = (value) => (value && value.length !== 0 ? undefined : 'Required') -const AddPolicy = () => { - const [intuneGetRequest, intuneTemplates] = useLazyGenericGetRequestQuery() - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - - const handleSubmit = async (values) => { - values.selectedTenants.map( - (tenant) => (values[`Select_${tenant.defaultDomainName}`] = tenant.defaultDomainName), - ) - values.TemplateType = values.Type - if (values.AssignTo === 'customGroup') { - values.AssignTo = values.customGroup - } - genericPostRequest({ path: '/api/AddPolicy', values: values }) - } - const [matchMap, setMatchMap] = useState([]) - const handleMap = (values) => { - if (JSON.stringify(values) != JSON.stringify(matchMap)) { - setMatchMap(values) - } - } - const WhenFieldChanges = ({ field, set }) => ( - - {( - // No subscription. We only use Field to get to the change function - { input: { onChange } }, - ) => ( - - {({ form }) => ( - - {(value) => { - let template = intuneTemplates.data.filter(function (obj) { - return obj.GUID === value - }) - onChange(template[0][set]) - }} - - )} - - )} - - ) - - WhenFieldChanges.propTypes = { - field: PropTypes.node, - set: PropTypes.string, - } - - const formValues = { - TemplateType: 'Admin', - } - - return ( - - -
    -

    Step 1

    -
    Choose tenants
    -
    -
    - - {/* eslint-disable react/prop-types */} - {(props) => ( - row['displayName'], - sortable: true, - exportselector: 'displayName', - }, - { - name: 'Default Domain Name', - selector: (row) => row['defaultDomainName'], - sortable: true, - exportselector: 'mail', - }, - ]} - fieldProps={props} - /> - )} - - -
    -
    - -
    -

    Step 2

    -
    Enter the information for this policy
    -
    -
    - - - {intuneTemplates.isUninitialized && - intuneGetRequest({ path: 'api/ListIntuneTemplates' })} - {intuneTemplates.isSuccess && ( - ({ - value: template.GUID, - label: template.Displayname, - }), - )} - placeholder="Select a template" - label="Please choose a template to apply." - /> - )} - - - - - - - - - - - - - - - - - - - - - - - - - - - - {(props) => { - const json = props.values?.RAWJson ? JSON.parse(props.values.RAWJson) : undefined - return ( - <> - - - - {props.values.RAWJson?.match('%.*%') && - handleMap([...props.values.RAWJson.matchAll('%\\w+%')])} - {matchMap.map((varname) => - props.values.selectedTenants.map((item, index) => ( - - - - )), - )} - - - - ) - }} - - - - - - - - - -
    - - - - -
    - -
    -

    Step 3

    -
    Confirm and apply
    -
    -
    - {!postResults.isSuccess && ( - - {(props) => { - return ( - <> - - - - - - Display Name: {props.values.Displayname} - - - - Description: {props.values.Description} - - - - Type: {props.values.Type} - - - - Assign to: {props.values.AssignTo} - - - - - - - ) - }} - - )} - {postResults.isFetching && ( - - Loading - - )} - {postResults.isSuccess && ( - - {postResults.data.Results.map((message, idx) => { - return
  • {message}
  • - })} -
    - )} -
    -
    -
    - ) -} - -export default AddPolicy diff --git a/src/views/endpoint/intune/MEMAddPolicyTemplate.jsx b/src/views/endpoint/intune/MEMAddPolicyTemplate.jsx deleted file mode 100644 index a6774de654dd..000000000000 --- a/src/views/endpoint/intune/MEMAddPolicyTemplate.jsx +++ /dev/null @@ -1,102 +0,0 @@ -import React from 'react' -import { CButton, CCallout, CCol, CForm, CRow, CSpinner } from '@coreui/react' -import { Form } from 'react-final-form' -import { CippContentCard, CippPage } from 'src/components/layout' -import { RFFCFormInput, RFFCFormSelect, RFFCFormTextarea } from 'src/components/forms' -import { useLazyGenericPostRequestQuery } from 'src/store/api/app' -import { required, validJson } from 'src/validators' - -const MEMAddPolicyTemplate = () => { - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - - const handleSubmit = async (values) => { - // alert(JSON.stringify(values, null, 2)) - // @todo hook this up - genericPostRequest({ path: '/api/AddIntuneTemplate', values }) - } - - return ( - - - {postResults.isFetching && ( - - Loading - - )} - {postResults.isSuccess && {postResults.data.Results}} - { - return ( - - - - - - - - - - - - - - - - - - - - - - - - - Add Template - - - - {/**/} - {/* */} - {/*
    {JSON.stringify(values, null, 2)}
    */} - {/*
    */} - {/*
    */} -
    - ) - }} - /> -
    -
    - ) -} - -export default MEMAddPolicyTemplate diff --git a/src/views/endpoint/intune/MEMCAPolicies.jsx b/src/views/endpoint/intune/MEMCAPolicies.jsx deleted file mode 100644 index 588fc1d7a058..000000000000 --- a/src/views/endpoint/intune/MEMCAPolicies.jsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' - -const IntuneCAPolicies = (props) => { - return ( -
    -

    Endpoint Manager - CA Policies

    -
    - ) -} - -export default IntuneCAPolicies diff --git a/src/views/endpoint/intune/MEMEditPolicy.jsx b/src/views/endpoint/intune/MEMEditPolicy.jsx deleted file mode 100644 index 41eda35e5e54..000000000000 --- a/src/views/endpoint/intune/MEMEditPolicy.jsx +++ /dev/null @@ -1,170 +0,0 @@ -import React, { useEffect, useState } from 'react' -import { - CCallout, - CButton, - CCard, - CCardBody, - CCardHeader, - CCardTitle, - CCol, - CForm, - CRow, - CSpinner, -} from '@coreui/react' -import useQuery from 'src/hooks/useQuery' -import { ModalService } from 'src/components/utilities' -import { useDispatch } from 'react-redux' -import { Form } from 'react-final-form' -import { RFFCFormInput, RFFCFormRadio } from 'src/components/forms' -import { useLazyGenericPostRequestQuery } from 'src/store/api/app' -import { useListDevicePoliciesQuery } from 'src/store/api/devices' - -const MEMEditPolicy = () => { - const dispatch = useDispatch() - let query = useQuery() - const policyID = query.get('ID') - const tenantDomain = query.get('tenantDomain') - const urlName = query.get('urlName') - - const [queryError, setQueryError] = useState(false) - - const { - data: group = {}, - isFetching, - error, - isSuccess, - } = useListDevicePoliciesQuery({ tenantDomain, PolicyID: policyID, urlName: urlName }) - - useEffect(() => { - if (!policyID || !tenantDomain) { - ModalService.open({ - body: 'Error: Invalid request. Could not load requested policy.', - title: 'Invalid Request', - }) - setQueryError(true) - } - }, [policyID, tenantDomain, dispatch]) - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - const onSubmit = (values) => { - const shippedValues = { - tenantID: tenantDomain, - GroupID: policyID, - displayName: values.displayName, - Description: values.description, - AssignTo: values.AssignTo, - } - //window.alert(JSON.stringify(shippedValues)) - genericPostRequest({ path: '/api/EditPolicy', values: shippedValues }) - } - - const initialState = { - AssignTo: 'on', - ...group[0], - } - return ( - <> - {!queryError && ( - <> - - - - - Policy Details - - - {isFetching && } - {error && Error loading Group} - {isSuccess && ( - { - return ( - - - - - - - - - - - - - - - - - - - - - - - - Edit Policy - - - - {postResults.isSuccess && ( - {postResults.data.Results} - )} - - ) - }} - /> - )} - - - - - - - Policy Information - - - {isFetching && } - {isSuccess && ( - <> - This is the (raw) information for this policy -
    {JSON.stringify(group, null, 2)}
    - - )} -
    -
    -
    -
    - - )} - - ) -} - -export default MEMEditPolicy diff --git a/src/views/endpoint/intune/MEMListAppProtection.jsx b/src/views/endpoint/intune/MEMListAppProtection.jsx deleted file mode 100644 index a1efd5bacc2a..000000000000 --- a/src/views/endpoint/intune/MEMListAppProtection.jsx +++ /dev/null @@ -1,140 +0,0 @@ -import React, { useState } from 'react' -import { useSelector } from 'react-redux' -import { CButton } from '@coreui/react' -import { - faBook, - faEdit, - faEllipsisV, - faGlobeEurope, - faPager, - faTrashAlt, - faUser, -} from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { CippPageList } from 'src/components/layout' -import { Link } from 'react-router-dom' -import { CippActionsOffcanvas, CippCodeBlock } from 'src/components/utilities' -import { TitleButton } from 'src/components/buttons' -import { cellBooleanFormatter, cellDateFormatter } from 'src/components/tables' - -const Actions = (row, rowIndex, formatExtraData) => { - const [ocVisible, setOCVisible] = useState(false) - //console.log(row) - const tenant = useSelector((state) => state.app.currentTenant) - return ( - <> - setOCVisible(true)}> - - - , - modalUrl: `/api/AddIntuneTemplate?TenantFilter=${tenant.defaultDomainName}&ID=${row.id}&URLName=managedAppPolicies`, - modalMessage: 'Are you sure you want to create a template based on this policy?', - }, - { - label: 'Delete Policy', - color: 'danger', - modal: true, - icon: , - modalUrl: `/api/RemovePolicy?TenantFilter=${tenant.defaultDomainName}&ID=${row.id}&URLName=managedAppPolicies`, - modalMessage: 'Are you sure you want to delete this policy?', - }, - ]} - placement="end" - visible={ocVisible} - id={row.id} - hideFunction={() => setOCVisible(false)} - /> - - ) -} - -const columns = [ - { - selector: (row) => row['displayName'], - name: 'Name', - sortable: true, - exportSelector: 'displayName', - }, - { - selector: (row) => row['isAssigned'], - name: 'Is Assigned', - sortable: true, - exportSelector: 'isAssigned', - cell: cellBooleanFormatter(), - }, - { - selector: (row) => row['lastModifiedDateTime'], - name: 'Last Modified', - exportSelector: 'lastModifiedDateTime', - cell: cellDateFormatter({ format: 'relative' }), - }, - { - name: 'Actions', - cell: Actions, - maxWidth: '80px', - }, -] - -const AppProtectionList = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - // eslint-disable-next-line react/prop-types - const ExpandedComponent = ({ data }) => ( - // eslint-disable-next-line react/prop-types - - ) - - return ( - - - - } - tenantSelector={true} - datatable={{ - path: '/api/ListGraphRequest', - params: { - TenantFilter: tenant?.defaultDomainName, - Endpoint: 'deviceAppManagement/managedAppPolicies', - $orderby: 'displayName', - }, - columns, - reportName: `${tenant?.defaultDomainName}-MEMPolicies-List`, - tableProps: { - expandableRows: true, - expandableRowsComponent: ExpandedComponent, - expandOnRowClicked: true, - selectableRows: true, - actionsList: [ - { - label: 'Delete Policy', - modal: true, - modalUrl: `api/RemovePolicy?TenantFilter=${tenant?.defaultDomainName}&ID=!id&URLName=managedAppPolicies`, - modalMessage: 'Are you sure you want to delete these policies?', - }, - ], - }, - }} - /> - ) -} - -export default AppProtectionList diff --git a/src/views/endpoint/intune/MEMListCompliance.jsx b/src/views/endpoint/intune/MEMListCompliance.jsx deleted file mode 100644 index 328a387566fd..000000000000 --- a/src/views/endpoint/intune/MEMListCompliance.jsx +++ /dev/null @@ -1,163 +0,0 @@ -import React, { useState } from 'react' -import { useSelector } from 'react-redux' -import { CButton } from '@coreui/react' -import { - faBook, - faEdit, - faEllipsisV, - faGlobeEurope, - faPager, - faTrashAlt, - faUser, -} from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { CippPageList } from 'src/components/layout' -import { Link } from 'react-router-dom' -import { CippActionsOffcanvas, CippCodeBlock } from 'src/components/utilities' -import { TitleButton } from 'src/components/buttons' -import { cellBooleanFormatter, cellDateFormatter } from 'src/components/tables' - -const Actions = (row, rowIndex, formatExtraData) => { - const [ocVisible, setOCVisible] = useState(false) - const tenant = useSelector((state) => state.app.currentTenant) - return ( - <> - setOCVisible(true)}> - - - , - modalUrl: `/api/AddIntuneTemplate?TenantFilter=${tenant.defaultDomainName}&ID=${row.id}&URLName=deviceCompliancePolicies`, - modalMessage: 'Are you sure you want to create a template based on this policy?', - }, - { - icon: , - label: ' Assign to All Users', - color: 'info', - modal: true, - modalUrl: `/api/ExecAssignPolicy?AssignTo=allLicensedUsers&TenantFilter=${tenant.defaultDomainName}&ID=${row.id}&type=deviceCompliancePolicies`, - modalMessage: `Are you sure you want to assign ${row.displayName} to all users?`, - }, - { - icon: , - label: ' Assign to All Devices', - color: 'info', - modal: true, - modalUrl: `/api/ExecAssignPolicy?AssignTo=AllDevices&TenantFilter=${tenant.defaultDomainName}&ID=${row.id}&type=deviceCompliancePolicies`, - modalMessage: `Are you sure you want to assign ${row.displayName} to all devices?`, - }, - { - icon: , - label: ' Assign Globally (All Users / All Devices)', - color: 'info', - modal: true, - modalUrl: `/api/ExecAssignPolicy?AssignTo=AllDevicesAndUsers&TenantFilter=${tenant.defaultDomainName}&ID=${row.id}&type=deviceCompliancePolicies`, - modalMessage: `Are you sure you want to assign ${row.displayName} to all users and devices?`, - }, - { - label: 'Delete Policy', - color: 'danger', - modal: true, - icon: , - modalUrl: `/api/RemovePolicy?TenantFilter=${tenant.defaultDomainName}&ID=${row.id}&URLName=deviceCompliancePolicies`, - modalMessage: 'Are you sure you want to delete this policy?', - }, - ]} - placement="end" - visible={ocVisible} - id={row.id} - hideFunction={() => setOCVisible(false)} - /> - - ) -} - -const columns = [ - { - selector: (row) => row['displayName'], - name: 'Name', - sortable: true, - exportSelector: 'displayName', - }, - { - selector: (row) => row['description'], - name: 'Description', - sortable: true, - exportSelector: 'description', - }, - { - selector: (row) => row['lastModifiedDateTime'], - name: 'Last Modified', - exportSelector: 'lastModifiedDateTime', - cell: cellDateFormatter({ format: 'relative' }), - }, - { - name: 'Actions', - cell: Actions, - maxWidth: '80px', - }, -] - -const ComplianceList = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - // eslint-disable-next-line react/prop-types - const ExpandedComponent = ({ data }) => ( - // eslint-disable-next-line react/prop-types - - ) - - return ( - - - - } - tenantSelector={true} - datatable={{ - path: '/api/ListGraphRequest', - params: { - TenantFilter: tenant?.defaultDomainName, - Endpoint: 'deviceManagement/deviceCompliancePolicies', - $orderby: 'displayName', - $count: true, - }, - columns, - reportName: `${tenant?.defaultDomainName}-MEMPolicies-List`, - tableProps: { - expandableRows: true, - expandableRowsComponent: ExpandedComponent, - expandOnRowClicked: true, - selectableRows: true, - actionsList: [ - { - label: 'Delete Policy', - modal: true, - modalUrl: `api/RemovePolicy?TenantFilter=${tenant?.defaultDomainName}&ID=!id&URLName=deviceCompliancePolicies`, - modalMessage: 'Are you sure you want to delete these policies?', - }, - ], - }, - }} - /> - ) -} - -export default ComplianceList diff --git a/src/views/endpoint/intune/MEMListPolicies.jsx b/src/views/endpoint/intune/MEMListPolicies.jsx deleted file mode 100644 index f63db28effef..000000000000 --- a/src/views/endpoint/intune/MEMListPolicies.jsx +++ /dev/null @@ -1,158 +0,0 @@ -import React, { useState } from 'react' -import { useSelector } from 'react-redux' -import { CButton } from '@coreui/react' -import { - faBook, - faEdit, - faEllipsisV, - faGlobeEurope, - faPager, - faTrashAlt, - faUser, -} from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { CippPageList } from 'src/components/layout' -import { Link } from 'react-router-dom' -import { CippActionsOffcanvas, CippCodeBlock } from 'src/components/utilities' -import { TitleButton } from 'src/components/buttons' - -const Actions = (row, rowIndex, formatExtraData) => { - const [ocVisible, setOCVisible] = useState(false) - - const tenant = useSelector((state) => state.app.currentTenant) - return ( - <> - setOCVisible(true)}> - - - , - modalUrl: `/api/AddIntuneTemplate?TenantFilter=${tenant.defaultDomainName}&ID=${row.id}&URLName=${row.URLName}`, - modalMessage: 'Are you sure you want to create a template based on this policy?', - }, - { - icon: , - label: ' Assign to All Users', - color: 'info', - modal: true, - modalUrl: `/api/ExecAssignPolicy?AssignTo=allLicensedUsers&TenantFilter=${tenant.defaultDomainName}&ID=${row.id}&type=${row.URLName}`, - modalMessage: `Are you sure you want to assign ${row.displayName} to all users?`, - }, - { - icon: , - label: ' Assign to All Devices', - color: 'info', - modal: true, - modalUrl: `/api/ExecAssignPolicy?AssignTo=AllDevices&TenantFilter=${tenant.defaultDomainName}&ID=${row.id}&type=${row.URLName}`, - modalMessage: `Are you sure you want to assign ${row.displayName} to all devices?`, - }, - { - icon: , - label: ' Assign Globally (All Users / All Devices)', - color: 'info', - modal: true, - modalUrl: `/api/ExecAssignPolicy?AssignTo=AllDevicesAndUsers&TenantFilter=${tenant.defaultDomainName}&ID=${row.id}&type=${row.URLName}`, - modalMessage: `Are you sure you want to assign ${row.displayName} to all users and devices?`, - }, - { - label: 'Delete Policy', - color: 'danger', - modal: true, - icon: , - modalUrl: `/api/RemovePolicy?TenantFilter=${tenant.defaultDomainName}&ID=${row.id}&URLName=${row.URLName}`, - modalMessage: 'Are you sure you want to delete this policy?', - }, - ]} - placement="end" - visible={ocVisible} - id={row.id} - hideFunction={() => setOCVisible(false)} - /> - - ) -} - -const columns = [ - { - selector: (row) => row['displayName'], - name: 'Name', - sortable: true, - exportSelector: 'displayName', - }, - { - selector: (row) => row['PolicyTypeName'], - name: 'Profile Type', - sortable: true, - exportSelector: 'PolicyTypeName', - }, - { - selector: (row) => row['id'], - name: 'id', - omit: true, - exportSelector: 'id', - }, - { - name: 'Actions', - cell: Actions, - maxWidth: '80px', - }, -] - -const IntuneList = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - // eslint-disable-next-line react/prop-types - const ExpandedComponent = ({ data }) => ( - // eslint-disable-next-line react/prop-types - - ) - - return ( - - - - } - tenantSelector={true} - datatable={{ - path: '/api/ListIntunePolicy?type=ESP', - params: { TenantFilter: tenant?.defaultDomainName }, - columns, - reportName: `${tenant?.defaultDomainName}-MEMPolicies-List`, - tableProps: { - expandableRows: true, - expandableRowsComponent: ExpandedComponent, - expandOnRowClicked: true, - selectableRows: true, - actionsList: [ - { - label: 'Delete Policy', - modal: true, - modalUrl: `api/RemovePolicy?TenantFilter=${tenant?.defaultDomainName}&ID=!id&URLName=!URLName`, - modalMessage: 'Are you sure you want to delete these policies?', - }, - ], - }, - }} - /> - ) -} - -export default IntuneList diff --git a/src/views/endpoint/intune/MEMListPolicyTemplates.jsx b/src/views/endpoint/intune/MEMListPolicyTemplates.jsx deleted file mode 100644 index 1b389af653bc..000000000000 --- a/src/views/endpoint/intune/MEMListPolicyTemplates.jsx +++ /dev/null @@ -1,140 +0,0 @@ -import React, { useState } from 'react' -import { useSelector } from 'react-redux' -import { CellTip, CippDatatable } from 'src/components/tables' -import { - CCardBody, - CButton, - CCallout, - CSpinner, - CCardHeader, - CCardTitle, - CCard, -} from '@coreui/react' -import { faEye, faTrash } from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { useLazyGenericGetRequestQuery } from 'src/store/api/app' -import { CippPage } from 'src/components/layout' -import { ModalService } from 'src/components/utilities' -import CippCodeOffCanvas from 'src/components/utilities/CippCodeOffcanvas' -import { TitleButton } from 'src/components/buttons' - -//todo: expandable with RAWJson property. - -const AutopilotListTemplates = () => { - const tenant = useSelector((state) => state.app.currentTenant) - - const [ExecuteGetRequest, getResults] = useLazyGenericGetRequestQuery() - const Offcanvas = (row, rowIndex, formatExtraData) => { - const [ocVisible, setOCVisible] = useState(false) - const handleDeleteIntuneTemplate = (apiurl, message) => { - ModalService.confirm({ - title: 'Confirm', - body:
    {message}
    , - onConfirm: () => ExecuteGetRequest({ path: apiurl }), - confirmLabel: 'Continue', - cancelLabel: 'Cancel', - }) - } - return ( - <> - setOCVisible(true)}> - - - - handleDeleteIntuneTemplate( - `/api/RemoveIntuneTemplate?ID=${row.GUID}`, - 'Do you want to delete the template?', - ) - } - > - - - setOCVisible(false)} - /> - - ) - } - - const columns = [ - { - name: 'Display Name', - selector: (row) => row['displayName'], - sortable: true, - cell: (row) => CellTip(row['displayName']), - exportSelector: 'displayName', - minWidth: '400px', - maxWidth: '400px', - }, - { - name: 'Description', - selector: (row) => row['description'], - sortable: true, - cell: (row) => CellTip(row['description']), - exportSelector: 'description', - minWidth: '400px', - maxWidth: '400px', - }, - { - name: 'Type', - selector: (row) => row['Type'], - sortable: true, - exportSelector: 'Type', - maxWidth: '100px', - }, - { - name: 'GUID', - selector: (row) => row['GUID'], - omit: true, - exportSelector: 'GUID', - }, - { - name: 'Actions', - cell: Offcanvas, - maxWidth: '100px', - }, - ] - - return ( - - - - Endpoint Manager Templates - - - - {getResults.isFetching && ( - - Loading - - )} - {getResults.isSuccess && {getResults.data?.Results}} - {getResults.isError && ( - Could not connect to API: {getResults.error.message} - )} - - - - - - ) -} - -export default AutopilotListTemplates diff --git a/src/views/home/Home.jsx b/src/views/home/Home.jsx deleted file mode 100644 index c3dc3de2afa6..000000000000 --- a/src/views/home/Home.jsx +++ /dev/null @@ -1,548 +0,0 @@ -import React, { useState } from 'react' -import { - faBook, - faCog, - faLaptopCode, - faMailBulk, - faUser, - faUserFriends, - faUserPlus, - faUsers, -} from '@fortawesome/free-solid-svg-icons' -import { - CButton, - CCol, - CCollapse, - CDropdown, - CDropdownMenu, - CDropdownToggle, - CLink, - CRow, -} from '@coreui/react' -import { useGenericGetRequestQuery } from 'src/store/api/app' -import { CippContentCard } from 'src/components/layout' -import Skeleton from 'react-loading-skeleton' -import { UniversalSearch } from 'src/components/utilities/UniversalSearch' -import { useSelector } from 'react-redux' -import allStandardsList from 'src/data/standards' -import Portals from 'src/data/portals' -import CippCopyToClipboard from 'src/components/utilities/CippCopyToClipboard' -import { CChart } from '@coreui/react-chartjs' -import { getStyle } from '@coreui/utils' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { useNavigate, Link } from 'react-router-dom' -import { cellGenericFormatter } from 'src/components/tables/CellGenericFormat' -import { ModalService } from 'src/components/utilities' - -const TenantDashboard = () => { - const [visible, setVisible] = useState(false) - const [domainVisible, setDomainVisible] = useState(false) - const navigate = useNavigate() - - const currentTenant = useSelector((state) => state.app.currentTenant) - const theme = useSelector((state) => state.app.currentTheme) - - var buttonColor = '' - if (theme === 'impact') { - buttonColor = 'secondary' - } else { - buttonColor = 'primary' - } - - const { - data: organization, - isLoading: isLoadingOrg, - isSuccess: issuccessOrg, - isFetching: isFetchingOrg, - } = useGenericGetRequestQuery({ - path: '/api/ListOrg', - params: { tenantFilter: currentTenant.defaultDomainName }, - }) - - const { - data: dashboard, - isLoading: isLoadingUserCounts, - isSuccess: issuccessUserCounts, - isFetching: isFetchingUserCount, - } = useGenericGetRequestQuery({ - path: '/api/ListuserCounts', - params: { tenantFilter: currentTenant.defaultDomainName }, - }) - - const GlobalAdminList = useGenericGetRequestQuery({ - path: '/api/ListGraphRequest', - params: { - tenantFilter: currentTenant.defaultDomainName, - Endpoint: "/directoryRoles(roleTemplateId='62e90394-69f5-4237-9190-012177145e10')/members", - $select: 'displayName,userPrincipalName,accountEnabled', - }, - }) - - const { - data: sharepoint, - isLoading: isLoadingSPQuota, - isSuccess: issuccessSPQuota, - isFetching: isFetchingSPQuota, - } = useGenericGetRequestQuery({ - path: '/api/ListSharepointQuota', - params: { tenantFilter: currentTenant.defaultDomainName }, - }) - - const { - data: standards = [], - isLoading: isLoadingStandards, - isSuccess: issuccessStandards, - isFetching: isFetchingStandards, - } = useGenericGetRequestQuery({ - path: '/api/ListStandards', - params: { ShowConsolidated: true, TenantFilter: currentTenant.defaultDomainName }, - }) - - const { - data: partners, - isLoading: isLoadingPartners, - isSuccess: issuccessPartners, - isFetching: isFetchingPartners, - } = useGenericGetRequestQuery({ - path: '/api/ListGraphRequest', - params: { - Endpoint: 'policies/crossTenantAccessPolicy/partners', - tenantFilter: currentTenant.defaultDomainName, - ReverseTenantLookup: true, - }, - }) - - const actions1 = Portals.map((portal) => ({ - icon: portal.icon, - label: portal.label, - target: '_blank', - link: portal.url.replace(portal.variable, currentTenant[portal.variable]), - })) - - const actions2 = [ - { - label: 'Edit Tenant', - link: `/tenant/administration/tenants/Edit?customerId=${currentTenant.customerId}&tenantFilter=${currentTenant.defaultDomainName}`, - icon: faCog, - }, - { - label: 'List Users', - link: `/identity/administration/users?customerId=${currentTenant.customerId}`, - icon: faUser, - }, - { - label: 'List Mailboxes', - link: `/email/administration/mailboxes?customerId=${currentTenant.customerId}`, - icon: faMailBulk, - }, - { - label: 'List Groups', - link: `/identity/administration/groups?customerId=${currentTenant.customerId}`, - icon: faUsers, - }, - { - label: 'List Devices', - link: `/endpoint/reports/devices?customerId=${currentTenant.customerId}`, - icon: faLaptopCode, - }, - { - label: 'Create User', - link: `/identity/administration/users/add?customerId=${currentTenant.customerId}`, - icon: faUserPlus, - }, - { - label: 'Create Group', - link: `/identity/administration/groups/add?customerId=${currentTenant.customerId}`, - icon: faUserFriends, - }, - ] - const filteredStandards = (count, type) => { - const filteredStandards = standards?.filter((standard) => standard.Settings[type] === true) - if (count) { - return filteredStandards.length - } - return filteredStandards.map((standard, idx) => { - const standardDisplayname = allStandardsList.find((p) => p.name.includes(standard.Standard)) - return ( -
  • - {standardDisplayname?.label || standard.Standard} -
  • - ) - }) - } - - const handleTable = (data, title) => { - const QueryColumns = [] - const columns = Object.keys(data[0]).map((key) => { - QueryColumns.push({ - name: key, - selector: (row) => row[key], // Accessing the property using the key - sortable: true, - exportSelector: key, - cell: cellGenericFormatter(), - }) - }) - ModalService.open({ - data: data, - componentType: 'table', - componentProps: { - columns: QueryColumns, - keyField: 'id', - }, - title: title, - size: 'lg', - }) - } - - const userChartLegendClickHandler = function (e, legendItem, legend) { - switch (legendItem.text) { - case 'Total Users': - navigate('/identity/administration/users?customerId=' + currentTenant.customerId) - break - case 'Licensed Users': - navigate( - '/identity/administration/users?customerId=' + - currentTenant.customerId + - '&tableFilter=Graph%3A+assignedLicenses%2F%24count+ne+0', - ) - break - case 'Guests': - navigate( - '/identity/administration/users?customerId=' + - currentTenant.customerId + - '&tableFilter=Graph%3A+usertype+eq+%27guest%27', - ) - break - case 'Global Admins': - handleTable(GlobalAdminList.data?.Results, 'Global Admins') - break - } - } - - return ( - <> - - - - - - Portals - - - {actions1.map((item, idx) => ( - - {item.icon && } - {item.label} - - ))} - - - - - - CIPP Actions - - - {actions2.map((item, idx) => ( - - {item.icon && } - {item.label} - - ))} - - - - - - - - - - {currentTenant?.displayName} - - - - - - {currentTenant?.customerId} - - - - - - {currentTenant?.defaultDomainName} - - - - - - - - {!isFetchingOrg && issuccessOrg && ( - <> - {organization.verifiedDomains?.slice(0, 3).map((item, idx) => ( -
  • {item.name}
  • - ))} - {organization.verifiedDomains?.length > 3 && ( - <> - - {organization.verifiedDomains?.slice(3).map((item, idx) => ( -
  • {item.name}
  • - ))} -
    - setDomainVisible(!domainVisible)} - > - {domainVisible ? 'See less' : 'See more...'} - - - )} - - )} -
    -
    - - - {(isLoadingPartners || isFetchingPartners) && } - {issuccessPartners && - !isFetchingPartners && - partners?.Results.map((partner, idx) => { - if (partner.TenantInfo) { - return ( -
  • - {partner.TenantInfo.displayName} ({partner.TenantInfo.defaultDomainName}) -
  • - ) - } - })} -
    -
    - - - {(isLoadingOrg || isFetchingOrg) && } - {!isFetchingOrg && - issuccessOrg && - organization?.assignedPlans - ?.filter((p) => p.capabilityStatus == 'Enabled') - .reduce((plan, curr) => { - if (!plan.includes(curr.service)) { - plan.push(curr.service) - } - return plan - }, []) - .map((plan, idx) => ( -
    - {plan === 'exchange' &&
  • Exchange
  • } - {plan === 'AADPremiumService' &&
  • AAD Premium
  • } - {plan === 'WindowsDefenderATP' &&
  • Windows Defender
  • } -
    - ))} -
    -
    -
    - - - - {(!issuccessUserCounts || isFetchingUserCount) && } - {issuccessUserCounts && !isFetchingUserCount && ( - { - event.native.target.style.cursor = 'pointer' - }, - onLeave: (event) => { - event.native.target.style.cursor = 'default' - }, - }, - }, - }} - /> - )} - - - - - {(isLoadingStandards || isFetchingStandards) && } - {issuccessStandards && !isFetchingStandards && ( - <> - - Remediation Standards: - {filteredStandards(false, 'remediate').slice(0, 5)} - {filteredStandards(false, 'remediate').length > 5 && ( - <> - - {filteredStandards(false, 'remediate').slice(5)} - - setVisible(!visible)}> - {visible ? 'See less' : 'See more...'} - - - )} - - )} - - - - - {(isLoadingSPQuota || isFetchingSPQuota) && } - {issuccessSPQuota && - sharepoint.GeoUsedStorageMB === null && - 'No SharePoint Information available'} - {sharepoint && !isFetchingSPQuota && sharepoint.GeoUsedStorageMB && ( - - )} - - - -
    -
    - - ) -} - -const Home = () => { - const currentTenant = useSelector((state) => state.app.currentTenant) - - return ( - <> - - - - - - - - - - - - - {currentTenant?.customerId !== 'AllTenants' ? ( - - ) : ( - - - - Select a Tenant to show the dashboard - - - - )} - - ) -} - -export default Home diff --git a/src/views/identity/administration/AddGroup.jsx b/src/views/identity/administration/AddGroup.jsx deleted file mode 100644 index 0fe240483cfd..000000000000 --- a/src/views/identity/administration/AddGroup.jsx +++ /dev/null @@ -1,205 +0,0 @@ -import React from 'react' -import { - CCallout, - CButton, - CCol, - CForm, - CRow, - CSpinner, - CCard, - CCardHeader, - CCardTitle, - CCardBody, -} from '@coreui/react' -import { Form } from 'react-final-form' -import { - Condition, - RFFCFormCheck, - RFFCFormInput, - RFFCFormRadio, - RFFCFormSelect, - RFFCFormTextarea, - RFFSelectSearch, -} from 'src/components/forms' -import { CippPage } from 'src/components/layout/CippPage' -import { useLazyGenericPostRequestQuery } from 'src/store/api/app' -import { useListDomainsQuery } from 'src/store/api/domains' -import { useListUsersQuery } from 'src/store/api/users' -import { useSelector } from 'react-redux' - -const AddGroup = () => { - const tenantDomain = useSelector((state) => state.app.currentTenant.defaultDomainName) - const { - data: domains = [], - isFetching: domainsIsFetching, - error: domainsError, - } = useListDomainsQuery({ tenantDomain }) - - const { - data: users = [], - isFetching: usersIsFetching, - error: usersError, - } = useListUsersQuery({ tenantDomain }) - - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - const onSubmit = (values) => { - const shippedValues = { - tenantID: tenantDomain, - domain: values.domain, - displayName: values.displayName, - username: values.username, - isAssignableToRole: values.isAssignableToRole, - groupType: values.groupType, - allowExternal: values.allowExternal, - membershipRules: values.membershipRules, - AddMember: values.AddMembers, - AddOwner: values.AddOwners, - } - //window.alert(JSON.stringify(shippedValues)) - genericPostRequest({ path: '/api/AddGroup', values: shippedValues }) - } - - return ( - - - - Group Details - - - { - return ( - - - - - - - - - - - - - - - - - {domainsIsFetching && } - {!domainsIsFetching && ( - ({ - value: domain.id, - label: domain.id, - }))} - /> - )} - {domainsError && Failed to load list of domains} - - - - - - ({ - value: user.userPrincipalName, - name: `${user.displayName} - ${user.userPrincipalName}`, - }))} - placeholder={!usersIsFetching ? 'Select user' : 'Loading...'} - name="AddOwners" - /> - {usersError && Failed to load list of users} - - - - - ({ - value: user.userPrincipalName, - name: `${user.displayName} - ${user.userPrincipalName}`, - }))} - placeholder={!usersIsFetching ? 'Select user' : 'Loading...'} - name="AddMembers" - /> - {usersError && Failed to load list of users} - - - -
    - - - - - - - - - - - - - - - - - - - - - - - Add Group - - - - {postResults.isFetching && } - {postResults.isSuccess && ( - {postResults.data.Results[0]} - )} -
    - ) - }} - /> -
    -
    -
    - ) -} - -export default AddGroup diff --git a/src/views/identity/administration/AddGroupTemplate.jsx b/src/views/identity/administration/AddGroupTemplate.jsx deleted file mode 100644 index 1a6bd6ecf6e6..000000000000 --- a/src/views/identity/administration/AddGroupTemplate.jsx +++ /dev/null @@ -1,125 +0,0 @@ -import React from 'react' -import { - CCallout, - CButton, - CCol, - CForm, - CRow, - CCard, - CCardHeader, - CCardTitle, - CCardBody, -} from '@coreui/react' -import { Form } from 'react-final-form' -import { - Condition, - RFFCFormCheck, - RFFCFormInput, - RFFCFormRadio, - RFFCFormTextarea, -} from 'src/components/forms' -import { CippPage } from 'src/components/layout/CippPage' -import { useLazyGenericPostRequestQuery } from 'src/store/api/app' -import { useSelector } from 'react-redux' - -const AddGroupTemplate = () => { - const tenantDomain = useSelector((state) => state.app.currentTenant.defaultDomainName) - - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - const onSubmit = (values) => { - genericPostRequest({ path: '/api/AddGroupTemplate', values: values }) - } - return ( - - - - Add Group Template - - - { - return ( - - - - - - - - - - - - - - - - - - - - - {' '} - - - - - - - - - - - - - - - - - - Add Group Template - - - - {postResults.isSuccess && ( - {postResults.data.Results} - )} - - ) - }} - /> - - - - ) -} - -export default AddGroupTemplate diff --git a/src/views/identity/administration/AddUser.jsx b/src/views/identity/administration/AddUser.jsx deleted file mode 100644 index ad772b208d1a..000000000000 --- a/src/views/identity/administration/AddUser.jsx +++ /dev/null @@ -1,508 +0,0 @@ -import React, { useEffect, useState } from 'react' -import { - CButton, - CCard, - CCardBody, - CCardHeader, - CCardTitle, - CCol, - CForm, - CFormLabel, - CRow, - CSpinner, - CCallout, -} from '@coreui/react' -import { Form } from 'react-final-form' -import { - Condition, - RFFCFormCheck, - RFFCFormInput, - RFFCFormSelect, - RFFCFormSwitch, - RFFCFormTextarea, - RFFSelectSearch, -} from 'src/components/forms' -import { CippPage } from 'src/components/layout' -import countryList from 'src/data/countryList' -import { useListUsersQuery } from 'src/store/api/users' -import { useListAdConnectSettingsQuery } from 'src/store/api/adconnect' -import { useListDomainsQuery } from 'src/store/api/domains' -import { useListLicensesQuery } from 'src/store/api/licenses' -import { useLazyGenericPostRequestQuery } from 'src/store/api/app' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faCircleNotch } from '@fortawesome/free-solid-svg-icons' -import { useSelector } from 'react-redux' -import { required } from 'src/validators' -import useQuery from 'src/hooks/useQuery' -import Select from 'react-select' -import { useNavigate } from 'react-router-dom' -import { OnChange } from 'react-final-form-listeners' -import DatePicker from 'react-datepicker' -import 'react-datepicker/dist/react-datepicker.css' - -const AddUser = () => { - const currentDate = new Date() - const [startDate, setStartDate] = useState(currentDate) - let navigate = useNavigate() - const [addedAttributes, setAddedAttribute] = React.useState(0) - const tenant = useSelector((state) => state.app.currentTenant) - const { defaultDomainName: tenantDomain } = tenant - let query = useQuery() - const allQueryObj = {} - for (const [key, value] of query.entries()) { - allQueryObj[key] = value - } - const { - data: users = [], - isFetching: usersIsFetching, - error: usersError, - } = useListUsersQuery({ tenantDomain }) - - const { - data: adconnectsettings = [], - isFetching: adcIsFetching, - error: adcError, - } = useListAdConnectSettingsQuery({ tenantDomain }) - - const { - data: domains = [], - isFetching: domainsIsFetching, - error: domainsError, - } = useListDomainsQuery({ tenantDomain }) - - const { - data: licenses = [], - isFetching: licensesIsFetching, - error: licensesError, - } = useListLicensesQuery({ tenantDomain }) - - const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() - const onSubmit = (values) => { - if (values.defaultAttributes) { - //map default attributes to the addedAttributes array. If addedAttributes is not present, create it. - values.addedAttributes = values.addedAttributes ? values.addedAttributes : [] - Object.keys(values.defaultAttributes).forEach((key) => { - values.addedAttributes.push({ Key: key, Value: values.defaultAttributes[key].Value }) - }) - } - const unixTime = Math.floor(startDate.getTime() / 1000) - - const shippedValues = { - AddedAliases: values.addedAliases ? values.addedAliases : '', - BusinessPhone: values.businessPhones, - City: values.city, - CompanyName: values.companyName, - CopyFrom: values.CopyFrom ? values.CopyFrom.value : '', - Country: values.country, - Department: values.department, - DisplayName: values.displayName, - Domain: values.primDomain, - FirstName: values.givenName, - Jobtitle: values.jobTitle, - LastName: values.surname, - License: values.licenses, - MobilePhone: values.mobilePhone, - Password: values.password, - PostalCode: values.postalCode, - Usagelocation: values.usageLocation ? values.usageLocation.value : '', - Username: values.mailNickname, - streetAddress: values.streetAddress, - Autopassword: !!values.Autopassword, - MustChangePass: values.MustChangePass, - tenantID: tenantDomain, - addedAttributes: values.addedAttributes, - setManager: values.setManager, - Scheduled: values.Scheduled?.enabled ? { enabled: true, date: unixTime } : { enabled: false }, - PostExecution: values.Scheduled?.enabled - ? { webhook: values.webhook, psa: values.psa, email: values.email } - : '', - ...values.license, - } - //window.alert(JSON.stringify(shippedValues)) - genericPostRequest({ path: '/api/AddUser', values: shippedValues }) - } - const usagelocation = useSelector((state) => state.app.usageLocation) - - const copyUserVariables = (t) => { - for (const [key, value] of Object.entries(t.value)) { - query.delete(key) - if (value != null) { - query.append(key, value) - } - navigate(`?${query.toString()}`) - } - } - - const [firstName, setFirstName] = useState('') - const [lastName, setLastName] = useState('') - const [displayName, setDisplayName] = useState('') - const initialState = { - Autopassword: false, - usageLocation: usagelocation, - ...allQueryObj, - } - const currentSettings = useSelector((state) => state.app) - - // Effect to update display name when first or last name changes - useEffect(() => { - setDisplayName(`${firstName} ${lastName}`) - }, [firstName, lastName, displayName]) - - return ( - - {postResults.isSuccess && ( - - {postResults.data?.Results.map((result, index) => ( -
  • {result}
  • - ))} -
    - )} - - - - - Account Details - - - {adcError && Unable to determine Azure AD Connect Settings} - {!adcIsFetching && adconnectsettings.dirSyncEnabled && ( - - Warning! {adconnectsettings.dirSyncEnabled} This tenant currently has Active - Directory Sync Enabled. This usually means users should be created in Active - Directory - - )} - { - return ( - - - - setFirstName(e.target.value)} - /> - - - setLastName(e.target.value)} - /> - - - - - - - {(value) => { - form.change('displayName', `${value} ${lastName}`) - }} - - - {(value) => { - form.change('displayName', `${firstName} ${value} `) - }} - - - - - - - - - {domainsIsFetching && } - {!domainsIsFetching && ( - ({ - value: domain.id, - label: domain.id, - }))} - validate={required} - /> - )} - {domainsError && Failed to load list of domains} - - - - - - - - - - Settings - - - - - - - - - - - - ({ - value: Code, - name: Name, - }))} - name="usageLocation" - placeholder="Type to search..." - label="Usage Location" - validate={required} - value={usagelocation} - /> - - - - - - - Licenses -
    - {licensesIsFetching && } - {licensesError && Error loading licenses} - {!licensesIsFetching && - licenses?.map((license) => ( - - ))} -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <> - {currentSettings?.userSettingsDefaults?.defaultAttributes?.map( - (attribute, idx) => ( - - - - - - ), - )} - {addedAttributes > 0 && - [...Array(addedAttributes)].map((e, i) => ( - - - - - - - - - ))} - - - - {addedAttributes > 0 && ( - setAddedAttribute(addedAttributes - 1)} - className={`circular-button`} - title={'-'} - > - - - )} - setAddedAttribute(addedAttributes + 1)} - className={`circular-button`} - title={'+'} - > - - - - - - - ({ - value: user.id, - name: user.displayName, - }))} - placeholder={!usersIsFetching ? 'Select user' : 'Loading...'} - name="setManager" - /> - {usersError && Failed to load list of users} - - - ({ - value: user.mail, - name: `${user.displayName} <${user.userPrincipalName}>`, - }))} - placeholder={!usersIsFetching ? 'Select user' : 'Loading...'} - name="CopyFrom" - /> - {usersError && Failed to load list of users} - - - - - - - - - - setStartDate(date)} - /> - - - - - - - - - - - - - - - Add User - {postResults.isFetching && ( - - )} - - - - {postResults.isSuccess && ( - - {postResults.data.Results.map((message, idx) => { - return
  • {message}
  • - })} -
    - )} -
    - ) - }} - /> -
    -
    -
    - - - - Copy properties - - - Use this option to copy the properties from another user, this will only copy the - visible fields as a template. -