diff --git a/.github/workflows/Comment_on_Issues.yml b/.github/workflows/Comment_on_Issues.yml
index 6bd12f6a005b..80574ef5d235 100644
--- a/.github/workflows/Comment_on_Issues.yml
+++ b/.github/workflows/Comment_on_Issues.yml
@@ -16,7 +16,7 @@ jobs:
with:
issue-number: ${{ github.event.issue.number }}
body: |
- Thank you for creating a bug. Please make sure your bug is indeed a unique case by checking current and past issues, and reading the complete documentation at https://kelvintegelaar.github.io/CIPP
+ Thank you for creating a bug. Please make sure your bug is indeed a unique case by checking current and past issues, and reading the complete documentation at https://docs.cipp.app/
If your bug is a known documentation issue, it will be closed without notice by a contributor. To confirm that this is not a bug found in the documentation, please copy and paste the following comment: "I confirm that I have checked the documentation thoroughly and believe this to be an actual bug.".
Without confirming, your report will be closed in 24 hours. If you'd like this bug to be assigned to you, please comment "I would like to work on this please!".
diff --git a/public/version_latest.txt b/public/version_latest.txt
index e5b820341fb1..084e244cea32 100644
--- a/public/version_latest.txt
+++ b/public/version_latest.txt
@@ -1 +1 @@
-3.5.0
\ No newline at end of file
+3.6.0
\ No newline at end of file
diff --git a/src/_nav.js b/src/_nav.js
index f0768034e29a..b6d536bb1976 100644
--- a/src/_nav.js
+++ b/src/_nav.js
@@ -127,12 +127,16 @@ const _nav = [
name: 'Alerts Wizard',
to: '/tenant/administration/alertswizard',
},
-
{
component: CNavItem,
name: 'Scheduled Alerts',
to: '/tenant/administration/alertsqueue',
},
+ {
+ component: CNavItem,
+ name: 'Enterprise Applications',
+ to: '/tenant/administration/enterprise-apps',
+ },
],
},
{
@@ -178,7 +182,7 @@ const _nav = [
},
{
component: CNavItem,
- name: 'Apply Standards',
+ name: 'Standards Wizard',
to: '/tenant/standards/apply-standard',
},
{
diff --git a/src/assets/images/datto.png b/src/assets/images/datto.png
index 623e1a4446ca..b0fad6f50233 100644
Binary files a/src/assets/images/datto.png and b/src/assets/images/datto.png differ
diff --git a/src/assets/images/rewst.png b/src/assets/images/rewst.png
new file mode 100644
index 000000000000..6d52a7838533
Binary files /dev/null and b/src/assets/images/rewst.png differ
diff --git a/src/components/layout/AppFooter.js b/src/components/layout/AppFooter.js
index 03dc0ea09dfa..13e1c174efb5 100644
--- a/src/components/layout/AppFooter.js
+++ b/src/components/layout/AppFooter.js
@@ -3,6 +3,7 @@ import { CFooter, CImage, CLink } from '@coreui/react'
import { Link } from 'react-router-dom'
import huntressLogo from 'src/assets/images/huntress_teal.png'
import dattoLogo from 'src/assets/images/datto.png'
+import rewstLogo from 'src/assets/images/rewst.png'
const AppFooter = () => {
return (
@@ -13,10 +14,12 @@ const AppFooter = () => {
{' '}
- &
+
+
+
diff --git a/src/components/tables/CellLicense.js b/src/components/tables/CellLicense.js
new file mode 100644
index 000000000000..50b88b978c4f
--- /dev/null
+++ b/src/components/tables/CellLicense.js
@@ -0,0 +1,24 @@
+import PropTypes from 'prop-types'
+import M365Licenses from 'src/data/M365Licenses'
+
+export function CellLicense({ cell }) {
+ let licenses = []
+ cell?.map((licenseAssignment, idx) => {
+ for (var x = 0; x < M365Licenses.length; x++) {
+ if (licenseAssignment.skuId == M365Licenses[x].GUID) {
+ licenses.push(M365Licenses[x].Product_Display_Name)
+ break
+ }
+ }
+ })
+ return licenses.join(', ')
+}
+
+CellLicense.propTypes = {
+ cell: PropTypes.object,
+}
+
+export const cellLicenseFormatter = () => (row, index, column, id) => {
+ const cell = column.selector(row)
+ return CellLicense({ cell })
+}
diff --git a/src/components/tables/CellLogo.js b/src/components/tables/CellLogo.js
new file mode 100644
index 000000000000..9f1a9755d7cc
--- /dev/null
+++ b/src/components/tables/CellLogo.js
@@ -0,0 +1,20 @@
+import PropTypes from 'prop-types'
+import { CImage } from '@coreui/react'
+
+export function CellLogo({ cell }) {
+ if (cell?.logoUrl) {
+ return
+ } else {
+ return ''
+ }
+}
+
+CellLogo.propTypes = {
+ propName: PropTypes.string,
+ cell: PropTypes.object,
+}
+
+export const cellLogoFormatter = () => (row, index, column, id) => {
+ const cell = column.selector(row)
+ return CellLogo({ cell })
+}
diff --git a/src/components/tables/CippDatatable.js b/src/components/tables/CippDatatable.js
index 77b0e5208f7a..d41dc8e342ed 100644
--- a/src/components/tables/CippDatatable.js
+++ b/src/components/tables/CippDatatable.js
@@ -3,24 +3,41 @@ import { useListDatatableQuery } from 'src/store/api/datatable'
import PropTypes from 'prop-types'
import { CippTable } from 'src/components/tables'
import { CippTablePropTypes } from 'src/components/tables/CippTable'
+import { CCallout } from '@coreui/react'
export default function CippDatatable({ path, params, ...rest }) {
const [refreshGuid, setRefreshGuid] = React.useState('')
- const [graphFilter, setGraphFilter] = React.useState('')
+ const [graphFilter, setGraphFilter] = React.useState(params?.Parameters?.$filter)
const {
data = [],
isFetching,
error,
- } = useListDatatableQuery({ path, params: { refreshGuid, graphFilter, ...params } })
+ } = useListDatatableQuery({ path, params: { refreshGuid, $filter: graphFilter, ...params } })
return (
-
+ <>
+ {data[0]?.Queued ? (
+ <>
+ {data[0]?.QueueMessage}
+
+ >
+ ) : (
+
+ )}
+ >
)
}
diff --git a/src/components/tables/CippTable.js b/src/components/tables/CippTable.js
index 0d3f0549d96f..372bad9eea18 100644
--- a/src/components/tables/CippTable.js
+++ b/src/components/tables/CippTable.js
@@ -326,68 +326,8 @@ export default function CippTable({
,
])
}
- if (!disablePDFExport) {
- if (dynamicColumns === true) {
- const addColumn = (columnname) => {
- var index = columns.length - 1
- let alreadyInArray = columns.find((o) => o.exportSelector === columnname)
- if (!alreadyInArray) {
- columns.splice(index, 0, {
- name: columnname,
- selector: (row) => row[columnname],
- sortable: true,
- exportSelector: columnname,
- cell: cellGenericFormatter(),
- })
- } else {
- let indexOfExisting = columns.findIndex((o) => o.exportSelector === columnname)
- columns = columns.splice(indexOfExisting, 1)
- }
- setUpdatedColumns(Date())
- }
-
- defaultActions.push([
-
-
-
-
-
- {dataKeys() &&
- dataKeys().map((item, idx) => {
- return (
- addColumn(item)}>
- {columns.find((o) => o.exportSelector === item) && (
-
- )}{' '}
- {item}
-
- )
- })}
-
- ,
- ])
- }
- actions.forEach((action) => {
- defaultActions.push(action)
- })
- defaultActions.push([
- ,
- ])
- }
- if (!disableCSVExport) {
+ if (!disablePDFExport || !disableCSVExport) {
const keys = []
columns.map((col) => {
if (col.exportSelector) keys.push(col.exportSelector)
@@ -396,11 +336,90 @@ export default function CippTable({
const filtered = data.map((obj) =>
// eslint-disable-next-line no-sequences
- keys.reduce((acc, curr) => ((acc[curr] = obj[curr]), acc), {}),
+ /* keys.reduce((acc, curr) => ((acc[curr] = obj[curr]), acc), {}),*/
+ keys.reduce((acc, curr) => {
+ const key = curr.split('/')
+ if (key.length > 1) {
+ const parent = key[0]
+ const subkey = key[1]
+ if (obj[parent] !== null && obj[parent][subkey] !== null) {
+ acc[curr] = obj[parent][subkey]
+ } else {
+ acc[curr] = 'n/a'
+ }
+ } else {
+ acc[curr] = obj[curr]
+ }
+ return acc
+ }, {}),
)
- defaultActions.push([
- ,
- ])
+
+ if (!disablePDFExport) {
+ if (dynamicColumns === true) {
+ const addColumn = (columnname) => {
+ var index = columns.length - 1
+ let alreadyInArray = columns.find((o) => o.exportSelector === columnname)
+ if (!alreadyInArray) {
+ columns.splice(index, 0, {
+ name: columnname,
+ selector: (row) => row[columnname],
+ sortable: true,
+ exportSelector: columnname,
+ cell: cellGenericFormatter(),
+ })
+ } else {
+ let indexOfExisting = columns.findIndex((o) => o.exportSelector === columnname)
+ columns = columns.splice(indexOfExisting, 1)
+ }
+ setUpdatedColumns(Date())
+ }
+
+ defaultActions.push([
+
+
+
+
+
+ {dataKeys() &&
+ dataKeys().map((item, idx) => {
+ return (
+ addColumn(item)}>
+ {columns.find((o) => o.exportSelector === item) && (
+
+ )}{' '}
+ {item}
+
+ )
+ })}
+
+ ,
+ ])
+ }
+ actions.forEach((action) => {
+ defaultActions.push(action)
+ })
+ defaultActions.push([
+ ,
+ ])
+ }
+
+ if (!disableCSVExport) {
+ defaultActions.push([
+ ,
+ ])
+ }
}
if (selectedRows && actionsList) {
defaultActions.push([
diff --git a/src/components/utilities/TenantSelector.js b/src/components/utilities/TenantSelector.js
index 9a93ea7348eb..bf4020eceb62 100644
--- a/src/components/utilities/TenantSelector.js
+++ b/src/components/utilities/TenantSelector.js
@@ -75,17 +75,12 @@ const TenantSelector = ({ action, showAllTenantSelector = true, NavSelector = fa
return (
<>
{NavSelector && (
-
+
{currentTenant?.defaultDomainName ? (
<>
- {currentTenant.displayName}
+ {currentTenant.displayName}
>
) : (
placeholder
diff --git a/src/data/Extensions.json b/src/data/Extensions.json
new file mode 100644
index 000000000000..2c15dbf56878
--- /dev/null
+++ b/src/data/Extensions.json
@@ -0,0 +1,85 @@
+[
+ {
+ "name": "Gradient Integration",
+ "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"
+ }
+ ]
+ },
+
+ {
+ "name": "Halo PSA Ticketing Integration",
+ "type": "HaloPSA",
+ "cat": "Ticketing",
+ "forceSyncButton": false,
+ "helpText": "This integration allows you to use 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"
+ },
+ {
+ "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"
+ }
+ ]
+ }
+]
diff --git a/src/data/M365Licenses.json b/src/data/M365Licenses.json
new file mode 100644
index 000000000000..6e01a92e19e5
--- /dev/null
+++ b/src/data/M365Licenses.json
@@ -0,0 +1,14074 @@
+[
+ {
+ "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/standards.json b/src/data/standards.json
index 50e671286608..48d8f9aff018 100644
--- a/src/data/standards.json
+++ b/src/data/standards.json
@@ -85,17 +85,6 @@
"addedComponent": null,
"label": "Enable LAPs on the tenant"
},
- {
- "name": "standards.intuneDeviceReg.Enabled",
- "cat": "AAD",
- "helpText": "This is the default helptext",
- "addedComponent": {
- "type": "input",
- "name": "standards.intuneDeviceReg.max",
- "label": "Maximum devices (Enter 2147483647 for unlimited.)"
- },
- "label": "Set Maximum Number of Devices per user"
- },
{
"name": "standards.PWnumberMatchingRequiredState",
"cat": "AAD",
@@ -110,6 +99,27 @@
"addedComponent": null,
"label": "Enable Passwordless with Location information and Number Matching"
},
+ {
+ "cat": "AAD",
+ "name": "standards.PWcompanionAppAllowedState.Enabled",
+ "helpText": "This is the default helptext",
+ "addedComponent": {
+ "type": "Select",
+ "label": "Select value",
+ "name": "standards.PWcompanionAppAllowedState.state",
+ "values": [
+ {
+ "label": "Enabled",
+ "value": "enabled"
+ },
+ {
+ "label": "Disabled",
+ "value": "disabled"
+ }
+ ]
+ },
+ "label": "Set Authenticator Lite state"
+ },
{
"cat": "AAD",
"name": "standards.TAP.Enabled",
@@ -356,6 +366,28 @@
},
"label": "Set Sharing Level for Default calendar"
},
+ {
+ "name": "standards.intuneDeviceReg.Enabled",
+ "cat": "Intune",
+ "helpText": "This is the default helptext",
+ "addedComponent": {
+ "type": "input",
+ "name": "standards.intuneDeviceReg.max",
+ "label": "Maximum devices (Enter 2147483647 for unlimited.)"
+ },
+ "label": "Set Maximum Number of Devices per user"
+ },
+ {
+ "name": "standards.intuneDeviceRetirementDays.Enabled",
+ "cat": "Intune",
+ "helpText": "This is the default helptext",
+ "addedComponent": {
+ "type": "input",
+ "name": "standards.intuneDeviceRetirementDays.days",
+ "label": "Maximum days (0 equals disabled)"
+ },
+ "label": "Set inactive device retirement days"
+ },
{
"name": "standards.sharingCapability.Enabled",
"cat": "SharePoint",
@@ -430,5 +462,40 @@
"helpText": "This is the default helptext",
"addedComponent": null,
"label": "Only allow users to sync OneDrive from AAD joined devices"
+ },
+ {
+ "name": "standards.IntuneTemplate.enabled",
+ "cat": "templates",
+ "helpText": "This is the default helptext",
+ "addedComponent": null,
+ "label": "Intune Templates"
+ },
+ {
+ "name": "standards.GroupTemplate.enabled",
+ "cat": "templates",
+ "helpText": "This is the default helptext",
+ "addedComponent": null,
+ "label": "Group Templates"
+ },
+ {
+ "name": "standards.ExConnector.enabled",
+ "cat": "templates",
+ "helpText": "This is the default helptext",
+ "addedComponent": null,
+ "label": "Exchange Connector Templates"
+ },
+ {
+ "name": "standards.ConditionalAccess.enabled",
+ "cat": "templates",
+ "helpText": "This is the default helptext",
+ "addedComponent": null,
+ "label": "Conditional Access Templates"
+ },
+ {
+ "name": "standards.TransportRuleTemplate.enabled",
+ "cat": "templates",
+ "helpText": "This is the default helptext",
+ "addedComponent": null,
+ "label": "Transport Rule Templates"
}
]
diff --git a/src/routes.js b/src/routes.js
index b0a689c0a112..ca216a35f4d1 100644
--- a/src/routes.js
+++ b/src/routes.js
@@ -221,6 +221,10 @@ const SecurityComplianceIncidents = React.lazy(() =>
const License = React.lazy(() => import('src/views/pages/license/License'))
const ServiceHealth = React.lazy(() => import('src/views/tenant/administration/ServiceHealth'))
+const EnterpriseApplications = React.lazy(() =>
+ import('src/views/tenant/administration/ListEnterpriseApps'),
+)
+
const routes = [
// { path: '/', exact: true, name: 'Home' },
{ path: '/home', name: 'Home', component: Home },
@@ -308,6 +312,11 @@ const routes = [
name: 'Service Health',
component: ServiceHealth,
},
+ {
+ path: '/tenant/administration/enterprise-apps',
+ name: 'Enterprise Applications',
+ component: EnterpriseApplications,
+ },
{
path: '/tenant/conditional/list-policies',
name: 'Conditional Access',
diff --git a/src/store/api/app.js b/src/store/api/app.js
index a7242f850eb6..5f366d65ee93 100644
--- a/src/store/api/app.js
+++ b/src/store/api/app.js
@@ -45,6 +45,7 @@ export const appApi = baseApi.injectEndpoints({
addStandardsDeploy,
addChocoApp,
onePerTenant,
+ sendtoIntegration,
logsToInclude,
}) => ({
path: '/api/ExecNotificationConfig',
@@ -60,6 +61,7 @@ export const appApi = baseApi.injectEndpoints({
addChocoApp: addChocoApp,
onePerTenant: onePerTenant,
logsToInclude: logsToInclude,
+ sendtoIntegration: sendtoIntegration,
},
method: 'post',
}),
diff --git a/src/views/cipp/CIPPSettings.js b/src/views/cipp/CIPPSettings.js
index c29575f64b76..931ecdb7ea4c 100644
--- a/src/views/cipp/CIPPSettings.js
+++ b/src/views/cipp/CIPPSettings.js
@@ -19,6 +19,7 @@ import {
CListGroupItem,
CLink,
CSpinner,
+ CCardText,
} from '@coreui/react'
import {
useGenericGetRequestQuery,
@@ -77,6 +78,7 @@ import CippListOffcanvas from 'src/components/utilities/CippListOffcanvas'
import { TitleButton } from 'src/components/buttons'
import Skeleton from 'react-loading-skeleton'
import { Buffer } from 'buffer'
+import Extensions from 'src/data/Extensions.json'
const CIPPSettings = () => {
const [active, setActive] = useState(1)
@@ -101,6 +103,12 @@ const CIPPSettings = () => {
setActive(6)} href="#">
Maintenance
+ setActive(7)} href="#">
+ Extensions
+
+ setActive(8)} href="#">
+ Extension Mappings
+
@@ -121,6 +129,12 @@ const CIPPSettings = () => {
+
+
+
+
+
+
)
@@ -1025,6 +1039,13 @@ const NotificationsSettings = () => {
value={false}
/>
+
+
+
Set Notification Settings
@@ -1265,6 +1286,249 @@ const DNSSettings = () => {
>
)
}
+const ExtensionsTab = () => {
+ 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,
+ })
+ }
+ return (
+
+ {listBackendResult.isUninitialized && listBackend({ path: 'api/ListExtensionsConfig' })}
+ <>
+ {(listBackendResult.isFetching ||
+ extensionConfigResult.isFetching ||
+ listExtensionTestResult.isFetching ||
+ listSyncExtensionResult.isFetching) &&
}
+ {listSyncExtensionResult.isSuccess && (
+
+
+ Results
+
+
+ <>
+ {listSyncExtensionResult.data.Results}
+ >
+
+
+ )}
+
+ {listExtensionTestResult.isSuccess && (
+
+
+ Results
+
+
+ <>
+ {listExtensionTestResult.data.Results}
+ >
+
+
+ )}
+ {extensionConfigResult.isSuccess && (
+
+
+ Results
+
+
+ <>
+ {extensionConfigResult.data.Results}
+ >
+
+
+ )}
+
+ {Extensions.map((integration) => (
+
+
+
+ {integration.name}
+
+
+ {integration.helpText}
+
+
+
+ ))}
+
+ >
+
+ )
+}
+
+const MappingsTab = () => {
+ const [listBackend, listBackendResult] = useLazyGenericGetRequestQuery()
+ const [setExtensionconfig, extensionConfigResult] = useLazyGenericPostRequestQuery()
+
+ const onSubmit = (values) => {
+ setExtensionconfig({
+ path: 'api/ExecExtensionMapping?AddMapping=true',
+ values: { mappings: values },
+ })
+ }
+ return (
+
+ {listBackendResult.isUninitialized &&
+ listBackend({ path: 'api/ExecExtensionMapping?List=true' })}
+ <>
+
+
+ HaloPSA Mapping Table
+
+
+ {listBackendResult.isFetching ? (
+
+ ) : (
+
+
+ >
+
+ )
+}
+
const Maintenance = () => {
const [selectedScript, setSelectedScript] = useState()
const [listBackend, listBackendResult] = useLazyGenericGetRequestQuery()
diff --git a/src/views/email-exchange/administration/EditMailboxPermissions.js b/src/views/email-exchange/administration/EditMailboxPermissions.js
index 317ecc1358ef..0d935683f332 100644
--- a/src/views/email-exchange/administration/EditMailboxPermissions.js
+++ b/src/views/email-exchange/administration/EditMailboxPermissions.js
@@ -7,23 +7,75 @@ import {
CCardHeader,
CCardTitle,
CCol,
+ CNav,
+ CNavItem,
+ CTabContent,
+ CTabPane,
CForm,
CRow,
CSpinner,
} from '@coreui/react'
import useQuery from 'src/hooks/useQuery'
+import { CippPage, CippPageList, CippMasonry, CippMasonryItem } from 'src/components/layout'
import { useDispatch } from 'react-redux'
-import { Form } from 'react-final-form'
-import { RFFSelectSearch } from 'src/components/forms'
+import { Form, Field } from 'react-final-form'
+import { RFFSelectSearch, RFFCFormSelect, RFFCFormCheck, RFFCFormInput } from 'src/components/forms'
import { useListUsersQuery } from 'src/store/api/users'
import { ModalService } from 'src/components/utilities'
-import { useLazyGenericPostRequestQuery } from 'src/store/api/app'
+import { useLazyGenericPostRequestQuery, useLazyGenericGetRequestQuery } from 'src/store/api/app'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faCircleNotch } from '@fortawesome/free-solid-svg-icons'
-import { useListMailboxPermissionsQuery } from 'src/store/api/mailbox'
+import {
+ useListMailboxPermissionsQuery,
+ useListMailboxesQuery,
+ useListCalendarPermissionsQuery,
+} from 'src/store/api/mailbox'
import { CippTable } from 'src/components/tables'
+import { useListMailboxDetailsQuery } from 'src/store/api/mailbox'
+import { CellBoolean } from 'src/components/tables'
+
+const formatter = (cell, warning = false, reverse = false, colourless = false) =>
+ CellBoolean({ cell, warning, reverse, colourless })
+
+const MailboxSettings = () => {
+ const [active, setActive] = useState(1)
+ return (
+
+
+
+
+ setActive(1)} href="#">
+ Mailbox Permissions
+
+ setActive(2)} href="#">
+ Calendar Permissions
+
+ setActive(3)} href="#">
+ Mailbox Forwarding
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ )
+}
+
+export default MailboxSettings
-const EditMailboxPermission = () => {
+const MailboxPermissions = () => {
const dispatch = useDispatch()
let query = useQuery()
const userId = query.get('userId')
@@ -251,4 +303,465 @@ const EditMailboxPermission = () => {
)
}
-export default EditMailboxPermission
+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 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,
+ } = 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 && (
+
+
+
+
+
+
+ Current Permissions
+
+
+ {userIsFetching && }
+ {!userIsFetching && (
+ <>
+ {user.length > 0 && (
+
+ )}
+ >
+ )}
+
+
+
+
+ >
+ )}
+
+ )
+}
+
+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,
+ refetch: refetchPermissions,
+ } = useListMailboxPermissionsQuery({ tenantDomain, userId })
+
+ const {
+ data: users = [],
+ isFetching: usersIsFetching,
+ error: usersError,
+ } = useListUsersQuery({ tenantDomain })
+
+ useEffect(() => {
+ if (postResults.isSuccess) {
+ refetchPermissions()
+ }
+ 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, refetchPermissions])
+ 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 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',
+ },
+ ]
+
+ const formDisabled = queryError === true
+
+ return (
+
+ {!queryError && (
+ <>
+ {queryError && (
+
+
+
+ {/* @todo add more descriptive help message here */}
+ Failed to load user
+
+
+
+ )}
+
+
+
+
+ Account Details - {userId}
+
+
+ {usersIsFetching && }
+ {userError && Error loading user }
+ {!usersIsFetching && (
+
+
+
+
+
+
+ Account Details - {userId}
+
+
+
+
+
+
+
+ >
+ )}
+
+ )
+}
+
+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 (
+
+
+ {content.map((item, index) => (
+
+
{item.heading}
+
{item.body}
+
+ ))}
+
+
+ )
+}
diff --git a/src/views/home/Home.js b/src/views/home/Home.js
index a6969fd9ea5b..1ddbf776a400 100644
--- a/src/views/home/Home.js
+++ b/src/views/home/Home.js
@@ -3,7 +3,6 @@ import {
faBook,
faCog,
faEllipsisH,
- faEnvelope,
faHotel,
faLaptopCode,
faMailBulk,
@@ -15,6 +14,7 @@ import {
faUserFriends,
faUserPlus,
faUsers,
+ faServer,
} from '@fortawesome/free-solid-svg-icons'
import { CCol, CRow } from '@coreui/react'
import { useGenericGetRequestQuery } from 'src/store/api/app'
@@ -62,32 +62,61 @@ const Home = () => {
params: {},
})
+ 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 = [
{
label: 'M365 Admin',
link: `https://portal.office.com/Partner/BeginClientSession.aspx?CTID=${currentTenant.customerId}&CSDEST=o365admincenter`,
+ target: '_blank',
icon: faCog,
},
{
label: 'Exchange',
link: `https://admin.exchange.microsoft.com/?landingpage=homepage&form=mac_sidebar&delegatedOrg=${currentTenant.defaultDomainName}#`,
+ target: '_blank',
icon: faMailBulk,
},
{
label: 'Intune',
link: `https://intune.microsoft.com/${currentTenant.defaultDomainName}`,
+ target: '_blank',
icon: faLaptopCode,
},
{
label: 'Entra',
link: `https://entra.microsoft.com/${currentTenant.defaultDomainName}`,
+ target: '_blank',
icon: faUsers,
},
{
label: 'Security',
link: `https://security.microsoft.com/?tid=${currentTenant.customerId}`,
+ target: '_blank',
icon: faShieldAlt,
},
+ {
+ label: 'Azure',
+ link: `https://portal.azure.com/?tid=${currentTenant.defaultDomainName}`,
+ icon: faServer,
+ },
+ {
+ label: 'Sharepoint',
+ link: `https://admin.microsoft.com/Partner/beginclientsession.aspx?CTID=${currentTenant.customerId}&CSDEST=SharePoint`,
+ icon: faBook,
+ },
]
const actions2 = [
@@ -260,12 +289,27 @@ const Home = () => {
)
return (
- {standardDisplayname[0].label} ({tenant.displayName})
+ {standardDisplayname[0]?.label} ({tenant.displayName})
)
})
})}
+
+ Partner Relationships
+ {(isLoadingPartners || isFetchingPartners) && }
+ {issuccessPartners &&
+ !isFetchingPartners &&
+ partners.map((partner) => {
+ if (partner.TenantInfo) {
+ return (
+
+ {partner.TenantInfo.displayName} ({partner.TenantInfo.defaultDomainName})
+
+ )
+ }
+ })}
+
diff --git a/src/views/identity/administration/EditGroup.js b/src/views/identity/administration/EditGroup.js
index bc27feebc675..9ea8160b396a 100644
--- a/src/views/identity/administration/EditGroup.js
+++ b/src/views/identity/administration/EditGroup.js
@@ -144,7 +144,7 @@ const EditGroup = () => {
- Group Details
+ Group Details {group[0] && `- ${group[0].displayName}`}
{isFetching && }
diff --git a/src/views/identity/administration/Users.js b/src/views/identity/administration/Users.js
index 9409f8230b35..eb1bf03c1813 100644
--- a/src/views/identity/administration/Users.js
+++ b/src/views/identity/administration/Users.js
@@ -8,12 +8,26 @@ import { cellBooleanFormatter, CellTip } from 'src/components/tables'
import { CippPageList } from 'src/components/layout'
import { TitleButton } from 'src/components/buttons'
import { CippActionsOffcanvas } from 'src/components/utilities'
+import { cellLicenseFormatter } from 'src/components/tables/CellLicense'
+import M365Licenses from 'src/data/M365Licenses'
const Offcanvas = (row, rowIndex, formatExtraData) => {
const tenant = useSelector((state) => state.app.currentTenant)
const [ocVisible, setOCVisible] = useState(false)
const viewLink = `/identity/administration/users/view?userId=${row.id}&tenantDomain=${tenant.defaultDomainName}&userEmail=${row.userPrincipalName}`
const editLink = `/identity/administration/users/edit?userId=${row.id}&tenantDomain=${tenant.defaultDomainName}`
+
+ let licenses = []
+ row.assignedLicenses?.map((licenseAssignment, idx) => {
+ for (var x = 0; x < M365Licenses.length; x++) {
+ if (licenseAssignment.skuId == M365Licenses[x].GUID) {
+ licenses.push(M365Licenses[x].Product_Display_Name)
+ break
+ }
+ }
+ })
+ var licJoined = licenses.join(', ')
+
//console.log(row)
return (
<>
@@ -38,7 +52,7 @@ const Offcanvas = (row, rowIndex, formatExtraData) => {
{ label: 'Given Name', value: `${row.givenName ?? ' '}` },
{ label: 'Surname', value: `${row.surname ?? ' '}` },
{ label: 'Job Title', value: `${row.jobTitle ?? ' '}` },
- { label: 'Licenses', value: `${row.LicJoined ?? ' '}` },
+ { label: 'Licenses', value: `${licJoined ?? ' '}` },
{ label: 'Business Phone', value: `${row.businessPhones ?? ' '}` },
{ label: 'Mobile Phone', value: `${row.mobilePhone ?? ' '}` },
{ label: 'Mail', value: `${row.mail ?? ' '}` },
@@ -260,8 +274,9 @@ const Users = (row) => {
},
{
name: 'Licenses',
- selector: (row) => row['LicJoined'],
- exportSelector: 'LicJoined',
+ selector: (row) => row['assignedLicenses'],
+ exportSelector: 'assignedLicenses',
+ cell: cellLicenseFormatter(),
sortable: true,
grow: 5,
wrap: true,
@@ -318,11 +333,23 @@ const Users = (row) => {
filter: 'assignedLicenses/$count ne 0',
graphFilter: true,
},
+ {
+ filterName: 'Users with a license & Enabled (Graph)',
+ filter: 'assignedLicenses/$count ne 0 and accountEnabled eq true',
+ graphFilter: true,
+ },
],
columns,
- path: '/api/ListUsers',
+ path: '/api/ListGraphRequest',
reportName: `${tenant?.defaultDomainName}-Users`,
- params: { TenantFilter: tenant?.defaultDomainName },
+ params: {
+ TenantFilter: tenant?.defaultDomainName,
+ Endpoint: 'users',
+ $select:
+ 'id,accountEnabled,businessPhones,city,createdDateTime,companyName,country,department,displayName,faxNumber,givenName,isResourceAccount,jobTitle,mail,mailNickname,mobilePhone,onPremisesDistinguishedName,officeLocation,onPremisesLastSyncDateTime,otherMails,postalCode,preferredDataLocation,preferredLanguage,proxyAddresses,showInAddressList,state,streetAddress,surname,usageLocation,userPrincipalName,userType,assignedLicenses,onPremisesSyncEnabled',
+ $count: true,
+ $orderby: 'displayName',
+ },
tableProps: {
selectableRows: true,
actionsList: [
diff --git a/src/views/tenant/administration/AlertWizard.js b/src/views/tenant/administration/AlertWizard.js
index 65bee4412323..54b42e424dd2 100644
--- a/src/views/tenant/administration/AlertWizard.js
+++ b/src/views/tenant/administration/AlertWizard.js
@@ -123,6 +123,10 @@ const AlertWizard = () => {
+
@@ -253,6 +257,14 @@ const AlertWizard = () => {
icon={props.values.NoCAConfig ? faCheck : faTimes}
/>
+
+ Alert on Security Defaults automatic enablement
+
+
diff --git a/src/views/tenant/administration/ListAlertsQueue.js b/src/views/tenant/administration/ListAlertsQueue.js
index 485c11b5444c..bd05c3f1b51b 100644
--- a/src/views/tenant/administration/ListAlertsQueue.js
+++ b/src/views/tenant/administration/ListAlertsQueue.js
@@ -135,6 +135,13 @@ const ListAlertsQueue = () => {
exportSelector: 'NoCAConfig',
cell: cellBooleanFormatter(),
},
+ {
+ name: 'Sec Defaults Auto-Enable',
+ selector: (row) => row['SecDefaultsUpsell'],
+ sortable: true,
+ exportSelector: 'SecDefaultsUpsell',
+ cell: cellBooleanFormatter(),
+ },
{
name: 'Actions',
cell: Actions,
diff --git a/src/views/tenant/administration/ListEnterpriseApps.js b/src/views/tenant/administration/ListEnterpriseApps.js
new file mode 100644
index 000000000000..8e1a3bfa9b01
--- /dev/null
+++ b/src/views/tenant/administration/ListEnterpriseApps.js
@@ -0,0 +1,123 @@
+import { CButton } from '@coreui/react'
+import { faEllipsisV, faTrashAlt } from '@fortawesome/free-solid-svg-icons'
+import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
+import React, { useState, useEffect } from 'react'
+import { useSelector } from 'react-redux'
+import { CippPageList } from 'src/components/layout'
+import { cellDateFormatter, cellNullTextFormatter } from 'src/components/tables'
+import { CippActionsOffcanvas } from 'src/components/utilities'
+import { cellLogoFormatter } from 'src/components/tables/CellLogo'
+import { CellTip } from 'src/components/tables/CellGenericFormat'
+
+const EnterpriseApplications = () => {
+ const [tenantColumnSet, setTenantColumn] = useState(true)
+ const tenant = useSelector((state) => state.app.currentTenant)
+ useEffect(() => {
+ if (tenant.defaultDomainName === 'AllTenants') {
+ setTenantColumn(false)
+ }
+ if (tenant.defaultDomainName !== 'AllTenants') {
+ setTenantColumn(true)
+ }
+ }, [tenantColumnSet])
+
+ 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,
+ },
+ {
+ name: '',
+ selector: (row) => row.info,
+ cell: cellLogoFormatter(),
+ maxWidth: '1px',
+ },
+ {
+ name: 'Application Name',
+ selector: (row) => row.displayName,
+ sortable: true,
+ exportSelector: 'displayName',
+ cell: cellNullTextFormatter(),
+ },
+ {
+ name: 'Application Id',
+ selector: (row) => row.appId,
+ sortable: true,
+ exportSelector: 'appId',
+ },
+ {
+ name: 'Created',
+ selector: (row) => row.createdDateTime,
+ sortable: true,
+ exportSelector: 'createdDateTime',
+ cell: cellDateFormatter({ format: 'short' }),
+ },
+ {
+ name: 'Publisher',
+ selector: (row) => row.publisherName,
+ sortable: true,
+ exportSelector: 'publisherName',
+ },
+ {
+ name: 'Homepage',
+ selector: (row) => row.homepage,
+ sortable: true,
+ exportSelector: 'homepage',
+ cell: cellDateFormatter({ format: 'short' }),
+ },
+ ]
+ return (
+
+
+
+ )
+}
+
+export default EnterpriseApplications
diff --git a/src/views/tenant/administration/ListGDAPRelationships.js b/src/views/tenant/administration/ListGDAPRelationships.js
index f44b5da4d144..51a0e031f215 100644
--- a/src/views/tenant/administration/ListGDAPRelationships.js
+++ b/src/views/tenant/administration/ListGDAPRelationships.js
@@ -44,7 +44,7 @@ const GDAPRelationships = () => {
name: 'Tenant',
selector: (row) => row.customer?.displayName,
sortable: true,
- exportSelector: 'customer',
+ exportSelector: 'customer/displayName',
cell: cellNullTextFormatter(),
},
{
diff --git a/src/views/tenant/administration/Tenants.js b/src/views/tenant/administration/Tenants.js
index a181ae12a798..fe047247bde5 100644
--- a/src/views/tenant/administration/Tenants.js
+++ b/src/views/tenant/administration/Tenants.js
@@ -221,13 +221,13 @@ const TenantsList = () => {
),
},
{
- name: 'AAD Portal',
+ name: 'Entra Portal',
omit: columnOmits,
selector: (row) => row['defaultDomainName'],
center: true,
cell: (row) => (
(
@@ -37,6 +43,12 @@ function getDeepKeys(obj) {
const ApplyStandard = () => {
const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery()
+ const [intuneGetRequest, intuneTemplates] = useLazyGenericGetRequestQuery()
+ const [transportGetRequest, transportTemplates] = useLazyGenericGetRequestQuery()
+ const [exConnectorGetRequest, exConnectorTemplates] = useLazyGenericGetRequestQuery()
+ const [caGetRequest, caTemplates] = useLazyGenericGetRequestQuery()
+ const [groupGetRequest, groupTemplates] = useLazyGenericGetRequestQuery()
+
const handleSubmit = async (values) => {
// @todo: clean this up api sided so we don't need to perform weird tricks.
Object.keys(values.standards).filter(function (x) {
@@ -225,6 +237,45 @@ const ApplyStandard = () => {
+
+
+ Step 5
+ Select Standards
+
+
+
+
+ {allStandardsList
+ .filter((obj) => obj.cat === 'Intune')
+ .map((item, key) => (
+ <>
+
+ {item.addedComponent && (
+
+ {item.addedComponent.type === 'Select' ? (
+
+ ) : (
+
+ )}
+
+ )}
+ >
+ ))}
+
+
+
+
{
+
+
+ Step 7
+ Select Default Templates to apply
+
+
+
+ Attention: Selected options below will run every 3 hours and overwrite any previously set
+ policy by the same name. This will keep the policy exactly in the state as defined by the
+ template.
+
+
+
+
+
+ {intuneTemplates.isUninitialized &&
+ intuneGetRequest({ path: 'api/ListIntuneTemplates' })}
+ {intuneTemplates.isSuccess && (
+ ({
+ value: template.GUID,
+ name: template.Displayname,
+ }))}
+ placeholder="Select a template"
+ label="Choose your intune templates to apply"
+ />
+ )}
+
+
+
+ {transportTemplates.isUninitialized &&
+ transportGetRequest({ path: 'api/ListTransportRulesTemplates' })}
+ {transportTemplates.isSuccess && (
+ ({
+ value: template.GUID,
+ name: template.name,
+ }))}
+ placeholder="Select a template"
+ label="Choose your Transport Rule templates to apply"
+ />
+ )}
+
+
+
+ {caTemplates.isUninitialized && caGetRequest({ path: 'api/ListCAtemplates' })}
+ {caTemplates.isSuccess && (
+ ({
+ value: template.GUID,
+ name: template.displayName,
+ }))}
+ placeholder="Select a template"
+ label="Choose your intune templates to apply"
+ />
+ )}
+
+
+
+ {exConnectorTemplates.isUninitialized &&
+ exConnectorGetRequest({ path: 'api/ListExConnectorTemplates' })}
+ {exConnectorTemplates.isSuccess && (
+ ({
+ value: template.GUID,
+ name: template.name,
+ }))}
+ placeholder="Select a template"
+ label="Choose your intune templates to apply"
+ />
+ )}
+
+
+
+ {groupTemplates.isUninitialized &&
+ groupGetRequest({ path: 'api/ListGroupTemplates' })}
+ {groupTemplates.isSuccess && (
+ ({
+ value: template.GUID,
+ name: template.Displayname,
+ }))}
+ placeholder="Select a template"
+ label="Choose your intune templates to apply"
+ />
+ )}
+
+
+
+
+
Step 6
diff --git a/src/views/tenant/standards/ListAppliedStandards.js b/src/views/tenant/standards/ListAppliedStandards.js
index 541bebacfd00..ebb248fe2da2 100644
--- a/src/views/tenant/standards/ListAppliedStandards.js
+++ b/src/views/tenant/standards/ListAppliedStandards.js
@@ -1,7 +1,13 @@
import React from 'react'
import { CButton, CCallout, CCol, CForm, CRow, CSpinner } from '@coreui/react'
import { Form } from 'react-final-form'
-import { Condition, RFFCFormInput, RFFCFormSelect, RFFCFormSwitch } from 'src/components/forms'
+import {
+ Condition,
+ RFFCFormInput,
+ RFFCFormSelect,
+ RFFCFormSwitch,
+ RFFSelectSearch,
+} from 'src/components/forms'
import {
useGenericGetRequestQuery,
useLazyGenericGetRequestQuery,
@@ -15,7 +21,6 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import Skeleton from 'react-loading-skeleton'
import { CippTable } from 'src/components/tables'
import allStandardsList from 'src/data/standards'
-import { CellTip } from 'src/components/tables/CellGenericFormat'
const RefreshAction = () => {
const [execStandards, execStandardsResults] = useLazyGenericGetRequestQuery()
@@ -120,7 +125,13 @@ const ListAppliedStandards = () => {
exportSelector: 'StandardsExport',
},
]
-
+ const [intuneGetRequest, intuneTemplates] = useLazyGenericGetRequestQuery()
+ const [transportGetRequest, transportTemplates] = useLazyGenericGetRequestQuery()
+ const [exConnectorGetRequest, exConnectorTemplates] = useLazyGenericGetRequestQuery()
+ const [caGetRequest, caTemplates] = useLazyGenericGetRequestQuery()
+ const [groupGetRequest, groupTemplates] = useLazyGenericGetRequestQuery()
+ const initialValues = listStandardResults[0]
+ console.log(initialValues)
return (
<>
@@ -136,9 +147,18 @@ const ListAppliedStandards = () => {
title="List and edit standard"
>
{isFetching && }
+ {intuneTemplates.isUninitialized &&
+ intuneGetRequest({ path: 'api/ListIntuneTemplates' })}
+ {transportTemplates.isUninitialized &&
+ transportGetRequest({ path: 'api/ListTransportRulesTemplates' })}
+ {caTemplates.isUninitialized && caGetRequest({ path: 'api/ListCAtemplates' })}
+ {exConnectorTemplates.isUninitialized &&
+ exConnectorGetRequest({ path: 'api/ListExConnectorTemplates' })}
+ {groupTemplates.isUninitialized &&
+ groupGetRequest({ path: 'api/ListGroupTemplates' })}
{isSuccess && !isFetching && (