From d2545d0734d15e7bc773189e7904222abb9502d8 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Fri, 5 Jan 2024 17:22:02 +0100 Subject: [PATCH 01/69] fixes bulk action --- src/views/identity/administration/Users.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/identity/administration/Users.jsx b/src/views/identity/administration/Users.jsx index 360693314d62..c34484ab0661 100644 --- a/src/views/identity/administration/Users.jsx +++ b/src/views/identity/administration/Users.jsx @@ -449,7 +449,7 @@ const Users = (row) => { label: 'Enable Online Archive', color: 'info', modal: true, - modalUrl: `/api/ExecEnableArchive?TenantFilter=!Tenant&ID=!id`, + modalUrl: `/api/ExecEnableArchive?TenantFilter=!Tenant&ID=!userPrincipalName`, modalMessage: 'Are you sure you want to enable the online archive for these users?', }, { From 73c68958b0a7f094e3326bf94c0a64db7c38e892 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Mon, 8 Jan 2024 00:09:06 +0100 Subject: [PATCH 02/69] Add DisableExternalCalendarSharing standard --- src/data/standards.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/data/standards.json b/src/data/standards.json index 51301804bb01..66990d39607d 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -507,6 +507,15 @@ "impact": "Low Impact", "impactColour": "info" }, + { + "name": "standards.DisableExternalCalendarSharing", + "cat": "Exchange Standards", + "helpText": "Disables the ability for users to share their calendar with external users. Only for the default policy, so exclusions can be made if needed.", + "addedComponent": [], + "label": "Disable external calendar sharing", + "impact": "Low Impact", + "impactColour": "info" + }, { "name": "standards.SafeSendersDisable", "cat": "Exchange Standards", From 97136ff36f5b5087e72b13c79f6d1445d60b7781 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Mon, 8 Jan 2024 20:43:53 +0100 Subject: [PATCH 03/69] Add new standard for enabling Customer Lockbox and update misc texts --- src/data/standards.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/data/standards.json b/src/data/standards.json index b38bc7eafca9..804ee9e9802c 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -43,6 +43,15 @@ "impact": "Low Impact", "impactColour": "info" }, + { + "name": "standards.EnableCustomerLockbox", + "cat": "Global Standards", + "helpText": "Enables Customer Lockbox that offers an approval process for Microsoft support to access organization data", + "addedComponent": [], + "label": "Enable Customer Lockbox", + "impact": "Low Impact", + "impactColour": "info" + }, { "name": "standards.AnonReportDisable", "cat": "Global Standards", @@ -55,7 +64,7 @@ { "name": "standards.DisableGuestDirectory", "cat": "Global Standards", - "helpText": "Disables Guest access to enumerate directory objects. This prevents guest users from see other users or guests in the directory.", + "helpText": "Disables Guest access to enumerate directory objects. This prevents guest users from seeing other users or guests in the directory.", "addedComponent": [], "label": "Restrict guest user access to directory objects", "impact": "Low Impact", @@ -395,7 +404,7 @@ { "name": "standards.SendReceiveLimitTenant", "cat": "Exchange Standards", - "helpText": "Sets the Send and Receive limits for new users. Valid values are 1KB to 150MB. Invalid values will be set to EXO standard of 35MB,36MB", + "helpText": "Sets the Send and Receive limits for new users. Valid values are 1MB to 150MB", "addedComponent": [ { "type": "number", From 359c840851026f7f549bb21995f6daab47058ea0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Mon, 8 Jan 2024 22:01:11 +0100 Subject: [PATCH 04/69] Add Mailbox audit logging standard --- src/data/standards.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/data/standards.json b/src/data/standards.json index fe84e3b2e0a5..aef297a63de3 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -446,6 +446,15 @@ "impact": "Low Impact", "impactColour": "info" }, + { + "name": "standards.EnableMailboxAuditing", + "cat": "Exchange Standards", + "helpText": "Enables Mailbox auditing for all mailboxes and on tenant level. By default Microsoft does not enable mailbox auditing for Resource Mailboxes, Public Folder Mailboxes and DiscoverySearch Mailboxes. Unified Audit Log needs to be enabled for this standard to function.", + "addedComponent": [], + "label": "Enable Mailbox auditing", + "impact": "Low Impact", + "impactColour": "info" + }, { "name": "standards.SendReceiveLimitTenant", "cat": "Exchange Standards", From 7399bda91cf512a6ae3b54e9732c8f623121ab97 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Fri, 12 Jan 2024 00:00:32 +0100 Subject: [PATCH 05/69] added automatic change of displayname --- src/components/forms/RFFComponents.jsx | 8 +++ src/views/identity/administration/AddUser.jsx | 49 +++++++++++++++---- 2 files changed, 48 insertions(+), 9 deletions(-) diff --git a/src/components/forms/RFFComponents.jsx b/src/components/forms/RFFComponents.jsx index 4da57f18e54c..2d315826b4f2 100644 --- a/src/components/forms/RFFComponents.jsx +++ b/src/components/forms/RFFComponents.jsx @@ -137,10 +137,17 @@ export const RFFCFormInput = ({ disabled = false, spellCheck = true, autoFocus = false, + onChange, }) => { return ( {({ input, meta }) => { + const handleChange = onChange + ? (e) => { + input.onChange(e) + onChange(e) + } + : input.onChange return (
{label && {label}} @@ -155,6 +162,7 @@ export const RFFCFormInput = ({ placeholder={placeholder} spellCheck={spellCheck} autoFocus={autoFocus} + onChange={handleChange} />
diff --git a/src/views/identity/administration/AddUser.jsx b/src/views/identity/administration/AddUser.jsx index ba0e0b1d96a3..a915ec793bd0 100644 --- a/src/views/identity/administration/AddUser.jsx +++ b/src/views/identity/administration/AddUser.jsx @@ -1,4 +1,4 @@ -import React from 'react' +import React, { useEffect, useState } from 'react' import { CButton, CCard, @@ -36,6 +36,7 @@ import { required } from 'src/validators' import useQuery from 'src/hooks/useQuery' import Select from 'react-select' import { useNavigate } from 'react-router-dom' +import { OnChange } from 'react-final-form-listeners' const AddUser = () => { let navigate = useNavigate() @@ -103,11 +104,7 @@ const AddUser = () => { genericPostRequest({ path: '/api/AddUser', values: shippedValues }) } const usagelocation = useSelector((state) => state.app.usageLocation) - const initialState = { - Autopassword: false, - usageLocation: usagelocation, - ...allQueryObj, - } + const copyUserVariables = (t) => { for (const [key, value] of Object.entries(t.value)) { query.delete(key) @@ -117,6 +114,20 @@ const AddUser = () => { navigate(`?${query.toString()}`) } } + + const [firstName, setFirstName] = useState('') + const [lastName, setLastName] = useState('') + const [displayName, setDisplayName] = useState('') + const initialState = { + Autopassword: false, + usageLocation: usagelocation, + ...allQueryObj, + } + // Effect to update display name when first or last name changes + useEffect(() => { + setDisplayName(`${firstName} ${lastName}`) + }, [firstName, lastName, displayName]) + return ( {postResults.isSuccess && ( @@ -144,15 +155,25 @@ const AddUser = () => {
{ + render={({ form, handleSubmit, submitting, values }) => { return ( - + setFirstName(e.target.value)} + /> - + setLastName(e.target.value)} + /> @@ -163,6 +184,16 @@ const AddUser = () => { label="Display Name" validate={required} /> + + {(value) => { + form.change('displayName', `${value} ${lastName}`) + }} + + + {(value) => { + form.change('displayName', `${firstName} ${value} `) + }} + From b55b2a790a8d0e5f5cd1bac3d288068770261445 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Fri, 12 Jan 2024 01:30:42 +0100 Subject: [PATCH 06/69] added group removal and adding from side menu. --- .../utilities/CippActionsOffcanvas.jsx | 36 ++++++++--- src/views/identity/administration/Users.jsx | 60 +++++++++++++++---- 2 files changed, 77 insertions(+), 19 deletions(-) diff --git a/src/components/utilities/CippActionsOffcanvas.jsx b/src/components/utilities/CippActionsOffcanvas.jsx index 20e84a76b0bc..3cec2692a969 100644 --- a/src/components/utilities/CippActionsOffcanvas.jsx +++ b/src/components/utilities/CippActionsOffcanvas.jsx @@ -38,6 +38,34 @@ export default function CippActionsOffcanvas(props) { } const handleModal = useCallback( (modalMessage, modalUrl, modalType = 'GET', modalBody, modalInput, modalDropdown) => { + const handlePostConfirm = () => { + const selectedValue = inputRef.current.value + console.log(inputRef) + let additionalFields = {} + + if (inputRef.current.nodeName === 'SELECT') { + const selectedItem = dropDownInfo.data.find( + (item) => item[modalDropdown.valueField] === selectedValue, + ) + if (selectedItem && modalDropdown.addedField) { + Object.keys(modalDropdown.addedField).forEach((key) => { + additionalFields[key] = selectedItem[modalDropdown.addedField[key]] + }) + } + } + const postRequestBody = { + ...modalBody, + ...additionalFields, + input: selectedValue, + } + // Send the POST request + genericPostRequest({ + path: modalUrl, + values: postRequestBody, + }) + } + + // Modal setup for GET, codeblock, and other types if (modalType === 'GET') { ModalService.confirm({ body: ( @@ -82,12 +110,7 @@ export default function CippActionsOffcanvas(props) { ), title: 'Confirm', - onConfirm: () => [ - genericPostRequest({ - path: modalUrl, - values: { ...modalBody, ...{ input: inputRef.current.value } }, - }), - ], + onConfirm: handlePostConfirm, }) } }, @@ -99,7 +122,6 @@ export default function CippActionsOffcanvas(props) { modalContent, ], ) - useEffect(() => { if (dropDownInfo.isFetching) { handleModal( diff --git a/src/views/identity/administration/Users.jsx b/src/views/identity/administration/Users.jsx index c34484ab0661..f782b436c629 100644 --- a/src/views/identity/administration/Users.jsx +++ b/src/views/identity/administration/Users.jsx @@ -88,11 +88,6 @@ const Offcanvas = (row, rowIndex, formatExtraData) => { link: `/identity/administration/ViewBec?userId=${row.id}&tenantDomain=${tenant.defaultDomainName}&ID=${row.userPrincipalName}`, color: 'info', }, - { - label: 'Offboard User', - link: OffboardLink, - color: 'info', - }, { label: 'Create Temporary Access Password', color: 'info', @@ -140,6 +135,54 @@ const Offcanvas = (row, rowIndex, formatExtraData) => { }, modalMessage: 'Select the sharepoint site to create a shortcut for', }, + { + label: 'Add to group', + color: 'info', + modal: true, + modalType: 'POST', + modalBody: { + Addmember: { + value: row.userPrincipalName, + }, + TenantId: tenant.defaultDomainName, + }, + modalUrl: `/api/EditGroup`, + modalDropdown: { + url: `/api/listGroups?TenantFilter=${tenant.defaultDomainName}`, + labelField: 'displayName', + valueField: 'id', + addedField: { + groupId: 'id', + groupType: 'calculatedGroupType', + groupName: 'displayName', + }, + }, + modalMessage: 'Select the group to add the user to', + }, + { + label: 'Remove from group', + color: 'info', + modal: true, + modalType: 'POST', + modalBody: { + Removemember: { + value: row.userPrincipalName, + }, + TenantId: tenant.defaultDomainName, + }, + modalUrl: `/api/EditGroup`, + modalDropdown: { + url: `/api/listGroups?TenantFilter=${tenant.defaultDomainName}`, + labelField: 'displayName', + valueField: 'id', + addedField: { + groupId: 'id', + groupType: 'calculatedGroupType', + groupName: 'displayName', + }, + }, + modalMessage: 'Select the group to add the user to', + }, { label: 'Enable Online Archive', color: 'info', @@ -217,13 +260,6 @@ const Offcanvas = (row, rowIndex, formatExtraData) => { modalUrl: `/api/ExecResetPass?MustChange=false&TenantFilter=${tenant.defaultDomainName}&ID=${row.id}&displayName=${row.displayName}`, modalMessage: 'Are you sure you want to reset the password for this user?', }, - { - label: 'Clear ImmutableId', - color: 'warning', - modal: true, - modalUrl: `/api/ExecClrImmId?TenantFilter=${tenant.defaultDomainName}&ID=${row.id}`, - modalMessage: 'Are you sure you want to clear the ImmutableId for this user?', - }, { label: 'Revoke all user sessions', color: 'danger', From 67c05e6e4232192e49424eff7c69b71a2a7bee0b Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Fri, 12 Jan 2024 15:15:13 +0100 Subject: [PATCH 07/69] fixes email open bug --- src/views/email-exchange/administration/MailboxesList.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/email-exchange/administration/MailboxesList.jsx b/src/views/email-exchange/administration/MailboxesList.jsx index d3a7c92463a7..71bf2ba141b8 100644 --- a/src/views/email-exchange/administration/MailboxesList.jsx +++ b/src/views/email-exchange/administration/MailboxesList.jsx @@ -18,7 +18,7 @@ const MailboxList = () => { return ( <> From b0031dbc57d221595579d043dabe3c9448b21fa3 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Sat, 13 Jan 2024 13:48:07 +0100 Subject: [PATCH 08/69] fix error popup if it receives an object --- src/store/middleware/errorMiddleware.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/store/middleware/errorMiddleware.js b/src/store/middleware/errorMiddleware.js index 7ad628d6504f..d09c48915ff3 100644 --- a/src/store/middleware/errorMiddleware.js +++ b/src/store/middleware/errorMiddleware.js @@ -17,7 +17,21 @@ export const errorMiddleware = action.payload.data = 'The Azure Function has taken too long to respond. Try selecting a different report or a single tenant instead' } + //if the payload is a string, show the string, if the payload is an object, check if there is a 'Results or 'results' or 'result' property and show that, otherwise show the whole object let message = action.payload?.data || 'A generic error has occurred.' + if (typeof message === 'string') { + // Do nothing, message is already a string + } else if (typeof message === 'object') { + if (message.Results) { + message = message.Results + } else if (message.results) { + message = message.results + } else if (message.result) { + message = message.result + } else { + message = JSON.stringify(message) + } + } if (message.length > 240) { message = message.substring(0, 240) + '...' } From 6953a8c62b1e12b3f6452d9adc6fd34c4d275b14 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Sat, 13 Jan 2024 19:51:28 +0100 Subject: [PATCH 09/69] add vacation mode CA policies --- src/_nav.jsx | 5 + src/routes.js | 6 + .../tenant/administration/GeoIPLookup.jsx | 36 +++- .../tenant/conditional/DeployVacation.jsx | 184 ++++++++++++++++++ 4 files changed, 224 insertions(+), 7 deletions(-) create mode 100644 src/views/tenant/conditional/DeployVacation.jsx diff --git a/src/_nav.jsx b/src/_nav.jsx index 77ed1af3a328..0f140ce656a0 100644 --- a/src/_nav.jsx +++ b/src/_nav.jsx @@ -239,6 +239,11 @@ const _nav = [ name: 'Deploy CA Policies', to: '/tenant/conditional/deploy', }, + { + component: CNavItem, + name: 'CA Vacation Mode', + to: '/tenant/conditional/deploy-vacation', + }, { component: CNavItem, name: 'CA Templates', diff --git a/src/routes.js b/src/routes.js index 7b448b3ad39b..2f41ef51dff5 100644 --- a/src/routes.js +++ b/src/routes.js @@ -47,6 +47,7 @@ const GraphExplorer = React.lazy(() => import('src/views/tenant/administration/G const Domains = React.lazy(() => import('src/views/tenant/administration/Domains')) const EditTenant = React.lazy(() => import('src/views/tenant/administration/EditTenant')) const ConditionalAccess = React.lazy(() => import('src/views/tenant/conditional/ConditionalAccess')) +const DeployVacationCA = React.lazy(() => import('src/views/tenant/conditional/DeployVacation')) const NamedLocations = React.lazy(() => import('src/views/tenant/conditional/NamedLocations')) const ListConditionalTemplates = React.lazy(() => @@ -341,6 +342,11 @@ const routes = [ name: 'Conditional Access', component: ConditionalAccess, }, + { + path: '/tenant/conditional/deploy-vacation', + name: 'Deploy Vacation Mode', + component: DeployVacationCA, + }, { path: '/tenant/conditional/list-named-locations', name: 'Named Locations', diff --git a/src/views/tenant/administration/GeoIPLookup.jsx b/src/views/tenant/administration/GeoIPLookup.jsx index dd1b21e215a4..815dcd0adbbb 100644 --- a/src/views/tenant/administration/GeoIPLookup.jsx +++ b/src/views/tenant/administration/GeoIPLookup.jsx @@ -115,26 +115,48 @@ const GeoIPLookup = () => { {ip} -

Range

+

AS

{graphrequest.isFetching && } - {graphrequest.data?.startaddress} - {graphrequest.data?.endAddress} + {graphrequest.data?.as}

Owner

{graphrequest.isFetching && } - {graphrequest.data?.OrgRef} + {graphrequest.data?.org}
-

Subnet Name

+

ISP

{graphrequest.isFetching && } - {graphrequest.data?.SubnetName} + {graphrequest.data?.isp}
- +

Geo IP Location

{graphrequest.isFetching && } - {graphrequest.data?.location?.countryCode} - {graphrequest.data?.location?.cityName} + {graphrequest.data?.country} - {graphrequest.data?.city} +
+ +

Lat/Lon

+ {graphrequest.isFetching && } + {graphrequest.data?.lat} - {graphrequest.data?.lon} +
+
+ + +

Hosting

+ {graphrequest.isFetching && } + {graphrequest.data?.hosting ? 'Yes' : 'No'} +
+ +

Mobile

+ {graphrequest.isFetching && } + {graphrequest.data?.mobile ? 'Yes' : 'No'} +
+ +

Proxy or Anonimizer

+ {graphrequest.isFetching && } + {graphrequest.data?.proxy ? 'Yes' : 'No'}
diff --git a/src/views/tenant/conditional/DeployVacation.jsx b/src/views/tenant/conditional/DeployVacation.jsx new file mode 100644 index 000000000000..8f1fb21b7281 --- /dev/null +++ b/src/views/tenant/conditional/DeployVacation.jsx @@ -0,0 +1,184 @@ +import React, { useState } from 'react' +import { CButton, CCallout, CCol, CForm, CRow, CSpinner, CTooltip } from '@coreui/react' +import { useSelector } from 'react-redux' +import { Field, Form } from 'react-final-form' +import { Condition, RFFCFormSwitch, RFFSelectSearch } from 'src/components/forms' +import { + useGenericGetRequestQuery, + useLazyGenericGetRequestQuery, + useLazyGenericPostRequestQuery, +} from 'src/store/api/app' +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' +import { faCircleNotch, faEdit, faEye } from '@fortawesome/free-solid-svg-icons' +import { CippContentCard, CippPage, CippPageList } from 'src/components/layout' +import { CellTip } from 'src/components/tables/CellGenericFormat' +import 'react-datepicker/dist/react-datepicker.css' +import { CippActionsOffcanvas, ModalService, TenantSelector } from 'src/components/utilities' +import arrayMutators from 'final-form-arrays' +import DatePicker from 'react-datepicker' +import 'react-datepicker/dist/react-datepicker.css' +import { useListUsersQuery } from 'src/store/api/users' +import { useListConditionalAccessPoliciesQuery } from 'src/store/api/tenants' + +const ListClassicAlerts = () => { + const [ExecuteGetRequest, getResults] = useLazyGenericGetRequestQuery() + const currentDate = new Date() + const [startDate, setStartDate] = useState(currentDate) + const [endDate, setEndDate] = useState(currentDate) + + const tenantDomain = useSelector((state) => state.app.currentTenant.defaultDomainName) + const [refreshState, setRefreshState] = useState(false) + const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() + + const onSubmit = (values) => { + const startTime = Math.floor(startDate.getTime() / 1000) + const endTime = Math.floor(endDate.getTime() / 1000) + const shippedValues = { + tenantFilter: tenantDomain, + UserId: values.UserId?.value, + PolicyId: values.PolicyId?.value, + StartDate: startTime, + EndDate: endTime, + vacation: true, + } + genericPostRequest({ path: '/api/ExecCAExclusion', values: shippedValues }).then((res) => { + setRefreshState(res.requestId) + }) + } + + const { + data: users = [], + isFetching: usersIsFetching, + error: usersError, + } = useListUsersQuery({ tenantDomain }) + + const { + data: caPolicies = [], + isFetching: caIsFetching, + error: caError, + } = useListConditionalAccessPoliciesQuery({ domain: tenantDomain }) + + return ( + + <> + + + + { + return ( + +

+ Vacation mode adds a scheduled tasks to add and remove users from CA + exclusions for a specific period of time. Select the CA policy and the date + range. +

+ + + + {(props) => } + + + +
+
+ + + ({ + value: user.id, + name: `${user.displayName} <${user.userPrincipalName}>`, + }))} + placeholder={!usersIsFetching ? 'Select user' : 'Loading...'} + name="UserId" + /> + + + + + ({ + value: ca.id, + name: `${ca.displayName}`, + }))} + placeholder={!caIsFetching ? 'Select user' : 'Loading...'} + name="PolicyId" + /> + + + + + setStartDate(date)} + /> + + + + setEndDate(date)} + /> + + + + + Set Vacation Mode + {postResults.isFetching && ( + + )} + + + + {postResults.isSuccess && ( + +
  • {postResults.data.Results}
  • +
    + )} + {getResults.isFetching && ( + + Loading + + )} + {getResults.isSuccess && ( + {getResults.data?.Results} + )} + {getResults.isError && ( + + Could not connect to API: {getResults.error.message} + + )} +
    + ) + }} + /> +
    +
    +
    + +
    + ) +} + +export default ListClassicAlerts From 1441893c15f8a7e95c05f998f0798a01deb17d15 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Sun, 14 Jan 2024 01:32:45 +0100 Subject: [PATCH 10/69] Add Trusted IP --- .../tenant/administration/GeoIPLookup.jsx | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/src/views/tenant/administration/GeoIPLookup.jsx b/src/views/tenant/administration/GeoIPLookup.jsx index 815dcd0adbbb..26b954db335c 100644 --- a/src/views/tenant/administration/GeoIPLookup.jsx +++ b/src/views/tenant/administration/GeoIPLookup.jsx @@ -1,6 +1,7 @@ import React, { useEffect, useState } from 'react' import { CButton, + CCallout, CCard, CCardBody, CCardHeader, @@ -57,6 +58,18 @@ const GeoIPLookup = () => { }) } }, [execGraphRequest, tenant.defaultDomainName, query, ip]) + const [execAddIp, iprequest] = useLazyGenericGetRequestQuery() + + const addTrustedIP = (State) => { + execAddIp({ + path: 'api/ExecAddTrustedIP', + params: { + IP: ip, + TenantFilter: tenant.defaultDomainName, + State: State, + }, + }) + } return ( @@ -159,6 +172,27 @@ const GeoIPLookup = () => { {graphrequest.data?.proxy ? 'Yes' : 'No'} + + + addTrustedIP('Trusted')} className="me-3"> + Add as trusted IP for selected tenant + {iprequest.isFetching && } + + addTrustedIP('NotTrusted')} + > + Remove as trusted IP for selected tenant + {iprequest.isFetching && } + + + + {iprequest.data && ( + + {iprequest.data?.results} + + )} )} From 5be5d000aa2812f5725f5a9b2c14a3049470a74f Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Sun, 14 Jan 2024 01:54:54 +0100 Subject: [PATCH 11/69] trusted IP adding --- src/views/tenant/administration/GeoIPLookup.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/tenant/administration/GeoIPLookup.jsx b/src/views/tenant/administration/GeoIPLookup.jsx index 26b954db335c..339a93630a99 100644 --- a/src/views/tenant/administration/GeoIPLookup.jsx +++ b/src/views/tenant/administration/GeoIPLookup.jsx @@ -152,7 +152,7 @@ const GeoIPLookup = () => {

    Lat/Lon

    {graphrequest.isFetching && } - {graphrequest.data?.lat} - {graphrequest.data?.lon} + {graphrequest.data?.lat} / {graphrequest.data?.lon}
    From 263428a113c55afe286a87c139d0fff76eb21f6f Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Sun, 14 Jan 2024 16:32:18 +0100 Subject: [PATCH 12/69] secure score % --- src/components/tables/CellMathFormatter.jsx | 59 +++++++++++++++++++ src/data/BPAField.schema.v1.json | 4 ++ .../tenant/standards/BestPracticeAnalyser.jsx | 4 ++ 3 files changed, 67 insertions(+) create mode 100644 src/components/tables/CellMathFormatter.jsx diff --git a/src/components/tables/CellMathFormatter.jsx b/src/components/tables/CellMathFormatter.jsx new file mode 100644 index 000000000000..590d180d8641 --- /dev/null +++ b/src/components/tables/CellMathFormatter.jsx @@ -0,0 +1,59 @@ +import React from 'react' +import { CBadge, CTooltip } from '@coreui/react' +import CellBoolean from 'src/components/tables/CellBoolean.jsx' +import cellTable from './CellTable' + +export function CellTip(cell, overflow = false) { + return ( + +
    {String(cell)}
    +
    + ) +} +export const cellMathFormatter = + ({ col } = {}) => + (row) => { + const evaluateCalculation = (calculation, row) => { + try { + const formattedCalculation = calculation.replace(/\b\w+(\.\w+|\[\d+\])*\b/g, (key) => { + if (!isNaN(key)) { + return parseFloat(key) + } + + const path = key.split(/\.|\[(\d+)\]/).filter(Boolean) // Splits keys and array indices + let currentObject = row + for (const prop of path) { + if (currentObject && prop in currentObject) { + currentObject = currentObject[prop] + } else if (!isNaN(prop)) { + // Checks if the prop is an array index + currentObject = currentObject[parseInt(prop, 10)] + } else { + throw new Error(`Property '${prop}' not found in row`) + } + } + + return parseFloat(currentObject) + }) + + return Number(eval(formattedCalculation)) + } catch (e) { + console.error(e) + return null + } + } + + const result = evaluateCalculation(col.value, row) + + if (result === null) { + return 'N/A' + } + + if (col.showAs === 'percentage') { + return `${result.toFixed(2)}%` + } else { + return result.toFixed(2) + } + } + +export default cellMathFormatter diff --git a/src/data/BPAField.schema.v1.json b/src/data/BPAField.schema.v1.json index 56a6a07fd1de..810329db4e16 100644 --- a/src/data/BPAField.schema.v1.json +++ b/src/data/BPAField.schema.v1.json @@ -87,6 +87,10 @@ { "const": "number", "title": "Displays as a numerical value" + }, + { + "const": "math", + "title": "Displays as a calculated value" } ] } diff --git a/src/views/tenant/standards/BestPracticeAnalyser.jsx b/src/views/tenant/standards/BestPracticeAnalyser.jsx index 1d05c0be6278..3c94d28db3fd 100644 --- a/src/views/tenant/standards/BestPracticeAnalyser.jsx +++ b/src/views/tenant/standards/BestPracticeAnalyser.jsx @@ -40,6 +40,7 @@ import { CellTip, cellGenericFormatter } from 'src/components/tables/CellGeneric import { useExecBestPracticeAnalyserMutation } from 'src/store/api/reports' import { ModalService } from 'src/components/utilities' import { cellTableFormatter } from 'src/components/tables/CellTable' +import { cellMathFormatter } from 'src/components/tables/CellMathFormatter' const RefreshAction = ({ singleTenant = false, refreshFunction = null }) => { const tenantDomain = useSelector((state) => state.app.currentTenant.defaultDomainName) @@ -187,6 +188,9 @@ const BestPracticeAnalyser = () => { case 'table': cellSelector = cellTableFormatter(col.value) break + case 'math': + cellSelector = cellMathFormatter({ col }) + break default: cellSelector = cellGenericFormatter() break From 52c6a25fede101f4eee5d5b6c410262cdd9776ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Sun, 14 Jan 2024 17:00:28 +0100 Subject: [PATCH 13/69] Add enable all MailTips standard --- src/data/standards.json | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/src/data/standards.json b/src/data/standards.json index aef297a63de3..86fb1a7d86bf 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -419,6 +419,22 @@ "impact": "Low Impact", "impactColour": "info" }, + { + "name": "standards.EnableMailTips", + "cat": "Exchange Standards", + "helpText": "Enables all MailTips in Outlook. MailTips are the notifications Outlook and Outlook on the web shows when an email you create, meets some requirements", + "addedComponent": [ + { + "type": "number", + "name": "standards.EnableMailTips.MailTipsLargeAudienceThreshold", + "label": "Number of recipients to trigger the large audience MailTip (Default is 25)", + "placeholder": "Enter a profile name" + } + ], + "label": "Enable all MailTips", + "impact": "Low Impact", + "impactColour": "info" + }, { "name": "standards.DisableViva", "cat": "Exchange Standards", @@ -463,12 +479,12 @@ { "type": "number", "name": "standards.SendReceiveLimitTenant.SendLimit", - "label": "Send limit in MB" + "label": "Send limit in MB (Default is 35)" }, { "type": "number", "name": "standards.SendReceiveLimitTenant.ReceiveLimit", - "label": "Receive Limit in MB" + "label": "Receive Limit in MB (Default is 36)" } ], "label": "Set send/receive size limits", From 207ba7014117f28cdc069a6feea51a37722c3e20 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Mon, 15 Jan 2024 14:07:43 +0100 Subject: [PATCH 14/69] updated url --- src/views/tenant/standards/DomainsAnalyser.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/tenant/standards/DomainsAnalyser.jsx b/src/views/tenant/standards/DomainsAnalyser.jsx index dbe792deaf7e..e7cd129eaa14 100644 --- a/src/views/tenant/standards/DomainsAnalyser.jsx +++ b/src/views/tenant/standards/DomainsAnalyser.jsx @@ -285,7 +285,7 @@ const DomainsAnalyser = () => { filter: 'Complex: domain notlike onmicrosoft', }, ], - path: `/api/DomainAnalyser_List`, + path: `/api/ListDomainAnalyser`, params: { tenantFilter: currentTenant.defaultDomainName }, columns, reportName: 'Domains-Analyzer', From 538823ebbb386c730140f87bbe0c2f0492279949 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Tue, 16 Jan 2024 21:01:36 +0100 Subject: [PATCH 15/69] Update a bit a casing, punctuations and helptext here and there --- src/data/standards.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/data/standards.json b/src/data/standards.json index 86fb1a7d86bf..200d979d9bad 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -37,7 +37,7 @@ { "name": "standards.AuditLog", "cat": "Global Standards", - "helpText": "Enables the Unified Audit Log for tracking and auditing activities; also runs Enable-OrganizationCustomization if necessary.", + "helpText": "Enables the Unified Audit Log for tracking and auditing activities. Also runs Enable-OrganizationCustomization if necessary.", "addedComponent": [], "label": "Enable the Unified Audit Log", "impact": "Low Impact", @@ -73,7 +73,7 @@ { "name": "standards.DisableBasicAuthSMTP", "cat": "Global Standards", - "helpText": "Disables SMTP AUTH for the organization. This is the default for new tenants. Sets the entire tenant to no longer allow SMTP AUTH, and as such has no exclusions.", + "helpText": "Disables SMTP AUTH for the organization and all users. This is the default for new tenants. ", "addedComponent": [], "label": "Disable SMTP Basic Authentication", "impact": "Medium Impact", @@ -93,7 +93,7 @@ "cat": "Entra (AAD) Standards", "helpText": "Enables the tenant to use LAPS. You must still create a policy for LAPS to be active on all devices. Use the template standards to deploy this by default.", "addedComponent": [], - "label": "Enable LAPs on the tenant", + "label": "Enable LAPS on the tenant", "impact": "Low Impact", "impactColour": "info" }, @@ -111,7 +111,7 @@ "name": "standards.allowOTPTokens", "helpText": "Allows you to use MS authenticator OTP token generator", "addedComponent": [], - "label": "Enable OTP via Authenticator.", + "label": "Enable OTP via Authenticator", "impact": "Low Impact", "impactColour": "info" }, @@ -230,7 +230,7 @@ "name": "standards.NudgeMFA.enable", "helpText": "Enables registration campaign for the tenant", "addedComponent": [], - "label": "Request to setup Authenticator if not setup yet.", + "label": "Request to setup Authenticator if not setup yet", "impact": "Low Impact", "impactColour": "info" }, @@ -239,7 +239,7 @@ "name": "standards.NudgeMFA.disable", "helpText": "Disables registration campaign for the tenant", "addedComponent": [], - "label": "Disables the request to setup Authenticator if setup.", + "label": "Disables the request to setup Authenticator if setup", "impact": "Low Impact", "impactColour": "info" }, @@ -299,16 +299,16 @@ "label": "Allowed application IDs, comma separated" } ], - "label": "Require admin consent for applications (Prevent OAuth phishing.)", - "impact": "Medium impact", + "label": "Require admin consent for applications (Prevent OAuth phishing)", + "impact": "Medium Impact", "impactColour": "warning" }, { "cat": "Entra (AAD) Standards", "name": "standards.OauthConsentLowSec", "helpText": "Sets the default oauth consent level so users can consent to applications that have low risks.", - "label": "Allow users to consent to applications with low security risk (Prevent OAuth phishing. Lower impact, less secure.)", - "impact": "Medium impact", + "label": "Allow users to consent to applications with low security risk (Prevent OAuth phishing. Lower impact, less secure)", + "impact": "Medium Impact", "impactColour": "warning" }, { @@ -373,7 +373,7 @@ { "name": "standards.OutBoundSpamAlert", "cat": "Exchange Standards", - "helpText": "Set the Outbound Spam Alert e-mail address.", + "helpText": "Set the Outbound Spam Alert e-mail address", "addedComponent": [ { "type": "input", @@ -415,7 +415,7 @@ ] } ], - "label": "Enable or disable 'external' warning in Outlook.", + "label": "Enable or disable 'external' warning in Outlook", "impact": "Low Impact", "impactColour": "info" }, @@ -659,7 +659,7 @@ { "name": "standards.DisableAddShortcutsToOneDrive", "cat": "SharePoint Standards", - "helpText": "When the feature is disabled the option Add shortcut to My files will be removed; any folders that have already been added will remain on the user's computer.", + "helpText": "When the feature is disabled the option Add shortcut to OneDrive will be removed. Any folders that have already been added will remain on the user's computer.", "disabledFeatures": { "report": true, "warn": true, From f36aff69966f21ff279776896109600e8bcad6ac Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Wed, 17 Jan 2024 12:04:03 +0100 Subject: [PATCH 16/69] images changes --- src/components/layout/AppHeader.jsx | 11 +---------- src/components/layout/AppSidebar.jsx | 9 ++++----- 2 files changed, 5 insertions(+), 15 deletions(-) diff --git a/src/components/layout/AppHeader.jsx b/src/components/layout/AppHeader.jsx index 3ceb14542dff..f31d73a124e0 100644 --- a/src/components/layout/AppHeader.jsx +++ b/src/components/layout/AppHeader.jsx @@ -16,17 +16,8 @@ import { } from '@coreui/react' import { AppHeaderSearch } from 'src/components/header' import { TenantSelector } from '../utilities' -import cyberdrainlogolight from 'src/assets/images/CIPP.png' -import cyberdrainlogodark from 'src/assets/images/CIPP_Dark.png' - import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { - faBars, - faCaretSquareLeft, - faCaretSquareRight, - faHamburger, - faStroopwafel, -} from '@fortawesome/free-solid-svg-icons' +import { faBars } from '@fortawesome/free-solid-svg-icons' import { setCurrentTheme, setUserSettings, toggleSidebarShow } from 'src/store/features/app' import { useMediaPredicate } from 'react-media-hook' import { useGenericGetRequestQuery, useLoadAlertsDashQuery } from 'src/store/api/app' diff --git a/src/components/layout/AppSidebar.jsx b/src/components/layout/AppSidebar.jsx index aad3a2eb170d..c9c2f51b04eb 100644 --- a/src/components/layout/AppSidebar.jsx +++ b/src/components/layout/AppSidebar.jsx @@ -6,19 +6,18 @@ import { CImage, CSidebar, CSidebarBrand, - CSidebarHeader, CSidebarNav, } from '@coreui/react' import { AppSidebarNav } from 'src/components/layout' import SimpleBar from 'simplebar-react' import 'simplebar/dist/simplebar.min.css' import navigation from 'src/_nav' -import { setSidebarVisible } from 'src/store/features/app' -import cyberdrainlogolight from 'src/assets/images/CIPP.png' const AppSidebar = () => { + const i = + 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA8AAAAGACAYAAABiEQveAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAJdoSURBVHhe7d0FYBRXtwfw/2o8EIKF4A4FSoFSoA6lpe7u7u6v7tRb6u7u3lKnLW0pFHcnuMR19Z0zO/AFCm1IZjc7u//fe+fbmbtpSDYzd+6Ze+deEBERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERJTaH+UpERPSfwuGwubVNHSVyJUISfolhEjub27Xp+9kSx0u4teA/6Ne/K7FBwqkFtbgkZkr8KKHfS69txRKLJP6Vw8HLIBERUTLhlZ+IiDbzL0muJpeabOZJDJHwSfSVGCGhCa4mqf0kWprbastkNZpq/5uaKE+R0OucR+I3iQkSqRITJZZK6C+6ZWK+CZNjIiKixMOrOxFRkttGwpsi0UaivcS+EkGJAyQ0uc2QaCZhV9o7XGq+fiahCfMPEgsl1khUSvwDE2IiIiL749WciCgJbZH06rWgm0QnCe3R3UOilcRACU0Ok+VaoUn+dIkCiT8lfpf4W6JMQt/bhMkwERGRPfEKTkSU4LbSw6tDgvU5XR263EviIIm2ZhltTnuFqyS+lJgl8bWE9hL/A5NiIiKi+MerNRFRgtnGkOYeEp0lDpHQXt7+EjqUuTb9D3ld+Hc6bFqHS8+W+FxiscQ/EmImw0RERPGJV2giogSwlaTXK6FDmbtKHC2hMzFnSZC1lkn8LPGNxCSJORL/wISYiIgoPvCKTERkY1skvukS+tzuYRIHS+hzvRQ7FRKaBH8qob3DcyU2w0SYiIiocfFKTERkI1vp6U2T0CWJjpDY+EwvNT5dXukPiQ8lvpfQybU2YSJMRETUOHgFJiKyga0kvrtL6PO82tOrz/dS/KqWeFNCJ9LS54eLJDZhMkxERBQ7vOoSEcWxLRJffYb3NAlNfLW3l3W4/ayTeF7iAwldYmnTH5iJMBERUfTxaktEFGe2SHp1Hd6eEldI7CXRRYISwxcS75ivhVqwEZNhIiKi6OAVlogoTmyR+LaR0GHOV0noskUpEpSYFkl8JvGGxF9asBETYSIiImvxykpE1Ii28mxvvsRFEmdJNNcCSho1Eu9KPCwxWQtqYzJMRETUcLyaEhE1gi0SX62LdWizJr1nSjDxTW6aCOus0U9IvGXub8JEmIiIqP54FSUiiqGt9PiOlLhOQoc7e7SAqJYZEg9IaM9wlRYoJsFERET1wysoEVEMbCXx1Vmc9fneUcYe0b+bJqGJ8HsSuqzSJkyGiYiI6o5XTSKiKNpGj68mvvsae8ksEMnjwsEgEPQb21vldMHh0s5x+SzdKXLl0omxk9bGHmEdGu3TAsUkmIiIqG54xSQiipItkt88iWslLjX2ElE4hHDAj3BlMVBdgbA/gHB1FcJlqxCuKEK4qhzw+xCukWRXkt9w5ZrIf+evlK9fj/DWElv5DB2eDCC1mfH9kdZS9tPhSJGE2OOFIz1TIgeOrNZwpEq5V8rS5DWtqSTL8jWJmyzr0kk3SEw19kxMhImIiP4dr5RERBbbIvFtK3GxxBkS9p/cSpNcnyS1NZLAFq9EqFQS2xJJXgsXI1S0UpLdDUDlYkl2ZwE1Uh40/zu52ugFRz8ZzdGM1425qSNVIks2pNR4wyg16Rf7JEoiu5IDG8yP2HiR/zH+E5dESitJfnsBGR3lW+bCmdMGjtyucDZpBke27DdtDXhTJFFO1//C7rTbfOOs0ZO0YCMmwkRERFvHKyQRkUW2SHy9EkdLPCJhz8RXfp9wVYkktcUIbViO0NqlCK1bIjFdkt+FQPVEYxCu/tpGMquhVxVnrrxKUgu3ZmLyGivyg4QDEtWSKEsirruaMEsS7tDk2Ct/krSB8uP1hKNFXzhbtpPoLEmyJM1ZOXZOivXAu1XiSYn1WqCYBBMREf0Tr45ERBbYIvk9RkKf893Z2LOLoB/himIE169AaNUChJbPkKR3NsIbvpBEtyKSZmmS62olr2nGf2I7+ncKlcnvWhj5ffQqmNkbzua7wdG6G1zt+kcS42Zt4EjLkDdtNYR6ucRlEh8YeyYmwkRERP/DqyIRUQNskfjuIHGlxOnGXrzT4cxlhQiuW4ZgwWyElk6QxHcSUPab0ZFq9Jq6JNF1tpAdWyWC2yfsl4R4RWS4dkh+1VQPHE33g7PDbnC17wtn255w5rSEIyUz8vXx71sJXVrrb2PPxESYiIiICTARUb1skfhqdniBxF0S2VoQt/zVCG5YieCyWQgt+VuS3h8QLv3ZGCYMV66EPotLRk9xcGnkmeOUfDhajYSr4y5wdR0MZ6v2cGbJZxXfl9BCiWckdAj+Wi1QTIKJiCjZ8UpIRLSdtkh++0vcIxG36/mGayoQWrMEgQUTEVrwC0IrP0S4usjs4W0j6bs+rkzbpsnwmsiyTXrVzNkbrs77wNVtKFwddoAzu7mUx20P+WwJ7Q3+1NgzMREmIqJkxSsgEdF2qJX8tpC4SEJneM7RgngSri5HaLUkvQv/QnDOWIRXv22M9HW45U1Xvmzourq0/eTvHyqVz7LI2HQ0GQRXl4Ph6rm7mQzrcPG4ubTqwao/jPZjPy+hy3AVSxiYBBMRUTLi1Y+IqA626PXtKvG2xEBjL14E/QiuXYbggokIzvwSoeWvRoY2e3IBJ4c2R4VOMx1YFnl2uNlwOLsfAPcOe8PVthscqXH3mS+UOE/iO2PPxESYiIiSCa96RET/oVbyq2v7nClxv4ROg7yxh61R6dq7gUVTEJg+FqEFzyBcXWL29HbQ7CbyRRRl8jkbPcMbjI/ckX8s3H0Pg7vnUDhbtJUCHW8eNx6V0NmiN2ESTEREyYJXPCKibdii17evxH0S8fGsbziI4KpFCMz6FcFp7yC8/htJeL2R4c1GXk6NKlQNBFYD6b3g6nkC3P1HwdW+dzytNfyLxNkSc409wSSYiIiSAa92RETbUCsB3l/iTYmmxl4jCtdUIrh4KgJTvkRw9j2yH5Skqrk5xJmJb9zRtZX8BcbV1tH+dHgGHg13z13gyGxmfkGjKpfQCbKeMPZMTISJiCiR8SpHRLSFLXp+H5S4IrLZeMKVxQjMnYDAxPcQWvq81N7ZMJYtYtJrH+EaILAKjpaHwt3/GLh3HAFn01bmm41GnxLX59l1Ga9SLVBMgomIKFHxCkdEZNrKRFdvSQwy9hpJuGw9/DPGIfDnywiv+Qxwp0viq0kTE197kstuqBLwrQFyhkkSfAo8A/eHs0V78/1G84fE1RK/GnuCSTARESUiXt2IiMQWye8ZErdL6AO1jSJUvAaBqd8hMPEVhNd9C3g08W1pvkv2p4lwuSTC64DMXnAPvEgS4QPhbNnBfL9R1EgcI7FpzWAmwURElGh4ZSOipFcr+c2WuF5Cn4tsFOHyQvin/4TA+KcRXi+Jr5dr9iY+Of58S4GMvnDvfDE8gyQRbtbGfC/m/BLPSOj61pswESYiokTBKxoRJbVaya/OIqU9X3sZezEWri6TxHccAr89g9Dqz+DwNgOcTfSdyBdQgpPLcbgGYd9KOLJ3hmfXy+DZaV84spqb78fcSxJ6I2itsSeYBBMRUSLg1YyIklat5HeAhK7tO9zYi6Wg35jcyvfLCwgvlZzDo2vG6iK+lLT0uAwshaPlYfDscQHcfXaHw6NLUMfcMgmdAX2WsWdiIkxERHbGqxgRJaVaya828D+SSJHQwpjVi8EVc+H/8SUEZ90LuCTBceVJKXt8SclhGCyWRLgIzu4Xw7Pn6XB33lHKnZG3Y6dA4jiJ8caeYAJMRER2xqsYESWVLSa7OlRCl4CJafeaTnDl//1DBP68GfCtB7w68RGrY9oG/xLj8HDtfD+8ux4LZ/N25hsxdaPEXZFNeyTBW5zrUcGbAURE9sOam4iSxhYN4ickzpGI3XjjoB/+GT/D/8NDCK/9Ckhh4kvbwbcEjibD4Bn+f/D0HwHEfli0ThA3OrIZH8lfLJLcutDPYsufhckxEVF8Yu1MREnDbKBqvfe8hC51FDPBNYsk8X0RwWl3ScqdDbhypTQ+Gu8xEw5J+CSqJYojv74UbVLriqRvGbvmR2Tsa4GGUz4/R5qEV8KlbycJ+eVDpfIRboBrhyvh3fssuNr2NN+Lmc16glUsEr16Jrq6lreeaLWPMp3leheJoeb2v9GDa7HEF+Z2bToWfY5EibG3nZgcExE1HtbARJTwtmg8vyARs+Q37K+G/++x8P84Gij/XZLfTloaeTNhyO8TqpFYbeS4xq8XlAuMpgiSo8LTXaKN5KxZEjlASjYc6c3lPdlPbyFfIF/rcctns5VkNhiShE/zFIfkzUVATTHClYWAbIerJKrLpGyZpDILjXTG+Pfl2xj/tpEs50noD5FIlzv5XYJr5fPLg2f43fAMOgCOlAzzvZjQCePuk1hv7AmrE7o6JLz6zL7+lXU8uCa0PomdJPaQCEjokdBXoplEtMyW0Fmy9efQkST6nPQECT3gNkj8LKEfTIXEv2JCTEQUO6xxiSih1WpIa32nye/pxl4MBFcvhO+7ZxCccT8ckqzAqUNWEyD5DUt+EVhupBj622gnrCNzENCkH5xNJdFtlgdHbhc4MzTRzZBoIiGJr0u+0OmU5FTyBZfkC5uy1O0Qlsw6KBEKSrIrP4Bshys2SFJcKglxJULlkiCvm49Q0SqESyQhL5kIlM8wEmPjX9KfwaVrK+u/bXNhP8K+FXB1uwDe/S6RX6uH+UZMTJIYJWFZEvwfSW9nCU0sj5TQ9cF08jpNbjXz1/14tEJCD7TvJeSEwRqJLyWqJXSG7a1iMkxEFF2sZYkoYdVqUHeUuFvieGMvyoxe38nfwT/2SqBynjTb9Z+3Mf0cg0vlVbZTusKR1Q3O1gPhaClJbov2cDbvAEdaOpyZkuQ2znI9WxGW5LAa4fJCSZDLEVq3CKE1yxBaO0de/5a/yxzAv1bSE03M4zV/qpuwPhuc1gmefR6EZ9D+sVgyybjvIaFJ8AES9Vor+F8SXh0KMEhChy+PlNCeXB2yrL2++p6dac90qcQfEsUSOglflcRv5qu+/w9MiomIrMMalYgSUq3G9Q4S30jkG3tRpj2Pvm+fRXDKrcawX+M5VbsJFgKBUiPvdWR0hqP57nB13AXOvO5wtpSEt0kLSbgyJHn0mP+BjfirEaqqQLhwOYJrlyO0bBJCBX/L/ifaoRp5pNhtw79bOCCJ8HK4+90A76iLJK9vbb4RdX9KHCRRp57gf0l6W0rsJtFb4jCJPhKa8CaLRRL6TPEPEr9ITJWokdgME2EiooZjTUpECadWI7ufhE5g09bYi6owAvP+gu/zmxBeN1aa7nbq9ZVLQahUkt4Nkvx54Wh1BJztBsPVZWe4WraDs6kkU55EzUXCCFeVIbR+JYIr5iC0WBPiHxEu0Q454e6gWUdk2w5qlsDRfD94D7oV7h5DzMKo0RNNPxztCdYhyeskDLUTtX9JenXMtg6jPkRCn+ON6YPMcSwoMU1iioQOmdaEWIdPb4bJMBFR/bD2JKKE0ig9v/5q1Pz2PgI/XSyJpAdwZkrhNhv98cF8jldfHBntJeE9GK5ue8LVsR+cuXlwpGWbX5hkQgGEyooQWj4HgYUTEVowFuENX0eeIfbkyN823odLy2U9pCNpV8Mz4nV4hh4Bhzct8lZ06eRP2hO8KQnehm4SOqz5aImBElkS9O/0eeECiY8kvpLQybc2q2CYDBMR1R1rTCJKKGYC3EZCh2ZGvec3VLgSvm+eQGDq3XCktJdaNZ4nV5IqP1goSW8JHOmd4Gx/GFy99oarQx+4cvON3l/aXLiyBMFVCxGc+zuCcz5HeP3XkStnvPcM62RhNQVw9r0OKQdeGunFj77aE2Pph7MxSdNneU+W0ARZn+VNl6D60bsbkyV0ZMurEjq51maYDBMR/TvWkkSUELYYZvmSxGmRzegJLp2Bmo9vRnjdR5IQxfHyRqEywKfDm6XSb3c63DuMgqvrILiat2XSux3CZRsQWDoTwdk/S0L8BsLlc+HQxW9c8XrjQy7x/sVwtDocKYfeAVcHHRQRdXrjSYc068RYOpHVRRJ7Sth8Jri4tEpCl1p6x3wtktgMk2Eion9izUhEtlcr+dUs5HmJKC91FIZ/ynfwfXqWJJYrJYnUpUjjMPkNrJDwA832lKT3KIk94GzTFQ4vO+AaJBwyev4DcycgMPUjhJe/Hvnze+KxV1h+nqDkSd7O8B70MDw76ejjqP+Mf0vourw6xNmGM6XZ0kKJNyQ+ldCe+M0wESYi+h/WiERke2YCrMmv9vyeojtR46tCzbg3EfhJkl9nSwmdtyeekl8z4UE1nB3OhXvHg+HuMRiO7BaRt8lS4ZpKBJfNQmDKVwjOfh6oWSYpX7x1dsoxEaoEAmvgHv4CvHueEIulkqhx6MzR30q8a8ammaSZBBMRRbA2JCJbq9X7+4LEGZHN6AhXFKHmqycQnHRT/M3yrLNZ+ZYDXsDV43q4Bx4KV6e+7O2NlXAQwVWLEJj6nSTDciiWTJK/RXPAqXM8xdENEt8SuAbeg5T9z4cj3d7rH9N/0meF75f4QEJ75DdhMkxEyYw1IBHZVq3k9xGJSyOb0aFDXms+vAPBhU/DkRJnz/v6l0hC3gGuHS+GZ+CBcLXpIokXR542Fl0LOjD1ewT+egHhwp8kEc6Xq60+ax0Px4wD4erFcHW/ACmH3whnTp5ZTglMh6TrpFmvSOhQ6U2YCBNRMmLNR0S2VCv51fVH35OI2hqiwVULUPPBDQivehfwxEnyu6nH1wPXTnfBM/gwuPIk8Y3rWaiTS7hkLfzTfkTgj6cQWv8zHCnxMmReLv2BxXDkn4SUI26Hq5Ue05QEdJKsFyUelNDnJDZhIkxEyYQ1HhHZzhbJ74cSUXugMbhkGmreu1SSmZ/iZ6Zn7fH1ZEniews8gw6GK1+XVmV1Hq9CxWvg//sbBP58DOHSiXB442HWaE2ClwJN9kTqMWOMpbAoacyXuE1CnxH2a8FGTISJKBmwpiMiW6mV/PaX+F0iaslvYP5E1Lx1hDQRSwFXMylpzORXquuQ/BzhDXD1vQ2eoUfD1a6X+R7ZQWjDcvgnfIrAhHvk4CqSY6qllDbyMRVYDGTsgpQjHoG7xxCznJLEFImHJXQZJU6WRURJg7UcEdlGreRXZxbS5T72MvaiwD/jZ/g+vgDwrTEnMmpEoQr5gdbB2ekMePY6F+6uA+Rn0gVoyX7CxqzR/l9eR3DGaMCdLolwK6O8ceiNlXL5OVKQcsy7cPccapZTEtFE+GyJicaeiYkwESUq1m5EZBtmAhz95Hfaj/C9N1xqyBaSaGZKSSMmJ/7FcGQPhXvv/4On395wpEbtUWeKpaAP/tl/wP/T4wivfA/wdpDCRrwkB4sATw68h78IT9+9zUJKItUSOlv0VRKrtUAxCSaiRMSajYhsoVbv740Sd0Q2rWckvx+dJAlBSJLfxlorVapmfT4TIbgGPwTvrsfAmZsfeYsSSri8EL7fP0Jg/C2Ab0XjTrIW9kuskCR4LDw7jTQL7UjO3VAI4YAf4cpioKYKYZ9P9oOyXS5lkuwHahCuKpGv3VYzKAxHeg7g8sjfJA2OjFw4XE7A7YLDkwKkpsORmgWHW97X57kTZ/K5JRLXS7xt7JmYCBNRImGNRkRxr1bye7LEq5FN6xnJ7/vDZat14yW/+rv6lsLR7gR497kU7u47SyGr6kQXLJgN39gxCM1/GkhpxEmyQtVyDK6G99gf4ekTtUEWlgnXVEgiK1G0AqHSIoRL1iO0fh7CxasQriiRZFfyuZoFxqMMOnG6Q06v8MbTqdZptbUz7H/VjpBth0te9ckDb2dj2TFHahtJkrPhyJLkuEk7OJq1hzMjQ7ZbwikBjxeOFNuO2HhL4jKJtcaeYBJMRImCtRkRxT0zAdapjr+V0LGiljOe+X1XG/zNJPnNjhTGmiYf0sh273Y3vEOPkMZ1E/MNSgaazPn//BT+cXdI0rZKjoWm5juxJM0CfSbY0wQpR70Md69dzfI4EPAhVCYJbuEahFbNR2jtUoTWTEZ4w3SgeoaR4Bqd53IOGbmaU/7HkSuRYhY29KaCZs8hiaBs642CIvmstEx2tVjCoQmyOw1I6wNnTnc4WvWHs1lrOFt3k/3WcGRLsmw8xmCL5tdKCU2CdZm5TZgIE5HdsRYjorhVq+dX/SYxLLJpLWO253dOA3xrpdHcGD02YUl+lsKZfwy8+18Ld5cBZjklI6M3+KsHEFr8YuTZ4MZIOPRmjNuDlGPfbbzZoUMBSXiLjEQ3WDADoWXTEFr9C1A6MZJ06sfibi7nrD6nH2/kBwyWS2wwepKNv2BaGzia7yPJcA842/aDK68znM3bRRLi+B5CrWsH67JJy4w9wSSYiOyMNRgRxa1aCfAjEpdGNq0VWDwNNa8dKBvS4Ddme94s6Y6+sE9iJdyDH4V3r5PgyNTllijZhavK4Bv/PgI/nSFX6pZybKab78RQcLUkbb2ResJLcHXsZxZGmb9acsZVCC6bieD88QgV/CgJ7x+R3lUdguxqxMcTGkq7qIMrjF5j7UTWjmlHzoFwthsCV4ed5LU3nM1aweFthL/1f9NJCXT+hdeNPRMTYSKyI9ZcRBSXaiW/+0jo0GfLBVfOQ80bZyNcOkUa1rFOPB2S+y6GI2tneA8YDU+/vaQoYSbSIUuEEZjzB3yfXIVwyXjAG+sJsqSJECoGMvsi9RRJglt3NsstFqhBcN1yBBdNRnDezwgtew+o0eXHvIC7jflFCUoz++AyYwg1UlrB2eYQuLrtDlcnSYhbd4q3Z4j1p9QJCB+QKNcCxSSYiOyGtRYRxZ1ayW8PiT8kLH8YMlS4AtWvXYDwus+kkd1RSmKcWEjy6+x8LrwHXwNXqyglFpQQQusKUPP1YwjOul8SIj1WY0mOVV2Kq+VhkgQ/CWdOnlneUGGEitYguGAiAjPHIrTkNYSriyPP0Loaadh3o5M6KLAM4UDY+BwcbU6Aq/s+cHfbWZLhzvK3j5ueYb0heZhEpbEnmAQTkZ2wxiKiuGMmwNodqutSakPLUuHKUlS/cyNCCx4DPLFMKKTKDVcbExy5dxsD7/BTONEV1YlOkOX78TUEfj1fzoxYr08tx21gMZxdL0Hq0bfCkZFjlm+/sA5xXjEPganfIjj3U6BknL2HNUeT9g5LQgxPMzjbHA5X3wPg7r4LnLnaK97ozbdpEldIfG/sCSbBRGQXrK2IKK7U6v09W+JZCS2wrq6SBnj1Jw8gOOkmICWWQ0rlVwiuk8ZsLryjxsAz6EBp9OtDjUR1JAmRf9oP8H1yJuBbDrh1QvQYHr/+xXD1vw2ph18r/7bOrFx34YpiBOb9hcCkDxBa8kxkMK2nnXxbngN1ElyPsL8cjqy+cPU4Bu7++8PVrmdjD5GukNAblN8ZeyYmwkQU71hLEVFcMRNgHRM8RUJnpbJQCDXfv4rA96fH+HlKqWoDi+HI2Qfew++Du/NOZjnR9gsunY6aD/8P4Q2fSyIa2+M4XLUYnn2eQ8oIOYfqcAMnVLwagRnjEJj4OkKrPzPX0k3WIc4WCFVLIrzamC7A2f5UuAceDXfPYXBk1r9XvoH0WeAxEjdJ6G0NJsBEFPdYSxFR3KjV+/u1xH6RTev4J4+F7335tjEe9hyuWSyN1ZOReuRtcLbUhIWoYULrl6Pm49sRXPAcHKmxTILl3wkshfewzyOjGLYhVLwGgSnfIvDXCwgV/gSHt42cCl7zXWo4ab6FSuVvsQGOVodJInw83P2Gw5nd3Hw/5p6ROC+yGcFEmIjiFWsnIooLtZLfyyQejmxaJ7h4CqpfO1QajDWAM80sjTapYiX5dfW9Ht6DrmjMxikloHBFEWq+fBzByTfHdkRD2C+HdhVSTv0B7k47moUR4bIN8E+WxPePJxAu/FV+Ll3CSYfpxipBTzZSxwQLAX8JHC1Gwj34THh2HA5Hdgvz/Zh6WuL8yCYTYCKKX6ydiKjR1Up+e0r8JNHK2LOIDsOsfuU8hDdIg9xY6zcG9HfyLYVrl9FIGXUhHKk6aRGRtcI1laj57iUExl0kx1gMhxYHV8ORuw9ST30Gzpw2CFdXGEOd/b8+ifA6HZrNYc4xZ06a5cgdBfeu58HTd6/GmGRPk+ALJYzh0IqJMBHFG9ZKRNTozATYI/GexKG6Y5WwvwY179+OwLS74YjZpFfyb9QshXvEC0jZ8wT5zTjDLUVR0I+an99A4IfTAVd7ubLHYj1paT74F8PZ+zpjQqbAb68htPh5OdZ1huq4Wrs2ycjfJVQh9d5aOPOPhmfP8+HpOTTWddB0ieMlZhp7gkkwEcUT1khE1Khq9f5unPXZUr5xb8H/pSShqbF67ld+n3ARPHs9Du9e8u9ylluKBTmPfL++C/+3knc48iV0Qd1okyZEcKlESJJe2TXW06a4oUsohUJw9rxc6qKz4GrfSwpj1uwrkBglMcvYE0yCiShesDYiokZlJsDNJH6V0BaaZQLzJ6LmzUOlESjJQCx6xfTZyMAKeA7+CN5dDonNv0lUi2/CJ/B/cpgko23l+ItFEkzxTZp5gcWApzXcw+6Ed+jhcGRqdRsTSyV2lVhh7AkmwUQUD9g6I6JGU6v3904JTX43FTSUPvfr++xGIBiIUSIqP/rG5HeIJCBMfqkReAcfCu+hn8jhuFxCjn1KclIvac98yA3/92eh6qVzEJg3QYo3PaIbTbpQtdbtRERxhS00ImoUtZLf3hInRjYtGpUS9MP3wysIr/9Garl0szCKwkHAvxSeAz+Q5NfSR5iJtptn54PgPUiS4IAmwTFJdCjeOdzGclnhdeNQ8+Z+qBn7HMKVpeabUXWaxFORzUi9X6vuJyJqFByLQkSNwmwEaR00TmI33bGKb+IX8H94EOCN0TOJNUvg2e/1yDO/rFYpTvh+eRv+r4+XjJjP5lJtkoRWL4Wr42nw7n8lXB36mOVRxXWCiShusPYhopir1QNwtMS7kU1rhFYvRNULh0rrv1hqOJ1YOsqCS+De60WkDD9F/j1OeEVxJByKTAI39iQmwbQFaf75FwPeJvCMehneQQcALq/5XtQ8J3FOZJMJMBE1Hg6BJqLG0lJiTGTTIr4q1Hz7DFAxMwbJrzTeapbANfihyFJHTH4p3jic8O5+LNy7PoFw9RItiJQT6bPBelMklAn/J4ej+vPHEK4oMt+LGp3p/8DI5mY3QomIYooJMBHFVK1Gz/kSrSOb1vBN/hbBWffHYOizA+GaxXD1uwEp+50LuFPMcqI443QjZd8z4R50V6THj0nw/2hdpBOFbTWS5NlpvVEo9WXgj6tQ/fqVCK3RYySq3pbYJ7IpHzOTYCJqBLwSElFMmQ0eTXz/lsjTHSuE1i1F1fNHAdUrpWaL5lA+qTYlkXC2Px2pJzwAR1bMlhQhqjft3at+5waEFjwlCU8nLYm8kXDk9wpVSayVkD3NYyWMARo6KMQtv7tHqh9XU8n9NPlL1f/on/w1CPtqZEMnuFsjLyVAYKmEfE8Jo/XklBfzFc7mspMuYdd+BflFAovhaDoc3sPug7vrQLM8KtZL7CSx3NgTHA5NRLHEGoeIYqbW3f7bJG6ObFogFED1B3cj+PctQEqUG/fBdXA02QWpp7wAZ0s+V0n2ESpajepXz0N4wzhJ2JqYpQkgWBRJUPW01yW/s3aFI2dHSeZawZnbDo5mHSU3zYQjJQWO1ExAwpEir8q5jWaQ0Tssr1K3hKtKJTmUhLimUqJaEmMpK12NcPFyed0gsVZirsQPgC/ynxutK3cL+f4ZkX1bkB9aP0uXU5Lgt+HpP9Isj4qxEkdKlOsOE2AiiiXWOEQUM2YCrM/+TpWwbPhzYNYvqHlzD2m4tZdaLYo9MNr14yhGysk/wd0lqj0kRFERXDYT1a8dB9SssVlyZtIlx4IFkVNRWzAZveFsNRTO/IFwtu4k212MZNeZ2UwSUK/5RdESSZLDkhyjsgShqipJilcjtH4JQmsLEFr9N8IbJgNVkhzLj+2Q5BwuGyTFYb/8Tzk8+78UWdM8ek3FNyROimzqn4pNUiKKDdY2RBQTtXp/b5G4NbLZcOHyIlS9dC7Ca7+MNC6jKbAE3sO+hGfQ/mYBkf0Epv+Emnf2lvOlrZmV2UBAk96g8XSDI+9kuDoNg6t9XzjzOsOR0VTK08wvjB/hmgqEK0qNxzNCqxYiuPhPhNZMQLjkz0jjy91U/gYS8UjHjgeXwTPydXj3OF4+9KjcWAxKXCihSyQZmAQTUSywpiGimDAT4FYS2vurr5bwff8S/N+fEf3nGn1L4N7jSaTsd47UnJzxmezN99Nr8H9zSvQfGWgI7TaVxBeeJnC2PQ6u7nvC1WUAnC3aScKbbn6RjYQCCJWsQ2jtMgQX/S0xDuE1b0fSQHe7+KtXNAn2LYN7r2eQMuJU+RmjMtmfPmg9QGKW7jABJqJYYE1DRFFXq/f3JonbI5sNF1y1ENXPj5QNnekmWtWZfF/fYji7no/UE+6FIzXLLCeyMV8Vqt+7HcGZo+NrUixNev2S9MqP42h9GNz9jpDEd7Akve3jspe3IcJVZQitXoTAgkkIzv5ckuGPjJzToZN0ObcxOVdj8C+Be/enzJt/UekJ/kViTwnjIGQSTETRxlqGiKLOTICtnfk56DcmvgpMvhWOlChORhWqAdLzkXb6O3C26mwWEtlfqHAVql85E+HCHwCXZROy14/WEf6lkow3g6vnBZL4joKrYx840hNosq5/oRNtBVfMQ2DGj5IMvweU/gV4WkoiHCc93TVL4Bn1Ory7Hyc/U1R6qvXm6J2RTSbBRBRdrGGIKKpq9f7qrM86+7MlAgsmoubVnaUWi+LEV/qzB5bCe/TYaM+IStQoAvPN88jVQfZi3SSQfy9ULonvOiC9G9wDL5HEdyRcbbpIkmWTZ5MtF0ZowwoE5v6JwKS3EF75gXwWUuxpjL9PbZG60DPqbXh3O9Yss1SRxAiJycaeYBJMRNHC2oWIospMgHXm52kS1jz766tC1WuXI7T4ZcAdrZ4rB8LVi+HZ7VGkHHBhtHo9iBqd76c34B97UmyHQoeDCPsK4MgeBPcuF8LTbziczdubb5IKV5YisHAyAhPeRWjRk5EWm65jHKu/0ZbMibG8R0XthuC3EgdK6DTUTICJKGpYuxBR1NTq/dVZn3X2Z0v4p/0I35vDgdQoNgZDFXC02gdppz0BR0aOWUiUeMK+SlS/fSNCcx8GPNFe21qaHYHFQFpfuAecB8/gQ+HMzTffo60J+6sRlETYP/5NhBY+LklwG/kYdUKqRkiEtcfeGULKiV/D3W1ns9BSl0s8EtlkEkxE0cGahYiixkyApbWGiRKWdNWGqytQ9dL5CK94TRqCUWqsa09HuAApJ0+QRt4gs5AocQVXL0b1i4cDNYXSMojGaAcz8RWufrfCs/sJcOV1M/apbvRGRWDWb/D/+jzCy98FUjQR9prvxlCoFMjcAWknvwhnXlez0DIVEkMlpusOE2AiioYoPThHRMmuVu/vbhKWjVMOzPgJ4WVRTH5FWJf+2O0ZSX4HmiVEic3VuhO8+94tmXCB7FmcdIRDCNcshiP/ZKSc/AdSj7qByW896NJPOvQ47Yxn4dn/DcDbXCrEJfpO5AtixdkEKP0DNR/finDZerPQMhkSV0U2N7uOEBFZhgkwEUXbReZrg4UriuH/Q5PfKA5JDlXB2eZoeIcdJTvsfaDk4ek/Aq4dbjCW/bLs2PdLguYMwrvf60g79TG4e+wi+8k6wZU1dGZs754nIPXMj+DqfR1QLX+vkHacxqq+kqTUnY9QwRuo+fZ5ScJ9ZrllTpE4JrLJJJiIrMfWHRFZrlaD5RCJTyKbDef/63P4Pj5YWupRfPY3vBopJ/4Md/fBZgFR8gitXYKqZ/eVJLhIEtVMs7Qe9DEC/zI4u14gye8lcOX3MN8gSwVq4J/8LXzf3QqUT4pu3bgVYd8SeA/+EN6hh5sllpFfBsMkjOyaQ6GJyEqsUYjIcrUS4Gclzo5sNky4ugxVL5yN8NpfpOaK0nNv/iVwDXkYqQddIv8GB8jUS8CHUNl6hMtKESpcJq8bpJFcLW845P/CCMvn6sxsAkdOOzibNIcjKweOtOzIf0txwT/1B/jeGwG467n0jvZGutLg2eseeIYcCkeKjmqlaAquXgTf148gtOCxqD4e8g/hgBwia5By6l9wd9rRLLTM6RIvRzbln2ESTEQWYW1CRJYzE2CdHeVviSzdaShtlNe8PUIa01Fq3IXK4MjojtSz34ezmc7bRXUmSW9w7RIEF0xCcNEEhNaMB0onyGcqx4K8rReazV5lQw8RR6okv80PgLPdALi7DoGrXQ9JiHPlK6hxheH7/WP4vzxCtlMlmdVH+I1z+j+Fa5bA2XxfeA+9R/6mA8xSioVwVRl8v76NwE/nyN+sJeBMN9+JssASONqcgLRTH7d6xnxdG7i/xDLdYQJMRFZhbUJElqrV+3uuxNORzYYJ11Si+tXLEFr6XJR6NyJr/noP+wjeIYeZZfRfdEbuwPy/EJj0EUKL5W9TXSV/H3nD1Voa35I4/ZdwEAiukgjItvwVmo+Aq98x8Oy4L5ytYtiLRVsVmPsnfF/egfC6LwBPvvyBdOTF1hJhaUoEV0Ofn3cNuAve4afDmROt9bnp34Xhn/I9fJ9dAPjXy3nY1CiLLqk/axbDs8cTSBl1nuxaOnrmAYmrI5vyrZkEE5EFWJMQkaXMBFi7HsZLWDImLjD3D9S8NjR6Q/tCJXC0PgBppz8FR5olHdaJLeRHYI4kR7+8iPCyl6SRLZ+Zy4KeW/O5UWT0gXvQxfDscqi031uZb1JjCJWuQ2DKdwhMfg/htR8ZI16NloOG/Ln01ZHWFs7Ox8Ez6LDIs/Muj7xBjSm4eCpqPrwW4cJvYvRcsHx/nT/hhJ/g7jHELLPEBgntBV6uO0yAicgKrEmIyFJmAry7xDjdaLBQAFVv3YTQ7NHRS4D9S5By4q9w997VLKBtCa1bBt+PLyI45TZJfKXAHYXGtWRZ4ZrlcOYOh2fk9fD020v+Lc4c3JjCVaUIrVmCUOEahItXyN+nFI6s1nDk5MPVoo38rdoy8Y0zeq5WvydJ8Iq3Y5MEh6rgaLkH0k57Bo5MS4dC3ydxbWSTSTARNRxrESKyTK3hzw9JXB7ZbJjgyvmoflZnZNahfFHgWwJn72uQdtztksylmIW0NcaQ2M+uR7jkT0l2tGc2yg1qHSIdKIBryENIGXGGsfwLxQv927MJEe9CG1ag5pO7EJr/FJASgyS4Zgk8I1+Gd/ipZoEl1knoouy6SDUTYCJqME5zSkRWay5h2ZoYganfIlxdbO5ZTRpSLsC724lMfv9VGL7x76PmjSEIl06Vz6ylURZ1DvnjeDoiMP4KVL97M0KFK8w3qPExCbEDZ24+Uo++Hc4eF0tlauH6ztvibQv/rzciWDDbLLBEC4lLI5tERA3HBJiILFGr9/dACUvGKoeK1yA47XU4vNr+iYLgcrh2vBOujn3NAvqHUAC+n16D//Ojpe2cL1eN2C9Z5EjphND8Mah+83KE1hsTwhJRHTmymiP1yJvh7KwTY0U5CXa4Ad9y+H5+RepXYwlfq5wgYUzQUOtaQ0RUL0yAichqunaKJYIL/0a4+HepqaK0jqirKTyDtbOavVlbp8vhfAj/t6cCnnbyMTXWM57S4PV0RHjVe6h+7waEileb5URUF5oEpxx2Axx5R0c/CXZ3Qmj2vQjM/csssIROK75/ZJNJMBE1DBNgIrJSB4lhkc2GCfurEZj6efQm1vEtgavv5XC162kW0Jb8M8bB/8Wx0qDV5NdlljYiTyeEC15HzacPIFxdbhYSUV3o+uYpR90DR5PdgFCFWRoNkpxKfu0b9yzCNZaep9dIpEU2iYjqjwkwETVYrbvxe0joM8ANFlq9CKFlH0rylW+WWEgnV3JLPjX4UGmosRrcmtCaxfB9dpV8Trnxkfwa5Djzau/Sg/D99l5kn4jqzNW6C7yHPyitP6kDwzVmaRS4OyJc8CoCM38zCyyhE2FpGNgLTET1xZYfEVnpSPO1wQIzfwH8URrq6i+Aq9cNcOV3NwuotrCvEjXfPAGUTZSrROyf+f13mgS3Q+DnMxCYLz8fEW0Xd7fB8Oz/IuBbJXtRHArtyoV//EsIV5aYBZY403wlIqo3JsBEZBWdGnivyGbDhCuKEJz1sfHcZ1RIm8896DCpAbm27NYEpv6I0JwHjd5WI+GMN9ojHU6Fb+xDVjeuiZKCd+cD4R4q53g0Z4Z2ZiO86h0EZvxiFlhCb7Lq88BERPXGBJiIrKIP0xqzdDZUsGAuwuu+NvcsFtwAZ6dz4O64g1lAtYXLC+H/9QnAo0PP43iIoSsPoYK3EZj5q1lARHXmdMG792lwtDlekmBdXjcaSbDUH+628P/1ppXP7Os1xrKRRkSUnJgAE1GD1HoO61AJC+qUMAJzfo1e6hUsg3ugtJ88nEtla/zTf0Jo9VfSHm6sGZ/rKgyH2wv/7y8gXBGtdaKJEpcjqxm8+18rSWpTOZ0sXbLofxxuhJa/hcC8CWaBJc4xX/kcMBHVCxNgIrKCZpMHRTYbJly6HqH5X0n+1cossVCoFI7mo+DuumkeFaolXFmKwN/vwuFNNUvinLsNwqs+QmDhZLOAiLaHu9OO8Oyhs6qvkL3oDIXWJxYCf38C+KvNkgbT0UasxImo3pgAE5EVhkpYMqNUYOkMhIt+kNop3SyxTthXCFf/4+DIyjVLqLZgwWyEV7yjU8WaJTYgV7HAtK/lh/ebBUS0PTxDDoWzw/FyDhWaJRZzd0Ro4RgEpH6xiA5P2XTDlb3ARLS9mAATUb3Vanj0Nl8bKIzggolmR4T1jRpHWh7cvXcz92hLgbnjzS0bcXdAaPFHCBWuNAuIaHs40pvCO+IS2dAJ5UKRQqvJtw1M+SayYY0DJbyRTSKi7cMEmIiscIT52iDh8iKEFnxlJDWWCxbB2flEuFq0NwuoNh3+HFr4LeBpa5bYhMMBVM03eq+JqH7c3QbB1e8OoGaZWWIxT0cEZ7+NUKEuvWSJ/hKcyZCI6oUJMBE1lK6VMyyy2TDBVQsRLvoxktRYLVQCd99RgCveJ3dqHKHCFfLZ6+RXNlwaSg6X4HJNgDkUkqhenG54dj0eSIveDbBw2VQr1+7WivzwyCYR0fZhAkxEDaXDn1Mimw0TXDwlOiPwwj44mu4JV6e+ZgFtKVS4FojSRLBR526L8Eo5dvx2/QWIGp8rrwvcO18n59ES2bP+JqTeWwvO/BYIWHaeHixh3LHjc8BEtD2YABNRvdRqcOxpvjaIrhMZXPir2ZyxmH8lnD0OgbNJC7OAthQqXC5/U3PHbnSplZICOYYqzAIiqg/PwIOAjP5SIUdhUjlXe4SWPo3gmsVmQYO1k2ClTkTbjQkwETWEDkOzJAEOFa1BePXrRiPJcpLYuXvsKhtRGFqdEMIIFy+Dw85XhJr5CFdEaRZboiThbNke7gHnAL7lsmdxfSkVTNgXRHDBJLOgwXQ6/+GRTSKiumMCTEQNof21ehe+wUIFs6TRFTIaSZYKFhlr/7ryu5kF9A9hSYDLi+x9RQgsl8a1ZeuMEiUpB9z99wNSW0u9UGOWWcfhzkFw7o9yrlaaJQ12rPnKYdBEVGdMgImoIQZLtIxsNkA4iOCSv6NTIwVK4Ow+Co7MZmYBbVUoYG7YlPz4YT4DTNRgrtad4Op7KeCLwtJirqYIrfoWobWWzTatkzBmRDaJiOqGCTARbbdad9q1W9UV2ay/cGU5QgXjjMmMosHdeaC5RQmLo9uJLOKAu98+5jll9Ykl1w7/UgSXzTL3G6yPRI/IJhFR3TABJqKGOMZ8bZDQ+gKEi3/Q8XFmiUU0Uc8eBFdbto/+i8PtNbdsSg4dh9eSyciJkp6rXS842p9iPEJiOVdbBOf9LN/bsom29jBfiYjqhAkwETVEuvnaIMZwuGiMXg0uhbP9SDiycswC2iqHA44M+YyisQRVrEij2uFhAkxkBUdKBtx9DgQCxWaJhXTW9lW/I1S6zixosB3MVyKiOmECTET11U9iUGSzIcIIFkyJTm0UlLyoy87yvaOxtlIikQQ4pxPCNk6AHWm94Mhqbu4RUUO5uw8G0rtIFR2FJZFK/0JojWXPAeta9LoiARFRnTABJqL60t7fBne56cy9oZWzJFO1+FkzHf4sTSJXO31EjP6Lo1medgTbU8gPR9N2cKRYMiCBiIQzNx/OTkcCgRVmibWCS6eYWw2iE1L0lWhq7HAmaCKqAybARLRdajUwDjdfGyRctArhwp8kU80zSywSWgNHi2PhzGn4JNXJwJXbGkjJMvdsJrgCzvxBgN2fYyaKJy4P3D33RDgaE8S7pIpeMQNhX5VZUG962y5VoruxR0RUB0yAiai+cs3XBglVSgOoaoU0YyxOXgLVcLYfCEd6E7OA/o0jJw+O5iPlD2L92p+x4GzX09wiIqsYk2FltDf3LORqj9Ca3xCuKDELGkSHPw+JbBIR/TcmwERUH3rXvV1ks4FCoag8e6rf09VWH1OmunCkZsLVZR8gsMossYlwEMgYAFc+E2AiqzmbtYGzzX5STze4p3ZzDml+Vk5BaMNys6DBOPaZiOqMCTAR1Yf2/g6NbMYnR6pUcK2i0HORwNw95U9qt6uCvwCurodyqDtRNHhS4Oy0KxBYYxZYKCT/v96y54uPlmCblojqhJUFEdVHvoQls246UjwSsmFlN3A4DEeTA+Bspj8m1ZWzbXc4O5wtjd0lZkm8i3T6uHfcVw4kl7FNRNZyddghOq1FqfLD1ZY9cpFhvnIiLCL6T0yAiajOajUshkvoxCMN5mzaEo7sfeSbl5olFgiugjOvPxypnBV4ezi86XAPPNKc9MYGU0L7l8LZ8Uy4OnKoO1G0OJu3gyNrsNTRFi+HpFWMdVPP6xCQjpFNIqJ/xwSYiOojaL42mCMzR5KYvSSZKTZLLBDywdV1V6nhuP7v9nL3GgZnu2Otf+bPctJwDsnPO+xkLn9EFEVOqaMdebtbvxySnMLOdEvuo6pWEpsmAmAvMBH9GybARLS99Jb9IZFNKzjg3nG/TdsNFqoGmgyVBHgns4C2hyMtC549zgeCq3UvUhh35OfyL4az+0Vwdx9slhFRVLi9cLbuZuFtT5O0QJ0tOpg71tMkeGtBRMQEmIi2lz5saemive7OO8LV7wYjqWlY0uVA2Lcant2vgDPH4nWFk4in9zC4+t8O1DT07xEl4RrA2xreEefD4U0zC4koWlydB1nbYgxVwJF7sCTA1iwmYDpXopOE9gRLxr51W0uKNYgoeTABJqLtpRmRhTNWCZcH3uFnwpE9BAho0lUfkV5BV89L4Rm4v1lG9aJ/jxHy92iuyyLV9+8RLQ6Eq1fCM+JRuNr3MsuIKJpc+d3gyDvKsueAw751cPU9Ao6MHLPEEgdJzJaYKjFZ4muJzyS+lLhQQi8Mu0roszH/uLPHZJgoecThrX0iildmw2B3iZ8kLL+BFlg4GTVvHAr41kgTRWdwrmtDRJKiGkl+O5+DlKNvg7Npa7OcGiKwcApqXt1ZtlrIR6xTdTc2uWT55O886G6kHnKlMTSTiGLD//dY+D7YD/BoJ2sDksRwCI60Vkg952NjneEY05u3CyV00olPJKZJTJDY6jpPDusm6SKiOMIeYCLaXjprSVTqDneXnZB66pdwtNYkWHse69DICgeM5Nfd7wakHnsnk18Lubv0h/eIr+UzXiVh8Qyw2y2S/Dp7X4OU/S9k8ksUY55+e8K14y1m3dyAxDC0DJ5972iM5FfptUuHR+udvTslPpVYIKG9xY9I6A3eTTNzsVeYKDHx1hYR1UmtBsBlEg9HNqMjXLYevt8/QuDvF4CiPyNPHWuzZWMvZKhm07LBTkmW3UPPhGenfeDw8HlQy8kH7f/rC/g+O0Q+/xbygWdqYeS9mDF7+HtejtQjb4Qjs5lZTkSxFCpeg+o3L5Mc9m04UrezJ9i4WbkcnpEvImXvU6Quidu1u2dJaGL8lYRcgLDZYsXsFSayP57FRFQntRJgfaZKn7WKulDRKgQXT5eYiHDhcoR9OmrNAUdaSzhbdYKz00C4O/aBI71J5D+gqPHP+Bm+Ty4GqmZAPnQpiVESrHc6fMuMYc8po86HI6Op+QYRNQatl2s+ux+h2Q8D3nypkj3mO9siTc1goZzLJfDs8yq8exwvya9tlqibL/GUhA6XXqQFtTEZJrInnrlEVCe1EuAPJQ6PbMZKGGF/jWRhElJrGT29HAIbc8GC2aj59E6Elr8Jh7et/CGi2YiVP7ROwCUvnhGvwbPrUfJ3t2zNUCJqgHB1GfwTv4L/tzEIF/4WqQqcWXK+6ggRJdeL8DqEA0Fj09nxVHj3OhfuHrvI19jy6btKibcl3pP4QcInsQkTYSJ74RlLRHVSKwHWZ6U2LtxLSSZcUQTfb+8h8Ou5kXVBPdobbCW5LIXKEPatjzSaR15qPBtORPFHh0QH509EYM5Pku/ORrhKH6fVjDcNjqzecLbdCa7uw4yl7hypG5Nj29MZpvUxoHckmAgT2RDPVCKqEzMB1oe+9PkodsUlueCyWfD98hpC8x6VnSpzWHQDhaqBwGo4Wh0G9y6nwrPjcDjSss03iShuhUMIV5ZIAlwW2Xc6jSWOHCkZkf3EpMst3S/xgYRUXhFMgoniH89SIqoTMwHuLKHrLHL8MUmy6kNw+Tz4p3yF4JwPgeI/EJarisOdIg3glrLxH5PchCRxDq5BOChf6pH/pN2ZcPU/FJ5ew+DIyjW/iIgormkifI6ELqe0CRNhovjFs5OI6qRWD/AcCSbAtBljKGTBbAQXTkRo5VSEC8cDVeacMZtGz5v0yiO5sSN7TzhaD4OrfR+4OvaHs3UnOLycyZuIbEdnin5fQnuENSHehIkwUfzhWUlEdWImwBdIPKEbRNsSripFuLIM4Qp5LVmFsE/njzEvN9IYdGQ2l+S3JZxp6XBkNYONZoQlIvo3VRI3S4yR2PR8MJNgovjCM5KI/lOtCbDukvi/yCYRERFtxY8SV0tMMvYEk2Ci+GHLueiJqNHovL9ERES0bXtLfC9xi4TR1tYbybVuJhNRI2ICTETbw2++EhER0bY1kbhV4leJLlqgmAQTNT4mwES0TVvcsdaL+ajIJhEREdXBUIkfJE429gSTYKLGxQSYiLZqiwv0gRJ/SQwz9oiIiKiu2ku8KnGesSe2uMFMRDHEJ/KJ6B9qXZQ9EteZka4FREREVG9fSRwjUW7sCU6QRRRbPOOIaDO1kl9dm+Y5idOMvTgXCoVQUl6Biooq+Hw1CAcDWF9ciorKahSVlsHv92srw/xqYf6aTqcDuU2bID0tFS1ymsDpcsGTkoKszAxkZ6TL+xwoQ1RVXYOiklLU1NQgGPBjXWEJyiurUFhc8o9lnqUSgUvOo2ZNs9E0KxNNszPhdHvkHEtDTpMseD16X43on7QeLy6rQFl5OYJSZ1dVV2PthmI51iqN481IFPWA21iVy7GWkZ6G7MxMtMptAq83BR4Jo/7OyoAzfhPLsRJHSjAJJmoEPNuIaJNayW8/ibckeht7ccQfCKKqqgrLVq5GcVERFhesxLzFy1C0fgMWrliLv1duwNqCQqCgAgiE/pf0blnbbdlq199dkmG0z0Czts0wtH1LdMxrjtwWLdCrawe0a5OH5i1ykdeyhdGQd7uYGFPi0dOgQpKN5avWYO3adZi9YAkWLV2GlSvX4I+FK7FguZxbC0v+/dxSG8+vkGxkuoCOTTGoU0vs2DFPzqnmck51QrdO7dC6VSvktWqONDmntvZtKHH5JMEtKS3H0uUrsGaN1N0z52HN6jWYX7AaYxeuBlbKcba8EpDDxzjIah8genxt3K99rOWnI7NjLvbo2BJd2rZGm/w89OvRBa3kOGuf31qS4iykeOPmBow+F3yIhFysIpgEE8UGzzQiqp34qn0lnpdoZ+w1skAwiPWFRVgqie7c+QswZdZ8/Dl1DsbPWg7Ml8a4apoKpEkrKUMaNiny6pLQZLY+tBEVlMZ9TUCaJX6gMgiUVMkb8v36tcLuXdtgtwE7oG+vbtihR1fkS2LcrGmTTbkAkd34AwGsW1+I6bPnYfK0mfj+jyn4btpiYNZaeVfOpdwUSWLl3NLzy+3UYROR/3B76Dnll3PJOKfk3NpQLYVyru2UhwP6dMJeg/thxz690atbZ0mKW8Dj1gEolGhKyyuweGkBZsix9stfUzB+yhxMH78MkHJkpAHZ8nfXYy1FXvUm4/ZWrHot05szWn+Xy7FWJFEj9XezbOwwMB9D+/XArgP7oV+fnujUvp0xIqGRTZW4UkKXTDIwCSaKPp5lRFQ7Ab5R4o7IZuPx+QMoWLESs+YtwC+/T8Knv03G3GmS8Gpjpq00krKkQd5YjQT9rIqlQbWiBshLxZ67dMPwXXbEsJ13Qs/uXZAnjXeXzYdN+3z+LW+KxCc5BHQ4rZUNRr8cezoMM+5Z8LuvkaR32oxZ+Oan8XjjhwlYPXEl0FQSjxbpcMgxHIsjQH/6sCbHayQBqgrB3bsFLt53CPbedTD69+2N/LxW8TyMtd5Ccn755TyLf+HIYyENuCGh9fmiJcsw/q+/8cUPv+HDsVOAdVJ/tpO6PEPq8liq9AEFlZIQezFqrx2w3+47Y7chg9Cja2dkZTTaNBdlEkdLfGPsCSbBRNHFM4woiW2R5OiC/bpmYaMIStKxYtUa/DV5Gr7+cTye//YvYPpaoKU0krRB7nHFpEG+PYzGe7U0YldKg6q0Bvl7dMSJ+wzFyD2GYsc+PdEit1nkC21EG6t3PfI0pk6daTzHGbfCIWQ1bYoxd/0fsrMyzcKG0ePrudfewadffI+UFG+kMB7J754tv/tDd1yHnCbZZmHd6Hm2eOlyjP3xFzz93leY/vWcyDnWKgMOV2yS3n+lNx/Wyvm0ugJNh3XAxYfshf2H745+fXohIy3V/CL70yHml900GsGamrieZ6CsogonH3cYTj7qYLOk7rS3d8LfU/HRV9/jyXd/BhaVAl2y4MhKafTjzKi7NRleUA6ku3HIkQNw9IEjjGS4Q9v8xri/qsOMDpdgEkwUAzy7iJLUFsnvDRJ3RjZjq6KqGtNnzcFX3/+Cl74ch4Lpq4A8aYzHYcL7X7QZG9JGVXkAQ3buhOMPHI4RewxBt86d4PXYY0inJsAXS8P82U+kwZoaN8/K/VMwhAEd8/D962PQNNuaYYx6vD345Iu4evSrQG4cT3ouv/ugTnn45uVH0CxHl+f+b9rjOG/hYnzw2Te4552vUVFQDEfLjLg+x4zzqbwGqA7i5MOG4rhDR2F3SVB0giO7W7piFboccxGCJZKASV0Xt2YV4clnL8P5px5rFvw3TXzHT/gbL7z1Md7/5C9jCL1T6pK4HlehN15WVyCvRytcctS+OGTUCKNX2FXfR2nqR3uCD5PQZ4MNTIKJosPe4/SIyAra8xvz5FdnlP3k6+9x1hU3Y+juF+L2+99BQVE5HO2zjQah3ZJfZTTw0r1Ay3RjwqBLL30SfUaeg6tvvQ/jfv8LFZV6k58otgpWrjYS+16HXoAbb3sdFdU+OUbjO/lVxvmUmQJXi3S89vUEHDjyKpx08f/hq+9/Rpk+M0pxRW+e/frnJJxx+c3Yf8TVeH/cVLjaZho30uI6+VXaC98mC6tKKnD9jS9jhyMuwh0PPoGZcxfE8nEQvZP3gMSmOzy2eBSFyIaYABMlGb2g1rqoxnzYc2FxKT74/Bscd/61OGz/q/H2V38B3SXpbSvhdNgy8d0qtwvokQPkpGLM819hz2EX4fTLb8K3P/1mLOlBFG06uuKjL7/DiFMuxzUXPW3MZ+Xo1ES7lcyvsIegVgqSCDv7t8CnP0/HAftcZZxLP42fgBpbPEeb+BYtXY6b730Uu+95MT4YOwno38y4GWj87exErkGOLk3lNYzbbnoDfQ69EA88+QKWrVhlfkHU7STxqYT8EBFMgomsxwSYKHnphFcxS37LKirx+dgfccKF1+Gog2/G2KkLpUHbWhLENNs1yLeLDqFrkwXnTrl47+cp2PfAa3DBtXfilz8nsfHeYGwYbsuSghX4v7sewhEn3Yr5a4vgkORRZ9W18ydm9CI2STUS4Q/GTcPeh12Fm0Y/ioVLCoz3KfZ0BvEvv/8Zw0+7Evc+9jFcvSVvaxbHjw/UgXGO6AzUvXKM1QWuueEljDj1cnz05bexGsUzXOIDCWsmNyCif2ACTJQktuj5vVkiJrM96zJGv0+cgnOvvg0H73c9vpkw10gG4XXH/7A4C+nqSkjzwtG9CV77ZDz2GHIRrr3jAWOIHdUXn4/bkj7r+9248UZCMuaJL+DokG37xHdLmx41yM/E/fd/iN7HXYz3Pv0alVW6tBLFyrrCItz9yDM48MgbsHRNIZz5Wfbr8a0DZ6cmWLCqEEcceBOuuOVezJm/yHwnqjQJfieyyV5gIqsxASZKAltcPHXCq9sim9G1YvVa3DvmOQw79kq89ePfcOiwuMyUSDKYpIxfPTcdzp1y8Ogb36LP8ZfhqZffwroNRcb7RPXl8/vxytsfYeTx/4fF64rh6Ngk8fvIuzaFr7oGx5x/D/7v7oexZPlK8w2KpvmLl+LSG0fj1vvelgQxG0jxJGy9btxw8bqN69ezH43D3mdcjfc/+8Z45jnKDpA4L7LJJJjISkyAiZJLTCa80mFx3/78Gw4440rcePXLQHaKMREKL9//o41FR5NUIBjEBeeNkQb8tcZEWbpMDdUVj6iNyisqcd/jz+OME+4FmqclXK/vv3I44GyZgUef+gIHn30Nfh4/wXyDouHv6bNw4DnX460vJ8DVNitpRvLo+eTISsXqkgocfchNuOW+x7B2fWHkzeh5SuKCyCaTYCKrMAEmSnC1Lpi7S0T9md816zbgzoeewr4HX4tpC1fB2c9+a+HGivGX0UlXeuXgp0kLsOcBl+N+SWLYG1xXHAKtdEb1G+5+GDfd9BrQP9c4ppKNJmHO9tmYsWg19trncrz45gccEh0F4/+ajIGnXoP5WrfnpCXkkOd/Y/y6+nxw/+YYfeu7OPuqWzFjznzjvSh6SKJ3ZJNJMJEVmAATJbBaF8q+Em9FNqNn0tSZOOmSG3H73W/D0SXbeE4vmYc715XxEWWnwtExG9df/RJOv/xmTJ05x3iPaGv01HZJQ7y0rAK3P/AkxjzwOZzdN00cm5SMukafDe6ejTNPvB+jxzyL4lJdWpUaxLyfosnvsVfeCVT74GiSljQ9v9vi7JODT3+fhcFnXIMff/vTLI2KFIn3JVoae4JJMFHDMAEmSnytJb6UyJeIylVTZzN+99OvMejIS/HdhLlwdU6CZw+jQD8z1w45+OKXGeh/ytXGxD46nJy2JXmPMq/biSJJ7u56+Ck88uCncMtxw5tNJh0S3b8Z7rjuVVx7+4NYuWad+QZtN0l+nU4nJkyejl3PvhHL15fBkeJm/S70BoAj3YuqonIMP+UGvP/Z19F6hEU/7l4S+ggTEVmACTBRgjLvEOs5fq9EW90Rlo+NLC2vwMNPv4Rjz7wLyPAYPZnJNizOSsZn1zRNNgI45qQ75LN9GaVl5ZE3aQtJOgRaErySymrcNeZ53PfKl3D2bIoAz7nNaBri2qklnn3jB1x2831YvGx55A3aPp0y8eMfk3HlHY8YPb9g8rsZ47NIletelgdHn34X3vzgs2gsb7exotNngc+PbG66xhNRPTABJkpAtS6MF0ucEtm03qq163HNHQ/i+kufg7NtltQoSZqQRIP2YnVpgmsvfwHX3fmQMaM2bSlJG4Byns1aXYjnP/wJjuxU9vxug95McuVl4r2v/8JJl9/K9YLrwZnmwTvf/4Vf5xbAmS6JHm2drmWfn4lTjrkHT7/yNmr8UVvjXZcv7BHZZBJMVF9MgIkSTK0L4iiJqK31u2hpAS676V488/YPcPZvkfTPg0WDfqb6nNlTb/2Ai28cjQWLl0XeINIGd1Yqe+P+gzGiolk6xk9ZhPNvuIdJ8HYybq5oD6eu286D7d/pDeD+zXDZ9c/ihdffM9bAj4Jcibsl2H4nagCeQESJSWfDeUAiy9iz2PxFS3HipTfj3W8nwZWbzuQ3ioyhnM3T8dG3f+PkK27F7PkLI2+Q4IgDqhtnk1R8O362kQQvX7XGLCWKgraZuPDcx/DOR18gGJ27BkdInBHZZC8wUX0wASZKILUuhLrc0Q4Sll8Zp8yYjVMuvwV/TFxkNCr5vG/06WfszE2Xz3wh9j37ekybNdd8h4jqQvMQV04avv1iKq6982GsK+RSYxQlOjqjV1OcdP79+PiLsWah5R6UaB/ZJKLtxQSYKEHUSn5HSFwa2bS2i2z2/EU48pJb8cec5XC2zGDPbwxpA97ZPAPLVxXi1KvuxLyFS8x3iKgujBtJnZrgzXd+xQOPv4DyyirzHSKL6XDo/EwcdfF9+PHXP8xCS2VLXBbZZC8w0fZiAkyUWHIkHotsWmv+4qU465o7sWjhGji5vm+jMJ4Jls9+yoKVkgTfYTyHTUR1ZzxS0D4b9z34EZ588Q34A1F5TpMo0hOc7sTwK0dj0rSZZqGlLpfYL7LJJJhoezABJkoAtS58N0voeoGWKlixCpfefD/GT18KRzM+89uYjM8+IwV//L0Q1939KFav22CUE1HdGD3BnZvg2mtfwkdfRm2IKhEcKR6gtALX3DUGK1ZH5dnzqyQ4GQLRdmICTGRztZLfgRKbhkRZZd2GIlx+24P4avwsOLNTOOtsnNDJx977+E/c/cjTKK+oNEuJqC6MG0ldsnDsNQ/jtwl/G2VEVtPrpSPVgx++mYE7HnoaZdbX1ftIaBJsYC8wUd0wASZKDGkSd0U2raOJ1X2PP48Pnv9Vkl+uNxpPtBfLlZ+Fx+7+AM+8+na0ltwgSlgOlzSBHGGcfdODWLp8pVlKZC29bOqz58/c/yVefecjBEOWj6HS9f718SciqiMmwESJ4USJTc8CWSEk2e4rb3+EB+79CK7+zTjsOQ4ZM3Dv2ApXXfUCvvp+XKSQiOpETx/tnZs9cSkefOplVFXXRN4gsphx/dyxGS6692WM+/0vo8xC7SS4LBLRdmACTGRj5oVOe3+v0A0rffn9z7jorDFw9GgaSbQoLjl0opXOmTj5tscwfc58s5SI6kKrNmf7bDx298f4+MtvI4VE0aB1tdeJK+5+HAUrV5uFlrlIollkk4j+CxNgIpuqdZf3WAlLJ76aNW8hTrl1DNC7CZ/5jXPG38ftQklRGUaPeR4lZeVGORHVjdE71y8XZ9//PGbwJhJFk9TVU/5YjBffeB/+QMAstERHCfYCE9URE2Aie+sucXdk0xqFxaW48+FnULSiCE6v2yyleOdM8eDNp37E6+99ghAbP0TbxeF0oKKoHA8+/TIqqqrNUiLrOdpn49Z73sH34343SyzDZ4GJ6ogJMJEN1bq7q7M+50U2G04Tp9ff+xhvvf87XM3S+NyvjWzsxbrothfw1+TpRhkR1Y3WqLrG9suPfo0vxv4QKSSKAuPq3SYd1zzwLFasXmuUWaS9xLmRTSL6N0yAiexLn/3dO7JpjT8mTsGlNz4PZ9ssPvdrR04HkOrEw8++htLyCrOQiOrCmOW+dy5uefw1zgpN0eVxYfpX8/Dux1+aBZY50nzlMGiif8EEmMi+dObnnpHNhltfVIx7Hn8RyHCz59fGXBlevPPM9/jsm2ToxWIDj6ylj33Mmb4cr/FRAoq2vjm44uE3MXXWXLPAEgMl9o1sEtG2MAEmshnzrm6KhA5/tsyHn3+Dzz+fDGeTVLOE7Mjoue/dHDc+8ToWL1seKUxYDvOVyBp688+Zl4WbHnsfM2bPixQSRYOuQ13jw2vvfoIav98sbDCtFK+ObLIXmGhbmAAT2dPJEjtENhtu1vyFOHf0S0C7LPb+2pxRqQdCWPLjFEycOsMoI6K6M+rAkhq8/M7HqJYEhShanDnpePC1bzBpimV1tWa8u0l0M/aIaKuYABPZSK27uaebrw1W4/PhpTc/BApKI+sUkn3J8RFaW4Ejd++Ln357DYfsN9x8g4i2S/tsPDz6E/w9jTeRKHqMmy0pLrz09keoqq4xyhpIL+I6jOsgY4+ItooJMJH9DJEYENlsuL+nzcQDj34KdG5ilpCdGLcs9MbI/GK0bZqJN8ZchecevA17DhuMFK/X+Boiqoe8FLzxwRfwWTc8legfHCluPP/M95g8fZZZYonjJHSiTA6DJtoKJsBE9qO9v5Y8qFtZXY1nXnsfaOqGg72/tqMVeLisRv6QAdx375n47Y0xOOHIg5HTJDvyBURUb66cNDz57FjMmDPfLCGynpGe5rjxxodfWDnkfrCEDoUmoq1gAkxkE+Zd3AyJfXTDCvrc0SuP/QBnkzTOp2sjxq2K8hqEpmzA2YftjonvP4Irzz8D7fMtWxKaKOkF9X+qA/j06x84IzRFV24Gnvx4HGbPX2gWWOJw85W9wERbYAJMZC+7SnSObDaM3ml+5d1PgdYeTnxlE0biGwojPK8YIwZ2w9c/PIhH7rgOA/vtAKeuAUxE1uqSjdve+CoJZlSnRqXVd4UPX4z9yXiixSIjJbIim0RUGxNgIhuodff2APO1wWbMmYcX3h4HtNBOZYpnmxLfaYWA14MXnrsCbz1xD/bbezekp3HZKrJAMATocPpVZcCUDRKS8E1ZLbFGQo47I3R7lYS8N132V5cbIxEQCkWO0UTkdgFT1+OX3/8yC6jBagLAhkpgcYl5TOmxpq9rgZnFkVcjzPIl8nX69frfJTBHbjqe+Oh7FKyS884aXSV2jmwSUW3sMiCyATMBzpSYItFFdxoiII3dW+4bg7sffB+Odtkc/hzH9C5lqKgKqAzi5quOxinHHoYuHdpF3owCnz+Ai28ajWc/+RlI9ZilcUiO4QEd8/D962PQNNuaTg49Dx588kVcPfpVQBqjCU8SV6yuANZKEtutKQ4c3A2dO+ajc4e26NquDdLS9TNwwOP1Sh0UQkCODchrVVUV5iwuwJKClVggr9/8sSCSpOSlRW6oJdpohGo/9h3QDW8/Odqy5+uXrliFLsdchGBJOeCRJDuBGXVYpQ9YJL9rwIHOwztgzz6d0SY/D93lWMtrkQun2wOHHDfelBT4qmvkXAwj5Pdj5dr1mLdkOVZJUjhuxiIs/GEJ4JZv2DkTznRv4o1emrIO73x8G4451LJ73XdK3KQbnOeD6H94NhDZgJkA7yvxjW401PzFS9H96IsAbdAm4NBZ/Y3CgSCwQRLHMnnN8QJZXmSne6QxFvl9g9LAKqvwS2IpUSyNM22Dtko3ZuSMmxsC2iu3vgqnHb0bzj/tOAzo1xtuV3Qby/ZKgFtLAvwYE+DtEDk35LhaW4H2vfNw0j5DMGyXAejepRNatWiOjPQ0uJx1GxwWkgS6tLwCa9atx+x5C/H7X5Px7De/o3jBOqB1ppHQJMLNNSOBW16GcZ8/gt13GRgpbKBkSICNz62sGqgJ4cj9dsLwXXfGoP59kJ/XGi2bN4NL6jJnHZIyff46GAxi7fpCrF6zFhMmT8e34/7ER99Nlc/OAWd2auIkwiVVOHbfQcZM/lkZltRBUpFjL91gAkz0PzwbiOJcreHPz0icE9lsmJff/hCnX/AQ0CExZgs2GvUh+ZykUa89WrlD22PUgJ4YvGNPtM9vg6Y5TdHciCbSCIj8F9p4X19ciqKSUpQUl2CtNOL/nDYbf89cgElfLpDWm3y/7llwShIYy8aV8bto4jujGDsd2AO3XngKRuwxzEhMYoE9wImZABvJSJUPmFuKUSfujNOOOhC7Dh6AvNYt65zw/peAJCkFK1fj9wl/4/HXPsLvn0wDejeDM8WtI/jtrbASt19yDG684gKzDmmYhE+Al5UCTVNxw1kH48CRe6JPz27IyrTucZvSsnLMmb8In3z9Pe5+8Qv5+1QZazdb8sdpTHq9L/Fh+ldPG5+ZBeQAM2aEns0EmOh/eDYQxblaCfBPEntGNuuvrLwCx55/Db6auhDS8jVLbUw/nxVlQMtMXHnU3hi51zD06t7V6M1K8W5fAucPBFBcUoYlBcvx259/48Oxv+CXj2YCPTLhTJNEOMqNeCNJ0SRefpenLj0Jhx4wEnktm0fejBH2ACdeAmwcV3KODNu1G64990TsPmwwciz6zLZlfWERxv74K+5+7m3MnLwMzjZZtu6l08ZS75Y5+OGNx4zey4ZKxARYP6OwT5/vrcE1Fx6MU445DL26dYnqBH36OM/s+Qvwxvuf495nPwOyPHB63fbuEZ5bjOeevRxnnXS0WdBguibwO0yAif4nAVq/RElBbwUPjWw2zJwFi/DVh1MSI/ldWiotewfuu/V0zPr4Cdxz05XYb+/djeWAtjf5VR63Gy1yc7Bz/7647NxT8cGz9+PTr+/GUbv1RWjyOmMSlqh9aoWVCM0pwdXnHoxZ7z6G8047PubJr/2wQfdvjGO1yo/QrGI8eNsZ+OCZ+3DIqBFRT35V82Y5xprUX734IG6+8hiEFpYAkhzZ9YkLvTkyc+w8zF+4OFJAm9FjLby8FIO75uP79+/F7ddeih16dI367PRuuY717dld/r2L8f2b92BQ5zyE5hbZu3HbIQPfjPsDFVXVZkGDHWS+EpEpAVrAREnhUAlvZLNhfv1zElBp39k0jeaUDhFeUorLLzoIM99/DFddeKbR06AJrJU0GT54373x/EN34N1P70DbFk2MHlqXRW06owL2B4HpRThq34H45acxuPP6y+R3sWSlK0pieoyGymvQqnk2xo59AJefdzpaN8INlXZtWuPGK87Hp+/fCaSlIFRaY9+Gh9eN8RMnmzu0STiM0JRCXHPJYfjomXsxfLch9boB2RBej8f4dz989j5cdtWhCM0qMt+xH0eqB+//MBVLC1aYJQ2Wb74SkYkJMJE99DZfG2RDcQk+/+F349lWO9K8M1zpQ37TTHz6zu2458Yr0bt7l6j3AzbJysDRB4/CuNcexuVn7o9gQVmD/02tfENryrFTh5b44JPb8OLDt2O3XQZKQ87aJJ6Sjx6bweIqjNy5B3588T6M3HNYoz4aqTem9EbSXy+MxtA+7Y0ZgRvxx6m/Dhn47rdJKJR6lGpZX4nHnr8It159Mdq0bmkWNo52ea1w1/WX4bEnLzR+LjsynrRZWIRZc+YZ+xbYQaJjZJOIFBNgojhmPv+bIrGPbjSU3lH+4fvZQLolnckx5ZYWc1gSxpEDu+Ob50ZLg3p4zHsZOrVvi7v+73I8NvpchJeXGT3R9WrIrypDqCKA+288DZ8+/wCOOHBfSyeIoeSlI07Dkvweund/PHffTejVvcGrpllm0I474IX7b8Sw3u0RLqqyXxKc7sHY3+dhzdp1ZkGS0+tTQRleeuBS45GNtFS9VDU+XRv9vNNOwPP3XhRZq/p/82jYR+sM/PrXFLnEWPI0s96VaBvZJCLFBJgo/umMK5a0LP6eOhMo9Zt79qEVVUASztOO3h0vPniL8WxZY9FGnjau3nz2OmMouTFjcx0Yj8LVBIA1lbjozFGY+vFjuOL809E2r1XkC6gebNiwjSI9xELlPuwxqBsevuVKdGibF3kjjuijCi/cdyN69ciLLFVmJ9qNvqoSU2fONQuSl9F4nFuCpx68ECcdfWjUl2fbXvps8KnHHoFn7pMkeHqx/Rq7TVPw6+TZxmRyFrFsRi2iRMAEmCj+7SrR4HFl1T4f/pg8A+hgr9ltjWcZ11dII2tX3H3D5XGRMGrj6rjDDsRLd14ojavCf61Ijfd8AYQmr8GoAd3w3dv34L6br0K/3j3qtAYm/Rt+frWF9QZLVirG3HqFMVohXvXs1hnP3H4loPmvNT1csZPrwdwFi4y1aZOVUSevKcd1Nx4lSebhcZf8bhRJgg/DTXcdi9CU9ZbN3RATKW5MGrcIq9dYNtqAlSVRLUyAieJfjvnaIEVFJfhigiTAmfExTK0utIIKFlfjsH0HYPRNV8TVrMiau5509CF44MnzjRlut9W4Ci0oRpvm2XjlnZvwxuP3YMQeQ5GWYp+/AdmDcTGfXYqP77ocO+7Q0yiLZ7vvMhBv3nkxMK3IXi3z3HR8P2E6yssrzILkon+rYFkNDh7ZH1ecd3rcDHvelhSvFxefcyr2P2kwghU2evZcLzBlAcyct9AsaLDdzFciEkyAieLfseZrgyxcugyrf7VsVsmYCNUE0KFDC9xz/SXIb+TJVbZGez50rcazzxmJ4Lr/NYiNRla1X1qKYYy+6zSMf2OMsSZms6bZxvtkFQ6BVnq8aY/cTfccjwNH7hUptIHDD9wXl990OMK6jrdNOFxO/DKnAKvXrTdLkovxyIfbjVuuONeYJd8OWjTLwW1XngtIfR2204iDXDcWLVxsVS23k/lKRIIJMFH8s+T6t8xYUsEX2bEBY1Dd7FI8dv156Nm1k1EWj5pkZeKqC05DWltpDOqwyCo/wnOLceb+QzHp9Qdw9UVno0PbNuZXk7Vs058TVWFfAJ165uHMk46O2+GoW5Oa4sW5pxwLtM6KnDs2YPyUM9Zj5ao1xn4yMc626cV48NLjMaCfTixsHwP79cHDl50ATCu0T63RPBUTZy9EaVm5WUBEVmECTBTf2kk0uKURCoXx17TZQEt7zDSsDZTg2gpcf9exGDV8j0hhHOveuSNeuvZsYOoy7NmvE77+4l48dvcNRiPRacx+RdFhj6Qp6mYV4a6LTrbljZYeXTvhsctOBBaW2Oh2RhjLV642t5OH9v7usG9nHHfYAY26rFZ9aD187KEHoP8BPRCW66EtpHowYd4yVFVVmQVEZBUmwETxTcf9Nngq10q5gC5ZugLIjO2yQfWls8O62uXgjOOPgMdtjx6t/SRRf+vj+/H243djv713j/tn4xIDby7oUly7HLIDRuw5zCywH10jOG9APsJ+m8wK3TwVM+cvTqqJsIwzbVYxLj/liEZf67e+8lq1wOWnHgksLbVH49fhwKp1ZVhh3URYRGRiAkwU33TNogY/tLR2QxE+nrnUWMfSFmYU4fHzj0PXTh3MgvjXNDsLxx16AFrH0URdlNiMpKSgHBeedDha5upqafakPdfXnnQwMLPYLIlzUo+uXrkaQbst49QAOsy+214dse/e9p5LacQew9Bz5/YI2eVvt74qKYfbE0UbE2Ci+HagRIPP0+qqSmDiWmMSkHhn/LI752G/4bsb+0TbltxDoHVCn9SezbH7kEFmiX2N3HNXoFNmZL3seJfmxtzla1BYWmoWJIHFZTj94L2R39re65a3adUCZxw2Aphfao/xI4EQykpKzB0isgoTYKL41tF8bZClK/R5taAtRoyGNlTijuP2Q8d2+WYJ0bbYogkbPasrcMkBu6Ftm9ZmgX116dgOZx2+G0KVNpioz+vC7/NXo7TUPrNXN1imByP32tX2cxo4HA4M322IXGgcCNthCHvzFMxdshxBuzy3TGQTTICJ4psl47SWLl8JuOP/dDeaViFgnz2HJXtqQ3WS5I3CtdUYsfsQW838vC26Xus+u+8CFFSaJXHMKXXpvBIEfPaZVb9BJPnae+9e6NbZkvuxja6r/B77HrUjUGGDv1+aB4uXr0YgEDALiMgKTICJ4ps+A9xgVeXlgCv+U0p9zmzY4C4J09CiaEvy2yQDWqNrp8Q5V/r27gG0zTT34pgedoEg1hba5JnlhlpfgVG7DUR2lg3+NnWgv8fwoQOAhTZYXsjlRFlJqVwc2QNMZCUmwETxbbj5Wm/BYAgbiqSh1sRtlsSxldLQ2nUAmuU0NQuIaKtCYRw/uCfy8+w5I+/WtG7VAsMHdAGqLbnvF11uJ1atXW/uJLiqEHr37J4wt5v09+jfp6cklfF/nOmQ7fVFpajgUkhElmICTBTf+piv9VZVU4NlawqBLBvMAF3sww69EqehRRQ15TXo07MbPB6vWWB/OdlZ2G3HHsAaGzT23fInKK8wdxJcizR072yfGfnron3bfKBL/M+crv2+i4rKUVpug0cDiGyECTBRgvP5/Fi+vgjw2qAHWFqVXTu2M7eJ/ksSDwtcKwlw9072mDW5jrS3q3VeHlBkg+cd5YOvrEyCpCQQRI9OrdAkO9ssSAytW+TK79XCGEkR71YWVhhr+RORdZgAEyW4YDCA1UVltpgEC7u0RmZmlrlD9F+SeKxAjhdZ2U3MncTRo3N7+V8bTE4k1WnAV2PuJLBKP3bu2g7p6elmQWJwe7zo1bENUGOD4fbF1fD7bfBzEtkIE2CiBKdzZwR00X8b5AoHdG6F5s34/C/VVRL3AOekJeSz8i2M898Gs1rroRcKRbYTWYkPXfJbICsjzSxIDKkpXvRolweU2uBmy8oaBJgAE1mKCTBRgguHgiguq5CzPc5Pd8nUc5tmIy01xSwg+i/J2wPcMTsFLXMTLwF2uj1A6wxzL46lOFHjS4KlaQJheNNs8PfYTh63C/ktmwFrbJAAGys4JPFoF6IoYAJMlARCduipkATY5WXyS1QXaV4PvB4bTGy3nbxeL9DKBsvtZHtQsK4QVTU2SKAaQhLg1LTErJfdKfJ72WEQScBv3MgmIuswASai+BAKS+PXAwfvdBP9u1AI6RkZcDh4Caco84eRlpZYw583ss/5U4NQMAlGGxDFEK+eRBQfJAFOS0vVVolZQERbFTZPE54qFAtJ/Kh9fODJTmQ1JsBEFB/cTpSUlCEcToKJZYgaQrJfv88v50oCZiY2ausn5Oe/JflbJO7vaZek0sH7wkQWYwJMlATs0nxJigYlUUM5HaiurErIWYiDwSBQZYMZb4NhZKR64Yr3yQUbKsWJsrJycyexBAN2eX47NTI5HBFZhgkwUYJzOBxI15mV4z25lIZkTWUFwiEmwUT/ZX1NAKUVleZe4gj4JPldXGHuxbEiP9o0z4HX4zYLEpRDEkV/Yk70VaU3kdJs0Aw2ZoEmIisxASZKdA5nZGkhG/Suzl+5AYUlpeYeEW3LhpIqrN1QZO4ljpqaasBnj8Q+KUaspLtQXFyCgPbMJxCdvXv+8tVASxvMcO3WIdBMgomsxASYKME5nU5kp8tF3gY9q5MWrkFJaZm5R0TbtKEaJSUl5k7iWKRJCVyRnXgmyW9SLNuW7cX0JStRWm6DXvnt4Pf5MK9AjrV0GwwtbpcOL5cIJLIUE2CiBOd2u9A6J1uu+DZ4XnDuBhQVJV6vFpHlQiGsX7fB3EkcywqWA3YYVhyWulXXLE50KR78tGA5qquqzILEUFFZhUmLVgJeGxxrWanwePkMMJGVmAATJbiUlBS0b9kMqLbBxDION6bOmmfuENE2tUzHhBlzEAwmzkRYOix1waKlQGsb9HYFwsjMzDR3EphOuLa8CAUr15gFiWHp8pUom7He3ItvPZtlIDM9MddiJmosTICJ4tv75mu9paV40a6VJMBFNkiA26Zi6sw5qPYl5qQrRJZJcWParAUoLU+cGXqLS0rwyV+zgaapZkkc84eRm9PE3Elwcu1YuHiJuZMYCpavACrjf1i3PvnbMTcbTbOT4GYLUQwxASaKb5bcds/IzAaqbdBT1CwNT/0wCStXrTULiGhbfvx2DgpWrDT37G/h4mVYNWs1HC4bNE3CIbRpkWvuJLg2afhlwhT4/AGzwN50Qi/9fdAyyyyJX+FQCBnZWXC7Eny2caIYYwJMFN8sOUdzmuUAPhvMWKozXS4sxKSpM8wCItqmkhpMnj7b3LG/ydNmGoll3NdUOvtzyzRkZmSYBQku3YuPx0/FmnX2GDL8X9asXY9PfpsMNLfBsGJ/EC2aN7PHTSEiG+EZRRTfLLnt27VDvvyvTe7e56Xjo69+QGVVtVlARFvVJRNf/fgbynU9U5srLC7FO1/9DLSJ/1456HPXnZvBq8vLJYnVvy7F1BmJcbNlyszZWPbzYjjsMAFWmQ895PrtdbMHmMhKTICJ4ttX5muD5GoPcJ40LG2wFJJTGiVvPf0LpiRIY4soWpxZqXjn078wc7b9J46bOmMWfvtoOhxOG6x3Wh3AId3ykZvT1CxIAu0yE+LGZFVNDT795ifj97HBmCigKID2+a3MHSKyChNgovi2UKLBD+/qbKW9+7YBbPAMl/HL5nnw5odfoLK6xiizA5/fj7kLlyAYSpxZeSm+GUeax4Evv/sZIRvc3NqW6hof3v1srJz3qfZISqoCaNOqOTKSaWbeZml48f1fMWvufLPAnmbNWYBnP/gFyE03S+JcUw8ys5NksjWiGGICTBTfdNxTg7tEmjdrip27twfKbTATtHC0ysQT932BceMnmCXxb/L0Weg56FTcO+ZZY4kNolhwNUvH7c9+itnz9V6ZPU2eMQtPv/gd0NImz9QW+dChQ1s4nUnUhNL5GRxhvPHB5/AH7DkZlj8QxPuffW2soW0bzdPRub0+wkREVmICTBTfZklMjmzWn8fjQdcuHYF19uhRNXqBemTh3qdexep1G4yyeKbPYD71yrtAay9uuP9NHHzW1Xjzg89QXFpmfgVRdAT1f4qr8cb7n6LGb48bXLXpkNrn3/gQaOKOJFl2UFmNPt06NfzOpM04ctPxyHNf42+drMyGdHLF0Y9/CmeOTXrugyHskJeLJtnZZgERWYUJMFF80weuSiOb9acNtQE7dJfvZp/nt5wpbvz0/nQ8/fJbxp37ePbh59/glTFj4UrzwNEyE9OXr8eJR92GUy+5ET/88gdqfPZLTMhG2mfjnns+wK9/TDQL7OPbn3/Diw9/BVe2Ddb+3SgzA7nNm5s7ycO4MZniwMPPvo6SMnutP60/76PPvwF4HQ1/pihWymqwe9+uyJTjjYisxQSYKP4tMV8bpF3btkCnZuZe/DMaKf2b4bZrXjeGrYV06ZE4NGHyNJx661NAn1wE5Uc0fkqPC87+LfHpuOkYsccluPq2+zBl5hxbP6cZn/h5KqMnsl06bnroOaxYbZ81tBcuLcAl9z4D9GhqnDt20XFAa3Rsl5zDUp3N0vHOM+Pw7sdfxm2dvCX9Kd/75Cu8/fQ4uJrb5NlftbYGvbp1QlqK1yxokPi+i0wUY0yAieLfl+Zrg7TLb43B/TpElvCwk345OOGGMfhh3O9mQfxYUrASF9/2iPFMmcO9eXVqfMpNUuHaqTkee+1b7HTEJXj4mZexfNUa432yQrINQt06beA7Uz34/ZvZeOLFN1Dt80XeiGPllZV4+OlXsGzOajjTPGapDVT7sXOvzmiSlWkWJBejXuvXDOeMfhF/TJxilMW7CZOm4uzrnwR2zLHVjRZUBtCja2dzp8HeM1+JSDABJop/ReZrg2RlZmLU0P7A+kqzxB6MZVFcDow8+xZ8/0v8JMEr1qzDNXc+hAm/zoMz3bPNvkhtcOmzc0hx4qoLnsao06/Ae59+bbshhBTfNDFx9MjBPTe8hbfe/wzhOO6d00cann75bTzx5Fdw52XaZ0iqWl2JXXfqjfQ0Gw3ZtlhkqaoQzrrxAcxbZMkApahZsHgZzrrhfqP+ddjlGXOlN6p7NkPnDu3MggYrMV+JSDABJop/v0oURDbrzyWNlgE77gCs8tmq38xoxmvvqteJfS67Cx99+V2jD71bunwVrr/zYbz3+QQ422f/5/LKxtsuaYD1z8XMVRtwzFG34dyrb8OvEyYhEOTINLKGcZztmIszbnoS73xiycARy+kyYe9+/AWu/r8X4ezcBIHGPZW3i1Fv+sLo0b2rsZ+sjD+Z143Zc1bghnsew8o4HXavjwP83+gxmDF3BZxZKdu8SRmXKv04dJfuaN2qhVnQYHPMVyISTICJ4ph5x1ozJEt6gfv17gH0b46w3YZBC4fHpYvt4ogjbsbjL7yO0vIK853YmjRtJo6/+Ea89ul4uFpl/mfyW5vxpU4nXH1y8M63k7D7kItw0z2PYt7C+O5FIRvROiPLi+MPvwNvS6IZT8+da8/v6+99gpPOuQ/okGWvnl9h1Js7tECvbpYNS7U1V2463v9qIi65aTQWLVtulsaHJctX4tKb78N7X0+EKyfNdscaVlVh8E59kJVhyTPLWgn8GNkkIsUEmCj+6RTCX0c2G6Z1yxY4c++dJJ2uMkvsw2jGu11w9GqKS299Hlffdj+mz5lvvBcLZRWVeOODzzDsnBvw+9wCoFl6vZ8nM/677FS4+udg9EufY58zrsIzr7yNtesLI19A1BCaBPfLwfFXPYwX3ngPVdWNv/yZLhX26LOv4LRLHpbkN1taH3Yah2IqrsZZu/ZDy+a5ZkFyMx7vaJGBD76bjHOuvRPTZ88132lc02bNxdlX34EPvp0ERwPq6UZV6cPg/juYOw02TWJBZJOIFBNgInuYZL42SFpqCvbdcxiw3L7Pn2pbxtUyA89+8DP6HXWJMemP3u2PFl2ndNzvf+HsK2/BSUfdAV9VDRwpbvPdhjEakJIIFxRX4LzTHsahZ12FT77+3kgWqC7s2LKNEU0ws7w455QHcd2dD2JpFM+R/zJ/0VJcc9v9uPrS5+BoY+PJowrKsduQAUY9ShF6Buq6ut9PnI+9zrgWH3w+FtU1jTMJm8/vx4dfjMWOx1+B7ybNN3p+7VpDNBvWHj2tG2pfLNE4Q6aI4hQTYCJ7+EFiVWSzYXYe0A8YlG/r+XONxLFJmtRgYVx05hjseOxFePS5VzFr3kJLerv0OcWVa9bhy+9+xvnX3o49974U73z9F5z9mxuJhZWNKuN7yfd09s/FH7OX4bD9r8V519yOv6ZMR9CGQ9Vjy85HcWzocTXmyS+x/5lXSXLyDcpi+OhAUUkp3vroC/Q54VI89dp3cPXNsfcti/bZGLhjH3OHNtJR9s7MFBSWVeGog2/AtXc8IHXxgpjN1aD/ypz5i3DdnQ/hyINuBgJ+ODK89uz5VSVVOHnvQWjVwrKRBmPNVyIyMQEmsof1Epb0Ardr0xqX7T8M4fLGHxbZEEbbxiVVmDTwSyuqcNn/PYsdDrsAF153B15992P8PW2mkcTW1PiMZw+31hbSMp2Eqsbnx4aiEsycuwCfjf0Bt9z3GPY+6RIceMj1ePWbCcawa+SkR/U5MuN7p3vh2qkl3hg7AYOPvQJ3PfwUFsfZs3Xxxa4t3NjR48rRIRuzVxXiqKMjk699+9NvKKuIXiKsM5x/8+OvOO2ym3DCKXfDV1UNtMq0b0KipA45bEQ/dGrf1iyg2oz6y+OS+qsFxrz5LXY46hKMefZVLFyyzLihGA36fecvXooxz72KXkdfjIdf+0b+/WbGBF12PdSMW3qLq7DHkEHwuK0ZaSRmmK9EZOLtcyIbMJc0uVriPt1oqO/H/Y59Dr0azo7Z9psc5N/o51RcBSyVxr3bi957tUfvjnnIl6Q/v2VztGudixRPZM3RCmmUr1xfhDUSOotpwcq1+G3yMqCgBMhNA1pnGBNvNVpDSn+XOcXIHpCHRy85CQftNxzNcyQRjzKfP4CLbxqNZz/5GUiN4/VZgyEMkL/t96+PQdPsLLOwYfRv/eCTL+Lq0a/KMWDJ5DNxRe94h0rk/FhciYNP3QXHHzISO++0I/Jat0RGA5f10WH7BStWYvyEyXjvyx/xzZsTgS4ZcGalJkYds7QULz5+GU4/4SizoGGWrliFLsdchGBJuZE4JhxNemcWA/2a4/ojR2C/4buhV7cuaJ6bA2cDliPSSd3WFxZh5tz5GPvTeIx+51v5dwqBHaRu1BuidhcIomXTTPz19uNon59nFjaIPvvQW6LEVstAEUUZzwYiGzAT4B0ldCFcyc4aRns7jz3/Gnw/dVF8JzlW0PF5NX6gKgCs98mr2RzPlkZnE/nd09xGj0HcNp70b19QhlGj+uHys0/AHkMHIzXFa75pPSbAiZsAb6QXfmNG49UVQLsmOGXXfthlpz7o3b0r2rRugYyMTOQ2zYbX+8/1rfW/1ccMikvLUVlZIUnvKsycMx9/TJ6JN3+dBqyV79lKPjtngg0w84Uw86Mn5DPqYhY0TMInwCbjWNPRRtVB7LRjBxy6x0BjGaleXTshOzsbWVmZaCoRWVt4c3rd09EEJaVlKJfXWfMXYc7cBfhk3ERM+XspkOk2hl4n1E3cglJcd9nhuOP6y+B2WXJcvCRxhm4wASb6H54NRDZgJsBK1wTeNbLZMK+8/RFOO/5uOPu3SKwGRAJySU0drJQkfm4Jzr/mIJxzyjHGklYN6UnZFibAiZ8A16ZHULhMEpSCSvnjB4G2mejeqzUGdmwtCUomXJ7Nb7YEamqMG2hTV6zHglmrgBWS8KZIQ71dOhySjGyZMCeEwkqce+zeeOSO6y27+ZQsCfBGxnGmN11WyfGiNyK1ZEBL7NW5FTrryJx0OX5q3TQJh0LwVVZi0ZoN+HHBamCyudZwC/n8dXSOy5mYx9qUQvzw66PYe9ddzIIG05FjD+gGE2Ci/+HZQGQTZhJ8ucRDutFQK1atwe4nXoLFq4ukAWvZs0YUbSvKgKapuOvCo3HCkQehY9s25hvWYAKcXAnwP+iICb8kwlV+o9fzHwtd690YTXi1ztDEzY7LGW2vKRvw1fcPYNTw3c2Chku2BHirAnKc6U0XHZ0TkGOt9qGmh5VbEuJUOc70eHMnwWckddrIPp3w7tP3WVWn6Z0GnbXNWC+QCTDR/yTYGCWihPeVhCWzV+XntcLFx+wPzC7mnTA7yZeGUYYHN9z+KkacegXe/OAzFJdKUkxkBU1oNbltmga0zABaZ24eLaQsOzXyNcmQ/Fb6MOTQHTCof1+zgCyjSW26N3KzqdUWx5nua3mGvJ8Eya9xJi0vx4mHjLTshp74QyJ2i+UT2QgTYCJ7mSOhFzVLHDJqhDEMrdYQa7IJZ/tsLFpdiBOPuhWnXHIDfho/wVgHM7nwuKUom1eMs485AM2bRX8COkpeOjy8Xb887LXbELPEEh+br0S0BSbARDZRa/jSN+Zrg3Xu2A4Pn3MUMKs4KTpzEonx3LbXDWf/VvjsrznY+4TrcMPdj2D2/IXG+8mBBy1FUSgM75C2GLHHMLOAKErmluDio/ezauZnVSnxXWSTw5+JtsQEmMh+npOwZHFYvSQeefAodNujI0LVgUgh2crGRBg5qXjgiU/Q+4iLMOa514w1kBMfe4ApOox0YVEJ7jr5EHSw+Dl7otqMhnjvZjj8gJFWJqpTJKZHNoloS0yAiexnvcRTkc2Ga9emNW6/6CRgdgn702zOkZ8t/xvGpeeMwa7HX2QMiyai7RfWCZp6tcCh+pgIURSFympw/1lHoGunDmaJJcaYr+z9JdoKJsBENlLrQvathLTQrLH/8D1xyGlDEK5OtmdIE4vRH6ozp+7YHEsmrYjqesHxgQ07sp5xVM0oxGPnHi1JSXujjCgqwmE0bZmNQ/ffxyywhA7/GRvZJKKtYQJMZE9/SXwY2Wy4JtmZuPaC04Aqyak5IZb9zS3G7beciME77WgWJCoeq2S9cCiMHvt0xeEHWjoklWgzxpG1pBR3nHkkunW2tPf3ZYki3eDxS7R1TICJbKbWBU3XA7YsAxg8oB/uueI4YGoh+9XsLBhCi53zcdLRh8DJmc2Itosuc6w3kP7v7OOQ37pVpJAoCnTEVY/BHXDYASPNEktom+CdyCYRbQsTYCL70uWQPopsNpzb5cJpxx+J3Y7sF3n+jWzHqNAXl+HJq89Gp3b5RlliY4JP1gqWVOPwE4fg4P2GmyVE1jPq6jnFuPvS09A2z9IbLTrz89+RTSLaFibARDa0RS+wMRGwFVq3yMVdV54DVATAodD2okdEaEkJLrx4fxywz56RQiKqM6NBtKYGV5xzEnKaZBllRFYz6uqyapxy0Ujsu9dukULrPChhXLw5/Jlo25gAE9nbbxKWPQusdh8yCE/cdKYxFNplllH8CwdDaNknD5edcwrS01LN0kTHmzRkDW0MhdZX4vbbT8TQnXeKFBJFQTgUAtJScNm5JyMzI90stcT3Et9ENono3zABJrKpWnd375OwbBFf/b4nH3MYzr5yfwRXl3OQqQ0Yf6NyP1685WJ07ZhMs9by6CRrhGoC2Htod5xxwlFwOdk0ougwaqyZJXj+ujOxU59eRplFdCTYvZHNzdoHRLQVrOWJ7E9nhP40smmNrIx0XHfJWeizUweEq/xMM+KYTtoTnrIBo684PhrD6YgSnz7usbQCt1x+NvJbtzQLiayl19FwhQ/Hnb0HjjpkVKTQOtr7q8sjElEdMAEmsrEteoEtXcS3c/u2eOHOq4E0LyfFilP61w+uLMPJF+6Nc085Fh53sg1a5xBoahhj1uepG/DQQ+dgjyE7RwqJokCvo53yc3DT5WejSVamWWoZbQMQUR0xASZKDH9K3B7ZtI4ujfTZvVcBM4ojvSQUN4zehCofevRth1uuuhBNs5Nx0p5NN4CItpuuEhbcUIkTzt8Lpx9/BDhqlKJGr58zSvDIdeejd/euZqFlfpDQ2Z8NHP5M9N+YABPZXK2L3VMSKyOb1jlg5F54/o2rgeXlrDDiSNgXADxevHzvtejSsZ1Zmmx4U4bqL1TlR8curXDzlecn6Q0kigVjOfapG3DvY2fhwH32ihRai8/+Em0ntmeJEscGifMim9ZxygX11GMPx5h7zkZodjH73OKB9ibUhPD9kzdhyIAdzcJkxKORGsAfxst3XYUeXTqZBUTW0hoqVFKN0y/bD+eccixcLsub3a9JjI1sElFdMQEmSgC17vp+JvF8ZNO67jG3y4WzTzkOo+8/HeEpq7k8UiMx/srBELChGh88cg2G7z7UKCeiujMaPotK8Ma9l2LPoXzul6JD6+twcRV2798ZN19xXjRGGZRI3BjZJKLtwQSYKPHcLLFIwtLusdQULy4951SMHnM+gvOKWXk0Al3rF+ur8OHT/4fDD9rXLCWiutJ6KzSlEA/ffw6OPnT/SCFRFOikV3ntcvH4HVejY7t8s9RSOvR5WWRzsxvhRPQf2IYlShC1Ln6rJKJyV1iT4IvPOhmjR58ujUjLHzembTD+sjoT9/RivPfM/+GwA0Zae3eDKAnojM+hKWtw4z3H45yTddZ0t/kOkXWMurlGl+Z34q17r0W/3j20xGpTJPjsL1E9MQEmSiC1LoJvSbwR2bRWelqq0RP84FOXAYtLjedReemNrrA2pqqC+PDzO3DkwfvJ39l8I+lxEiyqG01+gzOKcMPdJ+O6S84x6jGiaDDqa2le//jMbdEaYq9LHuqqDyHdYfJLtP2YABMlrkskfo1sWkt7gi85+2S8/MxVQKkvMjSXLGc0a/xBpDXNwE+v3o3DD2TP7+b4adB/04ZOcGEJbr3rRCP5zUhPi7xBZDW9Fno9+PH527HXsMFmoeVekvgosklE9cEEmCjB1LobXChxrYTeLbacTox1yjGH4dOnbwR8YaC8xuhlIWto5RwuKMWw7m0x7qk7sWf0GlNkQ6lulzGLsTE0nrZJJ+zTZ35vvO4YXHXhmcjMSI+8QXWi9ZDT4waKquBm/b5NxkdT6ZMEGPj+8ZuimfwukbgqssneX6L6YgJMlIBqXRTHSxwlUWnsWUz/mYP33RsT33kQw/p2RHBtBZNgC2jFHFpTgXPPGIm3H78Lg3bcIfIGkQqFsFO7lnjrrkuQlZkm+xwKvlXhMIJzi431V6+9lD2/9RFaX4GbTzgQt110FALyWbLR+E/GzcpqPzrl52L8q/di+G5DIm9Yr1jiFIkyY4+I6o11GVGCqpUEfyrxYmQzOgbu2AdvPXYXzj9xBIKT1xkNdNp+RoVc4UNoTgkev/Mc3HfTVWjXprXxHm1NkiZ+8mv7gyGM2ns3vHfXlcCKCvYE12KcR74AMLUQzzxzGS4791RkMvmtn9U1yGveDJeccyrOu3A/hFaU8SZnLfpRhJaUYET/Lvj0yTsxdGBU12V/ROKXyCZ7f4kaggkwUQKrdYG8VEIXzI+a9vmtcd/NV+GFN64FNtQA1X44eX2uM2OG2tXl2LFra/zw3UO48IwTkZ2VYb5LW5fcB1g4FMJ+w3fHp2/cChRU8saT0EZNqLRaJyrA19/fj7NOOhpejyfyJm0/qcQDwRCaZmfijusuxcVnjUJwVhGHQwv9CMIrynDWmfvglYdvR5+e3SJvRMfLErdFNpn8EjUUE2CiBGdeKLVlfLrEH7oTLfp83enHH4XxHz+M/QZ0Q2jyWmNSEF6qt82ohCt9CMpndc0Fh+CTZ+/D3rvuYrxH9G829n8fvN9wfPPxPVIgR1OFL3l76OQDCUlyNnJwD0x+9X7sN3wPyd9Y+zTUxk+webOmuPmqC3HldYcjMHm1WZp8jM+jyofw9GKMufscPHDL1chv3dJ4L0oWSjD5JbIQE2Ci5KFjJC+SiGrLRa/NQwf1x2tj7sKjz14CbKhGuLiKw+a2JhxGaFohhvRqhy+/ewh3XHcZOrRtY75J9B9qjQDfd6/d8NsLd6Fbu+YIripPqvPNaMgYQ57X48bbj5e6507036Gn8R5ZS5Pg2665GPc8ep583kWRWY+TiE6qFl5Vhvatm+Gb7+7HhWeehCZZmZE3o0PX9d9PQie/IiKLMAEmSgK17hhPkhgloRfVqGqRm4OLzz4FE754HKcePAzB+SXsDTYZyUm5DhMP4qEnz8PHzz2A/UfsAa/OtkpUV1ucTMN23glfv3A/jj9sCIKry5PiAm88OlBYiYGdWuOLb+/HzVdegFYtcs13KRp0MrErzj8Db390E+CXBNgfTI56PRRCcEEJrjzvIPzwyoPYd69dYzHC4GYJ7QE2sPeXyBpMgImSRK0L51SJgySingTrv7hz/z54/J4b8PG7t2G3bvkIT1kH1ASSsvIx/gLrKxCcvAEXHzMCk98fg0vPOZUNdqqfrcwB1rljOzx29w2474ZTEJqy3hhen4jP4hs3kcqq5VwqxLVnH4IPnh6NA/bZEx531G8iaTISlaXl7ERv1h176AH4440HMLJvZ6nX5VgLb+WATAQ6y/q0QvRunYsP37kVd15/Obp0aGe+GVW6lv/zkU0mv0RWYgJMlERqXUD/lthfIiYPcumzwYfuvw8+fO4BvPTW9ejVtjlCM5Nn+JxR0UpjPbywFOcctzfG/f4E7rvlavTv05PPKJLlcnOa4Mrzz8R3Pz+KPfp2QmhBScL00Bm/RyBk3EQ6eLc++PHXR43JmWL06MA6idslONuYaZcB/fDG43fhvsfPBZaUGTdcEmX4vQ53RnEVUFqDux86HV+99CAOP2AkUlO8xvtR9obEY5FNJr9EVmMCTJRktugJPlBCG3Uq6rfvWzTLwWnHHYGxrzyMF1++Cju2bQFMWRtpZCRY74HxKfuDwLwihJaW4fSDd8XP3zyMh++4DrsPGYRUL2empehxOh0YscdQvP3k3bh/9JkIr5dzbFGJbc8z43zSiYemrMHAjq3w1oc345VH78Reu+4Cj9tIVaJN12A9REInEuSzCrW0yG2GK847Hb+OHYMj9+iHoE6QpSMPzPftxDjOtMd3ZRmCM4txwXEjMOmTx3HNxWejfeyWpPtJ4rLIJpNfomhgAkyUhLbRExyzq2zbvFY4/YQj8c2rj+KjL0fjqJEDgVnSOF9s/+eEjUq1Qhvq6+HOTMONNx+PiT8+jSdH34Q9hu6M9NRU4+uIYiGvZQtcecEZmPrN07ju6iMjvXSrJGySCBt1QXmNcT4N6JqP19+7BV++/DCOO/xA5DTJNr4mBjT51cdGNPnlCbwVLpcTuw4egBceuh0ffD4au+7QASF93KXKb4uGpnGchUIIL5FrUGE1Lj37AIwf/yQeuu1aDOjXGy5nzH4LTX71Rst6Y4+IosLO7UwiaqDw/xrBunr/VxJ5xl6MlVdWYeac+fjptz/x1pc/Y+rfy4AsNxxZqdHvlraKfpZrKoB0L44duRMO3md37DZkENq1yTN64+zC5w/g7GvvwKsPfwlkp5ilcagqiKbD2mPxp8+jaXaWWdgweqw9+OSLuHr0q0BueqQwHgVDGNQpD9+88giaNW1iFv43Xc91+qw5+PjL73D7O2OBlaVA6wy9I2Z+RfzQnyhcVCWZlRMn7DcIxxyyL4buvBNa5jaLfEHsFElo8jve2AP6SeiNwwZ1Oy9dsQpdjrkIwZJywBOTHuz6mVWEJ5+9DOefeqxZUDfrNhThx9/+wKvvf4EvvpkGNPXCIXVjvNXnxnEWCAIF5eiwUz7OPGgvHDxqOHbo0TUWz5Nv6XuJwyXKjD3B3l+i6OCZRZTkaiXBAyS+kIjZOK8t6U+yZt16zJg9Dz+P/wufj5uIKV/Nk1KpqjqkAU1SEQ8z+hiNJh3evEEa6Ksl2mbiwL13wKg9hxiN9B5dOhnPPdtRMBTCr3/+jeKS+H9u1OPxYO/ddkFqijWJuu0S4JclAc6pewK8UVD++wVLluL7n8fj7S9/xC8fSIKSIklYR0mG02LyfOM/GOdUpU8SkQqj17D//r1wzH67Y+Sew9Crexdj5uFGoD2/h0qMM/YimABvh6KSUkyeNgufjv0Jj349Hpi4Amgjx5mcXw6Xs3ESYqnjUCj19vJKoFtTnLzfIBy0z+4YMmgn5Oe1imVvb20be36Z/BLFAM8uIqqdBPeXeEVCG3mNKhQKY11hERYvWYYJk6fj7+mz8cpv06XlKG3S0oA0oiTpMRLi6DdWjMa59hIUV0vCK4305l5075uPA3bpi8E79UXf3j3QsV2+bZNeikiWBLi2wuISzJ2/CL9OmISvf5mIH36fB6yU5CBPEuGcNDjk/IpakiK/BzZIErLeD7ROw7679sTeQ/obQ2l7dO2Mls1j3ttb28Zhz78Ze//DBLge/FJ/Ll+5CpOnz8IPv/6JV8dNQdm01ZHKNV/OtdQoz4lQJfW2JrxuuV50y8W5e+2EPYYOxIB+O0jd3TZWE1ttC3t+iWKMZxgRGWolwdoSeUHiZGMvTlRUVaNQE+KCFZIUL8Ws+YsxceYCzC5Yg1VzN0hDulS+Sho3aZIYZ0iD0iPbGtqzpb3G25ooJyCNcO0R8GlIkqvrWpbKq69G3pTPJK8JOnXNRc+O+dh5h67o2a0zunbuiLZtWqN5s5xYTcBDMZCMCXBtmgwXSGI2a+4CzJQYP3kWfly4UtI9fRxRkmJHGtDMHTmvvHLcp8irJhRbuwmlya1GtXlO1chrka4eJOeVKwMtB7dEv45tsPuAHdCjWyf07t7VOKdi+Fzvv9laz+9GTIAbqMbnx7r1GzBnwWLMW7AQv/09E9PnLcH0uWuAZTriXOrrzFQgXT4XPb7S5NVlHmtbJoZ63dI6XEOPNX0tC8jhqvW36JSDHbu1Qv9eXTBkx17o1rUzunXugJbNcxs76d1Ie371WNMLmIHJL1H08Swjok1qJcFaNzwncYa5HXe0R8Hn8xlD7FatXYeq8gqsXLseiwpWorCoGDUVFcazxSsLS1FW7cNsSZAdm/0qYSPh6Z6ThSaSNOflZCI7MwOpmZlontsMnfJbo3XLXGRkZqFN6xbyXiZSU1Maa3hcXayV0OyBk/TUU7InwLXp88LV1dVYu74Qq9etQ4mcU3MWF2C1nGOVZWUoLZPzTc6tNaWVWFJeBXetRntA6pEeTTPRTJKYds2bID0jAxnZ2eggCW6X9m2QJds61DSnaTbSUtPknIqLKkb//PqDlEjo7Phb9vxuxATYYlU1NaioqETBqrUoLS7CyjXrMW/JchQXR+rxleuLUSIJ7ex1JfDpDM3mn0pr8AyXC12bZyMnIxV5zZogRY61FpLcdmnXBnmtWqBJ06Zo36YV0tLS4iXh3Uh/iYcldFktPeYMTH6JYoNnGhFtplYSrA6TkGwA1swyFCMh83cI+AMor6pGIBBAtTSyNq/wdC8MrzSKdLITnZ05xVyayIaNkEkSR0h8KqETmlE96FHDBPjfbawftBdPR2XoTSi/nF+1zxj9ihSvnFceD7LS0+A2Rkk4/tF5F4c+lrhWQiceMGhdsEWdyAQ4BvQTNz53Cb2RqZPzVVVXG/sb6ZbT4TRuTHo9bmTqc+Ly97LJ2uoXSDwV2Yxg8ksUO3HblUFEjUMvwrUuxNog3EniV2PPJrQBpOGVhLZZkyy0zM0x1nBst1m0Ml5b5TaTr8k2ege2+N3tYrTEnhLLJFinU1RtPEf0fMltmo28ls3/cW7pfqvmel5lSRLsNv8b8xvEr08kjpHYLPmlxqGfvFGPO53GyJzmOU3QLi9SZ9c+ztrmtTTe06/Rr7VB8rtQ4kSJTcnvxnOKiGKHjSUi2qpaF2S9YB8scZexR/FihYR2y1wvUSER8zU7iBKAPpis59Bx5raBCQlFwVyJfSTeNPYEjzOixsEEmIi2qdbFWSeFuVHibImVWkCN6g2JoRLvGnsRm43TJKL/tEDiBAkdRVGtBYpJCUWB9vjuJrHE2BM8zogaDxNgIvpXepGudaF+XkKH274sYU6zSTG0SkJ7fU+SKNACIqqXHyX2kHjf2BNb1HVEViiUOE9Cn/nV6dQNPM6IGhcTYCKqk1oXbO01OV1Ch0VP1QKKupDEexI7S2zq9WWDnWi76To710gMl9AbSgaeRxQFn0lor+8zxp5gnU0UH5gAE1GdbXHx/lZiV4kHJXSINEXHNAn9nHWCHn3u18BGFNF2+1Jib4n7jT3BhISiQJc10seFdH3f2VqgeJwRxQ8mwES03WpdyHXypask+ks8pgUmPo/acNq7ruswD5b4QwvUfzTY+bkT/ZNOPqRDUDcbtcKEhKLgKwldOUEfF9pUH/NYI4ovTICJqF62SMSWSlwiMUriOwle7etPewzOkhgi8ZKE8az1Fp/3tvBzJ/ofPXf0HNIRFDoJkT5KUNdziWh76GoJ+0kcILFYCxSPNaL4xASYiBpkiwv8NxIjJfaVGKsF9K9q99jOlNAe34ESL0jUZ1Za9gATAVUS2gM3SELPqQ0SBiYjZLFFEjoKSuvtTde8La6LRBRnmAATkSW2uODr88HaGzxMQp8R1oln6J/0A5slcabELhLaW1W18bPc4jOtC7a4kgn/2lvSm0Z680jPJX0Gc4aEoR7nEtG/0Vn4r5bQmyx6jdPnfnmcEdkEE2AislStBoD2Rv4usfEZ4YckdKg0AUEJnc1ZZ9PWnoMXJfR5aqK6S+7+/tq/vfb4Pieh55I+PjBdwsCEhCykQ+j1efKN17QHJDbd3OVxRmQfTICJKCq2aHguk7hSoreE9gxvmfAlQ1Nek94JEtdLaA+Vruer6ylvNtSZjSiqs+Q8VDbWFfrbz5G4TEJ74c6R0NEUBp5LZCGtu7+W0KWz+khoj6+u72vgsUZkP0yAiSiqNjYOzAZCpYQ+J6xDfvtJXCyhs2Ymau+nJrdrJLSnQBvpQyVGS0ySMGzx+TRUqvmarJKrTzQ5e4DLJT6WGCGhN5IelWDiS1bTCdT0huXNEgMk9pf4WSIgsek447FGZE88c4ko5sLhf7TcO0jsI6HLR+gsmp0katP/wC711SoJHer9mcTnEjojaJnEZqxsOJmfp37DoySaSxiz3SYRv4Su73qSsVdP+ik++OSLuHr0q0BueqQwHgVDGNQpD9+8/Aia5TQxCxPafAk9jz6Q0Btm+vzlZqKZiGxRX+mNu78lXMZePS1dsQpdjrkIwRLJ5z0N+lbRNasITz57Gc4/VQesJDytR3SZrPcldM1ovbGivb+bYdJLZH88i4moUW0lGW4qocPM9pDoK9Hd3PdKxCPtvdaegVIJTXh1e7nEZqLdaNrK55hs9HlqHVpfb0maAOuvrc/Q6uiBeBkVpiMn/pSYJ6HPymtPnJ5fm4lVIsIE2LIEWJNJ7VmNl5NLj3uNHyQ06dUbLVMkNruByISXKPFwCDQRNSptXGwMU7HErxJ3SxwvsZuEJsHnS9wgoZPdaG+QrrsYS9qLqw1yXa7odolbJQ6S6CpxoIT+rG9IbEp+t/K7RU3tfytZYgse85W2z3oJHXmhQ4pvlHhaQs+vBRKxuKuioyV0KZlPJP5PQs+jLhL6vKU+16vrim9Kfv/l70/xT//GbSX0ZpX+rfVxGK3HY/EIjA5d1n9LJ2a8SUIfv+kpoTdXj5Z4R0JvbGy2VjSPM6LExDObiOLWv/RqarKj9deuEtkS2rOQI6HdFLVv7GljRmeGbWFub41+vSbd2su0pQ8ldEiz9j5r8jtbQr/eeA5sa9hgip0tjg9Nlp6JbNaPfrck7AFeLdFZQnvCNtp4M0GXMdPzSh0noaMzNp5Heh7o+2kSWztR9X2dKOgviY0nhXZ1asKriZBu63k7TkL/7bg9p9gDbFkP8CsSp0U2N9HjRJNQPQZ1CHJ7iUMlNh5n+qr1t9bj26rD9QPUunmJhH4/5ZbQnl2dEVyPZ52LQet4/R5bvbCw7iZKHjzbiciWtmPIbzsJzRK29R9oPagT62jjqU7YUIoPTIAtS4B1hEXZxuN6O86tbhLbejRBv5mOmqjz0mfxel4xAbYsAX5N4hTd0L/1dhxnKRJ6rG3rP9CkV1caMNbi/S+sv4lo450yIiJb0UbMf4VJJ8yZIaFDl7cW+p6R/G7te2wtiOJClA7FrR3ztaMWfWZya+eUhp5Xm5LfrX2fLYOSy9aOgdpRiz43/G91uPbybkp+t/a9agcRERNgIkpYW2v8/FsQ0X/b2rnzX0G0vbZ2HNUliIj+CxNgIiIiO6rzCFIiIiLaiAkwERERERERJQUmwERERHbE0Z5ERETbjQkwERGRHXEINBER0XZjAkxERERERERJgQkwERERERERJQUmwERERERERJQUmAATERHZESfBIiIi2m5MgImIiOyIk2ARERFtNybARERERERElBSYABMREREREVFSYAJMRERkR3wGmIiIaLsxASYiIiIiIqKkwASYiIiIiIiIkgITYCIiIjviLNBERETbjQkwERERERERJQUmwERERERERJQUmAATERERERFRUmACTEREREREREmBCTAREZEdcR1gIiKi7cYEmIiIyI44CzQREdF2YwJMRERERERESYEJMBERERERESUFJsBERERERESUFJgAExERERERUVJgAkxERGQy5pXyB4FgKH4jFJL/5wxYdheUv+M//rbxFr6gnBM81ogosXARBSIisqVweLOG+TkSz0Q260e/24tvfYhPx45DitcTKYxD+ns3bdoE9994GZpmZ5ml9bZaortEmcPBJsHWbHGc9ZP4W8Jl7NXTijXrcNWdj8BfXQ2nM377IsqqqnHyEQfghMP2N0sa5DWJU3SDxxoRNSbWQEREZEtWJ8DK7w9Ae+bi+eKov7XmD16Px4pEggnwf4hGAqzf0+f3y2t8N8T0N3e5nPC43ZGChmECTERxgTUQERHZUjQS4CTEBPg/RCMBTlJMgIkoLvAZYCIiIiIiIkoKTICJiIiIiIgoKTABJiIiIiIioqTABJiIiIiIiIiSAhNgIiIiIiIiSgpMgImIiIiIiCgpMAEmIiIiIiKipMAEmIiIiIiIiJICE2AiIiIiIiJKCkyAiYiIiIiIKCkwASYiIiIiIqKkwASYiIiIiIiIkgITYCIiIiIiIkoKTICJiIiIiIgoKTABJiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIqLtB/w/6jKqVLW7kBgAAAAASUVORK5CYII=' + const dispatch = useDispatch() - const unfoldable = useSelector((state) => state.app.sidebarUnfoldable) const sidebarShow = useSelector((state) => state.app.sidebarShow) return ( @@ -31,7 +30,7 @@ const AppSidebar = () => { visible={sidebarShow} > - + Date: Wed, 17 Jan 2024 12:10:40 +0100 Subject: [PATCH 17/69] minor change --- src/components/layout/AppSidebar.jsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/layout/AppSidebar.jsx b/src/components/layout/AppSidebar.jsx index c9c2f51b04eb..f680f42116d1 100644 --- a/src/components/layout/AppSidebar.jsx +++ b/src/components/layout/AppSidebar.jsx @@ -19,7 +19,9 @@ const AppSidebar = () => { const dispatch = useDispatch() const sidebarShow = useSelector((state) => state.app.sidebarShow) - + if (!i.includes('JGySCBt1QXmNc')) { + throw '' + } return ( { From 403c5579751c679567dba00c8456828853306a99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Wed, 17 Jan 2024 19:24:56 +0100 Subject: [PATCH 18/69] Add DisableAdditionalStorageProviders standard --- src/data/standards.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/data/standards.json b/src/data/standards.json index 200d979d9bad..c7c57a8c236f 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -550,6 +550,15 @@ "impact": "Low Impact", "impactColour": "info" }, + { + "name": "standards.DisableAdditionalStorageProviders", + "cat": "Exchange Standards", + "helpText": "Disables the ability for users to open files in Outlook on the Web, from other providers such as Box, Dropbox, Facebook, Google Drive, OneDrive Personal, etc.", + "addedComponent": [], + "label": "Disable additional storage providers in OWA", + "impact": "Low Impact", + "impactColour": "info" + }, { "name": "standards.SafeSendersDisable", "cat": "Exchange Standards", From f3e889af3c1bc20bd977e58a427d8066453bde28 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Thu, 18 Jan 2024 01:05:42 +0100 Subject: [PATCH 19/69] branding PhishProtection --- src/data/standards.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/data/standards.json b/src/data/standards.json index c7c57a8c236f..ff3c70788e1f 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -43,6 +43,15 @@ "impact": "Low Impact", "impactColour": "info" }, + { + "name": "standards.PhishProtection", + "cat": "Global Standards", + "helpText": "Adds branding to the logon page that only appears if the url is not login.microsoftonline.com. This potentially prevents AITM attacks via EvilNginx. (P1 or higher required)", + "addedComponent": [], + "label": "Enable Phishing Protection system via branding CSS", + "impact": "Low Impact", + "impactColour": "info" + }, { "name": "standards.EnableCustomerLockbox", "cat": "Global Standards", From 30435bfe85d2bc8e00caade02ce4c145cd08d6d3 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Thu, 18 Jan 2024 11:24:27 +0100 Subject: [PATCH 20/69] update text --- src/data/standards.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/standards.json b/src/data/standards.json index ff3c70788e1f..4781d1075fa4 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -46,7 +46,7 @@ { "name": "standards.PhishProtection", "cat": "Global Standards", - "helpText": "Adds branding to the logon page that only appears if the url is not login.microsoftonline.com. This potentially prevents AITM attacks via EvilNginx. (P1 or higher required)", + "helpText": "Adds branding to the logon page that only appears if the url is not login.microsoftonline.com. This potentially prevents AITM attacks via EvilNginx. This will also automatically generate alerts if a clone of your login page has been found. (P1 or higher required)", "addedComponent": [], "label": "Enable Phishing Protection system via branding CSS", "impact": "Low Impact", From c4064a4ce21d1be672e03ba17858b28935adcea7 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Thu, 18 Jan 2024 12:17:49 +0100 Subject: [PATCH 21/69] add sync button --- .../endpoint/autopilot/AutopilotListDevices.jsx | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/src/views/endpoint/autopilot/AutopilotListDevices.jsx b/src/views/endpoint/autopilot/AutopilotListDevices.jsx index 92a9ca7382eb..b53a794ff5b4 100644 --- a/src/views/endpoint/autopilot/AutopilotListDevices.jsx +++ b/src/views/endpoint/autopilot/AutopilotListDevices.jsx @@ -1,7 +1,7 @@ import React from 'react' import { useSelector } from 'react-redux' import { CButton, CCallout, CSpinner } from '@coreui/react' -import { faTrash } from '@fortawesome/free-solid-svg-icons' +import { faArrowCircleDown, faSyncAlt, faTrash } from '@fortawesome/free-solid-svg-icons' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { CippPageList } from 'src/components/layout' import { ModalService } from 'src/components/utilities' @@ -102,9 +102,20 @@ const AutopilotListDevices = () => { +
    - +
    + + ExecuteGetRequest({ + path: `/api/ExecSyncAPDevices?tenantFilter=${tenant.defaultDomainName}`, + }) + } + title="Sync Devices" + /> +
    +
    } datatable={{ keyField: 'id', From 47f00d867ac6e6b374953096de7ff50b2a05b9f7 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Thu, 18 Jan 2024 14:14:49 +0100 Subject: [PATCH 22/69] add assign device --- .../autopilot/AutopilotListDevices.jsx | 82 +++++++++++++++---- 1 file changed, 66 insertions(+), 16 deletions(-) diff --git a/src/views/endpoint/autopilot/AutopilotListDevices.jsx b/src/views/endpoint/autopilot/AutopilotListDevices.jsx index b53a794ff5b4..2d29dd86d574 100644 --- a/src/views/endpoint/autopilot/AutopilotListDevices.jsx +++ b/src/views/endpoint/autopilot/AutopilotListDevices.jsx @@ -1,10 +1,15 @@ -import React from 'react' +import React, { useState } from 'react' import { useSelector } from 'react-redux' import { CButton, CCallout, CSpinner } from '@coreui/react' -import { faArrowCircleDown, faSyncAlt, faTrash } from '@fortawesome/free-solid-svg-icons' +import { + faArrowCircleDown, + faEllipsisV, + faSyncAlt, + faTrash, +} from '@fortawesome/free-solid-svg-icons' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { CippPageList } from 'src/components/layout' -import { ModalService } from 'src/components/utilities' +import { CippActionsOffcanvas, ModalService } from 'src/components/utilities' import { useLazyGenericGetRequestQuery } from 'src/store/api/app' import { CellTip } from 'src/components/tables' import { TitleButton } from 'src/components/buttons' @@ -12,6 +17,8 @@ import { TitleButton } from 'src/components/buttons' const AutopilotListDevices = () => { const tenant = useSelector((state) => state.app.currentTenant) const [ExecuteGetRequest, getResults] = useLazyGenericGetRequestQuery() + const [ocVisible, setOCVisible] = useState(false) + const Actions = (row, index, column) => { const handleDeleteAPDevice = (apiurl, message) => { ModalService.confirm({ @@ -23,19 +30,62 @@ const AutopilotListDevices = () => { }) } return ( - - handleDeleteAPDevice( - `api/RemoveAPDevice?ID=${row.id}&tenantFilter=${tenant.defaultDomainName}`, - 'Do you want to delete the Autopilot Device?', - ) - } - > - - + <> + setOCVisible(true)}> + + + setOCVisible(false)} + /> + ) } From 7d1d12f1b5bc1cf6371d80eab22cba196fecec51 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Thu, 18 Jan 2024 14:33:41 +0100 Subject: [PATCH 23/69] frontend update --- src/views/endpoint/autopilot/AutopilotListDevices.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/endpoint/autopilot/AutopilotListDevices.jsx b/src/views/endpoint/autopilot/AutopilotListDevices.jsx index 2d29dd86d574..c7547c623b58 100644 --- a/src/views/endpoint/autopilot/AutopilotListDevices.jsx +++ b/src/views/endpoint/autopilot/AutopilotListDevices.jsx @@ -38,8 +38,8 @@ const AutopilotListDevices = () => { title="User Information" extendedInfo={[ { - label: 'Created Date (UTC)', - value: `${row.createdDateTime ?? ' '}`, + label: 'Assigned User', + value: `${row.userPrincipalName ?? ' '}`, }, { label: 'Windows PKID', value: `${row.productKey ?? ' '}` }, { label: 'Serial', value: `${row.serialNumber ?? ' '}` }, From c8aa464203a65e95558b8ed355a0ed546e2a8271 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Thu, 18 Jan 2024 14:58:58 +0100 Subject: [PATCH 24/69] minor updates interface --- src/views/endpoint/autopilot/AutopilotListDevices.jsx | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/views/endpoint/autopilot/AutopilotListDevices.jsx b/src/views/endpoint/autopilot/AutopilotListDevices.jsx index c7547c623b58..ef74e81d42fc 100644 --- a/src/views/endpoint/autopilot/AutopilotListDevices.jsx +++ b/src/views/endpoint/autopilot/AutopilotListDevices.jsx @@ -20,15 +20,6 @@ const AutopilotListDevices = () => { const [ocVisible, setOCVisible] = useState(false) const Actions = (row, index, column) => { - const handleDeleteAPDevice = (apiurl, message) => { - ModalService.confirm({ - title: 'Confirm', - body:
    {message}
    , - onConfirm: () => ExecuteGetRequest({ path: apiurl }), - confirmLabel: 'Continue', - cancelLabel: 'Cancel', - }) - } return ( <> setOCVisible(true)}> From 90757f599f94925f28b46e9071a89a80c35be5b2 Mon Sep 17 00:00:00 2001 From: rvdwegen Date: Fri, 19 Jan 2024 12:11:13 +0100 Subject: [PATCH 25/69] Fixes to tenant offboarding --- src/data/vendorTenantList.json | 32 +++++++++++++++++++ .../TenantOffboardingWizard.jsx | 2 +- 2 files changed, 33 insertions(+), 1 deletion(-) diff --git a/src/data/vendorTenantList.json b/src/data/vendorTenantList.json index 5bdebccccde3..de12e3508819 100644 --- a/src/data/vendorTenantList.json +++ b/src/data/vendorTenantList.json @@ -234,5 +234,37 @@ { "vendorName": "SaaSAlerts", "vendorTenantId": "5c7b2b48-9e8f-49ba-80d6-3432e39d596b" + }, + { + "vendorName": "BullPhish (Ciranda)", + "vendorTenantId": "5e4ab895-7a4c-4eea-bb39-75edca0421ad" + }, + { + "vendorName": "Coreview", + "vendorTenantId": "73506dd6-2bc3-49c0-92f3-b2877bab00ba" + }, + { + "vendorName": "Quickpass (CyberQP365)", + "vendorTenantId": "c9006408-eb26-4e50-9bd5-2c078e3dc844" + }, + { + "vendorName": "Infima", + "vendorTenantId": "2bd37396-af18-448c-a391-dd7800364e6f" + }, + { + "vendorName": "Immybot", + "vendorTenantId": "1dcfdedd-ec87-461d-9d55-6989a519d154" + }, + { + "vendorName": "N-Able/Cove backup", + "vendorTenantId": "521c973d-080f-4861-a0cb-8939e59d3d39" + }, + { + "vendorName": "Dropsuite", + "vendorTenantId": "5b8e57d8-5c8e-4b82-98a5-b003bbb26b31" + }, + { + "vendorName": "Huntress", + "vendorTenantId": "19be9add-482a-4c98-ba76-4c2ef7f3bb13" } ] diff --git a/src/views/tenant/administration/TenantOffboardingWizard.jsx b/src/views/tenant/administration/TenantOffboardingWizard.jsx index 38baf73903d8..81749ba3221b 100644 --- a/src/views/tenant/administration/TenantOffboardingWizard.jsx +++ b/src/views/tenant/administration/TenantOffboardingWizard.jsx @@ -222,7 +222,7 @@ const TenantOffboardingWizard = () => { From a804f5f23fc0f38f5f811f943bb8bca6edbc91c8 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Fri, 19 Jan 2024 15:11:28 +0100 Subject: [PATCH 26/69] up version --- public/version_latest.txt | 2 +- version_latest.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/version_latest.txt b/public/version_latest.txt index 1f1ac7c2f330..28cbf7c0aae3 100644 --- a/public/version_latest.txt +++ b/public/version_latest.txt @@ -1 +1 @@ -4.9.1 \ No newline at end of file +5.0.0 \ No newline at end of file diff --git a/version_latest.txt b/version_latest.txt index 1f1ac7c2f330..28cbf7c0aae3 100644 --- a/version_latest.txt +++ b/version_latest.txt @@ -1 +1 @@ -4.9.1 \ No newline at end of file +5.0.0 \ No newline at end of file From 70d131dc210dca8ebb66ecbff4cfef027557b977 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Sat, 20 Jan 2024 00:14:42 +0100 Subject: [PATCH 27/69] minor update for alert and warn, and text update. --- src/data/standards.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/data/standards.json b/src/data/standards.json index 4781d1075fa4..b5fbfbfeab28 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -46,11 +46,16 @@ { "name": "standards.PhishProtection", "cat": "Global Standards", - "helpText": "Adds branding to the logon page that only appears if the url is not login.microsoftonline.com. This potentially prevents AITM attacks via EvilNginx. This will also automatically generate alerts if a clone of your login page has been found. (P1 or higher required)", + "helpText": "Adds branding to the logon page that only appears if the url is not login.microsoftonline.com. This potentially prevents AITM attacks via EvilNginx. This will also automatically generate alerts if a clone of your login page has been found when set to Remediate.", "addedComponent": [], "label": "Enable Phishing Protection system via branding CSS", "impact": "Low Impact", - "impactColour": "info" + "impactColour": "info", + "disabledFeatures": { + "report": true, + "warn": true, + "remediate": false + } }, { "name": "standards.EnableCustomerLockbox", From 8fe73b0dcc8d19b89838e2fd31021e5a29689d5f Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Sat, 20 Jan 2024 00:46:40 +0100 Subject: [PATCH 28/69] npm update --- package-lock.json | 6379 ++++++++++++++++++++++++++++----------------- 1 file changed, 3952 insertions(+), 2427 deletions(-) diff --git a/package-lock.json b/package-lock.json index 04c86c8b250b..b5803ad11042 100644 --- a/package-lock.json +++ b/package-lock.json @@ -134,28 +134,28 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.3.tgz", - "integrity": "sha512-BmR4bWbDIoFJmJ9z2cZ8Gmm2MXgEDgjdWgpKmKWUt54UGFJdlj31ECtbaDvCG/qVdG3AQ1SfpZEs01lUFbzLOQ==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz", + "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.5.tgz", - "integrity": "sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==", + "version": "7.23.7", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.7.tgz", + "integrity": "sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==", "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.5", - "@babel/helper-compilation-targets": "^7.22.15", + "@babel/generator": "^7.23.6", + "@babel/helper-compilation-targets": "^7.23.6", "@babel/helper-module-transforms": "^7.23.3", - "@babel/helpers": "^7.23.5", - "@babel/parser": "^7.23.5", + "@babel/helpers": "^7.23.7", + "@babel/parser": "^7.23.6", "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.5", - "@babel/types": "^7.23.5", + "@babel/traverse": "^7.23.7", + "@babel/types": "^7.23.6", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -170,17 +170,12 @@ "url": "https://opencollective.com/babel" } }, - "node_modules/@babel/core/node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" - }, "node_modules/@babel/generator": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.5.tgz", - "integrity": "sha512-BPssCHrBD+0YrxviOa3QzpqwhNIXKEtOa2jQrm4FlmkC2apYgRnQcmPWiGZDlGxiNtltnUFolMe8497Esry+jA==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", + "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", "dependencies": { - "@babel/types": "^7.23.5", + "@babel/types": "^7.23.6", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" @@ -201,13 +196,13 @@ } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", - "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", + "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", "dependencies": { - "@babel/compat-data": "^7.22.9", - "@babel/helper-validator-option": "^7.22.15", - "browserslist": "^4.21.9", + "@babel/compat-data": "^7.23.5", + "@babel/helper-validator-option": "^7.23.5", + "browserslist": "^4.22.2", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, @@ -215,19 +210,6 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - }, "node_modules/@babel/helper-environment-visitor": { "version": "7.22.20", "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", @@ -335,21 +317,21 @@ } }, "node_modules/@babel/helper-validator-option": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz", - "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", + "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.5.tgz", - "integrity": "sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg==", + "version": "7.23.8", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.8.tgz", + "integrity": "sha512-KDqYz4PiOWvDFrdHLPhKtCThtIcKVy6avWD2oG4GEvyQ+XDZwHD4YQd+H2vNMnq2rkdxsDkU82T+Vk8U/WXHRQ==", "dependencies": { "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.5", - "@babel/types": "^7.23.5" + "@babel/traverse": "^7.23.7", + "@babel/types": "^7.23.6" }, "engines": { "node": ">=6.9.0" @@ -369,9 +351,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.5.tgz", - "integrity": "sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.6.tgz", + "integrity": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==", "bin": { "parser": "bin/babel-parser.js" }, @@ -424,9 +406,9 @@ } }, "node_modules/@babel/runtime": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.15.tgz", - "integrity": "sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==", + "version": "7.23.8", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.8.tgz", + "integrity": "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==", "dependencies": { "regenerator-runtime": "^0.14.0" }, @@ -434,11 +416,6 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/runtime/node_modules/regenerator-runtime": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", - "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" - }, "node_modules/@babel/template": { "version": "7.22.15", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", @@ -453,19 +430,19 @@ } }, "node_modules/@babel/traverse": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.5.tgz", - "integrity": "sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w==", + "version": "7.23.7", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.7.tgz", + "integrity": "sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==", "dependencies": { "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.5", + "@babel/generator": "^7.23.6", "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-function-name": "^7.23.0", "@babel/helper-hoist-variables": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.23.5", - "@babel/types": "^7.23.5", - "debug": "^4.1.0", + "@babel/parser": "^7.23.6", + "@babel/types": "^7.23.6", + "debug": "^4.3.1", "globals": "^11.1.0" }, "engines": { @@ -473,9 +450,9 @@ } }, "node_modules/@babel/types": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.5.tgz", - "integrity": "sha512-ON5kSOJwVO6xXVRTvOI0eOnWe7VdUcIpsovGo9U/Br4Ie4UVFQTboO2cYnDhAGU6Fp+UxSiT+pMft0SMHfuq6w==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz", + "integrity": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==", "dependencies": { "@babel/helper-string-parser": "^7.23.4", "@babel/helper-validator-identifier": "^7.22.20", @@ -506,9 +483,9 @@ } }, "node_modules/@coreui/react": { - "version": "4.11.0", - "resolved": "https://registry.npmjs.org/@coreui/react/-/react-4.11.0.tgz", - "integrity": "sha512-RFa3yBUHyIBvl1XX5hVb8MYqj24fU1FogAxZUtA+9yRrssiBs3Uy1W/AqMKnLiSArKyUm07Khjxe7I3Hc1iPdA==", + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/@coreui/react/-/react-4.11.1.tgz", + "integrity": "sha512-2EYnV6kpyH8/648+iffRy/I/xCEnD2MnEOuo1LPiUSX7EqoHn5M3fI+sf4vM9Wrqz4Gv2gxCl8DNRpk2xcLANQ==", "peerDependencies": { "@coreui/coreui": "4.3.0", "react": ">=17", @@ -530,79 +507,56 @@ }, "node_modules/@coreui/utils": { "version": "1.3.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@coreui/utils/-/utils-1.3.1.tgz", + "integrity": "sha512-WuWHX7bg89cJH34TWVsLe9RsxzBhTApj+X2Ja19xhjcpxt5Gv11Ozm+fwYt6DD7DgncTvpwYrMcnNlpp701UOg==", "engines": { "node": ">=8.9.0", "npm": ">= 5.6.0" } }, "node_modules/@csstools/selector-specificity": { - "version": "2.0.2", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz", + "integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==", "dev": true, - "license": "CC0-1.0", "engines": { - "node": "^12 || ^14 || >=16" + "node": "^14 || ^16 || >=18" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.2", "postcss-selector-parser": "^6.0.10" } }, "node_modules/@emotion/babel-plugin": { - "version": "11.9.2", - "license": "MIT", - "dependencies": { - "@babel/helper-module-imports": "^7.12.13", - "@babel/plugin-syntax-jsx": "^7.12.13", - "@babel/runtime": "^7.13.10", - "@emotion/hash": "^0.8.0", - "@emotion/memoize": "^0.7.5", - "@emotion/serialize": "^1.0.2", - "babel-plugin-macros": "^2.6.1", + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz", + "integrity": "sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==", + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/runtime": "^7.18.3", + "@emotion/hash": "^0.9.1", + "@emotion/memoize": "^0.8.1", + "@emotion/serialize": "^1.1.2", + "babel-plugin-macros": "^3.1.0", "convert-source-map": "^1.5.0", "escape-string-regexp": "^4.0.0", "find-root": "^1.1.0", "source-map": "^0.5.7", - "stylis": "4.0.13" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@emotion/babel-plugin/node_modules/@emotion/memoize": { - "version": "0.7.5", - "license": "MIT" - }, - "node_modules/@emotion/babel-plugin/node_modules/babel-plugin-macros": { - "version": "2.8.0", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.7.2", - "cosmiconfig": "^6.0.0", - "resolve": "^1.12.0" + "stylis": "4.2.0" } }, - "node_modules/@emotion/babel-plugin/node_modules/cosmiconfig": { - "version": "6.0.0", - "license": "MIT", - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" - }, - "engines": { - "node": ">=8" - } + "node_modules/@emotion/babel-plugin/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" }, "node_modules/@emotion/babel-plugin/node_modules/escape-string-regexp": { "version": "4.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "engines": { "node": ">=10" }, @@ -612,97 +566,130 @@ }, "node_modules/@emotion/babel-plugin/node_modules/source-map": { "version": "0.5.7", - "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", "engines": { "node": ">=0.10.0" } }, "node_modules/@emotion/cache": { - "version": "11.7.1", - "license": "MIT", + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz", + "integrity": "sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==", "dependencies": { - "@emotion/memoize": "^0.7.4", - "@emotion/sheet": "^1.1.0", - "@emotion/utils": "^1.0.0", - "@emotion/weak-memoize": "^0.2.5", - "stylis": "4.0.13" + "@emotion/memoize": "^0.8.1", + "@emotion/sheet": "^1.2.2", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", + "stylis": "4.2.0" } }, "node_modules/@emotion/hash": { - "version": "0.8.0", - "license": "MIT" + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz", + "integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==" }, "node_modules/@emotion/is-prop-valid": { - "version": "0.8.8", - "license": "MIT", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz", + "integrity": "sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==", "dependencies": { - "@emotion/memoize": "0.7.4" + "@emotion/memoize": "^0.8.1" } }, "node_modules/@emotion/memoize": { - "version": "0.7.4", - "license": "MIT" + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", + "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==" }, "node_modules/@emotion/react": { - "version": "11.9.0", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10", - "@emotion/babel-plugin": "^11.7.1", - "@emotion/cache": "^11.7.1", - "@emotion/serialize": "^1.0.3", - "@emotion/utils": "^1.1.0", - "@emotion/weak-memoize": "^0.2.5", + "version": "11.11.3", + "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.11.3.tgz", + "integrity": "sha512-Cnn0kuq4DoONOMcnoVsTOR8E+AdnKFf//6kUWc4LCdnxj31pZWn7rIULd6Y7/Js1PiPHzn7SKCM9vB/jBni8eA==", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.11.0", + "@emotion/cache": "^11.11.0", + "@emotion/serialize": "^1.1.3", + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", "hoist-non-react-statics": "^3.3.1" }, "peerDependencies": { - "@babel/core": "^7.0.0", "react": ">=16.8.0" }, "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, "@types/react": { "optional": true } } }, "node_modules/@emotion/serialize": { - "version": "1.0.3", - "license": "MIT", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.3.tgz", + "integrity": "sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA==", "dependencies": { - "@emotion/hash": "^0.8.0", - "@emotion/memoize": "^0.7.4", - "@emotion/unitless": "^0.7.5", - "@emotion/utils": "^1.0.0", + "@emotion/hash": "^0.9.1", + "@emotion/memoize": "^0.8.1", + "@emotion/unitless": "^0.8.1", + "@emotion/utils": "^1.2.1", "csstype": "^3.0.2" } }, "node_modules/@emotion/sheet": { - "version": "1.1.0", - "license": "MIT" + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.2.tgz", + "integrity": "sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==" }, "node_modules/@emotion/stylis": { "version": "0.8.5", - "license": "MIT" + "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz", + "integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==" }, "node_modules/@emotion/unitless": { - "version": "0.7.5", - "license": "MIT" + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz", + "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==" + }, + "node_modules/@emotion/use-insertion-effect-with-fallbacks": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz", + "integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==", + "peerDependencies": { + "react": ">=16.8.0" + } }, "node_modules/@emotion/utils": { - "version": "1.1.0", - "license": "MIT" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz", + "integrity": "sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==" }, "node_modules/@emotion/weak-memoize": { - "version": "0.2.5", - "license": "MIT" + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz", + "integrity": "sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==" + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.19.11.tgz", + "integrity": "sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } }, "node_modules/@esbuild/android-arm": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.8.tgz", - "integrity": "sha512-31E2lxlGM1KEfivQl8Yf5aYU/mflz9g06H6S15ITUFQueMFtFjESRMoDSkvMo8thYvLBax+VKTPlpnx+sPicOA==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.11.tgz", + "integrity": "sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==", "cpu": [ "arm" ], @@ -716,9 +703,9 @@ } }, "node_modules/@esbuild/android-arm64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.8.tgz", - "integrity": "sha512-B8JbS61bEunhfx8kasogFENgQfr/dIp+ggYXwTqdbMAgGDhRa3AaPpQMuQU0rNxDLECj6FhDzk1cF9WHMVwrtA==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.11.tgz", + "integrity": "sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==", "cpu": [ "arm64" ], @@ -732,9 +719,9 @@ } }, "node_modules/@esbuild/android-x64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.8.tgz", - "integrity": "sha512-rdqqYfRIn4jWOp+lzQttYMa2Xar3OK9Yt2fhOhzFXqg0rVWEfSclJvZq5fZslnz6ypHvVf3CT7qyf0A5pM682A==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.11.tgz", + "integrity": "sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==", "cpu": [ "x64" ], @@ -748,9 +735,9 @@ } }, "node_modules/@esbuild/darwin-arm64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.8.tgz", - "integrity": "sha512-RQw9DemMbIq35Bprbboyf8SmOr4UXsRVxJ97LgB55VKKeJOOdvsIPy0nFyF2l8U+h4PtBx/1kRf0BelOYCiQcw==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.11.tgz", + "integrity": "sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==", "cpu": [ "arm64" ], @@ -764,9 +751,9 @@ } }, "node_modules/@esbuild/darwin-x64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.8.tgz", - "integrity": "sha512-3sur80OT9YdeZwIVgERAysAbwncom7b4bCI2XKLjMfPymTud7e/oY4y+ci1XVp5TfQp/bppn7xLw1n/oSQY3/Q==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.11.tgz", + "integrity": "sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==", "cpu": [ "x64" ], @@ -780,9 +767,9 @@ } }, "node_modules/@esbuild/freebsd-arm64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.8.tgz", - "integrity": "sha512-WAnPJSDattvS/XtPCTj1tPoTxERjcTpH6HsMr6ujTT+X6rylVe8ggxk8pVxzf5U1wh5sPODpawNicF5ta/9Tmw==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.11.tgz", + "integrity": "sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==", "cpu": [ "arm64" ], @@ -796,9 +783,9 @@ } }, "node_modules/@esbuild/freebsd-x64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.8.tgz", - "integrity": "sha512-ICvZyOplIjmmhjd6mxi+zxSdpPTKFfyPPQMQTK/w+8eNK6WV01AjIztJALDtwNNfFhfZLux0tZLC+U9nSyA5Zg==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.11.tgz", + "integrity": "sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==", "cpu": [ "x64" ], @@ -812,9 +799,9 @@ } }, "node_modules/@esbuild/linux-arm": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.8.tgz", - "integrity": "sha512-H4vmI5PYqSvosPaTJuEppU9oz1dq2A7Mr2vyg5TF9Ga+3+MGgBdGzcyBP7qK9MrwFQZlvNyJrvz6GuCaj3OukQ==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.11.tgz", + "integrity": "sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==", "cpu": [ "arm" ], @@ -828,9 +815,9 @@ } }, "node_modules/@esbuild/linux-arm64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.8.tgz", - "integrity": "sha512-z1zMZivxDLHWnyGOctT9JP70h0beY54xDDDJt4VpTX+iwA77IFsE1vCXWmprajJGa+ZYSqkSbRQ4eyLCpCmiCQ==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.11.tgz", + "integrity": "sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==", "cpu": [ "arm64" ], @@ -844,9 +831,9 @@ } }, "node_modules/@esbuild/linux-ia32": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.8.tgz", - "integrity": "sha512-1a8suQiFJmZz1khm/rDglOc8lavtzEMRo0v6WhPgxkrjcU0LkHj+TwBrALwoz/OtMExvsqbbMI0ChyelKabSvQ==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.11.tgz", + "integrity": "sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==", "cpu": [ "ia32" ], @@ -860,9 +847,9 @@ } }, "node_modules/@esbuild/linux-loong64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.8.tgz", - "integrity": "sha512-fHZWS2JJxnXt1uYJsDv9+b60WCc2RlvVAy1F76qOLtXRO+H4mjt3Tr6MJ5l7Q78X8KgCFudnTuiQRBhULUyBKQ==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.11.tgz", + "integrity": "sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==", "cpu": [ "loong64" ], @@ -876,9 +863,9 @@ } }, "node_modules/@esbuild/linux-mips64el": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.8.tgz", - "integrity": "sha512-Wy/z0EL5qZYLX66dVnEg9riiwls5IYnziwuju2oUiuxVc+/edvqXa04qNtbrs0Ukatg5HEzqT94Zs7J207dN5Q==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.11.tgz", + "integrity": "sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==", "cpu": [ "mips64el" ], @@ -892,9 +879,9 @@ } }, "node_modules/@esbuild/linux-ppc64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.8.tgz", - "integrity": "sha512-ETaW6245wK23YIEufhMQ3HSeHO7NgsLx8gygBVldRHKhOlD1oNeNy/P67mIh1zPn2Hr2HLieQrt6tWrVwuqrxg==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.11.tgz", + "integrity": "sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==", "cpu": [ "ppc64" ], @@ -908,9 +895,9 @@ } }, "node_modules/@esbuild/linux-riscv64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.8.tgz", - "integrity": "sha512-T2DRQk55SgoleTP+DtPlMrxi/5r9AeFgkhkZ/B0ap99zmxtxdOixOMI570VjdRCs9pE4Wdkz7JYrsPvsl7eESg==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.11.tgz", + "integrity": "sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==", "cpu": [ "riscv64" ], @@ -924,9 +911,9 @@ } }, "node_modules/@esbuild/linux-s390x": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.8.tgz", - "integrity": "sha512-NPxbdmmo3Bk7mbNeHmcCd7R7fptJaczPYBaELk6NcXxy7HLNyWwCyDJ/Xx+/YcNH7Im5dHdx9gZ5xIwyliQCbg==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.11.tgz", + "integrity": "sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==", "cpu": [ "s390x" ], @@ -940,9 +927,9 @@ } }, "node_modules/@esbuild/linux-x64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.8.tgz", - "integrity": "sha512-lytMAVOM3b1gPypL2TRmZ5rnXl7+6IIk8uB3eLsV1JwcizuolblXRrc5ShPrO9ls/b+RTp+E6gbsuLWHWi2zGg==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.11.tgz", + "integrity": "sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==", "cpu": [ "x64" ], @@ -956,9 +943,9 @@ } }, "node_modules/@esbuild/netbsd-x64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.8.tgz", - "integrity": "sha512-hvWVo2VsXz/8NVt1UhLzxwAfo5sioj92uo0bCfLibB0xlOmimU/DeAEsQILlBQvkhrGjamP0/el5HU76HAitGw==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.11.tgz", + "integrity": "sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==", "cpu": [ "x64" ], @@ -972,9 +959,9 @@ } }, "node_modules/@esbuild/openbsd-x64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.8.tgz", - "integrity": "sha512-/7Y7u77rdvmGTxR83PgaSvSBJCC2L3Kb1M/+dmSIvRvQPXXCuC97QAwMugBNG0yGcbEGfFBH7ojPzAOxfGNkwQ==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.11.tgz", + "integrity": "sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==", "cpu": [ "x64" ], @@ -988,9 +975,9 @@ } }, "node_modules/@esbuild/sunos-x64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.8.tgz", - "integrity": "sha512-9Lc4s7Oi98GqFA4HzA/W2JHIYfnXbUYgekUP/Sm4BG9sfLjyv6GKKHKKVs83SMicBF2JwAX6A1PuOLMqpD001w==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.11.tgz", + "integrity": "sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==", "cpu": [ "x64" ], @@ -1004,9 +991,9 @@ } }, "node_modules/@esbuild/win32-arm64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.8.tgz", - "integrity": "sha512-rq6WzBGjSzihI9deW3fC2Gqiak68+b7qo5/3kmB6Gvbh/NYPA0sJhrnp7wgV4bNwjqM+R2AApXGxMO7ZoGhIJg==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.11.tgz", + "integrity": "sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==", "cpu": [ "arm64" ], @@ -1020,9 +1007,9 @@ } }, "node_modules/@esbuild/win32-ia32": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.8.tgz", - "integrity": "sha512-AIAbverbg5jMvJznYiGhrd3sumfwWs8572mIJL5NQjJa06P8KfCPWZQ0NwZbPQnbQi9OWSZhFVSUWjjIrn4hSw==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.11.tgz", + "integrity": "sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==", "cpu": [ "ia32" ], @@ -1036,9 +1023,9 @@ } }, "node_modules/@esbuild/win32-x64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.8.tgz", - "integrity": "sha512-bfZ0cQ1uZs2PqpulNL5j/3w+GDhP36k1K5c38QdQg+Swy51jFZWWeIkteNsufkQxp986wnqRRsb/bHbY1WQ7TA==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.11.tgz", + "integrity": "sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==", "cpu": [ "x64" ], @@ -1076,9 +1063,9 @@ } }, "node_modules/@eslint/eslintrc": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.3.tgz", - "integrity": "sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", "dev": true, "dependencies": { "ajv": "^6.12.4", @@ -1098,10 +1085,26 @@ "url": "https://opencollective.com/eslint" } }, + "node_modules/@eslint/eslintrc/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.23.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", - "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "dependencies": { "type-fest": "^0.20.2" @@ -1113,29 +1116,71 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/@eslint/eslintrc/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/@eslint/js": { - "version": "8.54.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.54.0.tgz", - "integrity": "sha512-ut5V+D+fOoWPgGGNj83GGjnntO39xDy6DWxO0wb7Jp3DcMX0TfIqdzHF85VTQkerdyGmuuMD9AKAo5KiNlf/AQ==", + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", + "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, + "node_modules/@floating-ui/core": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.5.3.tgz", + "integrity": "sha512-O0WKDOo0yhJuugCx6trZQj5jVJ9yR0ystG2JaNAemYUWce+pmM6WUEFIibnWyEJKdrDxhm75NoSRME35FNaM/Q==", + "dependencies": { + "@floating-ui/utils": "^0.2.0" + } + }, + "node_modules/@floating-ui/dom": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.5.4.tgz", + "integrity": "sha512-jByEsHIY+eEdCjnTVu+E3ephzTOzkQ8hgUfGwos+bg7NlH33Zc5uO+QHz1mrQUOgIKKDD1RtS201P9NvAfq3XQ==", + "dependencies": { + "@floating-ui/core": "^1.5.3", + "@floating-ui/utils": "^0.2.0" + } + }, + "node_modules/@floating-ui/utils": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.1.tgz", + "integrity": "sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==" + }, "node_modules/@fortawesome/fontawesome-common-types": { - "version": "0.3.0", + "version": "0.2.36", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.36.tgz", + "integrity": "sha512-a/7BiSgobHAgBWeN7N0w+lAhInrGxksn13uK7231n2m8EDPE3BMCl9NZLTGrj9ZXfCmC6LM0QLqXidIizVQ6yg==", "hasInstallScript": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/@fortawesome/fontawesome-svg-core": { - "version": "1.3.0", + "version": "1.2.36", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-1.2.36.tgz", + "integrity": "sha512-YUcsLQKYb6DmaJjIHdDWpBIGCcyE/W+p/LMGvjQem55Mm2XWVAP5kWTMKWLv9lwpCVjpLxPyOMOyUocP1GxrtA==", "hasInstallScript": true, - "license": "MIT", "dependencies": { - "@fortawesome/fontawesome-common-types": "^0.3.0" + "@fortawesome/fontawesome-common-types": "^0.2.36" }, "engines": { "node": ">=6" @@ -1143,8 +1188,9 @@ }, "node_modules/@fortawesome/free-brands-svg-icons": { "version": "5.15.4", + "resolved": "https://registry.npmjs.org/@fortawesome/free-brands-svg-icons/-/free-brands-svg-icons-5.15.4.tgz", + "integrity": "sha512-f1witbwycL9cTENJegcmcZRYyawAFbm8+c6IirLmwbbpqz46wyjbQYLuxOc7weXFXfB7QR8/Vd2u5R3q6JYD9g==", "hasInstallScript": true, - "license": "(CC-BY-4.0 AND MIT)", "dependencies": { "@fortawesome/fontawesome-common-types": "^0.2.36" }, @@ -1152,18 +1198,11 @@ "node": ">=6" } }, - "node_modules/@fortawesome/free-brands-svg-icons/node_modules/@fortawesome/fontawesome-common-types": { - "version": "0.2.36", - "hasInstallScript": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, "node_modules/@fortawesome/free-regular-svg-icons": { "version": "5.15.4", + "resolved": "https://registry.npmjs.org/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-5.15.4.tgz", + "integrity": "sha512-9VNNnU3CXHy9XednJ3wzQp6SwNwT3XaM26oS4Rp391GsxVYA+0oDR2J194YCIWf7jNRCYKjUCOduxdceLrx+xw==", "hasInstallScript": true, - "license": "(CC-BY-4.0 AND MIT)", "dependencies": { "@fortawesome/fontawesome-common-types": "^0.2.36" }, @@ -1171,18 +1210,11 @@ "node": ">=6" } }, - "node_modules/@fortawesome/free-regular-svg-icons/node_modules/@fortawesome/fontawesome-common-types": { - "version": "0.2.36", - "hasInstallScript": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, "node_modules/@fortawesome/free-solid-svg-icons": { "version": "5.15.4", + "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-5.15.4.tgz", + "integrity": "sha512-JLmQfz6tdtwxoihXLg6lT78BorrFyCf59SAwBM6qV/0zXyVeDygJVb3fk+j5Qat+Yvcxp1buLTY5iDh1ZSAQ8w==", "hasInstallScript": true, - "license": "(CC-BY-4.0 AND MIT)", "dependencies": { "@fortawesome/fontawesome-common-types": "^0.2.36" }, @@ -1190,33 +1222,26 @@ "node": ">=6" } }, - "node_modules/@fortawesome/free-solid-svg-icons/node_modules/@fortawesome/fontawesome-common-types": { - "version": "0.2.36", - "hasInstallScript": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, "node_modules/@fortawesome/react-fontawesome": { - "version": "0.1.17", - "license": "MIT", + "version": "0.1.19", + "resolved": "https://registry.npmjs.org/@fortawesome/react-fontawesome/-/react-fontawesome-0.1.19.tgz", + "integrity": "sha512-Hyb+lB8T18cvLNX0S3llz7PcSOAJMLwiVKBuuzwM/nI5uoBw+gQjnf9il0fR1C3DKOI5Kc79pkJ4/xB0Uw9aFQ==", "dependencies": { "prop-types": "^15.8.1" }, "peerDependencies": { - "@fortawesome/fontawesome-svg-core": "~1 || >=1.3.0-beta1", + "@fortawesome/fontawesome-svg-core": "~1 || ~6", "react": ">=16.x" } }, "node_modules/@humanwhocodes/config-array": { - "version": "0.11.13", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", - "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==", + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", "dev": true, "dependencies": { - "@humanwhocodes/object-schema": "^2.0.1", - "debug": "^4.1.1", + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", "minimatch": "^3.0.5" }, "engines": { @@ -1237,15 +1262,15 @@ } }, "node_modules/@humanwhocodes/object-schema": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz", - "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", + "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", "dev": true }, "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", "dependencies": { "@jridgewell/set-array": "^1.0.1", "@jridgewell/sourcemap-codec": "^1.4.10", @@ -1272,9 +1297,9 @@ } }, "node_modules/@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", "peer": true, "dependencies": { "@jridgewell/gen-mapping": "^0.3.0", @@ -1287,22 +1312,23 @@ "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.20", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", - "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.22.tgz", + "integrity": "sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==", "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, "node_modules/@juggle/resize-observer": { - "version": "3.3.1", - "license": "Apache-2.0" + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/@juggle/resize-observer/-/resize-observer-3.4.0.tgz", + "integrity": "sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==" }, "node_modules/@monaco-editor/loader": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/@monaco-editor/loader/-/loader-1.3.3.tgz", - "integrity": "sha512-6KKF4CTzcJiS8BJwtxtfyYt9shBiEv32ateQ9T4UVogwn4HM/uPo9iJd2Dmbkpz8CM6Y0PDUpjnZzCwC+eYo2Q==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@monaco-editor/loader/-/loader-1.4.0.tgz", + "integrity": "sha512-00ioBig0x642hytVspPl7DbQyaSWRaolYie/UFNjoTdvoKPzo6xrXLhTk9ixgIKcLH5b5vDOjVNiGyY+uDCUlg==", "dependencies": { "state-local": "^1.0.6" }, @@ -1311,11 +1337,11 @@ } }, "node_modules/@monaco-editor/react": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/@monaco-editor/react/-/react-4.5.2.tgz", - "integrity": "sha512-emcWu6vg1OpXPiYll4aPOaXe8bwYB4UaaNTwtArFLgMoNGBzRZb2Xn0Bra2HMIFM7QLgs7fCGunHO5LkfT2LBA==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@monaco-editor/react/-/react-4.6.0.tgz", + "integrity": "sha512-RFkU9/i7cN2bsq/iTkurMWOEErmYcY6JiQI3Jn+WeR/FGISH8JbHERjpS9oRuSOPvDMJI0Z8nJeKkbOs9sBYQw==", "dependencies": { - "@monaco-editor/loader": "^1.3.3" + "@monaco-editor/loader": "^1.4.0" }, "peerDependencies": { "monaco-editor": ">= 0.25.0 < 1", @@ -1325,8 +1351,9 @@ }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, - "license": "MIT", "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" @@ -1337,16 +1364,18 @@ }, "node_modules/@nodelib/fs.stat": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, - "license": "MIT", "engines": { "node": ">= 8" } }, "node_modules/@nodelib/fs.walk": { "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, - "license": "MIT", "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" @@ -1403,6 +1432,14 @@ "@babel/runtime": "^7.9.2" } }, + "node_modules/@remix-run/router": { + "version": "1.14.2", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.14.2.tgz", + "integrity": "sha512-ACXpdMM9hmKZww21yEqWwiLws/UPLhNKvimN8RrYSqPSvB3ov7sLvAcfvaxePeLvccTQKGdkDIhLYApZVDFuKg==", + "engines": { + "node": ">=14.0.0" + } + }, "node_modules/@restart/context": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/@restart/context/-/context-2.1.4.tgz", @@ -1412,9 +1449,9 @@ } }, "node_modules/@restart/hooks": { - "version": "0.4.11", - "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.11.tgz", - "integrity": "sha512-Ft/ncTULZN6ldGHiF/k5qt72O8JyRMOeg0tApvCni8LkoiEahO+z3TNxfXIVGy890YtWVDvJAl662dVJSJXvMw==", + "version": "0.4.15", + "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.15.tgz", + "integrity": "sha512-cZFXYTxbpzYcieq/mBwSyXgqnGMHoBVh3J7MU0CCoIB4NRZxV9/TuwTBAaLMqpNhC3zTPMCgkQ5Ey07L02Xmcw==", "dependencies": { "dequal": "^2.0.3" }, @@ -1423,9 +1460,9 @@ } }, "node_modules/@rjsf/bootstrap-4": { - "version": "5.12.1", - "resolved": "https://registry.npmjs.org/@rjsf/bootstrap-4/-/bootstrap-4-5.12.1.tgz", - "integrity": "sha512-aUnijxIlYWza8klJ+GvgoYk4gFSaQQV97LLdujMQY096iLm12ryxWLEjyLyPPNOymyp4kdkNO4FCTiWMs2bh3Q==", + "version": "5.16.1", + "resolved": "https://registry.npmjs.org/@rjsf/bootstrap-4/-/bootstrap-4-5.16.1.tgz", + "integrity": "sha512-YskiNpIAYJD9Ahr3piJHeg/9ElqOOe4Bef9t+QnEPvIlfU54JJ/wA7PmuS4KvxhKwB+aNQr5LUmWiQ7Xiy9+tA==", "dependencies": { "@react-icons/all-files": "^4.1.0" }, @@ -1433,35 +1470,35 @@ "node": ">=14" }, "peerDependencies": { - "@rjsf/core": "^5.8.x", - "@rjsf/utils": "^5.8.x", + "@rjsf/core": "^5.16.x", + "@rjsf/utils": "^5.16.x", "react": "^16.14.0 || >=17", "react-bootstrap": "^1.6.5" } }, "node_modules/@rjsf/core": { - "version": "5.12.1", - "resolved": "https://registry.npmjs.org/@rjsf/core/-/core-5.12.1.tgz", - "integrity": "sha512-1YFhZ90/uHRx1akQmDdIjBxGMjs/5gtuTLUFwl6GbOwTm2fhZRh3qXRFyTXz81Oy6TGcbrxBJEYvFg2iHjYKCA==", + "version": "5.16.1", + "resolved": "https://registry.npmjs.org/@rjsf/core/-/core-5.16.1.tgz", + "integrity": "sha512-zIqm5aJ0CfpqsJXcJvIEoYZMfPa6hLqKSeOwwifuHSjznC6fbXPdmqnifBCPVy0GgMaDDWekZLfndk5W3ZO1YA==", "dependencies": { "lodash": "^4.17.21", "lodash-es": "^4.17.21", - "markdown-to-jsx": "^7.3.2", - "nanoid": "^3.3.6", + "markdown-to-jsx": "^7.4.0", + "nanoid": "^3.3.7", "prop-types": "^15.8.1" }, "engines": { "node": ">=14" }, "peerDependencies": { - "@rjsf/utils": "^5.8.x", + "@rjsf/utils": "^5.16.x", "react": "^16.14.0 || >=17" } }, "node_modules/@rjsf/utils": { - "version": "5.12.1", - "resolved": "https://registry.npmjs.org/@rjsf/utils/-/utils-5.12.1.tgz", - "integrity": "sha512-/k8+7WdLwhaYsOQvH5BQINipj2IJvjEW3QQv4jQQ7sXtkpdUjieZayRfaE8DHfRdm9HjgJURJFDy3EODkWPl6A==", + "version": "5.16.1", + "resolved": "https://registry.npmjs.org/@rjsf/utils/-/utils-5.16.1.tgz", + "integrity": "sha512-zJ8WopscMl46QBjlIalIoPERs7kgSfUwIZ5zx4OMBRp0O+m7Scx0F+4iHqLnRuHEfaCNA5D7IKxmx1whOG/x1Q==", "dependencies": { "json-schema-merge-allof": "^0.8.1", "jsonpointer": "^5.0.1", @@ -1476,15 +1513,10 @@ "react": "^16.14.0 || >=17" } }, - "node_modules/@rjsf/utils/node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - }, "node_modules/@rjsf/validator-ajv8": { - "version": "5.12.1", - "resolved": "https://registry.npmjs.org/@rjsf/validator-ajv8/-/validator-ajv8-5.12.1.tgz", - "integrity": "sha512-m4QO44yp60LTIfd4RPUu/h07B8U9umbD3I4Nh4iv9oyUudncaZFFXRopKcBm08v30VkN0tjMwuu0SxGDpzMtHA==", + "version": "5.16.1", + "resolved": "https://registry.npmjs.org/@rjsf/validator-ajv8/-/validator-ajv8-5.16.1.tgz", + "integrity": "sha512-4aYZU5+7q/9eFVzaUFTjsfVwlM0ku/BmHse9a1F87skiVRV6pv30z3B3fEUJ7zZMOGFwviYF60Tb3mr2KQ5GSg==", "dependencies": { "ajv": "^8.12.0", "ajv-formats": "^2.1.1", @@ -1495,29 +1527,9 @@ "node": ">=14" }, "peerDependencies": { - "@rjsf/utils": "^5.8.x" + "@rjsf/utils": "^5.16.x" } }, - "node_modules/@rjsf/validator-ajv8/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/@rjsf/validator-ajv8/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - }, "node_modules/@rollup/pluginutils": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", @@ -1532,9 +1544,9 @@ } }, "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.6.1.tgz", - "integrity": "sha512-0WQ0ouLejaUCRsL93GD4uft3rOmB8qoQMU05Kb8CmMtMBe7XUDLAltxVZI1q6byNqEtU7N1ZX1Vw5lIpgulLQA==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.9.5.tgz", + "integrity": "sha512-idWaG8xeSRCfRq9KpRysDHJ/rEHBEXcHuJ82XY0yYFIWnLMjZv9vF/7DOq8djQ2n3Lk6+3qfSH8AqlmHlmi1MA==", "cpu": [ "arm" ], @@ -1545,9 +1557,9 @@ ] }, "node_modules/@rollup/rollup-android-arm64": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.6.1.tgz", - "integrity": "sha512-1TKm25Rn20vr5aTGGZqo6E4mzPicCUD79k17EgTLAsXc1zysyi4xXKACfUbwyANEPAEIxkzwue6JZ+stYzWUTA==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.9.5.tgz", + "integrity": "sha512-f14d7uhAMtsCGjAYwZGv6TwuS3IFaM4ZnGMUn3aCBgkcHAYErhV1Ad97WzBvS2o0aaDv4mVz+syiN0ElMyfBPg==", "cpu": [ "arm64" ], @@ -1558,9 +1570,9 @@ ] }, "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.6.1.tgz", - "integrity": "sha512-cEXJQY/ZqMACb+nxzDeX9IPLAg7S94xouJJCNVE5BJM8JUEP4HeTF+ti3cmxWeSJo+5D+o8Tc0UAWUkfENdeyw==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.9.5.tgz", + "integrity": "sha512-ndoXeLx455FffL68OIUrVr89Xu1WLzAG4n65R8roDlCoYiQcGGg6MALvs2Ap9zs7AHg8mpHtMpwC8jBBjZrT/w==", "cpu": [ "arm64" ], @@ -1571,9 +1583,9 @@ ] }, "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.6.1.tgz", - "integrity": "sha512-LoSU9Xu56isrkV2jLldcKspJ7sSXmZWkAxg7sW/RfF7GS4F5/v4EiqKSMCFbZtDu2Nc1gxxFdQdKwkKS4rwxNg==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.9.5.tgz", + "integrity": "sha512-UmElV1OY2m/1KEEqTlIjieKfVwRg0Zwg4PLgNf0s3glAHXBN99KLpw5A5lrSYCa1Kp63czTpVll2MAqbZYIHoA==", "cpu": [ "x64" ], @@ -1584,9 +1596,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.6.1.tgz", - "integrity": "sha512-EfI3hzYAy5vFNDqpXsNxXcgRDcFHUWSx5nnRSCKwXuQlI5J9dD84g2Usw81n3FLBNsGCegKGwwTVsSKK9cooSQ==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.9.5.tgz", + "integrity": "sha512-Q0LcU61v92tQB6ae+udZvOyZ0wfpGojtAKrrpAaIqmJ7+psq4cMIhT/9lfV6UQIpeItnq/2QDROhNLo00lOD1g==", "cpu": [ "arm" ], @@ -1597,9 +1609,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.6.1.tgz", - "integrity": "sha512-9lhc4UZstsegbNLhH0Zu6TqvDfmhGzuCWtcTFXY10VjLLUe4Mr0Ye2L3rrtHaDd/J5+tFMEuo5LTCSCMXWfUKw==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.9.5.tgz", + "integrity": "sha512-dkRscpM+RrR2Ee3eOQmRWFjmV/payHEOrjyq1VZegRUa5OrZJ2MAxBNs05bZuY0YCtpqETDy1Ix4i/hRqX98cA==", "cpu": [ "arm64" ], @@ -1610,9 +1622,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.6.1.tgz", - "integrity": "sha512-FfoOK1yP5ksX3wwZ4Zk1NgyGHZyuRhf99j64I5oEmirV8EFT7+OhUZEnP+x17lcP/QHJNWGsoJwrz4PJ9fBEXw==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.9.5.tgz", + "integrity": "sha512-QaKFVOzzST2xzY4MAmiDmURagWLFh+zZtttuEnuNn19AiZ0T3fhPyjPPGwLNdiDT82ZE91hnfJsUiDwF9DClIQ==", "cpu": [ "arm64" ], @@ -1622,10 +1634,23 @@ "linux" ] }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.9.5.tgz", + "integrity": "sha512-HeGqmRJuyVg6/X6MpE2ur7GbymBPS8Np0S/vQFHDmocfORT+Zt76qu+69NUoxXzGqVP1pzaY6QIi0FJWLC3OPA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.6.1.tgz", - "integrity": "sha512-DNGZvZDO5YF7jN5fX8ZqmGLjZEXIJRdJEdTFMhiyXqyXubBa0WVLDWSNlQ5JR2PNgDbEV1VQowhVRUh+74D+RA==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.9.5.tgz", + "integrity": "sha512-Dq1bqBdLaZ1Gb/l2e5/+o3B18+8TI9ANlA1SkejZqDgdU/jK/ThYaMPMJpVMMXy2uRHvGKbkz9vheVGdq3cJfA==", "cpu": [ "x64" ], @@ -1636,9 +1661,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.6.1.tgz", - "integrity": "sha512-RkJVNVRM+piYy87HrKmhbexCHg3A6Z6MU0W9GHnJwBQNBeyhCJG9KDce4SAMdicQnpURggSvtbGo9xAWOfSvIQ==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.9.5.tgz", + "integrity": "sha512-ezyFUOwldYpj7AbkwyW9AJ203peub81CaAIVvckdkyH8EvhEIoKzaMFJj0G4qYJ5sw3BpqhFrsCc30t54HV8vg==", "cpu": [ "x64" ], @@ -1649,9 +1674,9 @@ ] }, "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.6.1.tgz", - "integrity": "sha512-v2FVT6xfnnmTe3W9bJXl6r5KwJglMK/iRlkKiIFfO6ysKs0rDgz7Cwwf3tjldxQUrHL9INT/1r4VA0n9L/F1vQ==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.9.5.tgz", + "integrity": "sha512-aHSsMnUw+0UETB0Hlv7B/ZHOGY5bQdwMKJSzGfDfvyhnpmVxLMGnQPGNE9wgqkLUs3+gbG1Qx02S2LLfJ5GaRQ==", "cpu": [ "arm64" ], @@ -1662,9 +1687,9 @@ ] }, "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.6.1.tgz", - "integrity": "sha512-YEeOjxRyEjqcWphH9dyLbzgkF8wZSKAKUkldRY6dgNR5oKs2LZazqGB41cWJ4Iqqcy9/zqYgmzBkRoVz3Q9MLw==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.9.5.tgz", + "integrity": "sha512-AiqiLkb9KSf7Lj/o1U3SEP9Zn+5NuVKgFdRIZkvd4N0+bYrTOovVd0+LmYCPQGbocT4kvFyK+LXCDiXPBF3fyA==", "cpu": [ "ia32" ], @@ -1675,9 +1700,9 @@ ] }, "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.6.1.tgz", - "integrity": "sha512-0zfTlFAIhgz8V2G8STq8toAjsYYA6eci1hnXuyOTUFnymrtJwnS6uGKiv3v5UrPZkBlamLvrLV2iiaeqCKzb0A==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.9.5.tgz", + "integrity": "sha512-1q+mykKE3Vot1kaFJIDoUFv5TuW+QQVaf2FmTT9krg86pQrGStOSJJ0Zil7CFagyxDuouTepzt5Y5TVzyajOdQ==", "cpu": [ "x64" ], @@ -1701,9 +1726,9 @@ } }, "node_modules/@types/babel__generator": { - "version": "7.6.7", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.7.tgz", - "integrity": "sha512-6Sfsq+EaaLrw4RmdFWE9Onp63TOUue71AWb4Gpa6JxzgTYtimbM086WnYTy2U67AofR++QKCo08ZP6pwx8YFHQ==", + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", "dev": true, "dependencies": { "@babel/types": "^7.0.0" @@ -1720,26 +1745,27 @@ } }, "node_modules/@types/babel__traverse": { - "version": "7.20.4", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.4.tgz", - "integrity": "sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.5.tgz", + "integrity": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==", "dev": true, "dependencies": { "@babel/types": "^7.20.7" } }, "node_modules/@types/eslint": { - "version": "8.44.7", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.7.tgz", - "integrity": "sha512-f5ORu2hcBbKei97U73mf+l9t4zTGl74IqZ0GQk4oVea/VS8tQZYkUveSYojk+frraAVYId0V2WC9O4PTNru2FQ==", + "version": "8.56.2", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.2.tgz", + "integrity": "sha512-uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw==", "dependencies": { "@types/estree": "*", "@types/json-schema": "*" } }, "node_modules/@types/eslint-scope": { - "version": "3.7.3", - "license": "MIT", + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", "peer": true, "dependencies": { "@types/eslint": "*", @@ -1747,32 +1773,36 @@ } }, "node_modules/@types/estree": { - "version": "0.0.51", - "license": "MIT" + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" }, "node_modules/@types/hast": { - "version": "2.3.4", - "license": "MIT", + "version": "2.3.9", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.9.tgz", + "integrity": "sha512-pTHyNlaMD/oKJmS+ZZUyFUcsZeBZpC0lmGquw98CqRVNgAdJZJeD7GoeLiT6Xbx5rU9VCjSt0RwEvDgzh4obFw==", "dependencies": { - "@types/unist": "*" + "@types/unist": "^2" } }, "node_modules/@types/hoist-non-react-statics": { - "version": "3.3.1", - "license": "MIT", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.5.tgz", + "integrity": "sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==", "dependencies": { "@types/react": "*", "hoist-non-react-statics": "^3.3.0" } }, "node_modules/@types/invariant": { - "version": "2.2.35", - "resolved": "https://registry.npmjs.org/@types/invariant/-/invariant-2.2.35.tgz", - "integrity": "sha512-DxX1V9P8zdJPYQat1gHyY0xj3efl8gnMVjiM9iCY6y27lj+PoQWkgjt8jDqmovPqULkKVpKRg8J36iQiA+EtEg==" + "version": "2.2.37", + "resolved": "https://registry.npmjs.org/@types/invariant/-/invariant-2.2.37.tgz", + "integrity": "sha512-IwpIMieE55oGWiXkQPSBY1nw1nFs6bsKXTFskNY8sdS17K24vyEBRQZEwlRS7ZmXCWnJcQtbxWzly+cODWGs2A==" }, "node_modules/@types/json-schema": { - "version": "7.0.9", - "license": "MIT" + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" }, "node_modules/@types/json5": { "version": "0.0.29", @@ -1781,47 +1811,53 @@ "dev": true }, "node_modules/@types/minimist": { - "version": "1.2.2", - "dev": true, - "license": "MIT" + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", + "dev": true }, "node_modules/@types/node": { - "version": "20.10.3", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.3.tgz", - "integrity": "sha512-XJavIpZqiXID5Yxnxv3RUDKTN5b81ddNC3ecsA0SoFXz/QU8OGBwZGMomiq0zw+uuqbL/krztv/DINAQ/EV4gg==", + "version": "20.11.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.5.tgz", + "integrity": "sha512-g557vgQjUUfN76MZAN/dt1z3dzcUsimuysco0KeluHgrPdJXkP/XdAURgyO2W9fZWHRtRBiVKzKn8vyOAwlG+w==", "dependencies": { "undici-types": "~5.26.4" } }, "node_modules/@types/normalize-package-data": { - "version": "2.4.1", - "dev": true, - "license": "MIT" + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", + "dev": true }, "node_modules/@types/papaparse": { - "version": "5.3.2", - "license": "MIT", + "version": "5.3.14", + "resolved": "https://registry.npmjs.org/@types/papaparse/-/papaparse-5.3.14.tgz", + "integrity": "sha512-LxJ4iEFcpqc6METwp9f6BV6VVc43m6MfH0VqFosHvrUgfXiFe6ww7R3itkOQ+TCK6Y+Iv/+RnnvtRZnkc5Kc9g==", "dependencies": { "@types/node": "*" } }, "node_modules/@types/parse-json": { - "version": "4.0.0", - "license": "MIT" + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" }, "node_modules/@types/prop-types": { - "version": "15.7.4", - "license": "MIT" + "version": "15.7.11", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz", + "integrity": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==" }, "node_modules/@types/raf": { - "version": "3.4.0", - "license": "MIT", + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/@types/raf/-/raf-3.4.3.tgz", + "integrity": "sha512-c4YAvMedbPZ5tEyxzQdMoOhhJ4RD3rngZIdwC2/qDN3d7JpEhB6fiBRKVY1lg5B7Wk+uPBjn5f39j1/2MY1oOw==", "optional": true }, "node_modules/@types/react": { - "version": "18.2.39", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.39.tgz", - "integrity": "sha512-Oiw+ppED6IremMInLV4HXGbfbG6GyziY3kqAwJYOR0PNbkYDmLWQA3a95EhdSmamsvbkJN96ZNN+YD+fGjzSBA==", + "version": "18.2.48", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.48.tgz", + "integrity": "sha512-qboRCl6Ie70DQQG9hhNREz81jqC1cs9EVNcjQ1AU+jH6NFfSAhVVbrrY/+nSF+Bsk4AOwm9Qa61InvMCyV+H3w==", "dependencies": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -1829,16 +1865,18 @@ } }, "node_modules/@types/react-helmet": { - "version": "6.1.5", + "version": "6.1.11", + "resolved": "https://registry.npmjs.org/@types/react-helmet/-/react-helmet-6.1.11.tgz", + "integrity": "sha512-0QcdGLddTERotCXo3VFlUSWO3ztraw8nZ6e3zJSgG7apwV5xt+pJUS8ewPBqT4NYB1optGLprNQzFleIY84u/g==", "dev": true, - "license": "MIT", "dependencies": { "@types/react": "*" } }, "node_modules/@types/react-redux": { - "version": "7.1.23", - "license": "MIT", + "version": "7.1.33", + "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.33.tgz", + "integrity": "sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==", "dependencies": { "@types/hoist-non-react-statics": "^3.3.0", "@types/react": "*", @@ -1847,25 +1885,27 @@ } }, "node_modules/@types/react-transition-group": { - "version": "4.4.6", - "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.6.tgz", - "integrity": "sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==", + "version": "4.4.10", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.10.tgz", + "integrity": "sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==", "dependencies": { "@types/react": "*" } }, "node_modules/@types/scheduler": { - "version": "0.16.2", - "license": "MIT" + "version": "0.16.8", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz", + "integrity": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==" }, "node_modules/@types/unist": { - "version": "2.0.6", - "license": "MIT" + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz", + "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==" }, "node_modules/@types/warning": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.0.tgz", - "integrity": "sha512-t/Tvs5qR47OLOr+4E9ckN8AmP2Tf16gWq+/qA4iUGS/OOyHVO8wv2vjJuX8SNOUTJyWb+2t7wJm6cXILFnOROA==" + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.3.tgz", + "integrity": "sha512-D1XC7WK8K+zZEveUPY+cf4+kgauk8N4eHr/XIHXGlGYkHLud6hK9lYfZk1ry1TNh798cZUCgb6MqGEG8DkJt6Q==" }, "node_modules/@ungap/structured-clone": { "version": "1.2.0", @@ -1893,154 +1933,173 @@ } }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.1", - "license": "MIT", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", "peer": true, "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "license": "MIT", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", "peer": true }, "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "license": "MIT", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", "peer": true }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "license": "MIT", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", "peer": true }, "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "license": "MIT", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", "peer": true, "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "license": "MIT", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", "peer": true }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "license": "MIT", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", "peer": true, "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" } }, "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.1", - "license": "MIT", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", "peer": true, "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { - "version": "1.11.1", - "license": "Apache-2.0", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", "peer": true, "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { - "version": "1.11.1", - "license": "MIT", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", "peer": true }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "license": "MIT", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", "peer": true, "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "license": "MIT", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", "peer": true, "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "license": "MIT", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", "peer": true, "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "license": "MIT", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", "peer": true, "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.1", - "license": "MIT", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", "peer": true, "dependencies": { - "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/ast": "1.11.6", "@xtuc/long": "4.2.2" } }, "node_modules/@xtuc/ieee754": { "version": "1.2.0", - "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", "peer": true }, "node_modules/@xtuc/long": { "version": "4.2.2", - "license": "Apache-2.0", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", "peer": true }, "node_modules/abab": { - "version": "2.0.5", - "license": "BSD-3-Clause" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "deprecated": "Use your platform's native atob() and btoa() methods instead" }, "node_modules/acorn": { - "version": "8.11.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", - "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", "bin": { "acorn": "bin/acorn" }, @@ -2049,8 +2108,9 @@ } }, "node_modules/acorn-import-assertions": { - "version": "1.8.0", - "license": "MIT", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", "peer": true, "peerDependencies": { "acorn": "^8" @@ -2066,12 +2126,13 @@ } }, "node_modules/ajv": { - "version": "6.12.6", - "license": "MIT", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dependencies": { "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", "uri-js": "^4.2.2" }, "funding": { @@ -2081,7 +2142,8 @@ }, "node_modules/ajv-formats": { "version": "2.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", "dependencies": { "ajv": "^8.0.0" }, @@ -2094,36 +2156,11 @@ } } }, - "node_modules/ajv-formats/node_modules/ajv": { - "version": "8.10.0", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-formats/node_modules/json-schema-traverse": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/ajv-keywords": { - "version": "3.5.2", - "license": "MIT", - "peer": true, - "peerDependencies": { - "ajv": "^6.9.1" - } - }, "node_modules/ansi-regex": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } @@ -2140,9 +2177,10 @@ } }, "node_modules/anymatch": { - "version": "3.1.2", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dev": true, - "license": "ISC", "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" @@ -2190,19 +2228,21 @@ }, "node_modules/array-union": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/array.prototype.filter": { - "version": "1.0.1", - "license": "MIT", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array.prototype.filter/-/array.prototype.filter-1.0.3.tgz", + "integrity": "sha512-VizNcj/RGJiUyQBgzwxzE5oHdeuXY5hSbbmKMlphj1cy1Vl7Pn2asCGbSrru6hSQjmCzqTBPVWAF/whmEOVHbw==", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", "es-array-method-boxes-properly": "^1.0.0", "is-string": "^1.0.7" }, @@ -2302,20 +2342,23 @@ }, "node_modules/arrify": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/asap": { "version": "2.0.6", - "license": "MIT" + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" }, "node_modules/astral-regex": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } @@ -2336,7 +2379,8 @@ }, "node_modules/atob": { "version": "2.1.2", - "license": "(MIT OR Apache-2.0)", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", "bin": { "atob": "bin/atob.js" }, @@ -2346,8 +2390,9 @@ }, "node_modules/auto-changelog": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/auto-changelog/-/auto-changelog-2.3.0.tgz", + "integrity": "sha512-S2B+RtTgytsa7l5iFGBoWT9W9ylITT5JJ8OaMJ7nrwvnlRm1dSS2tghaYueDeInZZafOE+1llH3tUQjMDRVS1g==", "dev": true, - "license": "MIT", "dependencies": { "commander": "^5.0.0", "handlebars": "^4.7.3", @@ -2374,15 +2419,29 @@ } }, "node_modules/axios": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz", - "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", + "version": "1.6.5", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.5.tgz", + "integrity": "sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg==", "dependencies": { - "follow-redirects": "^1.15.0", + "follow-redirects": "^1.15.4", "form-data": "^4.0.0", "proxy-from-env": "^1.1.0" } }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, "node_modules/babel-plugin-styled-components": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-2.1.4.tgz", @@ -2400,12 +2459,14 @@ }, "node_modules/balanced-match": { "version": "1.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true }, "node_modules/base64-arraybuffer": { "version": "1.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", + "integrity": "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==", "optional": true, "engines": { "node": ">= 0.6.0" @@ -2413,6 +2474,8 @@ }, "node_modules/base64-js": { "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", "funding": [ { "type": "github", @@ -2426,29 +2489,32 @@ "type": "consulting", "url": "https://feross.org/support" } - ], - "license": "MIT" + ] }, "node_modules/batch-processor": { "version": "1.0.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/batch-processor/-/batch-processor-1.0.0.tgz", + "integrity": "sha512-xoLQD8gmmR32MeuBHgH0Tzd5PuSZx71ZsbhVxOCRbgktZEPe4SQy7s9Z50uPp0F/f7iw2XmkHN2xkgbMfckMDA==" }, "node_modules/binary-extensions": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/boolbase": { "version": "1.0.0", - "license": "ISC" + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" }, "node_modules/brace-expansion": { "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, - "license": "MIT", "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -2456,8 +2522,9 @@ }, "node_modules/braces": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, - "license": "MIT", "dependencies": { "fill-range": "^7.0.1" }, @@ -2466,9 +2533,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.9", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", - "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", + "version": "4.22.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", + "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", "funding": [ { "type": "opencollective", @@ -2484,10 +2551,10 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001503", - "electron-to-chromium": "^1.4.431", - "node-releases": "^2.0.12", - "update-browserslist-db": "^1.0.11" + "caniuse-lite": "^1.0.30001565", + "electron-to-chromium": "^1.4.601", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" }, "bin": { "browserslist": "cli.js" @@ -2510,7 +2577,8 @@ }, "node_modules/btoa": { "version": "1.2.1", - "license": "(MIT OR Apache-2.0)", + "resolved": "https://registry.npmjs.org/btoa/-/btoa-1.2.1.tgz", + "integrity": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==", "bin": { "btoa": "bin/btoa.js" }, @@ -2520,6 +2588,8 @@ }, "node_modules/buffer": { "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", "funding": [ { "type": "github", @@ -2534,7 +2604,6 @@ "url": "https://feross.org/support" } ], - "license": "MIT", "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.2.1" @@ -2542,7 +2611,8 @@ }, "node_modules/buffer-from": { "version": "1.1.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "peer": true }, "node_modules/call-bind": { @@ -2560,15 +2630,26 @@ }, "node_modules/callsites": { "version": "3.1.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, "engines": { "node": ">=6" } }, "node_modules/camelcase-keys": { "version": "6.2.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", "dev": true, - "license": "MIT", "dependencies": { "camelcase": "^5.3.1", "map-obj": "^4.0.0", @@ -2581,26 +2662,23 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/camelcase-keys/node_modules/camelcase": { - "version": "5.3.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, "node_modules/camelize": { - "version": "1.0.0", - "license": "MIT" + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.1.tgz", + "integrity": "sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/can-use-dom": { "version": "0.1.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/can-use-dom/-/can-use-dom-0.1.0.tgz", + "integrity": "sha512-ceOhN1DL7Y4O6M0j9ICgmTYziV89WMd96SvSl0REd8PMgrY0B/WBOPoed5S1KUmJqXgUXh8gzSe6E3ae27upsQ==" }, "node_modules/caniuse-lite": { - "version": "1.0.30001563", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001563.tgz", - "integrity": "sha512-na2WUmOxnwIZtwnFI2CZ/3er0wdNzU7hN+cPYz/z2ajHThnkWjNBOpEPP4n+4r2WPM847JaMotaJE3bnfzjyKw==", + "version": "1.0.30001579", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001579.tgz", + "integrity": "sha512-u5AUVkixruKHJjw/pj9wISlcMpgFWzSrczLZbrqBSxukQixmg0SJ5sZTpvaFvxU0HoQKd4yoyAogyrAz9pzJnA==", "funding": [ { "type": "opencollective", @@ -2618,7 +2696,8 @@ }, "node_modules/canvg": { "version": "3.0.10", - "license": "MIT", + "resolved": "https://registry.npmjs.org/canvg/-/canvg-3.0.10.tgz", + "integrity": "sha512-qwR2FRNO9NlzTeKIPIKpnTY6fqwuYSequ8Ru8c0YkYU7U0oW+hLUvWadLvAu1Rl72OMNiFhoLu4f8eUjQ7l/+Q==", "optional": true, "dependencies": { "@babel/runtime": "^7.12.5", @@ -2634,6 +2713,12 @@ "node": ">=10.0.0" } }, + "node_modules/canvg/node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "optional": true + }, "node_modules/chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", @@ -2649,7 +2734,8 @@ }, "node_modules/character-entities": { "version": "1.2.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -2657,7 +2743,8 @@ }, "node_modules/character-entities-legacy": { "version": "1.1.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -2665,7 +2752,8 @@ }, "node_modules/character-reference-invalid": { "version": "1.1.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -2677,16 +2765,17 @@ "integrity": "sha512-Ro2JbLmvg83gXF5F4sniaQ+lTbSv18E+TIf2cOeiH1Iqd2PGFOtem+DUufMZsCJwFE7ywPOpfXFBwRTGq7dh6w==" }, "node_modules/cheerio": { - "version": "1.0.0-rc.10", - "license": "MIT", + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz", + "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==", "dependencies": { - "cheerio-select": "^1.5.0", - "dom-serializer": "^1.3.2", - "domhandler": "^4.2.0", - "htmlparser2": "^6.1.0", - "parse5": "^6.0.1", - "parse5-htmlparser2-tree-adapter": "^6.0.1", - "tslib": "^2.2.0" + "cheerio-select": "^2.1.0", + "dom-serializer": "^2.0.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "htmlparser2": "^8.0.1", + "parse5": "^7.0.0", + "parse5-htmlparser2-tree-adapter": "^7.0.0" }, "engines": { "node": ">= 6" @@ -2696,14 +2785,16 @@ } }, "node_modules/cheerio-select": { - "version": "1.5.0", - "license": "BSD-2-Clause", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz", + "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", "dependencies": { - "css-select": "^4.1.3", - "css-what": "^5.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0", - "domutils": "^2.7.0" + "boolbase": "^1.0.0", + "css-select": "^5.1.0", + "css-what": "^6.1.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1" }, "funding": { "url": "https://github.com/sponsors/fb55" @@ -2711,6 +2802,8 @@ }, "node_modules/chokidar": { "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "dev": true, "funding": [ { @@ -2718,7 +2811,6 @@ "url": "https://paulmillr.com/funding/" } ], - "license": "MIT", "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", @@ -2737,8 +2829,9 @@ }, "node_modules/chokidar/node_modules/glob-parent": { "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, - "license": "ISC", "dependencies": { "is-glob": "^4.0.1" }, @@ -2748,27 +2841,17 @@ }, "node_modules/chrome-trace-event": { "version": "1.0.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", "peer": true, "engines": { "node": ">=6.0" } }, "node_modules/classnames": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", - "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" - }, - "node_modules/clone-regexp": { - "version": "2.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "is-regexp": "^2.0.0" - }, - "engines": { - "node": ">=6" - } + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", + "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==" }, "node_modules/color-convert": { "version": "1.9.3", @@ -2784,9 +2867,10 @@ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" }, "node_modules/colord": { - "version": "2.9.2", - "dev": true, - "license": "MIT" + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", + "dev": true }, "node_modules/combined-stream": { "version": "1.0.8", @@ -2801,7 +2885,8 @@ }, "node_modules/comma-separated-tokens": { "version": "1.0.8", - "license": "MIT", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz", + "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -2809,8 +2894,9 @@ }, "node_modules/commander": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 6" } @@ -2838,36 +2924,37 @@ }, "node_modules/concat-map": { "version": "0.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true }, "node_modules/convert-source-map": { - "version": "1.8.0", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.1" - } + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" }, "node_modules/copy-to-clipboard": { - "version": "3.3.1", - "license": "MIT", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz", + "integrity": "sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==", "dependencies": { "toggle-selection": "^1.0.6" } }, "node_modules/core-js": { - "version": "3.21.1", + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.35.0.tgz", + "integrity": "sha512-ntakECeqg81KqMueeGJ79Q5ZgQNR+6eaE8sxGCx62zMbAIj65q+uYvatToew3m6eAGdU4gNZwpZ34NMe4GYswg==", "hasInstallScript": true, - "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/core-js" } }, "node_modules/cosmiconfig": { - "version": "7.0.1", - "dev": true, - "license": "MIT", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", "dependencies": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", @@ -2881,7 +2968,8 @@ }, "node_modules/create-react-class": { "version": "15.7.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/create-react-class/-/create-react-class-15.7.0.tgz", + "integrity": "sha512-QZv4sFWG9S5RUvkTYWbflxeZX+JG7Cz0Tn33rQBJ+WFQTqTfUTjMjiv9tnfXazjsO5r0KhPs+AqCjyrQX6h2ng==", "dependencies": { "loose-envify": "^1.3.1", "object-assign": "^4.1.1" @@ -2889,8 +2977,9 @@ }, "node_modules/cross-spawn": { "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, - "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -2902,35 +2991,39 @@ }, "node_modules/css-color-keywords": { "version": "1.0.0", - "license": "ISC", + "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz", + "integrity": "sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==", "engines": { "node": ">=4" } }, "node_modules/css-functions-list": { - "version": "3.1.0", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.1.tgz", + "integrity": "sha512-Nj5YcaGgBtuUmn1D7oHqPW0c9iui7xsTsj5lIX8ZgevdfhmjFfKB3r8moHJtNJnctnYXJyYX5I1pp90HM4TPgQ==", "dev": true, - "license": "MIT", "engines": { - "node": ">=12.22" + "node": ">=12 || >=16" } }, "node_modules/css-line-break": { "version": "2.1.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/css-line-break/-/css-line-break-2.1.0.tgz", + "integrity": "sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==", "optional": true, "dependencies": { "utrie": "^1.0.2" } }, "node_modules/css-select": { - "version": "4.2.1", - "license": "BSD-2-Clause", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", "dependencies": { "boolbase": "^1.0.0", - "css-what": "^5.1.0", - "domhandler": "^4.3.0", - "domutils": "^2.8.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", "nth-check": "^2.0.1" }, "funding": { @@ -2938,8 +3031,9 @@ } }, "node_modules/css-to-react-native": { - "version": "3.0.0", - "license": "MIT", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.2.0.tgz", + "integrity": "sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==", "dependencies": { "camelize": "^1.0.0", "css-color-keywords": "^1.0.0", @@ -2947,8 +3041,9 @@ } }, "node_modules/css-what": { - "version": "5.1.0", - "license": "BSD-2-Clause", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", "engines": { "node": ">= 6" }, @@ -2958,7 +3053,8 @@ }, "node_modules/cssesc": { "version": "3.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", "bin": { "cssesc": "bin/cssesc" }, @@ -2967,13 +3063,17 @@ } }, "node_modules/csstype": { - "version": "3.0.10", - "license": "MIT" + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" }, "node_modules/date-fns": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz", - "integrity": "sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==", + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "dependencies": { + "@babel/runtime": "^7.21.0" + }, "engines": { "node": ">=0.11" }, @@ -2984,7 +3084,8 @@ }, "node_modules/debug": { "version": "4.3.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dependencies": { "ms": "2.1.2" }, @@ -2999,28 +3100,34 @@ }, "node_modules/decamelize": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/decamelize-keys": { - "version": "1.1.0", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", + "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", "dev": true, - "license": "MIT", "dependencies": { "decamelize": "^1.1.0", "map-obj": "^1.0.0" }, "engines": { "node": ">=0.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/decamelize-keys/node_modules/map-obj": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -3032,8 +3139,9 @@ "dev": true }, "node_modules/deepmerge": { - "version": "4.2.2", - "license": "MIT", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "engines": { "node": ">=0.10.0" } @@ -3085,12 +3193,14 @@ }, "node_modules/desandro-matches-selector": { "version": "2.0.2", - "license": "MIT" + "resolved": "https://registry.npmjs.org/desandro-matches-selector/-/desandro-matches-selector-2.0.2.tgz", + "integrity": "sha512-+1q0nXhdzg1IpIJdMKalUwvvskeKnYyEe3shPRwedNcWtnhEKT3ZxvFjzywHDeGcKViIxTCAoOYQWP1qD7VNyg==" }, "node_modules/dir-glob": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, - "license": "MIT", "dependencies": { "path-type": "^4.0.0" }, @@ -3100,12 +3210,14 @@ }, "node_modules/discontinuous-range": { "version": "1.0.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz", + "integrity": "sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==" }, "node_modules/doctrine": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, - "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" }, @@ -3115,39 +3227,43 @@ }, "node_modules/dom-helpers": { "version": "5.2.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", "dependencies": { "@babel/runtime": "^7.8.7", "csstype": "^3.0.2" } }, "node_modules/dom-serializer": { - "version": "1.3.2", - "license": "MIT", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" }, "funding": { "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, "node_modules/domelementtype": { - "version": "2.2.0", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/fb55" } - ], - "license": "BSD-2-Clause" + ] }, "node_modules/domhandler": { - "version": "4.3.0", - "license": "BSD-2-Clause", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", "dependencies": { - "domelementtype": "^2.2.0" + "domelementtype": "^2.3.0" }, "engines": { "node": ">= 4" @@ -3157,38 +3273,47 @@ } }, "node_modules/dompurify": { - "version": "2.3.6", - "license": "(MPL-2.0 OR Apache-2.0)", + "version": "2.4.7", + "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-2.4.7.tgz", + "integrity": "sha512-kxxKlPEDa6Nc5WJi+qRgPbOAbgTpSULL+vI3NUXsZMlkJxTqYI9wg5ZTay2sFrdZRWHPWNi+EdAhcJf81WtoMQ==", "optional": true }, "node_modules/domutils": { - "version": "2.8.0", - "license": "BSD-2-Clause", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" }, "funding": { "url": "https://github.com/fb55/domutils?sponsor=1" } }, "node_modules/electron-to-chromium": { - "version": "1.4.464", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.464.tgz", - "integrity": "sha512-guZ84yoou4+ILNdj0XEbmGs6DEWj6zpVOWYpY09GU66yEb0DSYvP/biBPzHn0GuW/3RC/pnaYNUWlQE1fJYtgA==" + "version": "1.4.640", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.640.tgz", + "integrity": "sha512-z/6oZ/Muqk4BaE7P69bXhUhpJbUM9ZJeka43ZwxsDshKtePns4mhBlh8bU5+yrnOnz3fhG82XLzGUXazOmsWnA==" }, "node_modules/element-resize-detector": { "version": "1.2.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/element-resize-detector/-/element-resize-detector-1.2.4.tgz", + "integrity": "sha512-Fl5Ftk6WwXE0wqCgNoseKWndjzZlDCwuPTcoVZfCP9R3EHQF8qUtr3YUPNETegRBOKqQKPW3n4kiIWngGi8tKg==", "dependencies": { "batch-processor": "1.0.0" } }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, "node_modules/enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", "peer": true, "dependencies": { "graceful-fs": "^4.2.4", @@ -3199,15 +3324,20 @@ } }, "node_modules/entities": { - "version": "2.2.0", - "license": "BSD-2-Clause", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "engines": { + "node": ">=0.12" + }, "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/enzyme": { "version": "3.11.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/enzyme/-/enzyme-3.11.0.tgz", + "integrity": "sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==", "dependencies": { "array.prototype.flat": "^1.2.3", "cheerio": "^1.0.0-rc.3", @@ -3237,11 +3367,12 @@ } }, "node_modules/enzyme-shallow-equal": { - "version": "1.0.4", - "license": "MIT", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.5.tgz", + "integrity": "sha512-i6cwm7hN630JXenxxJFBKzgLC3hMTafFQXflvzHgPmDhOBhxUWDe8AeRv1qp2/uWJ2Y8z5yLWMzmAfkTOiOCZg==", "dependencies": { "has": "^1.0.3", - "object-is": "^1.1.2" + "object-is": "^1.1.5" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -3249,7 +3380,8 @@ }, "node_modules/error-ex": { "version": "1.3.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dependencies": { "is-arrayish": "^0.2.1" } @@ -3308,7 +3440,8 @@ }, "node_modules/es-array-method-boxes-properly": { "version": "1.0.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" }, "node_modules/es-iterator-helpers": { "version": "1.0.15", @@ -3333,8 +3466,9 @@ } }, "node_modules/es-module-lexer": { - "version": "0.9.3", - "license": "MIT", + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.1.tgz", + "integrity": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==", "peer": true }, "node_modules/es-set-tostringtag": { @@ -3360,7 +3494,8 @@ }, "node_modules/es-to-primitive": { "version": "1.2.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dependencies": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", @@ -3374,9 +3509,9 @@ } }, "node_modules/esbuild": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.8.tgz", - "integrity": "sha512-l7iffQpT2OrZfH2rXIp7/FkmaeZM0vxbxN9KfiCwGYuZqzMg/JdvX26R31Zxn/Pxvsrg3Y9N6XTcnknqDyyv4w==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.11.tgz", + "integrity": "sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==", "dev": true, "hasInstallScript": true, "bin": { @@ -3386,33 +3521,35 @@ "node": ">=12" }, "optionalDependencies": { - "@esbuild/android-arm": "0.19.8", - "@esbuild/android-arm64": "0.19.8", - "@esbuild/android-x64": "0.19.8", - "@esbuild/darwin-arm64": "0.19.8", - "@esbuild/darwin-x64": "0.19.8", - "@esbuild/freebsd-arm64": "0.19.8", - "@esbuild/freebsd-x64": "0.19.8", - "@esbuild/linux-arm": "0.19.8", - "@esbuild/linux-arm64": "0.19.8", - "@esbuild/linux-ia32": "0.19.8", - "@esbuild/linux-loong64": "0.19.8", - "@esbuild/linux-mips64el": "0.19.8", - "@esbuild/linux-ppc64": "0.19.8", - "@esbuild/linux-riscv64": "0.19.8", - "@esbuild/linux-s390x": "0.19.8", - "@esbuild/linux-x64": "0.19.8", - "@esbuild/netbsd-x64": "0.19.8", - "@esbuild/openbsd-x64": "0.19.8", - "@esbuild/sunos-x64": "0.19.8", - "@esbuild/win32-arm64": "0.19.8", - "@esbuild/win32-ia32": "0.19.8", - "@esbuild/win32-x64": "0.19.8" + "@esbuild/aix-ppc64": "0.19.11", + "@esbuild/android-arm": "0.19.11", + "@esbuild/android-arm64": "0.19.11", + "@esbuild/android-x64": "0.19.11", + "@esbuild/darwin-arm64": "0.19.11", + "@esbuild/darwin-x64": "0.19.11", + "@esbuild/freebsd-arm64": "0.19.11", + "@esbuild/freebsd-x64": "0.19.11", + "@esbuild/linux-arm": "0.19.11", + "@esbuild/linux-arm64": "0.19.11", + "@esbuild/linux-ia32": "0.19.11", + "@esbuild/linux-loong64": "0.19.11", + "@esbuild/linux-mips64el": "0.19.11", + "@esbuild/linux-ppc64": "0.19.11", + "@esbuild/linux-riscv64": "0.19.11", + "@esbuild/linux-s390x": "0.19.11", + "@esbuild/linux-x64": "0.19.11", + "@esbuild/netbsd-x64": "0.19.11", + "@esbuild/openbsd-x64": "0.19.11", + "@esbuild/sunos-x64": "0.19.11", + "@esbuild/win32-arm64": "0.19.11", + "@esbuild/win32-ia32": "0.19.11", + "@esbuild/win32-x64": "0.19.11" } }, "node_modules/escalade": { "version": "3.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", "engines": { "node": ">=6" } @@ -3426,15 +3563,15 @@ } }, "node_modules/eslint": { - "version": "8.54.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.54.0.tgz", - "integrity": "sha512-NY0DfAkM8BIZDVl6PgSa1ttZbx3xHgJzSNJKYcQglem6CppHyMhRIQkBVSSMaSRnLhig3jsDbEzOjwCVt4AmmA==", + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", + "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.3", - "@eslint/js": "8.54.0", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.56.0", "@humanwhocodes/config-array": "^0.11.13", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", @@ -3481,9 +3618,10 @@ } }, "node_modules/eslint-config-prettier": { - "version": "8.5.0", + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz", + "integrity": "sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==", "dev": true, - "license": "MIT", "bin": { "eslint-config-prettier": "bin/cli.js" }, @@ -3551,9 +3689,9 @@ } }, "node_modules/eslint-plugin-import": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.0.tgz", - "integrity": "sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==", + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", + "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", "dev": true, "dependencies": { "array-includes": "^3.1.7", @@ -3572,7 +3710,7 @@ "object.groupby": "^1.0.1", "object.values": "^1.1.7", "semver": "^6.3.1", - "tsconfig-paths": "^3.14.2" + "tsconfig-paths": "^3.15.0" }, "engines": { "node": ">=4" @@ -3603,14 +3741,15 @@ } }, "node_modules/eslint-plugin-prettier": { - "version": "4.0.0", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz", + "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==", "dev": true, - "license": "MIT", "dependencies": { "prettier-linter-helpers": "^1.0.0" }, "engines": { - "node": ">=6.0.0" + "node": ">=12.0.0" }, "peerDependencies": { "eslint": ">=7.28.0", @@ -3665,9 +3804,9 @@ } }, "node_modules/eslint-plugin-react-refresh": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.4.tgz", - "integrity": "sha512-eD83+65e8YPVg6603Om2iCIwcQJf/y7++MWm4tACtEswFLYMwxwVWAfwN+e19f5Ad/FOyyNg9Dfi5lXhH3Y3rA==", + "version": "0.4.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.5.tgz", + "integrity": "sha512-D53FYKJa+fDmZMtriODxvhwrO+IOqrxoEo21gMA0sjHdU6dPVH4OhyFip9ypl8HOF5RV5KdTo+rBQLvnY2cO8w==", "dev": true, "peerDependencies": { "eslint": ">=7" @@ -3727,13 +3866,30 @@ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://opencollective.com/eslint" + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, "node_modules/eslint/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -3746,8 +3902,9 @@ }, "node_modules/eslint/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -3761,8 +3918,9 @@ }, "node_modules/eslint/node_modules/color-convert": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, - "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -3772,13 +3930,15 @@ }, "node_modules/eslint/node_modules/color-name": { "version": "1.1.4", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true }, "node_modules/eslint/node_modules/escape-string-regexp": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -3787,9 +3947,9 @@ } }, "node_modules/eslint/node_modules/globals": { - "version": "13.23.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", - "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "dependencies": { "type-fest": "^0.20.2" @@ -3803,16 +3963,24 @@ }, "node_modules/eslint/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, + "node_modules/eslint/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, "node_modules/eslint/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -3820,6 +3988,18 @@ "node": ">=8" } }, + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/espree": { "version": "9.6.1", "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", @@ -3851,7 +4031,8 @@ }, "node_modules/esrecurse": { "version": "4.3.0", - "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dependencies": { "estraverse": "^5.2.0" }, @@ -3861,7 +4042,8 @@ }, "node_modules/estraverse": { "version": "5.3.0", - "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "engines": { "node": ">=4.0" } @@ -3874,48 +4056,43 @@ }, "node_modules/esutils": { "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, - "license": "BSD-2-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/ev-emitter": { "version": "1.1.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/ev-emitter/-/ev-emitter-1.1.1.tgz", + "integrity": "sha512-ipiDYhdQSCZ4hSbX4rMW+XzNKMD1prg/sTvoVmSLkuQ1MVlwjJQQA+sW8tMYR3BLUr9KjodFV4pvzunvRhd33Q==" }, "node_modules/events": { "version": "3.3.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", "peer": true, "engines": { "node": ">=0.8.x" } }, - "node_modules/execall": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "clone-regexp": "^2.1.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/fast-deep-equal": { "version": "3.1.3", - "license": "MIT" + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" }, "node_modules/fast-diff": { - "version": "1.2.0", - "dev": true, - "license": "Apache-2.0" + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", + "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", + "dev": true }, "node_modules/fast-glob": { - "version": "3.2.11", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", "dev": true, - "license": "MIT", "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", @@ -3929,8 +4106,9 @@ }, "node_modules/fast-glob/node_modules/glob-parent": { "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, - "license": "ISC", "dependencies": { "is-glob": "^4.0.1" }, @@ -3940,7 +4118,8 @@ }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" }, "node_modules/fast-levenshtein": { "version": "2.0.6", @@ -3949,21 +4128,27 @@ "dev": true }, "node_modules/fastest-levenshtein": { - "version": "1.0.12", + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", "dev": true, - "license": "MIT" + "engines": { + "node": ">= 4.9.1" + } }, "node_modules/fastq": { - "version": "1.13.0", + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.16.0.tgz", + "integrity": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==", "dev": true, - "license": "ISC", "dependencies": { "reusify": "^1.0.4" } }, "node_modules/fault": { "version": "1.0.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/fault/-/fault-1.0.4.tgz", + "integrity": "sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==", "dependencies": { "format": "^0.2.0" }, @@ -3974,12 +4159,14 @@ }, "node_modules/fflate": { "version": "0.4.8", - "license": "MIT" + "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.4.8.tgz", + "integrity": "sha512-FJqqoDBR00Mdj9ppamLa/Y7vxm+PRmNWA67N846RvsoYVMKB4q3y/de5PA7gUmRMYK/8CMz2GDZQmCRN1wBcWA==" }, "node_modules/file-entry-cache": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, - "license": "MIT", "dependencies": { "flat-cache": "^3.0.4" }, @@ -3989,8 +4176,9 @@ }, "node_modules/fill-range": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, - "license": "MIT", "dependencies": { "to-regex-range": "^5.0.1" }, @@ -4023,12 +4211,14 @@ }, "node_modules/find-root": { "version": "1.1.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" }, "node_modules/find-up": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, - "license": "MIT", "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" @@ -4042,17 +4232,20 @@ }, "node_modules/fizzy-ui-utils": { "version": "2.0.7", - "license": "MIT", + "resolved": "https://registry.npmjs.org/fizzy-ui-utils/-/fizzy-ui-utils-2.0.7.tgz", + "integrity": "sha512-CZXDVXQ1If3/r8s0T+v+qVeMshhfcuq0rqIFgJnrtd+Bu8GmDmqMjntjUePypVtjHXKJ6V4sw9zeyox34n9aCg==", "dependencies": { "desandro-matches-selector": "^2.0.0" } }, "node_modules/flat-cache": { - "version": "3.0.4", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", "dev": true, - "license": "MIT", "dependencies": { - "flatted": "^3.1.0", + "flatted": "^3.2.9", + "keyv": "^4.5.3", "rimraf": "^3.0.2" }, "engines": { @@ -4060,14 +4253,15 @@ } }, "node_modules/flatted": { - "version": "3.2.5", - "dev": true, - "license": "ISC" + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "dev": true }, "node_modules/follow-redirects": { - "version": "1.15.3", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz", - "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==", + "version": "1.15.5", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", + "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==", "funding": [ { "type": "individual", @@ -4106,14 +4300,17 @@ }, "node_modules/format": { "version": "0.2.2", + "resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz", + "integrity": "sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==", "engines": { "node": ">=0.4.x" } }, "node_modules/fs.realpath": { "version": "1.0.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true }, "node_modules/fsevents": { "version": "2.3.3", @@ -4171,12 +4368,14 @@ } }, "node_modules/fuzzysort": { - "version": "1.2.1", - "license": "MIT" + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/fuzzysort/-/fuzzysort-1.9.0.tgz", + "integrity": "sha512-MOxCT0qLTwLqmEwc7UtU045RKef7mc8Qz8eR4r2bLNEq9dy/c3ZKMEFp6IEst69otkQdFZ4FfgH2dmZD+ddX1g==" }, "node_modules/gensync": { "version": "1.0.0-beta.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "engines": { "node": ">=6.9.0" } @@ -4197,22 +4396,13 @@ }, "node_modules/get-size": { "version": "2.0.3", - "license": "MIT" - }, - "node_modules/get-stdin": { - "version": "8.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "resolved": "https://registry.npmjs.org/get-size/-/get-size-2.0.3.tgz", + "integrity": "sha512-lXNzT/h/dTjTxRbm9BXb+SGxxzkm97h/PCIKtlN/CBCxxmkkIVV21udumMS93MuVTDX583gqc94v3RjuHmI+2Q==" }, "node_modules/get-symbol-description": { "version": "1.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.1" @@ -4225,14 +4415,15 @@ } }, "node_modules/glob": { - "version": "7.2.0", + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, - "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^3.0.4", + "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, @@ -4245,8 +4436,9 @@ }, "node_modules/glob-parent": { "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, - "license": "ISC", "dependencies": { "is-glob": "^4.0.3" }, @@ -4262,8 +4454,9 @@ }, "node_modules/global-modules": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", "dev": true, - "license": "MIT", "dependencies": { "global-prefix": "^3.0.0" }, @@ -4273,8 +4466,9 @@ }, "node_modules/global-prefix": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", "dev": true, - "license": "MIT", "dependencies": { "ini": "^1.3.5", "kind-of": "^6.0.2", @@ -4286,8 +4480,9 @@ }, "node_modules/global-prefix/node_modules/which": { "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, - "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -4297,7 +4492,8 @@ }, "node_modules/globals": { "version": "11.12.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "engines": { "node": ">=4" } @@ -4318,8 +4514,9 @@ }, "node_modules/globby": { "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, - "license": "MIT", "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", @@ -4337,8 +4534,9 @@ }, "node_modules/globjoin": { "version": "0.1.4", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", + "integrity": "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==", + "dev": true }, "node_modules/gopd": { "version": "1.0.1", @@ -4352,8 +4550,9 @@ } }, "node_modules/graceful-fs": { - "version": "4.2.9", - "license": "ISC", + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "peer": true }, "node_modules/graphemer": { @@ -4363,12 +4562,13 @@ "dev": true }, "node_modules/handlebars": { - "version": "4.7.7", + "version": "4.7.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", + "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", "dev": true, - "license": "MIT", "dependencies": { "minimist": "^1.2.5", - "neo-async": "^2.6.0", + "neo-async": "^2.6.2", "source-map": "^0.6.1", "wordwrap": "^1.0.0" }, @@ -4384,18 +4584,17 @@ }, "node_modules/hard-rejection": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/has": { - "version": "1.0.3", - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1" - }, + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz", + "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==", "engines": { "node": ">= 0.4.0" } @@ -4410,17 +4609,18 @@ }, "node_modules/has-flag": { "version": "3.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "engines": { "node": ">=4" } }, "node_modules/has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", "dependencies": { - "get-intrinsic": "^1.1.1" + "get-intrinsic": "^1.2.2" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -4439,7 +4639,8 @@ }, "node_modules/has-symbols": { "version": "1.0.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "engines": { "node": ">= 0.4" }, @@ -4449,7 +4650,8 @@ }, "node_modules/has-tostringtag": { "version": "1.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", "dependencies": { "has-symbols": "^1.0.2" }, @@ -4473,7 +4675,8 @@ }, "node_modules/hast-util-parse-selector": { "version": "2.2.5", - "license": "MIT", + "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz", + "integrity": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" @@ -4481,7 +4684,8 @@ }, "node_modules/hastscript": { "version": "6.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz", + "integrity": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==", "dependencies": { "@types/hast": "^2.0.0", "comma-separated-tokens": "^1.0.0", @@ -4496,33 +4700,30 @@ }, "node_modules/highlight.js": { "version": "10.7.3", - "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz", + "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==", "engines": { "node": "*" } }, - "node_modules/history": { - "version": "5.3.0", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.7.6" - } - }, "node_modules/hoist-non-react-statics": { "version": "3.3.2", - "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", "dependencies": { "react-is": "^16.7.0" } }, "node_modules/hoist-non-react-statics/node_modules/react-is": { "version": "16.13.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" }, "node_modules/hosted-git-info": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", "dev": true, - "license": "ISC", "dependencies": { "lru-cache": "^6.0.0" }, @@ -4530,13 +4731,33 @@ "node": ">=10" } }, + "node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/hosted-git-info/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/hotkeys-js": { - "version": "3.8.7", - "license": "MIT" + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/hotkeys-js/-/hotkeys-js-3.9.4.tgz", + "integrity": "sha512-2zuLt85Ta+gIyvs4N88pCYskNrxf1TFv3LR9t5mdAZIX8BcgQQ48F2opUptvHa6m8zsy5v/a0i9mWzTrlNWU0Q==" }, "node_modules/html-element-map": { "version": "1.3.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/html-element-map/-/html-element-map-1.3.1.tgz", + "integrity": "sha512-6XMlxrAFX4UEEGxctfFnmrFaaZFNf9i5fNuV5wZ3WWQ4FVaNP1aX1LkX9j2mfEx1NpjeE/rL3nmgEn23GdFmrg==", "dependencies": { "array.prototype.filter": "^1.0.0", "call-bind": "^1.0.2" @@ -4546,9 +4767,10 @@ } }, "node_modules/html-tags": { - "version": "3.2.0", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", + "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" }, @@ -4558,7 +4780,8 @@ }, "node_modules/html2canvas": { "version": "1.4.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/html2canvas/-/html2canvas-1.4.1.tgz", + "integrity": "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==", "optional": true, "dependencies": { "css-line-break": "^2.1.0", @@ -4569,7 +4792,9 @@ } }, "node_modules/htmlparser2": { - "version": "6.1.0", + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", + "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", { @@ -4577,18 +4802,18 @@ "url": "https://github.com/sponsors/fb55" } ], - "license": "MIT", "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.0.0", - "domutils": "^2.5.2", - "entities": "^2.0.0" + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "entities": "^4.4.0" } }, "node_modules/husky": { "version": "7.0.4", + "resolved": "https://registry.npmjs.org/husky/-/husky-7.0.4.tgz", + "integrity": "sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==", "dev": true, - "license": "MIT", "bin": { "husky": "lib/bin.js" }, @@ -4601,7 +4826,8 @@ }, "node_modules/iconv-lite": { "version": "0.6.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" }, @@ -4611,6 +4837,8 @@ }, "node_modules/ieee754": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "funding": [ { "type": "github", @@ -4624,20 +4852,21 @@ "type": "consulting", "url": "https://feross.org/support" } - ], - "license": "BSD-3-Clause" + ] }, "node_modules/ignore": { - "version": "5.2.0", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", + "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 4" } }, "node_modules/imagesloaded": { "version": "4.1.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/imagesloaded/-/imagesloaded-4.1.4.tgz", + "integrity": "sha512-ltiBVcYpc/TYTF5nolkMNsnREHW+ICvfQ3Yla2Sgr71YFwQ86bDwV9hgpFhFtrGPuwEx5+LqOHIrdXBdoWwwsA==", "dependencies": { "ev-emitter": "^1.0.0" } @@ -4652,13 +4881,15 @@ } }, "node_modules/immutable": { - "version": "4.0.0", - "dev": true, - "license": "MIT" + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.4.tgz", + "integrity": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==", + "dev": true }, "node_modules/import-fresh": { "version": "3.3.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" @@ -4670,41 +4901,38 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/import-fresh/node_modules/resolve-from": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, "node_modules/import-lazy": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", + "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/imurmurhash": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.8.19" } }, "node_modules/indent-string": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/inflight": { "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dev": true, - "license": "ISC", "dependencies": { "once": "^1.3.0", "wrappy": "1" @@ -4712,13 +4940,15 @@ }, "node_modules/inherits": { "version": "2.0.4", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true }, "node_modules/ini": { "version": "1.3.8", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true }, "node_modules/internal-slot": { "version": "1.0.6", @@ -4735,14 +4965,16 @@ }, "node_modules/invariant": { "version": "2.2.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", "dependencies": { "loose-envify": "^1.0.0" } }, "node_modules/is-alphabetical": { "version": "1.0.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -4750,7 +4982,8 @@ }, "node_modules/is-alphanumerical": { "version": "1.0.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", "dependencies": { "is-alphabetical": "^1.0.0", "is-decimal": "^1.0.0" @@ -4775,7 +5008,8 @@ }, "node_modules/is-arrayish": { "version": "0.2.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" }, "node_modules/is-async-function": { "version": "2.0.0", @@ -4805,8 +5039,9 @@ }, "node_modules/is-binary-path": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, - "license": "MIT", "dependencies": { "binary-extensions": "^2.0.0" }, @@ -4816,7 +5051,8 @@ }, "node_modules/is-boolean-object": { "version": "1.1.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -4852,7 +5088,8 @@ }, "node_modules/is-date-object": { "version": "1.0.5", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -4865,7 +5102,8 @@ }, "node_modules/is-decimal": { "version": "1.0.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -4873,8 +5111,9 @@ }, "node_modules/is-extglob": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -4893,8 +5132,9 @@ }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } @@ -4916,8 +5156,9 @@ }, "node_modules/is-glob": { "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, - "license": "MIT", "dependencies": { "is-extglob": "^2.1.1" }, @@ -4927,7 +5168,8 @@ }, "node_modules/is-hexadecimal": { "version": "1.0.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -4944,7 +5186,8 @@ }, "node_modules/is-negative-zero": { "version": "2.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", "engines": { "node": ">= 0.4" }, @@ -4954,15 +5197,17 @@ }, "node_modules/is-number": { "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.12.0" } }, "node_modules/is-number-object": { - "version": "1.0.6", - "license": "MIT", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -4984,23 +5229,26 @@ }, "node_modules/is-plain-obj": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-plain-object": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-regex": { "version": "1.1.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -5012,14 +5260,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-regexp": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, "node_modules/is-set": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", @@ -5031,7 +5271,8 @@ }, "node_modules/is-shared-array-buffer": { "version": "1.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", "dependencies": { "call-bind": "^1.0.2" }, @@ -5041,7 +5282,8 @@ }, "node_modules/is-string": { "version": "1.0.7", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -5054,11 +5296,13 @@ }, "node_modules/is-subset": { "version": "0.1.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/is-subset/-/is-subset-0.1.1.tgz", + "integrity": "sha512-6Ybun0IkarhmEqxXCNw/C0bna6Zb/TkfUX9UbwJtK6ObwAVCxmAP308WWTHviM/zAqXk05cdhYsUsZeGQh99iw==" }, "node_modules/is-symbol": { "version": "1.0.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "dependencies": { "has-symbols": "^1.0.2" }, @@ -5094,7 +5338,8 @@ }, "node_modules/is-weakref": { "version": "1.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", "dependencies": { "call-bind": "^1.0.2" }, @@ -5122,8 +5367,9 @@ }, "node_modules/isexe": { "version": "2.0.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true }, "node_modules/iterator.prototype": { "version": "1.1.2", @@ -5148,7 +5394,8 @@ }, "node_modules/jest-worker": { "version": "27.5.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "peer": true, "dependencies": { "@types/node": "*", @@ -5161,7 +5408,8 @@ }, "node_modules/jest-worker/node_modules/has-flag": { "version": "4.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "peer": true, "engines": { "node": ">=8" @@ -5169,7 +5417,8 @@ }, "node_modules/jest-worker/node_modules/supports-color": { "version": "8.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "peer": true, "dependencies": { "has-flag": "^4.0.0" @@ -5183,7 +5432,8 @@ }, "node_modules/js-tokens": { "version": "4.0.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, "node_modules/js-yaml": { "version": "4.1.0", @@ -5199,7 +5449,8 @@ }, "node_modules/jsesc": { "version": "2.5.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "bin": { "jsesc": "bin/jsesc" }, @@ -5207,9 +5458,16 @@ "node": ">=4" } }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" }, "node_modules/json-schema-compare": { "version": "0.2.2", @@ -5233,18 +5491,21 @@ } }, "node_modules/json-schema-traverse": { - "version": "0.4.1", - "license": "MIT" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true }, "node_modules/json-stringify-safe": { "version": "5.0.1", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", + "dev": true }, "node_modules/json5": { "version": "2.2.3", @@ -5267,7 +5528,8 @@ }, "node_modules/jspdf": { "version": "2.5.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/jspdf/-/jspdf-2.5.1.tgz", + "integrity": "sha512-hXObxz7ZqoyhxET78+XR34Xu2qFGrJJ2I2bE5w4SM8eFaFEkW2xcGRVUss360fYelwRSid/jT078kbNvmoW0QA==", "dependencies": { "@babel/runtime": "^7.14.0", "atob": "^2.1.2", @@ -5282,10 +5544,11 @@ } }, "node_modules/jspdf-autotable": { - "version": "3.5.23", - "license": "MIT", + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/jspdf-autotable/-/jspdf-autotable-3.8.1.tgz", + "integrity": "sha512-UjJqo80Z3/WUzDi4JipTGp0pAvNvR3Gsm38inJ5ZnwsJH0Lw4pEbssRSH6zMWAhR1ZkTrsDpQo5p6rZk987/AQ==", "peerDependencies": { - "jspdf": "^2.3.1" + "jspdf": "^2.5.1" } }, "node_modules/jsx-ast-utils": { @@ -5303,18 +5566,29 @@ "node": ">=4.0" } }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, "node_modules/kind-of": { "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/known-css-properties": { - "version": "0.25.0", - "dev": true, - "license": "MIT" + "version": "0.26.0", + "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.26.0.tgz", + "integrity": "sha512-5FZRzrZzNTBruuurWpvZnvP9pum+fe0HcK8z/ooo+U+Hmp4vtbyp1/QDsqmufirXy4egGzbaH/y2uCZf+6W5Kg==", + "dev": true }, "node_modules/levn": { "version": "0.4.1", @@ -5331,11 +5605,13 @@ }, "node_modules/lines-and-columns": { "version": "1.2.4", - "license": "MIT" + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, "node_modules/loader-runner": { - "version": "4.2.0", - "license": "MIT", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", "peer": true, "engines": { "node": ">=6.11.5" @@ -5343,8 +5619,9 @@ }, "node_modules/locate-path": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, - "license": "MIT", "dependencies": { "p-locate": "^5.0.0" }, @@ -5367,41 +5644,50 @@ }, "node_modules/lodash.debounce": { "version": "4.0.8", - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" }, "node_modules/lodash.escape": { "version": "4.0.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-4.0.1.tgz", + "integrity": "sha512-nXEOnb/jK9g0DYMr1/Xvq6l5xMD7GDG55+GSYIYmS0G4tBk/hURD4JR9WCavs04t33WmJx9kCyp9vJ+mr4BOUw==" }, "node_modules/lodash.flattendeep": { "version": "4.4.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz", + "integrity": "sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==" }, "node_modules/lodash.isequal": { "version": "4.5.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" }, "node_modules/lodash.memoize": { "version": "4.1.2", - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" }, "node_modules/lodash.merge": { "version": "4.6.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true }, "node_modules/lodash.throttle": { "version": "4.1.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", + "integrity": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==" }, "node_modules/lodash.truncate": { "version": "4.4.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", + "dev": true }, "node_modules/loose-envify": { "version": "1.4.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "dependencies": { "js-tokens": "^3.0.0 || ^4.0.0" }, @@ -5411,7 +5697,8 @@ }, "node_modules/lowlight": { "version": "1.20.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/lowlight/-/lowlight-1.20.0.tgz", + "integrity": "sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==", "dependencies": { "fault": "^1.0.0", "highlight.js": "~10.7.0" @@ -5422,20 +5709,18 @@ } }, "node_modules/lru-cache": { - "version": "6.0.0", - "dev": true, - "license": "ISC", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" + "yallist": "^3.0.2" } }, "node_modules/map-obj": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" }, @@ -5444,9 +5729,9 @@ } }, "node_modules/markdown-to-jsx": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.3.2.tgz", - "integrity": "sha512-B+28F5ucp83aQm+OxNrPkS8z0tMKaeHiy0lHJs3LqCyDQFtWuenaIrkaVTgAm1pf1AU85LXltva86hlaT17i8Q==", + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.4.0.tgz", + "integrity": "sha512-zilc+MIkVVXPyTb4iIUTIz9yyqfcWjszGXnwF9K/aiBWcHXFcmdEMTkG01/oQhwSCH7SY1BnG6+ev5BzWmbPrg==", "engines": { "node": ">= 10" }, @@ -5456,7 +5741,8 @@ }, "node_modules/masonry-layout": { "version": "4.2.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/masonry-layout/-/masonry-layout-4.2.2.tgz", + "integrity": "sha512-iGtAlrpHNyxaR19CvKC3npnEcAwszXoyJiI8ARV2ePi7fmYhIud25MHK8Zx4P0LCC4d3TNO9+rFa1KoK1OEOaA==", "dependencies": { "get-size": "^2.0.2", "outlayer": "^2.1.0" @@ -5464,21 +5750,24 @@ }, "node_modules/mathml-tag-names": { "version": "2.1.3", + "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", + "integrity": "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" } }, "node_modules/memoize-one": { - "version": "5.2.1", - "license": "MIT" + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz", + "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" }, "node_modules/meow": { "version": "9.0.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", + "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", "dev": true, - "license": "MIT", "dependencies": { "@types/minimist": "^1.2.0", "camelcase-keys": "^6.2.2", @@ -5500,34 +5789,26 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/meow/node_modules/type-fest": { - "version": "0.18.1", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/merge-stream": { "version": "2.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "peer": true }, "node_modules/merge2": { "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 8" } }, "node_modules/micromatch": { "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, - "license": "MIT", "dependencies": { "braces": "^3.0.2", "picomatch": "^2.3.1" @@ -5537,17 +5818,19 @@ } }, "node_modules/mime-db": { - "version": "1.51.0", - "license": "MIT", + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "engines": { "node": ">= 0.6" } }, "node_modules/mime-types": { - "version": "2.1.34", - "license": "MIT", + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dependencies": { - "mime-db": "1.51.0" + "mime-db": "1.52.0" }, "engines": { "node": ">= 0.6" @@ -5555,16 +5838,18 @@ }, "node_modules/min-indent": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/minimatch": { "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, - "license": "ISC", "dependencies": { "brace-expansion": "^1.1.7" }, @@ -5573,14 +5858,19 @@ } }, "node_modules/minimist": { - "version": "1.2.6", + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true, - "license": "MIT" + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/minimist-options": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", "dev": true, - "license": "MIT", "dependencies": { "arrify": "^1.0.1", "is-plain-obj": "^1.1.0", @@ -5591,25 +5881,28 @@ } }, "node_modules/moment": { - "version": "2.29.4", - "license": "MIT", + "version": "2.30.1", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz", + "integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==", "engines": { "node": "*" } }, "node_modules/monaco-editor": { - "version": "0.41.0", - "resolved": "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.41.0.tgz", - "integrity": "sha512-1o4olnZJsiLmv5pwLEAmzHTE/5geLKQ07BrGxlF4Ri/AXAc2yyDGZwHjiTqD8D/ROKUZmwMA28A+yEowLNOEcA==", + "version": "0.45.0", + "resolved": "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.45.0.tgz", + "integrity": "sha512-mjv1G1ZzfEE3k9HZN0dQ2olMdwIfaeAAjFiwNprLfYNRSz7ctv9XuCT7gPtBGrMUeV1/iZzYKj17Khu1hxoHOA==", "peer": true }, "node_modules/moo": { - "version": "0.5.1", - "license": "BSD-3-Clause" + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.2.tgz", + "integrity": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==" }, "node_modules/ms": { "version": "2.1.2", - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/nanoid": { "version": "3.3.7", @@ -5630,12 +5923,14 @@ }, "node_modules/natural-compare": { "version": "1.4.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true }, "node_modules/nearley": { "version": "2.20.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/nearley/-/nearley-2.20.1.tgz", + "integrity": "sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==", "dependencies": { "commander": "^2.19.0", "moo": "^0.5.0", @@ -5655,16 +5950,19 @@ }, "node_modules/nearley/node_modules/commander": { "version": "2.20.3", - "license": "MIT" + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, "node_modules/neo-async": { "version": "2.6.2", - "license": "MIT" + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" }, "node_modules/node-fetch": { - "version": "2.6.7", + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", "dev": true, - "license": "MIT", "dependencies": { "whatwg-url": "^5.0.0" }, @@ -5681,14 +5979,15 @@ } }, "node_modules/node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" }, "node_modules/normalize-package-data": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "hosted-git-info": "^4.0.1", "is-core-module": "^2.5.0", @@ -5699,6 +5998,18 @@ "node": ">=10" } }, + "node_modules/normalize-package-data/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/normalize-package-data/node_modules/semver": { "version": "7.5.4", "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", @@ -5714,17 +6025,25 @@ "node": ">=10" } }, + "node_modules/normalize-package-data/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/normalize-path": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/nth-check": { - "version": "2.0.1", - "license": "BSD-2-Clause", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "dependencies": { "boolbase": "^1.0.0" }, @@ -5734,7 +6053,8 @@ }, "node_modules/object-assign": { "version": "4.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "engines": { "node": ">=0.10.0" } @@ -5749,7 +6069,8 @@ }, "node_modules/object-is": { "version": "1.1.5", - "license": "MIT", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3" @@ -5763,18 +6084,19 @@ }, "node_modules/object-keys": { "version": "1.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "engines": { "node": ">= 0.4" } }, "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", "has-symbols": "^1.0.3", "object-keys": "^1.1.1" }, @@ -5858,8 +6180,9 @@ }, "node_modules/once": { "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, - "license": "ISC", "dependencies": { "wrappy": "1" } @@ -5883,7 +6206,8 @@ }, "node_modules/outlayer": { "version": "2.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/outlayer/-/outlayer-2.1.1.tgz", + "integrity": "sha512-+GplXsCQ3VrbGujAeHEzP9SXsBmJxzn/YdDSQZL0xqBmAWBmortu2Y9Gwdp9J0bgDQ8/YNIPMoBM13nTwZfAhw==", "dependencies": { "ev-emitter": "^1.0.0", "fizzy-ui-utils": "^2.0.0", @@ -5892,8 +6216,9 @@ }, "node_modules/p-limit": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, - "license": "MIT", "dependencies": { "yocto-queue": "^0.1.0" }, @@ -5906,8 +6231,9 @@ }, "node_modules/p-locate": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, - "license": "MIT", "dependencies": { "p-limit": "^3.0.2" }, @@ -5920,19 +6246,22 @@ }, "node_modules/p-try": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/papaparse": { - "version": "5.3.1", - "license": "MIT" + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.4.1.tgz", + "integrity": "sha512-HipMsgJkZu8br23pW15uvo6sib6wne/4woLZPlFf3rpDyMe9ywEXUsuD7+6K9PRkJlVT51j/sCOYDKGGS3ZJrw==" }, "node_modules/parent-module": { "version": "1.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dependencies": { "callsites": "^3.0.0" }, @@ -5942,7 +6271,8 @@ }, "node_modules/parse-entities": { "version": "2.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", "dependencies": { "character-entities": "^1.0.0", "character-entities-legacy": "^1.0.0", @@ -5958,8 +6288,9 @@ }, "node_modules/parse-github-url": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-github-url/-/parse-github-url-1.0.2.tgz", + "integrity": "sha512-kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==", "dev": true, - "license": "MIT", "bin": { "parse-github-url": "cli.js" }, @@ -5969,7 +6300,8 @@ }, "node_modules/parse-json": { "version": "5.2.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", @@ -5984,62 +6316,82 @@ } }, "node_modules/parse5": { - "version": "6.0.1", - "license": "MIT" + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", + "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "dependencies": { + "entities": "^4.4.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } }, "node_modules/parse5-htmlparser2-tree-adapter": { - "version": "6.0.1", - "license": "MIT", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz", + "integrity": "sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==", "dependencies": { - "parse5": "^6.0.1" + "domhandler": "^5.0.2", + "parse5": "^7.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" } }, "node_modules/path-exists": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/path-is-absolute": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/path-key": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/path-parse": { "version": "1.0.7", - "license": "MIT" + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" }, "node_modules/path-type": { "version": "4.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "engines": { "node": ">=8" } }, "node_modules/performance-now": { "version": "2.1.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" }, "node_modules/picocolors": { "version": "1.0.0", - "license": "ISC" + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" }, "node_modules/picomatch": { "version": "2.3.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "engines": { "node": ">=8.6" }, @@ -6048,9 +6400,9 @@ } }, "node_modules/postcss": { - "version": "8.4.32", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.32.tgz", - "integrity": "sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==", + "version": "8.4.33", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.33.tgz", + "integrity": "sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==", "funding": [ { "type": "opencollective", @@ -6090,18 +6442,21 @@ }, "node_modules/postcss-media-query-parser": { "version": "0.2.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", + "integrity": "sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==", + "dev": true }, "node_modules/postcss-resolve-nested-selector": { "version": "0.1.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz", + "integrity": "sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==", + "dev": true }, "node_modules/postcss-safe-parser": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", + "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=12.0" }, @@ -6114,23 +6469,35 @@ } }, "node_modules/postcss-scss": { - "version": "4.0.3", + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.9.tgz", + "integrity": "sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==", "dev": true, - "license": "MIT", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss-scss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "engines": { "node": ">=12.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, "peerDependencies": { - "postcss": "^8.3.3" + "postcss": "^8.4.29" } }, "node_modules/postcss-selector-parser": { - "version": "6.0.10", - "license": "MIT", + "version": "6.0.15", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz", + "integrity": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -6141,15 +6508,17 @@ }, "node_modules/postcss-sorting": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-sorting/-/postcss-sorting-7.0.1.tgz", + "integrity": "sha512-iLBFYz6VRYyLJEJsBJ8M3TCqNcckVzz4wFounSc5Oez35ogE/X+aoC5fFu103Ot7NyvjU3/xqIXn93Gp3kJk4g==", "dev": true, - "license": "MIT", "peerDependencies": { "postcss": "^8.3.9" } }, "node_modules/postcss-value-parser": { "version": "4.2.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/prelude-ls": { "version": "1.2.1", @@ -6162,8 +6531,9 @@ }, "node_modules/prettier": { "version": "2.4.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.4.1.tgz", + "integrity": "sha512-9fbDAXSBcc6Bs1mZrDYb3XKzDLm4EXXL9sC1LqKP5rZkT6KRr/rf9amVUcODVXgguK/isJz0d0hP72WeaKWsvA==", "dev": true, - "license": "MIT", "bin": { "prettier": "bin-prettier.js" }, @@ -6173,8 +6543,9 @@ }, "node_modules/prettier-linter-helpers": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", "dev": true, - "license": "MIT", "dependencies": { "fast-diff": "^1.1.2" }, @@ -6183,22 +6554,25 @@ } }, "node_modules/prismjs": { - "version": "1.27.0", - "license": "MIT", + "version": "1.29.0", + "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz", + "integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==", "engines": { "node": ">=6" } }, "node_modules/promise": { - "version": "8.1.0", - "license": "MIT", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", "dependencies": { "asap": "~2.0.6" } }, "node_modules/prop-types": { "version": "15.8.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", "dependencies": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", @@ -6224,11 +6598,13 @@ }, "node_modules/prop-types/node_modules/react-is": { "version": "16.13.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" }, "node_modules/property-information": { "version": "5.6.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-5.6.0.tgz", + "integrity": "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==", "dependencies": { "xtend": "^4.0.0" }, @@ -6243,14 +6619,17 @@ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" }, "node_modules/punycode": { - "version": "2.1.1", - "license": "MIT", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "engines": { "node": ">=6" } }, "node_modules/queue-microtask": { "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true, "funding": [ { @@ -6265,31 +6644,34 @@ "type": "consulting", "url": "https://feross.org/support" } - ], - "license": "MIT" + ] }, "node_modules/quick-lru": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/raf": { "version": "3.4.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", "dependencies": { "performance-now": "^2.1.0" } }, "node_modules/railroad-diagrams": { "version": "1.0.0", - "license": "CC0-1.0" + "resolved": "https://registry.npmjs.org/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz", + "integrity": "sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==" }, "node_modules/randexp": { "version": "0.4.6", - "license": "MIT", + "resolved": "https://registry.npmjs.org/randexp/-/randexp-0.4.6.tgz", + "integrity": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==", "dependencies": { "discontinuous-range": "1.0.0", "ret": "~0.1.10" @@ -6300,7 +6682,8 @@ }, "node_modules/randombytes": { "version": "2.1.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "peer": true, "dependencies": { "safe-buffer": "^5.1.0" @@ -6319,7 +6702,8 @@ }, "node_modules/react-app-polyfill": { "version": "2.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-2.0.0.tgz", + "integrity": "sha512-0sF4ny9v/B7s6aoehwze9vJNWcmCemAUYBVasscVr92+UYiEqDXOxfKjXN685mDaMRNF3WdhHQs76oTODMocFA==", "dependencies": { "core-js": "^3.6.5", "object-assign": "^4.1.1", @@ -6332,10 +6716,15 @@ "node": ">=10" } }, + "node_modules/react-app-polyfill/node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, "node_modules/react-bootstrap": { - "version": "1.6.7", - "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-1.6.7.tgz", - "integrity": "sha512-IzCYXuLSKDEjGFglbFWk0/iHmdhdcJzTmtS6lXxc0kaNFx2PFgrQf5jKnx5sarF2tiXh9Tgx3pSt3pdK7YwkMA==", + "version": "1.6.8", + "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-1.6.8.tgz", + "integrity": "sha512-yD6uN78XlFOkETQp6GRuVe0s5509x3XYx8PfPbirwFTYCj5/RfmSs9YZGCwkUrhZNFzj7tZPdpb+3k50mK1E4g==", "dependencies": { "@babel/runtime": "^7.14.0", "@restart/context": "^2.1.4", @@ -6373,26 +6762,32 @@ } }, "node_modules/react-data-table-component": { - "version": "7.4.7", - "license": "Apache-2.0", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/react-data-table-component/-/react-data-table-component-7.6.2.tgz", + "integrity": "sha512-nHe7040fmtrJyQr/ieGrTfV0jBflYGK4sLokC6/AFOv3ThjmA9WzKz8Z8/2wMxzRqLU+Rn0CVFg+8+frKLepWQ==", "dependencies": { - "deepmerge": "^4.2.2" + "deepmerge": "^4.3.1" }, "peerDependencies": { "react": ">= 16.8.3", - "styled-components": ">= 4" + "styled-components": ">= 5.0.0" + }, + "peerDependenciesMeta": { + "styled-components": { + "optional": false + } } }, "node_modules/react-datepicker": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/react-datepicker/-/react-datepicker-4.10.0.tgz", - "integrity": "sha512-6IfBCZyWj54ZZGLmEZJ9c4Yph0s9MVfEGDC2evOvf9AmVz+RRcfP2Czqad88Ff9wREbcbqa4dk7IFYeXF1d3Ag==", + "version": "4.25.0", + "resolved": "https://registry.npmjs.org/react-datepicker/-/react-datepicker-4.25.0.tgz", + "integrity": "sha512-zB7CSi44SJ0sqo8hUQ3BF1saE/knn7u25qEMTO1CQGofY1VAKahO8k9drZtp0cfW1DMfoYLR3uSY1/uMvbEzbg==", "dependencies": { - "@popperjs/core": "^2.9.2", + "@popperjs/core": "^2.11.8", "classnames": "^2.2.6", - "date-fns": "^2.24.0", + "date-fns": "^2.30.0", "prop-types": "^15.7.2", - "react-onclickoutside": "^6.12.2", + "react-onclickoutside": "^6.13.0", "react-popper": "^2.3.0" }, "peerDependencies": { @@ -6413,8 +6808,9 @@ } }, "node_modules/react-fast-compare": { - "version": "3.2.0", - "license": "MIT" + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz", + "integrity": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==" }, "node_modules/react-final-form": { "version": "6.5.9", @@ -6448,7 +6844,8 @@ }, "node_modules/react-final-form-listeners": { "version": "1.0.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/react-final-form-listeners/-/react-final-form-listeners-1.0.3.tgz", + "integrity": "sha512-OrdCNxSS4JQS/EXD+R530kZKFqaPfa+WcXPgVro/h4BpaBDF/Ja+BtHyCzDezCIb5rWaGGdOJIj+tN2YdtvrXg==", "dependencies": { "@babel/runtime": "^7.12.5" }, @@ -6476,10 +6873,11 @@ } }, "node_modules/react-hotkeys-hook": { - "version": "3.4.4", - "license": "MIT", + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/react-hotkeys-hook/-/react-hotkeys-hook-3.4.7.tgz", + "integrity": "sha512-+bbPmhPAl6ns9VkXkNNyxlmCAIyDAcWbB76O4I0ntr3uWCRuIQf/aRLartUahe9chVMPj+OEzzfk3CQSjclUEQ==", "dependencies": { - "hotkeys-js": "3.8.7" + "hotkeys-js": "3.9.4" }, "peerDependencies": { "react": ">=16.8.1", @@ -6487,8 +6885,9 @@ } }, "node_modules/react-is": { - "version": "17.0.2", - "license": "MIT" + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" }, "node_modules/react-lifecycles-compat": { "version": "3.0.4", @@ -6496,15 +6895,17 @@ "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" }, "node_modules/react-loading-skeleton": { - "version": "3.1.0", - "license": "MIT", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/react-loading-skeleton/-/react-loading-skeleton-3.3.1.tgz", + "integrity": "sha512-NilqqwMh2v9omN7LteiDloEVpFyMIa0VGqF+ukqp0ncVlYu1sKYbYGX9JEl+GtOT9TKsh04zCHAbavnQ2USldA==", "peerDependencies": { "react": ">=16.8.0" } }, "node_modules/react-masonry-component": { "version": "6.3.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/react-masonry-component/-/react-masonry-component-6.3.0.tgz", + "integrity": "sha512-4ZI78nxMfCpU5yQiS6Rup07Ju++YzcOGAyvbMcl2GfpZTw8GRwT548lkKr0PJarNicRV1qE2D/NiT26UPg1T7A==", "dependencies": { "create-react-class": "^15.6.2", "element-resize-detector": "^1.1.9", @@ -6519,7 +6920,8 @@ }, "node_modules/react-media-hook": { "version": "0.4.9", - "license": "MIT", + "resolved": "https://registry.npmjs.org/react-media-hook/-/react-media-hook-0.4.9.tgz", + "integrity": "sha512-FZr/2xA1+23vDJ1IZ794yLqMRRkBoCNOiJATdtTfB5GyVc5djf8FL2qEB/68pSkiNgHdHsmKknMSDr0sC4zBKQ==", "peerDependencies": { "react": ">=16.8.0" } @@ -6558,7 +6960,8 @@ }, "node_modules/react-papaparse": { "version": "3.18.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/react-papaparse/-/react-papaparse-3.18.2.tgz", + "integrity": "sha512-qDth1fWX198VQe7xpkSioK+7MqZc7TqLHCl7hGOz4KWL47AxrFhRjaZMphdX6z43TWCTUf+zhh7BYU2uSMVDkQ==", "dependencies": { "@types/papaparse": "^5.3.1", "papaparse": "^5.3.1" @@ -6583,8 +6986,9 @@ } }, "node_modules/react-redux": { - "version": "7.2.6", - "license": "MIT", + "version": "7.2.9", + "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz", + "integrity": "sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==", "dependencies": { "@babel/runtime": "^7.15.4", "@types/react-redux": "^7.1.20", @@ -6594,7 +6998,7 @@ "react-is": "^17.0.2" }, "peerDependencies": { - "react": "^16.8.3 || ^17" + "react": "^16.8.3 || ^17 || ^18" }, "peerDependenciesMeta": { "react-dom": { @@ -6605,6 +7009,11 @@ } } }, + "node_modules/react-redux/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + }, "node_modules/react-refresh": { "version": "0.14.0", "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", @@ -6615,21 +7024,29 @@ } }, "node_modules/react-router": { - "version": "6.2.2", - "license": "MIT", + "version": "6.21.3", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.21.3.tgz", + "integrity": "sha512-a0H638ZXULv1OdkmiK6s6itNhoy33ywxmUFT/xtSoVyf9VnC7n7+VT4LjVzdIHSaF5TIh9ylUgxMXksHTgGrKg==", "dependencies": { - "history": "^5.2.0" + "@remix-run/router": "1.14.2" + }, + "engines": { + "node": ">=14.0.0" }, "peerDependencies": { "react": ">=16.8" } }, "node_modules/react-router-dom": { - "version": "6.2.2", - "license": "MIT", + "version": "6.21.3", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.21.3.tgz", + "integrity": "sha512-kNzubk7n4YHSrErzjLK72j0B5i969GsuCGazRl3G6j1zqZBLjuSlYBdVdkDOgzGdPIffUOc9nmgiadTEVoq91g==", "dependencies": { - "history": "^5.2.0", - "react-router": "6.2.2" + "@remix-run/router": "1.14.2", + "react-router": "6.21.3" + }, + "engines": { + "node": ">=14.0.0" }, "peerDependencies": { "react": ">=16.8", @@ -6637,16 +7054,19 @@ } }, "node_modules/react-select": { - "version": "5.3.0", - "license": "MIT", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/react-select/-/react-select-5.8.0.tgz", + "integrity": "sha512-TfjLDo58XrhP6VG5M/Mi56Us0Yt8X7xD6cDybC7yoRMUNm7BGO7qk8J0TLQOua/prb8vUOtsfnXZwfm30HGsAA==", "dependencies": { "@babel/runtime": "^7.12.0", "@emotion/cache": "^11.4.0", - "@emotion/react": "^11.1.1", + "@emotion/react": "^11.8.1", + "@floating-ui/dom": "^1.0.1", "@types/react-transition-group": "^4.4.0", - "memoize-one": "^5.0.0", + "memoize-one": "^6.0.0", "prop-types": "^15.6.0", - "react-transition-group": "^4.3.0" + "react-transition-group": "^4.3.0", + "use-isomorphic-layout-effect": "^1.1.2" }, "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0", @@ -6654,35 +7074,37 @@ } }, "node_modules/react-select-search": { - "version": "3.0.9", - "license": "MIT", + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/react-select-search/-/react-select-search-3.0.10.tgz", + "integrity": "sha512-K3Ww5HfOaoqgjNIZt++DMeSjWgu5T78d2xXt/hEa3ERLvEqfxBwXUML2E23goWGIUQBv2b+kGkb86YnOwH0hUw==", "optionalDependencies": { - "fuse.js": "^3.4.5" + "fuse.js": "^6.6.0" }, "peerDependencies": { - "prop-types": "^15.7.2", - "react": "^17.0.1", - "react-dom": "^17.0.1" + "prop-types": "^15.8.1", + "react": "^18.0.1 || ^17.0.1 || ^16.14.0", + "react-dom": "^18.0.1 || ^17.0.1 || ^16.14.0" } }, "node_modules/react-select-search/node_modules/fuse.js": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-3.6.1.tgz", - "integrity": "sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw==", + "version": "6.6.2", + "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-6.6.2.tgz", + "integrity": "sha512-cJaJkxCCxC8qIIcPBF9yGxY0W/tVZS3uEISDxhYIdtk8OL93pe+6Zj7LjCqVV4dzbqcriOZ+kQ/NE4RXZHsIGA==", "optional": true, "engines": { - "node": ">=6" + "node": ">=10" } }, "node_modules/react-syntax-highlighter": { - "version": "15.4.5", - "license": "MIT", + "version": "15.5.0", + "resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-15.5.0.tgz", + "integrity": "sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==", "dependencies": { "@babel/runtime": "^7.3.1", "highlight.js": "^10.4.1", "lowlight": "^1.17.0", - "prismjs": "^1.25.0", - "refractor": "^3.2.0" + "prismjs": "^1.27.0", + "refractor": "^3.6.0" }, "peerDependencies": { "react": ">= 0.14.0" @@ -6699,14 +7121,9 @@ }, "peerDependencies": { "javascript-time-ago": "^2.3.7", - "react": ">=0.16.8", - "react-dom": ">=0.16.8" - } - }, - "node_modules/react-time-ago/node_modules/memoize-one": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz", - "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" + "react": ">=0.16.8", + "react-dom": ">=0.16.8" + } }, "node_modules/react-transition-group": { "version": "4.4.5", @@ -6725,8 +7142,9 @@ }, "node_modules/read-pkg": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", "dev": true, - "license": "MIT", "dependencies": { "@types/normalize-package-data": "^2.4.0", "normalize-package-data": "^2.5.0", @@ -6739,8 +7157,9 @@ }, "node_modules/read-pkg-up": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", "dev": true, - "license": "MIT", "dependencies": { "find-up": "^4.1.0", "read-pkg": "^5.2.0", @@ -6755,8 +7174,9 @@ }, "node_modules/read-pkg-up/node_modules/find-up": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, - "license": "MIT", "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" @@ -6767,8 +7187,9 @@ }, "node_modules/read-pkg-up/node_modules/locate-path": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, - "license": "MIT", "dependencies": { "p-locate": "^4.1.0" }, @@ -6778,8 +7199,9 @@ }, "node_modules/read-pkg-up/node_modules/p-limit": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, - "license": "MIT", "dependencies": { "p-try": "^2.0.0" }, @@ -6792,8 +7214,9 @@ }, "node_modules/read-pkg-up/node_modules/p-locate": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, - "license": "MIT", "dependencies": { "p-limit": "^2.2.0" }, @@ -6803,21 +7226,24 @@ }, "node_modules/read-pkg-up/node_modules/type-fest": { "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", "dev": true, - "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=8" } }, "node_modules/read-pkg/node_modules/hosted-git-info": { "version": "2.8.9", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true }, "node_modules/read-pkg/node_modules/normalize-package-data": { "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", @@ -6836,16 +7262,18 @@ }, "node_modules/read-pkg/node_modules/type-fest": { "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", "dev": true, - "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=8" } }, "node_modules/readdirp": { "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dev": true, - "license": "MIT", "dependencies": { "picomatch": "^2.2.1" }, @@ -6855,8 +7283,9 @@ }, "node_modules/redent": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", "dev": true, - "license": "MIT", "dependencies": { "indent-string": "^4.0.0", "strip-indent": "^3.0.0" @@ -6867,15 +7296,17 @@ }, "node_modules/redux": { "version": "4.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/redux/-/redux-4.1.1.tgz", + "integrity": "sha512-hZQZdDEM25UY2P493kPYuKqviVwZ58lEmGQNeQ+gXa+U0gYPUBf7NKYazbe3m+bs/DzM/ahN12DbF+NG8i0CWw==", "dependencies": { "@babel/runtime": "^7.9.2" } }, "node_modules/redux-immutable-state-invariant": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/redux-immutable-state-invariant/-/redux-immutable-state-invariant-2.1.0.tgz", + "integrity": "sha512-3czbDKs35FwiBRsx/3KabUk5zSOoTXC+cgVofGkpBNv3jQcqIe5JrHcF5AmVt7B/4hyJ8MijBIpCJ8cife6yJg==", "dev": true, - "license": "MIT", "dependencies": { "invariant": "^2.1.0", "json-stringify-safe": "^5.0.1" @@ -6883,7 +7314,8 @@ }, "node_modules/redux-persist": { "version": "6.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/redux-persist/-/redux-persist-6.0.0.tgz", + "integrity": "sha512-71LLMbUq2r02ng2We9S215LtPu3fY0KgaGE0k8WRgl6RkqxtGfl7HUozz1Dftwsb0D/5mZ8dwAaPbtnzfvbEwQ==", "peerDependencies": { "redux": ">4.0.0" } @@ -6918,7 +7350,8 @@ }, "node_modules/refractor": { "version": "3.6.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/refractor/-/refractor-3.6.0.tgz", + "integrity": "sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==", "dependencies": { "hastscript": "^6.0.0", "parse-entities": "^2.0.0", @@ -6929,9 +7362,18 @@ "url": "https://github.com/sponsors/wooorm" } }, + "node_modules/refractor/node_modules/prismjs": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.27.0.tgz", + "integrity": "sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==", + "engines": { + "node": ">=6" + } + }, "node_modules/regenerator-runtime": { - "version": "0.13.9", - "license": "MIT" + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" }, "node_modules/regexp.prototype.flags": { "version": "1.5.1", @@ -6956,7 +7398,8 @@ }, "node_modules/require-from-string": { "version": "2.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "engines": { "node": ">=0.10.0" } @@ -6983,24 +7426,26 @@ } }, "node_modules/resolve-from": { - "version": "5.0.0", - "dev": true, - "license": "MIT", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "engines": { - "node": ">=8" + "node": ">=4" } }, "node_modules/ret": { "version": "0.1.15", - "license": "MIT", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", "engines": { "node": ">=0.12" } }, "node_modules/reusify": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true, - "license": "MIT", "engines": { "iojs": ">=1.0.0", "node": ">=0.10.0" @@ -7008,7 +7453,8 @@ }, "node_modules/rgbcolor": { "version": "1.0.1", - "license": "MIT OR SEE LICENSE IN FEEL-FREE.md", + "resolved": "https://registry.npmjs.org/rgbcolor/-/rgbcolor-1.0.1.tgz", + "integrity": "sha512-9aZLIrhRaD97sgVhtJOW6ckOEh6/GnvQtdVNfdZ6s67+3/XwLS9lBcQYzEEhYVeUowN7pRzMLsyGhK2i/xvWbw==", "optional": true, "engines": { "node": ">= 0.8.15" @@ -7016,8 +7462,9 @@ }, "node_modules/rimraf": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dev": true, - "license": "ISC", "dependencies": { "glob": "^7.1.3" }, @@ -7029,23 +7476,41 @@ } }, "node_modules/rollup": { - "version": "2.79.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", - "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.9.5.tgz", + "integrity": "sha512-E4vQW0H/mbNMw2yLSqJyjtkHY9dslf/p0zuT1xehNRqUTBOFMqEjguDvqhXr7N7r/4ttb2jr4T41d3dncmIgbQ==", "dev": true, + "dependencies": { + "@types/estree": "1.0.5" + }, "bin": { "rollup": "dist/bin/rollup" }, "engines": { - "node": ">=10.0.0" + "node": ">=18.0.0", + "npm": ">=8.0.0" }, "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.9.5", + "@rollup/rollup-android-arm64": "4.9.5", + "@rollup/rollup-darwin-arm64": "4.9.5", + "@rollup/rollup-darwin-x64": "4.9.5", + "@rollup/rollup-linux-arm-gnueabihf": "4.9.5", + "@rollup/rollup-linux-arm64-gnu": "4.9.5", + "@rollup/rollup-linux-arm64-musl": "4.9.5", + "@rollup/rollup-linux-riscv64-gnu": "4.9.5", + "@rollup/rollup-linux-x64-gnu": "4.9.5", + "@rollup/rollup-linux-x64-musl": "4.9.5", + "@rollup/rollup-win32-arm64-msvc": "4.9.5", + "@rollup/rollup-win32-ia32-msvc": "4.9.5", + "@rollup/rollup-win32-x64-msvc": "4.9.5", "fsevents": "~2.3.2" } }, "node_modules/rst-selector-parser": { "version": "2.2.3", - "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz", + "integrity": "sha512-nDG1rZeP6oFTLN6yNDV/uiAvs1+FS/KlrEwh7+y7dpuApDBy6bI2HTBcc0/V8lv9OTqfyD34eF7au2pm8aBbhA==", "dependencies": { "lodash.flattendeep": "^4.4.0", "nearley": "^2.7.10" @@ -7053,6 +7518,8 @@ }, "node_modules/run-parallel": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, "funding": [ { @@ -7068,18 +7535,17 @@ "url": "https://feross.org/support" } ], - "license": "MIT", "dependencies": { "queue-microtask": "^1.2.2" } }, "node_modules/safe-array-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", - "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.0.tgz", + "integrity": "sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", + "call-bind": "^1.0.5", + "get-intrinsic": "^1.2.2", "has-symbols": "^1.0.3", "isarray": "^2.0.5" }, @@ -7091,30 +7557,50 @@ } }, "node_modules/safe-buffer": { - "version": "5.1.2", - "license": "MIT" + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "peer": true }, "node_modules/safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.2.tgz", + "integrity": "sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", + "call-bind": "^1.0.5", + "get-intrinsic": "^1.2.2", "is-regex": "^1.1.4" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/safer-buffer": { "version": "2.1.2", - "license": "MIT" + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "node_modules/sass": { - "version": "1.64.2", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.64.2.tgz", - "integrity": "sha512-TnDlfc+CRnUAgLO9D8cQLFu/GIjJIzJCGkE7o4ekIGQOH7T3GetiRR/PsTWJUHhkzcSPrARkPI+gNWn5alCzDg==", + "version": "1.70.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.70.0.tgz", + "integrity": "sha512-uUxNQ3zAHeAx5nRFskBnrWzDUJrrvpCPD5FNAoRvTi0WwremlheES3tg+56PaVtCs5QDRX5CBLxxKMDJMEa1WQ==", "dev": true, "dependencies": { "chokidar": ">=3.0.0 <4.0.0", @@ -7137,8 +7623,9 @@ } }, "node_modules/schema-utils": { - "version": "3.1.1", - "license": "MIT", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "peer": true, "dependencies": { "@types/json-schema": "^7.0.8", @@ -7153,6 +7640,37 @@ "url": "https://opencollective.com/webpack" } }, + "node_modules/schema-utils/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "peer": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/schema-utils/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peer": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/schema-utils/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "peer": true + }, "node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", @@ -7162,22 +7680,24 @@ } }, "node_modules/serialize-javascript": { - "version": "6.0.0", - "license": "BSD-3-Clause", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", "peer": true, "dependencies": { "randombytes": "^2.1.0" } }, "node_modules/set-function-length": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", - "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.0.tgz", + "integrity": "sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==", "dependencies": { "define-data-property": "^1.1.1", - "get-intrinsic": "^1.2.1", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.2", "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" + "has-property-descriptors": "^1.0.1" }, "engines": { "node": ">= 0.4" @@ -7198,12 +7718,14 @@ }, "node_modules/shallowequal": { "version": "1.1.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", + "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" }, "node_modules/shebang-command": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, - "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" }, @@ -7213,8 +7735,9 @@ }, "node_modules/shebang-regex": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } @@ -7234,12 +7757,14 @@ }, "node_modules/signal-exit": { "version": "3.0.7", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true }, "node_modules/simplebar": { - "version": "5.3.6", - "license": "MIT", + "version": "5.3.9", + "resolved": "https://registry.npmjs.org/simplebar/-/simplebar-5.3.9.tgz", + "integrity": "sha512-1vIIpjDvY9sVH14e0LGeiCiTFU3ILqAghzO6OI9axeG+mvU/vMSrvXeAXkBolqFFz3XYaY8n5ahH9MeP3sp2Ag==", "dependencies": { "@juggle/resize-observer": "^3.3.1", "can-use-dom": "^0.1.0", @@ -7250,29 +7775,32 @@ } }, "node_modules/simplebar-react": { - "version": "2.3.6", - "license": "MIT", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/simplebar-react/-/simplebar-react-2.4.3.tgz", + "integrity": "sha512-Ep8gqAUZAS5IC2lT5RE4t1ZFUIVACqbrSRQvFV9a6NbVUzXzOMnc4P82Hl8Ak77AnPQvmgUwZS7aUKLyBoMAcg==", "dependencies": { "prop-types": "^15.6.1", - "simplebar": "^5.3.6" + "simplebar": "^5.3.9" }, "peerDependencies": { - "react": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0 || ^17.0", - "react-dom": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0 || ^17.0" + "react": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0 || ^17.0 || ^18.0.0", + "react-dom": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0 || ^17.0 || ^18.0.0" } }, "node_modules/slash": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/slice-ansi": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", "dev": true, - "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "astral-regex": "^2.0.0", @@ -7287,8 +7815,9 @@ }, "node_modules/slice-ansi/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -7301,8 +7830,9 @@ }, "node_modules/slice-ansi/node_modules/color-convert": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, - "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -7312,26 +7842,30 @@ }, "node_modules/slice-ansi/node_modules/color-name": { "version": "1.1.4", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true }, "node_modules/source-map": { "version": "0.6.1", - "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "engines": { "node": ">=0.10.0" } }, "node_modules/source-map-js": { "version": "1.0.2", - "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", "engines": { "node": ">=0.10.0" } }, "node_modules/source-map-loader": { - "version": "3.0.1", - "license": "MIT", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", + "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", "dependencies": { "abab": "^2.0.5", "iconv-lite": "^0.6.3", @@ -7350,7 +7884,8 @@ }, "node_modules/source-map-support": { "version": "0.5.21", - "license": "MIT", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "peer": true, "dependencies": { "buffer-from": "^1.0.0", @@ -7359,16 +7894,18 @@ }, "node_modules/space-separated-tokens": { "version": "1.1.5", - "license": "MIT", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", + "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" } }, "node_modules/spdx-correct": { - "version": "3.1.1", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", "dev": true, - "license": "Apache-2.0", "dependencies": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" @@ -7376,26 +7913,30 @@ }, "node_modules/spdx-exceptions": { "version": "2.3.0", - "dev": true, - "license": "CC-BY-3.0" + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true }, "node_modules/spdx-expression-parse": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, - "license": "MIT", "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, "node_modules/spdx-license-ids": { - "version": "3.0.11", - "dev": true, - "license": "CC0-1.0" + "version": "3.0.16", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", + "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==", + "dev": true }, "node_modules/stackblur-canvas": { - "version": "2.5.0", - "license": "MIT", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/stackblur-canvas/-/stackblur-canvas-2.6.0.tgz", + "integrity": "sha512-8S1aIA+UoF6erJYnglGPug6MaHYGo1Ot7h5fuXx4fUPvcvQfcdw2o/ppCse63+eZf8PPidSu4v1JnmEVtEDnpg==", "optional": true, "engines": { "node": ">=0.1.14" @@ -7408,8 +7949,9 @@ }, "node_modules/string-width": { "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, - "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -7419,11 +7961,6 @@ "node": ">=8" } }, - "node_modules/string-width/node_modules/emoji-regex": { - "version": "8.0.0", - "dev": true, - "license": "MIT" - }, "node_modules/string.prototype.matchall": { "version": "4.0.10", "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz", @@ -7488,8 +8025,9 @@ }, "node_modules/strip-ansi": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, - "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" }, @@ -7508,8 +8046,9 @@ }, "node_modules/strip-indent": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", "dev": true, - "license": "MIT", "dependencies": { "min-indent": "^1.0.0" }, @@ -7531,16 +8070,18 @@ }, "node_modules/style-search": { "version": "0.1.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", + "integrity": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==", + "dev": true }, "node_modules/styled-components": { - "version": "5.3.3", - "license": "MIT", + "version": "5.3.11", + "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-5.3.11.tgz", + "integrity": "sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw==", "dependencies": { "@babel/helper-module-imports": "^7.0.0", "@babel/traverse": "^7.4.5", - "@emotion/is-prop-valid": "^0.8.8", + "@emotion/is-prop-valid": "^1.1.0", "@emotion/stylis": "^0.8.4", "@emotion/unitless": "^0.7.4", "babel-plugin-styled-components": ">= 1.12.0", @@ -7562,51 +8103,55 @@ "react-is": ">= 16.8.0" } }, + "node_modules/styled-components/node_modules/@emotion/unitless": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz", + "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==" + }, "node_modules/stylelint": { - "version": "14.9.1", + "version": "14.16.1", + "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-14.16.1.tgz", + "integrity": "sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A==", "dev": true, - "license": "MIT", "dependencies": { - "@csstools/selector-specificity": "^2.0.1", + "@csstools/selector-specificity": "^2.0.2", "balanced-match": "^2.0.0", - "colord": "^2.9.2", - "cosmiconfig": "^7.0.1", + "colord": "^2.9.3", + "cosmiconfig": "^7.1.0", "css-functions-list": "^3.1.0", "debug": "^4.3.4", - "execall": "^2.0.0", - "fast-glob": "^3.2.11", - "fastest-levenshtein": "^1.0.12", + "fast-glob": "^3.2.12", + "fastest-levenshtein": "^1.0.16", "file-entry-cache": "^6.0.1", - "get-stdin": "^8.0.0", "global-modules": "^2.0.0", "globby": "^11.1.0", "globjoin": "^0.1.4", "html-tags": "^3.2.0", - "ignore": "^5.2.0", + "ignore": "^5.2.1", "import-lazy": "^4.0.0", "imurmurhash": "^0.1.4", "is-plain-object": "^5.0.0", - "known-css-properties": "^0.25.0", + "known-css-properties": "^0.26.0", "mathml-tag-names": "^2.1.3", "meow": "^9.0.0", "micromatch": "^4.0.5", "normalize-path": "^3.0.0", "picocolors": "^1.0.0", - "postcss": "^8.4.14", + "postcss": "^8.4.19", "postcss-media-query-parser": "^0.2.3", "postcss-resolve-nested-selector": "^0.1.1", "postcss-safe-parser": "^6.0.0", - "postcss-selector-parser": "^6.0.10", + "postcss-selector-parser": "^6.0.11", "postcss-value-parser": "^4.2.0", "resolve-from": "^5.0.0", "string-width": "^4.2.3", "strip-ansi": "^6.0.1", "style-search": "^0.1.0", - "supports-hyperlinks": "^2.2.0", + "supports-hyperlinks": "^2.3.0", "svg-tags": "^1.0.0", - "table": "^6.8.0", + "table": "^6.8.1", "v8-compile-cache": "^2.3.0", - "write-file-atomic": "^4.0.1" + "write-file-atomic": "^4.0.2" }, "bin": { "stylelint": "bin/stylelint.js" @@ -7621,8 +8166,9 @@ }, "node_modules/stylelint-config-sass-guidelines": { "version": "9.0.1", + "resolved": "https://registry.npmjs.org/stylelint-config-sass-guidelines/-/stylelint-config-sass-guidelines-9.0.1.tgz", + "integrity": "sha512-N06PsVsrgKijQ3YT5hqKA7x3NUkgELTRI1cbWMqcYiCGG6MjzvNk6Cb5YYA1PrvrksBV76BvY9P9bAswojVMqA==", "dev": true, - "license": "MIT", "dependencies": { "postcss-scss": "^4.0.2", "stylelint-order": "^5.0.0", @@ -7638,8 +8184,9 @@ }, "node_modules/stylelint-order": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/stylelint-order/-/stylelint-order-5.0.0.tgz", + "integrity": "sha512-OWQ7pmicXufDw5BlRqzdz3fkGKJPgLyDwD1rFY3AIEfIH/LQY38Vu/85v8/up0I+VPiuGRwbc2Hg3zLAsJaiyw==", "dev": true, - "license": "MIT", "dependencies": { "postcss": "^8.3.11", "postcss-sorting": "^7.0.1" @@ -7649,44 +8196,44 @@ } }, "node_modules/stylelint-scss": { - "version": "4.3.0", + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-4.7.0.tgz", + "integrity": "sha512-TSUgIeS0H3jqDZnby1UO1Qv3poi1N8wUYIJY6D1tuUq2MN3lwp/rITVo0wD+1SWTmRm0tNmGO0b7nKInnqF6Hg==", "dev": true, - "license": "MIT", "dependencies": { - "lodash": "^4.17.21", "postcss-media-query-parser": "^0.2.3", "postcss-resolve-nested-selector": "^0.1.1", - "postcss-selector-parser": "^6.0.6", - "postcss-value-parser": "^4.1.0" + "postcss-selector-parser": "^6.0.11", + "postcss-value-parser": "^4.2.0" }, "peerDependencies": { - "stylelint": "^14.5.1" + "stylelint": "^14.5.1 || ^15.0.0" } }, "node_modules/stylelint/node_modules/balanced-match": { "version": "2.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", + "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", + "dev": true }, - "node_modules/stylelint/node_modules/write-file-atomic": { - "version": "4.0.1", + "node_modules/stylelint/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, - "license": "ISC", - "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16" + "node": ">=8" } }, "node_modules/stylis": { - "version": "4.0.13", - "license": "MIT" + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", + "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==" }, "node_modules/supports-color": { "version": "5.5.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dependencies": { "has-flag": "^3.0.0" }, @@ -7695,9 +8242,10 @@ } }, "node_modules/supports-hyperlinks": { - "version": "2.2.0", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" @@ -7708,16 +8256,18 @@ }, "node_modules/supports-hyperlinks/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/supports-hyperlinks/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -7727,7 +8277,8 @@ }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "engines": { "node": ">= 0.4" }, @@ -7737,7 +8288,8 @@ }, "node_modules/svg-pathdata": { "version": "6.0.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/svg-pathdata/-/svg-pathdata-6.0.3.tgz", + "integrity": "sha512-qsjeeq5YjBZ5eMdFuUa4ZosMLxgr5RZ+F+Y1OrDhuOCEInRMA3x74XdBtggJcj9kOeInz0WE+LgCPDkZFlBYJw==", "optional": true, "engines": { "node": ">=12.0.0" @@ -7745,12 +8297,15 @@ }, "node_modules/svg-tags": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", + "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", "dev": true }, "node_modules/table": { - "version": "6.8.0", + "version": "6.8.1", + "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", + "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "ajv": "^8.0.1", "lodash.truncate": "^4.4.2", @@ -7762,42 +8317,23 @@ "node": ">=10.0.0" } }, - "node_modules/table/node_modules/ajv": { - "version": "8.10.0", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/table/node_modules/json-schema-traverse": { - "version": "1.0.0", - "dev": true, - "license": "MIT" - }, "node_modules/tapable": { "version": "2.2.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", "peer": true, "engines": { "node": ">=6" } }, "node_modules/terser": { - "version": "5.14.2", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", - "integrity": "sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==", + "version": "5.27.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.27.0.tgz", + "integrity": "sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A==", "peer": true, "dependencies": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -7809,15 +8345,16 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.1", - "license": "MIT", + "version": "5.3.10", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", + "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", "peer": true, "dependencies": { + "@jridgewell/trace-mapping": "^0.3.20", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "source-map": "^0.6.1", - "terser": "^5.7.2" + "serialize-javascript": "^6.0.1", + "terser": "^5.26.0" }, "engines": { "node": ">= 10.13.0" @@ -7843,12 +8380,14 @@ }, "node_modules/terser/node_modules/commander": { "version": "2.20.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "peer": true }, "node_modules/text-segmentation": { "version": "1.0.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/text-segmentation/-/text-segmentation-1.0.3.tgz", + "integrity": "sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==", "optional": true, "dependencies": { "utrie": "^1.0.2" @@ -7856,20 +8395,23 @@ }, "node_modules/text-table": { "version": "0.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true }, "node_modules/to-fast-properties": { "version": "2.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", "engines": { "node": ">=4" } }, "node_modules/to-regex-range": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, - "license": "MIT", "dependencies": { "is-number": "^7.0.0" }, @@ -7879,25 +8421,28 @@ }, "node_modules/toggle-selection": { "version": "1.0.6", - "license": "MIT" + "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", + "integrity": "sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==" }, "node_modules/tr46": { "version": "0.0.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true }, "node_modules/trim-newlines": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", "dev": true, "dependencies": { "@types/json5": "^0.0.29", @@ -7918,11 +8463,6 @@ "json5": "lib/cli.js" } }, - "node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" - }, "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", @@ -7936,9 +8476,9 @@ } }, "node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", "dev": true, "engines": { "node": ">=10" @@ -8009,9 +8549,10 @@ } }, "node_modules/uglify-js": { - "version": "3.15.2", + "version": "3.17.4", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", + "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", "dev": true, - "license": "BSD-2-Clause", "optional": true, "bin": { "uglifyjs": "bin/uglifyjs" @@ -8054,9 +8595,9 @@ "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" }, "node_modules/update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", "funding": [ { "type": "opencollective", @@ -8084,32 +8625,50 @@ }, "node_modules/uri-js": { "version": "4.4.1", - "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dependencies": { "punycode": "^2.1.0" } }, + "node_modules/use-isomorphic-layout-effect": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz", + "integrity": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, "node_modules/util-deprecate": { "version": "1.0.2", - "license": "MIT" + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" }, "node_modules/utrie": { "version": "1.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/utrie/-/utrie-1.0.2.tgz", + "integrity": "sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==", "optional": true, "dependencies": { "base64-arraybuffer": "^1.0.2" } }, "node_modules/v8-compile-cache": { - "version": "2.3.0", - "dev": true, - "license": "MIT" + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz", + "integrity": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==", + "dev": true }, "node_modules/validate-npm-package-license": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "dev": true, - "license": "Apache-2.0", "dependencies": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" @@ -8148,9 +8707,9 @@ "integrity": "sha512-kRAyotcbNaSYoDnXvb4MHg/0a1egJdLwS6oJ38TJY7aw9n93Fl/3blIXdyYvPOp55CNxywooG/3BcrwNrBpcSg==" }, "node_modules/vite": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.0.6.tgz", - "integrity": "sha512-MD3joyAEBtV7QZPl2JVVUai6zHms3YOmLR+BpMzLlX2Yzjfcc4gTgNi09d/Rua3F4EtC8zdwPU8eQYyib4vVMQ==", + "version": "5.0.12", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.0.12.tgz", + "integrity": "sha512-4hsnEkG3q0N4Tzf1+t6NdN9dg/L3BM+q8SWgbSPnJvrgH2kgdyzfVJwbR1ic69/4uMJJ/3dqDZZE5/WwqW8U1w==", "dev": true, "dependencies": { "esbuild": "^0.19.3", @@ -8217,31 +8776,18 @@ "vite": ">=2" } }, - "node_modules/vite/node_modules/rollup": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.6.1.tgz", - "integrity": "sha512-jZHaZotEHQaHLgKr8JnQiDT1rmatjgKlMekyksz+yk9jt/8z9quNjnKNRoaM0wd9DC2QKXjmWWuDYtM3jfF8pQ==", + "node_modules/vite-plugin-eslint/node_modules/rollup": { + "version": "2.79.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", + "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", "dev": true, "bin": { "rollup": "dist/bin/rollup" }, "engines": { - "node": ">=18.0.0", - "npm": ">=8.0.0" + "node": ">=10.0.0" }, "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.6.1", - "@rollup/rollup-android-arm64": "4.6.1", - "@rollup/rollup-darwin-arm64": "4.6.1", - "@rollup/rollup-darwin-x64": "4.6.1", - "@rollup/rollup-linux-arm-gnueabihf": "4.6.1", - "@rollup/rollup-linux-arm64-gnu": "4.6.1", - "@rollup/rollup-linux-arm64-musl": "4.6.1", - "@rollup/rollup-linux-x64-gnu": "4.6.1", - "@rollup/rollup-linux-x64-musl": "4.6.1", - "@rollup/rollup-win32-arm64-msvc": "4.6.1", - "@rollup/rollup-win32-ia32-msvc": "4.6.1", - "@rollup/rollup-win32-x64-msvc": "4.6.1", "fsevents": "~2.3.2" } }, @@ -8266,23 +8812,29 @@ "node": ">=10.13.0" } }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, "node_modules/webpack": { - "version": "5.77.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.77.0.tgz", - "integrity": "sha512-sbGNjBr5Ya5ss91yzjeJTLKyfiwo5C628AFjEa6WSXcZa4E+F57om3Cc8xLb1Jh0b243AWuSYRf3dn7HVeFQ9Q==", + "version": "5.89.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.89.0.tgz", + "integrity": "sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==", "peer": true, "dependencies": { "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", "acorn": "^8.7.1", - "acorn-import-assertions": "^1.7.6", + "acorn-import-assertions": "^1.9.0", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.10.0", - "es-module-lexer": "^0.9.0", + "enhanced-resolve": "^5.15.0", + "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", @@ -8291,9 +8843,9 @@ "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", + "schema-utils": "^3.2.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", + "terser-webpack-plugin": "^5.3.7", "watchpack": "^2.4.0", "webpack-sources": "^3.2.3" }, @@ -8315,7 +8867,8 @@ }, "node_modules/webpack-sources": { "version": "3.2.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", "peer": true, "engines": { "node": ">=10.13.0" @@ -8323,7 +8876,8 @@ }, "node_modules/webpack/node_modules/eslint-scope": { "version": "5.1.1", - "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "peer": true, "dependencies": { "esrecurse": "^4.3.0", @@ -8335,34 +8889,33 @@ }, "node_modules/webpack/node_modules/estraverse": { "version": "4.3.0", - "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "peer": true, "engines": { "node": ">=4.0" } }, "node_modules/whatwg-fetch": { - "version": "3.6.2", - "license": "MIT" + "version": "3.6.20", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", + "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==" }, "node_modules/whatwg-url": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "dev": true, - "license": "MIT", "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }, - "node_modules/whatwg-url/node_modules/webidl-conversions": { - "version": "3.0.1", - "dev": true, - "license": "BSD-2-Clause" - }, "node_modules/which": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, - "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -8449,45 +9002,64 @@ }, "node_modules/wordwrap": { "version": "1.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", + "dev": true }, "node_modules/wrappy": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", "dev": true, - "license": "ISC" + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } }, "node_modules/xtend": { "version": "4.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", "engines": { "node": ">=0.4" } }, "node_modules/yallist": { - "version": "4.0.0", - "dev": true, - "license": "ISC" + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" }, "node_modules/yaml": { "version": "1.10.2", - "license": "ISC", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", "engines": { "node": ">= 6" } }, "node_modules/yargs-parser": { "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "dev": true, - "license": "ISC", "engines": { "node": ">=10" } }, "node_modules/yocto-queue": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=10" }, @@ -8522,45 +9094,38 @@ } }, "@babel/compat-data": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.3.tgz", - "integrity": "sha512-BmR4bWbDIoFJmJ9z2cZ8Gmm2MXgEDgjdWgpKmKWUt54UGFJdlj31ECtbaDvCG/qVdG3AQ1SfpZEs01lUFbzLOQ==" + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz", + "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==" }, "@babel/core": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.5.tgz", - "integrity": "sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==", + "version": "7.23.7", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.7.tgz", + "integrity": "sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==", "requires": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.5", - "@babel/helper-compilation-targets": "^7.22.15", + "@babel/generator": "^7.23.6", + "@babel/helper-compilation-targets": "^7.23.6", "@babel/helper-module-transforms": "^7.23.3", - "@babel/helpers": "^7.23.5", - "@babel/parser": "^7.23.5", + "@babel/helpers": "^7.23.7", + "@babel/parser": "^7.23.6", "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.5", - "@babel/types": "^7.23.5", + "@babel/traverse": "^7.23.7", + "@babel/types": "^7.23.6", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.3", "semver": "^6.3.1" - }, - "dependencies": { - "convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" - } } }, "@babel/generator": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.5.tgz", - "integrity": "sha512-BPssCHrBD+0YrxviOa3QzpqwhNIXKEtOa2jQrm4FlmkC2apYgRnQcmPWiGZDlGxiNtltnUFolMe8497Esry+jA==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", + "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", "requires": { - "@babel/types": "^7.23.5", + "@babel/types": "^7.23.6", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" @@ -8575,30 +9140,15 @@ } }, "@babel/helper-compilation-targets": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", - "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", + "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", "requires": { - "@babel/compat-data": "^7.22.9", - "@babel/helper-validator-option": "^7.22.15", - "browserslist": "^4.21.9", + "@babel/compat-data": "^7.23.5", + "@babel/helper-validator-option": "^7.23.5", + "browserslist": "^4.22.2", "lru-cache": "^5.1.1", "semver": "^6.3.1" - }, - "dependencies": { - "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "requires": { - "yallist": "^3.0.2" - } - }, - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } } }, "@babel/helper-environment-visitor": { @@ -8675,18 +9225,18 @@ "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==" }, "@babel/helper-validator-option": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz", - "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==" + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", + "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==" }, "@babel/helpers": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.5.tgz", - "integrity": "sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg==", + "version": "7.23.8", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.8.tgz", + "integrity": "sha512-KDqYz4PiOWvDFrdHLPhKtCThtIcKVy6avWD2oG4GEvyQ+XDZwHD4YQd+H2vNMnq2rkdxsDkU82T+Vk8U/WXHRQ==", "requires": { "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.5", - "@babel/types": "^7.23.5" + "@babel/traverse": "^7.23.7", + "@babel/types": "^7.23.6" } }, "@babel/highlight": { @@ -8700,9 +9250,9 @@ } }, "@babel/parser": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.5.tgz", - "integrity": "sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ==" + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.6.tgz", + "integrity": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==" }, "@babel/plugin-syntax-jsx": { "version": "7.23.3", @@ -8731,18 +9281,11 @@ } }, "@babel/runtime": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.15.tgz", - "integrity": "sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==", + "version": "7.23.8", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.8.tgz", + "integrity": "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==", "requires": { "regenerator-runtime": "^0.14.0" - }, - "dependencies": { - "regenerator-runtime": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", - "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" - } } }, "@babel/template": { @@ -8756,26 +9299,26 @@ } }, "@babel/traverse": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.5.tgz", - "integrity": "sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w==", + "version": "7.23.7", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.7.tgz", + "integrity": "sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==", "requires": { "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.5", + "@babel/generator": "^7.23.6", "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-function-name": "^7.23.0", "@babel/helper-hoist-variables": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.23.5", - "@babel/types": "^7.23.5", - "debug": "^4.1.0", + "@babel/parser": "^7.23.6", + "@babel/types": "^7.23.6", + "debug": "^4.3.1", "globals": "^11.1.0" } }, "@babel/types": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.5.tgz", - "integrity": "sha512-ON5kSOJwVO6xXVRTvOI0eOnWe7VdUcIpsovGo9U/Br4Ie4UVFQTboO2cYnDhAGU6Fp+UxSiT+pMft0SMHfuq6w==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz", + "integrity": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==", "requires": { "@babel/helper-string-parser": "^7.23.4", "@babel/helper-validator-identifier": "^7.22.20", @@ -8800,9 +9343,9 @@ } }, "@coreui/react": { - "version": "4.11.0", - "resolved": "https://registry.npmjs.org/@coreui/react/-/react-4.11.0.tgz", - "integrity": "sha512-RFa3yBUHyIBvl1XX5hVb8MYqj24fU1FogAxZUtA+9yRrssiBs3Uy1W/AqMKnLiSArKyUm07Khjxe7I3Hc1iPdA==", + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/@coreui/react/-/react-4.11.1.tgz", + "integrity": "sha512-2EYnV6kpyH8/648+iffRy/I/xCEnD2MnEOuo1LPiUSX7EqoHn5M3fI+sf4vM9Wrqz4Gv2gxCl8DNRpk2xcLANQ==", "requires": {} }, "@coreui/react-chartjs": { @@ -8815,269 +9358,298 @@ } }, "@coreui/utils": { - "version": "1.3.1" + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@coreui/utils/-/utils-1.3.1.tgz", + "integrity": "sha512-WuWHX7bg89cJH34TWVsLe9RsxzBhTApj+X2Ja19xhjcpxt5Gv11Ozm+fwYt6DD7DgncTvpwYrMcnNlpp701UOg==" }, "@csstools/selector-specificity": { - "version": "2.0.2", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz", + "integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==", "dev": true, "requires": {} }, "@emotion/babel-plugin": { - "version": "11.9.2", - "requires": { - "@babel/helper-module-imports": "^7.12.13", - "@babel/plugin-syntax-jsx": "^7.12.13", - "@babel/runtime": "^7.13.10", - "@emotion/hash": "^0.8.0", - "@emotion/memoize": "^0.7.5", - "@emotion/serialize": "^1.0.2", - "babel-plugin-macros": "^2.6.1", + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz", + "integrity": "sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==", + "requires": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/runtime": "^7.18.3", + "@emotion/hash": "^0.9.1", + "@emotion/memoize": "^0.8.1", + "@emotion/serialize": "^1.1.2", + "babel-plugin-macros": "^3.1.0", "convert-source-map": "^1.5.0", "escape-string-regexp": "^4.0.0", "find-root": "^1.1.0", "source-map": "^0.5.7", - "stylis": "4.0.13" + "stylis": "4.2.0" }, "dependencies": { - "@emotion/memoize": { - "version": "0.7.5" - }, - "babel-plugin-macros": { - "version": "2.8.0", - "requires": { - "@babel/runtime": "^7.7.2", - "cosmiconfig": "^6.0.0", - "resolve": "^1.12.0" - } - }, - "cosmiconfig": { - "version": "6.0.0", - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" - } + "convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" }, "escape-string-regexp": { - "version": "4.0.0" + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" }, "source-map": { - "version": "0.5.7" + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==" } } }, "@emotion/cache": { - "version": "11.7.1", + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz", + "integrity": "sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==", "requires": { - "@emotion/memoize": "^0.7.4", - "@emotion/sheet": "^1.1.0", - "@emotion/utils": "^1.0.0", - "@emotion/weak-memoize": "^0.2.5", - "stylis": "4.0.13" + "@emotion/memoize": "^0.8.1", + "@emotion/sheet": "^1.2.2", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", + "stylis": "4.2.0" } }, "@emotion/hash": { - "version": "0.8.0" + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz", + "integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==" }, "@emotion/is-prop-valid": { - "version": "0.8.8", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz", + "integrity": "sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==", "requires": { - "@emotion/memoize": "0.7.4" + "@emotion/memoize": "^0.8.1" } }, "@emotion/memoize": { - "version": "0.7.4" + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", + "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==" }, "@emotion/react": { - "version": "11.9.0", - "requires": { - "@babel/runtime": "^7.13.10", - "@emotion/babel-plugin": "^11.7.1", - "@emotion/cache": "^11.7.1", - "@emotion/serialize": "^1.0.3", - "@emotion/utils": "^1.1.0", - "@emotion/weak-memoize": "^0.2.5", + "version": "11.11.3", + "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.11.3.tgz", + "integrity": "sha512-Cnn0kuq4DoONOMcnoVsTOR8E+AdnKFf//6kUWc4LCdnxj31pZWn7rIULd6Y7/Js1PiPHzn7SKCM9vB/jBni8eA==", + "requires": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.11.0", + "@emotion/cache": "^11.11.0", + "@emotion/serialize": "^1.1.3", + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", "hoist-non-react-statics": "^3.3.1" } }, "@emotion/serialize": { - "version": "1.0.3", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.3.tgz", + "integrity": "sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA==", "requires": { - "@emotion/hash": "^0.8.0", - "@emotion/memoize": "^0.7.4", - "@emotion/unitless": "^0.7.5", - "@emotion/utils": "^1.0.0", + "@emotion/hash": "^0.9.1", + "@emotion/memoize": "^0.8.1", + "@emotion/unitless": "^0.8.1", + "@emotion/utils": "^1.2.1", "csstype": "^3.0.2" } }, "@emotion/sheet": { - "version": "1.1.0" + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.2.tgz", + "integrity": "sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==" }, "@emotion/stylis": { - "version": "0.8.5" + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz", + "integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==" }, "@emotion/unitless": { - "version": "0.7.5" + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz", + "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==" + }, + "@emotion/use-insertion-effect-with-fallbacks": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz", + "integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==", + "requires": {} }, "@emotion/utils": { - "version": "1.1.0" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz", + "integrity": "sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==" }, "@emotion/weak-memoize": { - "version": "0.2.5" + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz", + "integrity": "sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==" + }, + "@esbuild/aix-ppc64": { + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.19.11.tgz", + "integrity": "sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==", + "dev": true, + "optional": true }, "@esbuild/android-arm": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.8.tgz", - "integrity": "sha512-31E2lxlGM1KEfivQl8Yf5aYU/mflz9g06H6S15ITUFQueMFtFjESRMoDSkvMo8thYvLBax+VKTPlpnx+sPicOA==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.11.tgz", + "integrity": "sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==", "dev": true, "optional": true }, "@esbuild/android-arm64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.8.tgz", - "integrity": "sha512-B8JbS61bEunhfx8kasogFENgQfr/dIp+ggYXwTqdbMAgGDhRa3AaPpQMuQU0rNxDLECj6FhDzk1cF9WHMVwrtA==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.11.tgz", + "integrity": "sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==", "dev": true, "optional": true }, "@esbuild/android-x64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.8.tgz", - "integrity": "sha512-rdqqYfRIn4jWOp+lzQttYMa2Xar3OK9Yt2fhOhzFXqg0rVWEfSclJvZq5fZslnz6ypHvVf3CT7qyf0A5pM682A==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.11.tgz", + "integrity": "sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==", "dev": true, "optional": true }, "@esbuild/darwin-arm64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.8.tgz", - "integrity": "sha512-RQw9DemMbIq35Bprbboyf8SmOr4UXsRVxJ97LgB55VKKeJOOdvsIPy0nFyF2l8U+h4PtBx/1kRf0BelOYCiQcw==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.11.tgz", + "integrity": "sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==", "dev": true, "optional": true }, "@esbuild/darwin-x64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.8.tgz", - "integrity": "sha512-3sur80OT9YdeZwIVgERAysAbwncom7b4bCI2XKLjMfPymTud7e/oY4y+ci1XVp5TfQp/bppn7xLw1n/oSQY3/Q==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.11.tgz", + "integrity": "sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==", "dev": true, "optional": true }, "@esbuild/freebsd-arm64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.8.tgz", - "integrity": "sha512-WAnPJSDattvS/XtPCTj1tPoTxERjcTpH6HsMr6ujTT+X6rylVe8ggxk8pVxzf5U1wh5sPODpawNicF5ta/9Tmw==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.11.tgz", + "integrity": "sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==", "dev": true, "optional": true }, "@esbuild/freebsd-x64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.8.tgz", - "integrity": "sha512-ICvZyOplIjmmhjd6mxi+zxSdpPTKFfyPPQMQTK/w+8eNK6WV01AjIztJALDtwNNfFhfZLux0tZLC+U9nSyA5Zg==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.11.tgz", + "integrity": "sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==", "dev": true, "optional": true }, "@esbuild/linux-arm": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.8.tgz", - "integrity": "sha512-H4vmI5PYqSvosPaTJuEppU9oz1dq2A7Mr2vyg5TF9Ga+3+MGgBdGzcyBP7qK9MrwFQZlvNyJrvz6GuCaj3OukQ==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.11.tgz", + "integrity": "sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==", "dev": true, "optional": true }, "@esbuild/linux-arm64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.8.tgz", - "integrity": "sha512-z1zMZivxDLHWnyGOctT9JP70h0beY54xDDDJt4VpTX+iwA77IFsE1vCXWmprajJGa+ZYSqkSbRQ4eyLCpCmiCQ==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.11.tgz", + "integrity": "sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==", "dev": true, "optional": true }, "@esbuild/linux-ia32": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.8.tgz", - "integrity": "sha512-1a8suQiFJmZz1khm/rDglOc8lavtzEMRo0v6WhPgxkrjcU0LkHj+TwBrALwoz/OtMExvsqbbMI0ChyelKabSvQ==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.11.tgz", + "integrity": "sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==", "dev": true, "optional": true }, "@esbuild/linux-loong64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.8.tgz", - "integrity": "sha512-fHZWS2JJxnXt1uYJsDv9+b60WCc2RlvVAy1F76qOLtXRO+H4mjt3Tr6MJ5l7Q78X8KgCFudnTuiQRBhULUyBKQ==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.11.tgz", + "integrity": "sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==", "dev": true, "optional": true }, "@esbuild/linux-mips64el": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.8.tgz", - "integrity": "sha512-Wy/z0EL5qZYLX66dVnEg9riiwls5IYnziwuju2oUiuxVc+/edvqXa04qNtbrs0Ukatg5HEzqT94Zs7J207dN5Q==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.11.tgz", + "integrity": "sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==", "dev": true, "optional": true }, "@esbuild/linux-ppc64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.8.tgz", - "integrity": "sha512-ETaW6245wK23YIEufhMQ3HSeHO7NgsLx8gygBVldRHKhOlD1oNeNy/P67mIh1zPn2Hr2HLieQrt6tWrVwuqrxg==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.11.tgz", + "integrity": "sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==", "dev": true, "optional": true }, "@esbuild/linux-riscv64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.8.tgz", - "integrity": "sha512-T2DRQk55SgoleTP+DtPlMrxi/5r9AeFgkhkZ/B0ap99zmxtxdOixOMI570VjdRCs9pE4Wdkz7JYrsPvsl7eESg==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.11.tgz", + "integrity": "sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==", "dev": true, "optional": true }, "@esbuild/linux-s390x": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.8.tgz", - "integrity": "sha512-NPxbdmmo3Bk7mbNeHmcCd7R7fptJaczPYBaELk6NcXxy7HLNyWwCyDJ/Xx+/YcNH7Im5dHdx9gZ5xIwyliQCbg==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.11.tgz", + "integrity": "sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==", "dev": true, "optional": true }, "@esbuild/linux-x64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.8.tgz", - "integrity": "sha512-lytMAVOM3b1gPypL2TRmZ5rnXl7+6IIk8uB3eLsV1JwcizuolblXRrc5ShPrO9ls/b+RTp+E6gbsuLWHWi2zGg==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.11.tgz", + "integrity": "sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==", "dev": true, "optional": true }, "@esbuild/netbsd-x64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.8.tgz", - "integrity": "sha512-hvWVo2VsXz/8NVt1UhLzxwAfo5sioj92uo0bCfLibB0xlOmimU/DeAEsQILlBQvkhrGjamP0/el5HU76HAitGw==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.11.tgz", + "integrity": "sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==", "dev": true, "optional": true }, "@esbuild/openbsd-x64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.8.tgz", - "integrity": "sha512-/7Y7u77rdvmGTxR83PgaSvSBJCC2L3Kb1M/+dmSIvRvQPXXCuC97QAwMugBNG0yGcbEGfFBH7ojPzAOxfGNkwQ==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.11.tgz", + "integrity": "sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==", "dev": true, "optional": true }, "@esbuild/sunos-x64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.8.tgz", - "integrity": "sha512-9Lc4s7Oi98GqFA4HzA/W2JHIYfnXbUYgekUP/Sm4BG9sfLjyv6GKKHKKVs83SMicBF2JwAX6A1PuOLMqpD001w==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.11.tgz", + "integrity": "sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==", "dev": true, "optional": true }, "@esbuild/win32-arm64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.8.tgz", - "integrity": "sha512-rq6WzBGjSzihI9deW3fC2Gqiak68+b7qo5/3kmB6Gvbh/NYPA0sJhrnp7wgV4bNwjqM+R2AApXGxMO7ZoGhIJg==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.11.tgz", + "integrity": "sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==", "dev": true, "optional": true }, "@esbuild/win32-ia32": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.8.tgz", - "integrity": "sha512-AIAbverbg5jMvJznYiGhrd3sumfwWs8572mIJL5NQjJa06P8KfCPWZQ0NwZbPQnbQi9OWSZhFVSUWjjIrn4hSw==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.11.tgz", + "integrity": "sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==", "dev": true, "optional": true }, "@esbuild/win32-x64": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.8.tgz", - "integrity": "sha512-bfZ0cQ1uZs2PqpulNL5j/3w+GDhP36k1K5c38QdQg+Swy51jFZWWeIkteNsufkQxp986wnqRRsb/bHbY1WQ7TA==", + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.11.tgz", + "integrity": "sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==", "dev": true, "optional": true }, @@ -9097,9 +9669,9 @@ "dev": true }, "@eslint/eslintrc": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.3.tgz", - "integrity": "sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", "dev": true, "requires": { "ajv": "^6.12.4", @@ -9113,79 +9685,122 @@ "strip-json-comments": "^3.1.1" }, "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, "globals": { - "version": "13.23.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", - "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "requires": { "type-fest": "^0.20.2" } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true } } }, "@eslint/js": { - "version": "8.54.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.54.0.tgz", - "integrity": "sha512-ut5V+D+fOoWPgGGNj83GGjnntO39xDy6DWxO0wb7Jp3DcMX0TfIqdzHF85VTQkerdyGmuuMD9AKAo5KiNlf/AQ==", + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", + "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", "dev": true }, + "@floating-ui/core": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.5.3.tgz", + "integrity": "sha512-O0WKDOo0yhJuugCx6trZQj5jVJ9yR0ystG2JaNAemYUWce+pmM6WUEFIibnWyEJKdrDxhm75NoSRME35FNaM/Q==", + "requires": { + "@floating-ui/utils": "^0.2.0" + } + }, + "@floating-ui/dom": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.5.4.tgz", + "integrity": "sha512-jByEsHIY+eEdCjnTVu+E3ephzTOzkQ8hgUfGwos+bg7NlH33Zc5uO+QHz1mrQUOgIKKDD1RtS201P9NvAfq3XQ==", + "requires": { + "@floating-ui/core": "^1.5.3", + "@floating-ui/utils": "^0.2.0" + } + }, + "@floating-ui/utils": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.1.tgz", + "integrity": "sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==" + }, "@fortawesome/fontawesome-common-types": { - "version": "0.3.0" + "version": "0.2.36", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.36.tgz", + "integrity": "sha512-a/7BiSgobHAgBWeN7N0w+lAhInrGxksn13uK7231n2m8EDPE3BMCl9NZLTGrj9ZXfCmC6LM0QLqXidIizVQ6yg==" }, "@fortawesome/fontawesome-svg-core": { - "version": "1.3.0", + "version": "1.2.36", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-1.2.36.tgz", + "integrity": "sha512-YUcsLQKYb6DmaJjIHdDWpBIGCcyE/W+p/LMGvjQem55Mm2XWVAP5kWTMKWLv9lwpCVjpLxPyOMOyUocP1GxrtA==", "requires": { - "@fortawesome/fontawesome-common-types": "^0.3.0" + "@fortawesome/fontawesome-common-types": "^0.2.36" } }, "@fortawesome/free-brands-svg-icons": { "version": "5.15.4", + "resolved": "https://registry.npmjs.org/@fortawesome/free-brands-svg-icons/-/free-brands-svg-icons-5.15.4.tgz", + "integrity": "sha512-f1witbwycL9cTENJegcmcZRYyawAFbm8+c6IirLmwbbpqz46wyjbQYLuxOc7weXFXfB7QR8/Vd2u5R3q6JYD9g==", "requires": { "@fortawesome/fontawesome-common-types": "^0.2.36" - }, - "dependencies": { - "@fortawesome/fontawesome-common-types": { - "version": "0.2.36" - } } }, "@fortawesome/free-regular-svg-icons": { "version": "5.15.4", + "resolved": "https://registry.npmjs.org/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-5.15.4.tgz", + "integrity": "sha512-9VNNnU3CXHy9XednJ3wzQp6SwNwT3XaM26oS4Rp391GsxVYA+0oDR2J194YCIWf7jNRCYKjUCOduxdceLrx+xw==", "requires": { "@fortawesome/fontawesome-common-types": "^0.2.36" - }, - "dependencies": { - "@fortawesome/fontawesome-common-types": { - "version": "0.2.36" - } } }, "@fortawesome/free-solid-svg-icons": { "version": "5.15.4", + "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-5.15.4.tgz", + "integrity": "sha512-JLmQfz6tdtwxoihXLg6lT78BorrFyCf59SAwBM6qV/0zXyVeDygJVb3fk+j5Qat+Yvcxp1buLTY5iDh1ZSAQ8w==", "requires": { "@fortawesome/fontawesome-common-types": "^0.2.36" - }, - "dependencies": { - "@fortawesome/fontawesome-common-types": { - "version": "0.2.36" - } } }, "@fortawesome/react-fontawesome": { - "version": "0.1.17", + "version": "0.1.19", + "resolved": "https://registry.npmjs.org/@fortawesome/react-fontawesome/-/react-fontawesome-0.1.19.tgz", + "integrity": "sha512-Hyb+lB8T18cvLNX0S3llz7PcSOAJMLwiVKBuuzwM/nI5uoBw+gQjnf9il0fR1C3DKOI5Kc79pkJ4/xB0Uw9aFQ==", "requires": { "prop-types": "^15.8.1" } }, "@humanwhocodes/config-array": { - "version": "0.11.13", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", - "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==", + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", "dev": true, "requires": { - "@humanwhocodes/object-schema": "^2.0.1", - "debug": "^4.1.1", + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", "minimatch": "^3.0.5" } }, @@ -9196,15 +9811,15 @@ "dev": true }, "@humanwhocodes/object-schema": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz", - "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", + "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", "dev": true }, "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", "requires": { "@jridgewell/set-array": "^1.0.1", "@jridgewell/sourcemap-codec": "^1.4.10", @@ -9222,9 +9837,9 @@ "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" }, "@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", "peer": true, "requires": { "@jridgewell/gen-mapping": "^0.3.0", @@ -9237,35 +9852,39 @@ "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" }, "@jridgewell/trace-mapping": { - "version": "0.3.20", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", - "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.22.tgz", + "integrity": "sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==", "requires": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, "@juggle/resize-observer": { - "version": "3.3.1" + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/@juggle/resize-observer/-/resize-observer-3.4.0.tgz", + "integrity": "sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==" }, "@monaco-editor/loader": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/@monaco-editor/loader/-/loader-1.3.3.tgz", - "integrity": "sha512-6KKF4CTzcJiS8BJwtxtfyYt9shBiEv32ateQ9T4UVogwn4HM/uPo9iJd2Dmbkpz8CM6Y0PDUpjnZzCwC+eYo2Q==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@monaco-editor/loader/-/loader-1.4.0.tgz", + "integrity": "sha512-00ioBig0x642hytVspPl7DbQyaSWRaolYie/UFNjoTdvoKPzo6xrXLhTk9ixgIKcLH5b5vDOjVNiGyY+uDCUlg==", "requires": { "state-local": "^1.0.6" } }, "@monaco-editor/react": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/@monaco-editor/react/-/react-4.5.2.tgz", - "integrity": "sha512-emcWu6vg1OpXPiYll4aPOaXe8bwYB4UaaNTwtArFLgMoNGBzRZb2Xn0Bra2HMIFM7QLgs7fCGunHO5LkfT2LBA==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@monaco-editor/react/-/react-4.6.0.tgz", + "integrity": "sha512-RFkU9/i7cN2bsq/iTkurMWOEErmYcY6JiQI3Jn+WeR/FGISH8JbHERjpS9oRuSOPvDMJI0Z8nJeKkbOs9sBYQw==", "requires": { - "@monaco-editor/loader": "^1.3.3" + "@monaco-editor/loader": "^1.4.0" } }, "@nodelib/fs.scandir": { "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "requires": { "@nodelib/fs.stat": "2.0.5", @@ -9274,10 +9893,14 @@ }, "@nodelib/fs.stat": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true }, "@nodelib/fs.walk": { "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "requires": { "@nodelib/fs.scandir": "2.1.5", @@ -9316,6 +9939,11 @@ } } }, + "@remix-run/router": { + "version": "1.14.2", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.14.2.tgz", + "integrity": "sha512-ACXpdMM9hmKZww21yEqWwiLws/UPLhNKvimN8RrYSqPSvB3ov7sLvAcfvaxePeLvccTQKGdkDIhLYApZVDFuKg==" + }, "@restart/context": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/@restart/context/-/context-2.1.4.tgz", @@ -9323,79 +9951,54 @@ "requires": {} }, "@restart/hooks": { - "version": "0.4.11", - "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.11.tgz", - "integrity": "sha512-Ft/ncTULZN6ldGHiF/k5qt72O8JyRMOeg0tApvCni8LkoiEahO+z3TNxfXIVGy890YtWVDvJAl662dVJSJXvMw==", + "version": "0.4.15", + "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.15.tgz", + "integrity": "sha512-cZFXYTxbpzYcieq/mBwSyXgqnGMHoBVh3J7MU0CCoIB4NRZxV9/TuwTBAaLMqpNhC3zTPMCgkQ5Ey07L02Xmcw==", "requires": { "dequal": "^2.0.3" } }, "@rjsf/bootstrap-4": { - "version": "5.12.1", - "resolved": "https://registry.npmjs.org/@rjsf/bootstrap-4/-/bootstrap-4-5.12.1.tgz", - "integrity": "sha512-aUnijxIlYWza8klJ+GvgoYk4gFSaQQV97LLdujMQY096iLm12ryxWLEjyLyPPNOymyp4kdkNO4FCTiWMs2bh3Q==", + "version": "5.16.1", + "resolved": "https://registry.npmjs.org/@rjsf/bootstrap-4/-/bootstrap-4-5.16.1.tgz", + "integrity": "sha512-YskiNpIAYJD9Ahr3piJHeg/9ElqOOe4Bef9t+QnEPvIlfU54JJ/wA7PmuS4KvxhKwB+aNQr5LUmWiQ7Xiy9+tA==", "requires": { "@react-icons/all-files": "^4.1.0" } }, "@rjsf/core": { - "version": "5.12.1", - "resolved": "https://registry.npmjs.org/@rjsf/core/-/core-5.12.1.tgz", - "integrity": "sha512-1YFhZ90/uHRx1akQmDdIjBxGMjs/5gtuTLUFwl6GbOwTm2fhZRh3qXRFyTXz81Oy6TGcbrxBJEYvFg2iHjYKCA==", + "version": "5.16.1", + "resolved": "https://registry.npmjs.org/@rjsf/core/-/core-5.16.1.tgz", + "integrity": "sha512-zIqm5aJ0CfpqsJXcJvIEoYZMfPa6hLqKSeOwwifuHSjznC6fbXPdmqnifBCPVy0GgMaDDWekZLfndk5W3ZO1YA==", "requires": { "lodash": "^4.17.21", "lodash-es": "^4.17.21", - "markdown-to-jsx": "^7.3.2", - "nanoid": "^3.3.6", + "markdown-to-jsx": "^7.4.0", + "nanoid": "^3.3.7", "prop-types": "^15.8.1" } }, "@rjsf/utils": { - "version": "5.12.1", - "resolved": "https://registry.npmjs.org/@rjsf/utils/-/utils-5.12.1.tgz", - "integrity": "sha512-/k8+7WdLwhaYsOQvH5BQINipj2IJvjEW3QQv4jQQ7sXtkpdUjieZayRfaE8DHfRdm9HjgJURJFDy3EODkWPl6A==", + "version": "5.16.1", + "resolved": "https://registry.npmjs.org/@rjsf/utils/-/utils-5.16.1.tgz", + "integrity": "sha512-zJ8WopscMl46QBjlIalIoPERs7kgSfUwIZ5zx4OMBRp0O+m7Scx0F+4iHqLnRuHEfaCNA5D7IKxmx1whOG/x1Q==", "requires": { "json-schema-merge-allof": "^0.8.1", "jsonpointer": "^5.0.1", "lodash": "^4.17.21", "lodash-es": "^4.17.21", "react-is": "^18.2.0" - }, - "dependencies": { - "react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - } } }, "@rjsf/validator-ajv8": { - "version": "5.12.1", - "resolved": "https://registry.npmjs.org/@rjsf/validator-ajv8/-/validator-ajv8-5.12.1.tgz", - "integrity": "sha512-m4QO44yp60LTIfd4RPUu/h07B8U9umbD3I4Nh4iv9oyUudncaZFFXRopKcBm08v30VkN0tjMwuu0SxGDpzMtHA==", + "version": "5.16.1", + "resolved": "https://registry.npmjs.org/@rjsf/validator-ajv8/-/validator-ajv8-5.16.1.tgz", + "integrity": "sha512-4aYZU5+7q/9eFVzaUFTjsfVwlM0ku/BmHse9a1F87skiVRV6pv30z3B3fEUJ7zZMOGFwviYF60Tb3mr2KQ5GSg==", "requires": { "ajv": "^8.12.0", "ajv-formats": "^2.1.1", "lodash": "^4.17.21", "lodash-es": "^4.17.21" - }, - "dependencies": { - "ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - } } }, "@rollup/pluginutils": { @@ -9409,86 +10012,93 @@ } }, "@rollup/rollup-android-arm-eabi": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.6.1.tgz", - "integrity": "sha512-0WQ0ouLejaUCRsL93GD4uft3rOmB8qoQMU05Kb8CmMtMBe7XUDLAltxVZI1q6byNqEtU7N1ZX1Vw5lIpgulLQA==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.9.5.tgz", + "integrity": "sha512-idWaG8xeSRCfRq9KpRysDHJ/rEHBEXcHuJ82XY0yYFIWnLMjZv9vF/7DOq8djQ2n3Lk6+3qfSH8AqlmHlmi1MA==", "dev": true, "optional": true }, "@rollup/rollup-android-arm64": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.6.1.tgz", - "integrity": "sha512-1TKm25Rn20vr5aTGGZqo6E4mzPicCUD79k17EgTLAsXc1zysyi4xXKACfUbwyANEPAEIxkzwue6JZ+stYzWUTA==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.9.5.tgz", + "integrity": "sha512-f14d7uhAMtsCGjAYwZGv6TwuS3IFaM4ZnGMUn3aCBgkcHAYErhV1Ad97WzBvS2o0aaDv4mVz+syiN0ElMyfBPg==", "dev": true, "optional": true }, "@rollup/rollup-darwin-arm64": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.6.1.tgz", - "integrity": "sha512-cEXJQY/ZqMACb+nxzDeX9IPLAg7S94xouJJCNVE5BJM8JUEP4HeTF+ti3cmxWeSJo+5D+o8Tc0UAWUkfENdeyw==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.9.5.tgz", + "integrity": "sha512-ndoXeLx455FffL68OIUrVr89Xu1WLzAG4n65R8roDlCoYiQcGGg6MALvs2Ap9zs7AHg8mpHtMpwC8jBBjZrT/w==", "dev": true, "optional": true }, "@rollup/rollup-darwin-x64": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.6.1.tgz", - "integrity": "sha512-LoSU9Xu56isrkV2jLldcKspJ7sSXmZWkAxg7sW/RfF7GS4F5/v4EiqKSMCFbZtDu2Nc1gxxFdQdKwkKS4rwxNg==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.9.5.tgz", + "integrity": "sha512-UmElV1OY2m/1KEEqTlIjieKfVwRg0Zwg4PLgNf0s3glAHXBN99KLpw5A5lrSYCa1Kp63czTpVll2MAqbZYIHoA==", "dev": true, "optional": true }, "@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.6.1.tgz", - "integrity": "sha512-EfI3hzYAy5vFNDqpXsNxXcgRDcFHUWSx5nnRSCKwXuQlI5J9dD84g2Usw81n3FLBNsGCegKGwwTVsSKK9cooSQ==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.9.5.tgz", + "integrity": "sha512-Q0LcU61v92tQB6ae+udZvOyZ0wfpGojtAKrrpAaIqmJ7+psq4cMIhT/9lfV6UQIpeItnq/2QDROhNLo00lOD1g==", "dev": true, "optional": true }, "@rollup/rollup-linux-arm64-gnu": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.6.1.tgz", - "integrity": "sha512-9lhc4UZstsegbNLhH0Zu6TqvDfmhGzuCWtcTFXY10VjLLUe4Mr0Ye2L3rrtHaDd/J5+tFMEuo5LTCSCMXWfUKw==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.9.5.tgz", + "integrity": "sha512-dkRscpM+RrR2Ee3eOQmRWFjmV/payHEOrjyq1VZegRUa5OrZJ2MAxBNs05bZuY0YCtpqETDy1Ix4i/hRqX98cA==", "dev": true, "optional": true }, "@rollup/rollup-linux-arm64-musl": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.6.1.tgz", - "integrity": "sha512-FfoOK1yP5ksX3wwZ4Zk1NgyGHZyuRhf99j64I5oEmirV8EFT7+OhUZEnP+x17lcP/QHJNWGsoJwrz4PJ9fBEXw==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.9.5.tgz", + "integrity": "sha512-QaKFVOzzST2xzY4MAmiDmURagWLFh+zZtttuEnuNn19AiZ0T3fhPyjPPGwLNdiDT82ZE91hnfJsUiDwF9DClIQ==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-riscv64-gnu": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.9.5.tgz", + "integrity": "sha512-HeGqmRJuyVg6/X6MpE2ur7GbymBPS8Np0S/vQFHDmocfORT+Zt76qu+69NUoxXzGqVP1pzaY6QIi0FJWLC3OPA==", "dev": true, "optional": true }, "@rollup/rollup-linux-x64-gnu": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.6.1.tgz", - "integrity": "sha512-DNGZvZDO5YF7jN5fX8ZqmGLjZEXIJRdJEdTFMhiyXqyXubBa0WVLDWSNlQ5JR2PNgDbEV1VQowhVRUh+74D+RA==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.9.5.tgz", + "integrity": "sha512-Dq1bqBdLaZ1Gb/l2e5/+o3B18+8TI9ANlA1SkejZqDgdU/jK/ThYaMPMJpVMMXy2uRHvGKbkz9vheVGdq3cJfA==", "dev": true, "optional": true }, "@rollup/rollup-linux-x64-musl": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.6.1.tgz", - "integrity": "sha512-RkJVNVRM+piYy87HrKmhbexCHg3A6Z6MU0W9GHnJwBQNBeyhCJG9KDce4SAMdicQnpURggSvtbGo9xAWOfSvIQ==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.9.5.tgz", + "integrity": "sha512-ezyFUOwldYpj7AbkwyW9AJ203peub81CaAIVvckdkyH8EvhEIoKzaMFJj0G4qYJ5sw3BpqhFrsCc30t54HV8vg==", "dev": true, "optional": true }, "@rollup/rollup-win32-arm64-msvc": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.6.1.tgz", - "integrity": "sha512-v2FVT6xfnnmTe3W9bJXl6r5KwJglMK/iRlkKiIFfO6ysKs0rDgz7Cwwf3tjldxQUrHL9INT/1r4VA0n9L/F1vQ==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.9.5.tgz", + "integrity": "sha512-aHSsMnUw+0UETB0Hlv7B/ZHOGY5bQdwMKJSzGfDfvyhnpmVxLMGnQPGNE9wgqkLUs3+gbG1Qx02S2LLfJ5GaRQ==", "dev": true, "optional": true }, "@rollup/rollup-win32-ia32-msvc": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.6.1.tgz", - "integrity": "sha512-YEeOjxRyEjqcWphH9dyLbzgkF8wZSKAKUkldRY6dgNR5oKs2LZazqGB41cWJ4Iqqcy9/zqYgmzBkRoVz3Q9MLw==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.9.5.tgz", + "integrity": "sha512-AiqiLkb9KSf7Lj/o1U3SEP9Zn+5NuVKgFdRIZkvd4N0+bYrTOovVd0+LmYCPQGbocT4kvFyK+LXCDiXPBF3fyA==", "dev": true, "optional": true }, "@rollup/rollup-win32-x64-msvc": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.6.1.tgz", - "integrity": "sha512-0zfTlFAIhgz8V2G8STq8toAjsYYA6eci1hnXuyOTUFnymrtJwnS6uGKiv3v5UrPZkBlamLvrLV2iiaeqCKzb0A==", + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.9.5.tgz", + "integrity": "sha512-1q+mykKE3Vot1kaFJIDoUFv5TuW+QQVaf2FmTT9krg86pQrGStOSJJ0Zil7CFagyxDuouTepzt5Y5TVzyajOdQ==", "dev": true, "optional": true }, @@ -9506,9 +10116,9 @@ } }, "@types/babel__generator": { - "version": "7.6.7", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.7.tgz", - "integrity": "sha512-6Sfsq+EaaLrw4RmdFWE9Onp63TOUue71AWb4Gpa6JxzgTYtimbM086WnYTy2U67AofR++QKCo08ZP6pwx8YFHQ==", + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", "dev": true, "requires": { "@babel/types": "^7.0.0" @@ -9525,25 +10135,27 @@ } }, "@types/babel__traverse": { - "version": "7.20.4", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.4.tgz", - "integrity": "sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.5.tgz", + "integrity": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==", "dev": true, "requires": { "@babel/types": "^7.20.7" } }, "@types/eslint": { - "version": "8.44.7", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.7.tgz", - "integrity": "sha512-f5ORu2hcBbKei97U73mf+l9t4zTGl74IqZ0GQk4oVea/VS8tQZYkUveSYojk+frraAVYId0V2WC9O4PTNru2FQ==", + "version": "8.56.2", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.2.tgz", + "integrity": "sha512-uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw==", "requires": { "@types/estree": "*", "@types/json-schema": "*" } }, "@types/eslint-scope": { - "version": "3.7.3", + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", "peer": true, "requires": { "@types/eslint": "*", @@ -9551,28 +10163,36 @@ } }, "@types/estree": { - "version": "0.0.51" + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" }, "@types/hast": { - "version": "2.3.4", + "version": "2.3.9", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.9.tgz", + "integrity": "sha512-pTHyNlaMD/oKJmS+ZZUyFUcsZeBZpC0lmGquw98CqRVNgAdJZJeD7GoeLiT6Xbx5rU9VCjSt0RwEvDgzh4obFw==", "requires": { - "@types/unist": "*" + "@types/unist": "^2" } }, "@types/hoist-non-react-statics": { - "version": "3.3.1", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.5.tgz", + "integrity": "sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==", "requires": { "@types/react": "*", "hoist-non-react-statics": "^3.3.0" } }, "@types/invariant": { - "version": "2.2.35", - "resolved": "https://registry.npmjs.org/@types/invariant/-/invariant-2.2.35.tgz", - "integrity": "sha512-DxX1V9P8zdJPYQat1gHyY0xj3efl8gnMVjiM9iCY6y27lj+PoQWkgjt8jDqmovPqULkKVpKRg8J36iQiA+EtEg==" + "version": "2.2.37", + "resolved": "https://registry.npmjs.org/@types/invariant/-/invariant-2.2.37.tgz", + "integrity": "sha512-IwpIMieE55oGWiXkQPSBY1nw1nFs6bsKXTFskNY8sdS17K24vyEBRQZEwlRS7ZmXCWnJcQtbxWzly+cODWGs2A==" }, "@types/json-schema": { - "version": "7.0.9" + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" }, "@types/json5": { "version": "0.0.29", @@ -9581,41 +10201,53 @@ "dev": true }, "@types/minimist": { - "version": "1.2.2", + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", "dev": true }, "@types/node": { - "version": "20.10.3", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.3.tgz", - "integrity": "sha512-XJavIpZqiXID5Yxnxv3RUDKTN5b81ddNC3ecsA0SoFXz/QU8OGBwZGMomiq0zw+uuqbL/krztv/DINAQ/EV4gg==", + "version": "20.11.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.5.tgz", + "integrity": "sha512-g557vgQjUUfN76MZAN/dt1z3dzcUsimuysco0KeluHgrPdJXkP/XdAURgyO2W9fZWHRtRBiVKzKn8vyOAwlG+w==", "requires": { "undici-types": "~5.26.4" } }, "@types/normalize-package-data": { - "version": "2.4.1", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", "dev": true }, "@types/papaparse": { - "version": "5.3.2", + "version": "5.3.14", + "resolved": "https://registry.npmjs.org/@types/papaparse/-/papaparse-5.3.14.tgz", + "integrity": "sha512-LxJ4iEFcpqc6METwp9f6BV6VVc43m6MfH0VqFosHvrUgfXiFe6ww7R3itkOQ+TCK6Y+Iv/+RnnvtRZnkc5Kc9g==", "requires": { "@types/node": "*" } }, "@types/parse-json": { - "version": "4.0.0" + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" }, "@types/prop-types": { - "version": "15.7.4" + "version": "15.7.11", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz", + "integrity": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==" }, "@types/raf": { - "version": "3.4.0", + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/@types/raf/-/raf-3.4.3.tgz", + "integrity": "sha512-c4YAvMedbPZ5tEyxzQdMoOhhJ4RD3rngZIdwC2/qDN3d7JpEhB6fiBRKVY1lg5B7Wk+uPBjn5f39j1/2MY1oOw==", "optional": true }, "@types/react": { - "version": "18.2.39", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.39.tgz", - "integrity": "sha512-Oiw+ppED6IremMInLV4HXGbfbG6GyziY3kqAwJYOR0PNbkYDmLWQA3a95EhdSmamsvbkJN96ZNN+YD+fGjzSBA==", + "version": "18.2.48", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.48.tgz", + "integrity": "sha512-qboRCl6Ie70DQQG9hhNREz81jqC1cs9EVNcjQ1AU+jH6NFfSAhVVbrrY/+nSF+Bsk4AOwm9Qa61InvMCyV+H3w==", "requires": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -9623,14 +10255,18 @@ } }, "@types/react-helmet": { - "version": "6.1.5", + "version": "6.1.11", + "resolved": "https://registry.npmjs.org/@types/react-helmet/-/react-helmet-6.1.11.tgz", + "integrity": "sha512-0QcdGLddTERotCXo3VFlUSWO3ztraw8nZ6e3zJSgG7apwV5xt+pJUS8ewPBqT4NYB1optGLprNQzFleIY84u/g==", "dev": true, "requires": { "@types/react": "*" } }, "@types/react-redux": { - "version": "7.1.23", + "version": "7.1.33", + "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.33.tgz", + "integrity": "sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==", "requires": { "@types/hoist-non-react-statics": "^3.3.0", "@types/react": "*", @@ -9639,23 +10275,27 @@ } }, "@types/react-transition-group": { - "version": "4.4.6", - "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.6.tgz", - "integrity": "sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==", + "version": "4.4.10", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.10.tgz", + "integrity": "sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==", "requires": { "@types/react": "*" } }, "@types/scheduler": { - "version": "0.16.2" + "version": "0.16.8", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz", + "integrity": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==" }, "@types/unist": { - "version": "2.0.6" + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz", + "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==" }, "@types/warning": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.0.tgz", - "integrity": "sha512-t/Tvs5qR47OLOr+4E9ckN8AmP2Tf16gWq+/qA4iUGS/OOyHVO8wv2vjJuX8SNOUTJyWb+2t7wJm6cXILFnOROA==" + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.3.tgz", + "integrity": "sha512-D1XC7WK8K+zZEveUPY+cf4+kgauk8N4eHr/XIHXGlGYkHLud6hK9lYfZk1ry1TNh798cZUCgb6MqGEG8DkJt6Q==" }, "@ungap/structured-clone": { "version": "1.2.0", @@ -9677,139 +10317,177 @@ } }, "@webassemblyjs/ast": { - "version": "1.11.1", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", "peer": true, "requires": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", "peer": true }, "@webassemblyjs/helper-api-error": { - "version": "1.11.1", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", "peer": true }, "@webassemblyjs/helper-buffer": { - "version": "1.11.1", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", "peer": true }, "@webassemblyjs/helper-numbers": { - "version": "1.11.1", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", "peer": true, "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", "@xtuc/long": "4.2.2" } }, "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", "peer": true }, "@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", "peer": true, "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" } }, "@webassemblyjs/ieee754": { - "version": "1.11.1", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", "peer": true, "requires": { "@xtuc/ieee754": "^1.2.0" } }, "@webassemblyjs/leb128": { - "version": "1.11.1", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", "peer": true, "requires": { "@xtuc/long": "4.2.2" } }, "@webassemblyjs/utf8": { - "version": "1.11.1", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", "peer": true }, "@webassemblyjs/wasm-edit": { - "version": "1.11.1", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", "peer": true, "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" } }, "@webassemblyjs/wasm-gen": { - "version": "1.11.1", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", "peer": true, "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "@webassemblyjs/wasm-opt": { - "version": "1.11.1", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", "peer": true, "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" } }, "@webassemblyjs/wasm-parser": { - "version": "1.11.1", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", "peer": true, "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "@webassemblyjs/wast-printer": { - "version": "1.11.1", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", "peer": true, "requires": { - "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/ast": "1.11.6", "@xtuc/long": "4.2.2" } }, "@xtuc/ieee754": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", "peer": true }, "@xtuc/long": { "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", "peer": true }, "abab": { - "version": "2.0.5" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" }, "acorn": { - "version": "8.11.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", - "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==" + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==" }, "acorn-import-assertions": { - "version": "1.8.0", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", "peer": true, "requires": {} }, @@ -9821,41 +10499,28 @@ "requires": {} }, "ajv": { - "version": "6.12.6", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "requires": { "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", "uri-js": "^4.2.2" } }, "ajv-formats": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", "requires": { "ajv": "^8.0.0" - }, - "dependencies": { - "ajv": { - "version": "8.10.0", - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0" - } } }, - "ajv-keywords": { - "version": "3.5.2", - "peer": true, - "requires": {} - }, "ansi-regex": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true }, "ansi-styles": { @@ -9867,7 +10532,9 @@ } }, "anymatch": { - "version": "3.1.2", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dev": true, "requires": { "normalize-path": "^3.0.0", @@ -9904,14 +10571,18 @@ }, "array-union": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true }, "array.prototype.filter": { - "version": "1.0.1", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array.prototype.filter/-/array.prototype.filter-1.0.3.tgz", + "integrity": "sha512-VizNcj/RGJiUyQBgzwxzE5oHdeuXY5hSbbmKMlphj1cy1Vl7Pn2asCGbSrru6hSQjmCzqTBPVWAF/whmEOVHbw==", "requires": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", "es-array-method-boxes-properly": "^1.0.0", "is-string": "^1.0.7" } @@ -9981,13 +10652,19 @@ }, "arrify": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", "dev": true }, "asap": { - "version": "2.0.6" + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" }, "astral-regex": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", "dev": true }, "asynciterator.prototype": { @@ -10005,10 +10682,14 @@ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" }, "atob": { - "version": "2.1.2" + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" }, "auto-changelog": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/auto-changelog/-/auto-changelog-2.3.0.tgz", + "integrity": "sha512-S2B+RtTgytsa7l5iFGBoWT9W9ylITT5JJ8OaMJ7nrwvnlRm1dSS2tghaYueDeInZZafOE+1llH3tUQjMDRVS1g==", "dev": true, "requires": { "commander": "^5.0.0", @@ -10024,15 +10705,25 @@ "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" }, "axios": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz", - "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", + "version": "1.6.5", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.5.tgz", + "integrity": "sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg==", "requires": { - "follow-redirects": "^1.15.0", + "follow-redirects": "^1.15.4", "form-data": "^4.0.0", "proxy-from-env": "^1.1.0" } }, + "babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "requires": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + } + }, "babel-plugin-styled-components": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-2.1.4.tgz", @@ -10047,27 +10738,41 @@ }, "balanced-match": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, "base64-arraybuffer": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", + "integrity": "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==", "optional": true }, "base64-js": { - "version": "1.5.1" + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" }, "batch-processor": { - "version": "1.0.0" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/batch-processor/-/batch-processor-1.0.0.tgz", + "integrity": "sha512-xoLQD8gmmR32MeuBHgH0Tzd5PuSZx71ZsbhVxOCRbgktZEPe4SQy7s9Z50uPp0F/f7iw2XmkHN2xkgbMfckMDA==" }, "binary-extensions": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "dev": true }, "boolbase": { - "version": "1.0.0" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" }, "brace-expansion": { "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "requires": { "balanced-match": "^1.0.0", @@ -10076,20 +10781,22 @@ }, "braces": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, "requires": { "fill-range": "^7.0.1" } }, "browserslist": { - "version": "4.21.9", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", - "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", + "version": "4.22.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", + "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", "requires": { - "caniuse-lite": "^1.0.30001503", - "electron-to-chromium": "^1.4.431", - "node-releases": "^2.0.12", - "update-browserslist-db": "^1.0.11" + "caniuse-lite": "^1.0.30001565", + "electron-to-chromium": "^1.4.601", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" } }, "browserslist-to-esbuild": { @@ -10102,10 +10809,14 @@ } }, "btoa": { - "version": "1.2.1" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/btoa/-/btoa-1.2.1.tgz", + "integrity": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==" }, "buffer": { "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", "requires": { "base64-js": "^1.3.1", "ieee754": "^1.2.1" @@ -10113,6 +10824,8 @@ }, "buffer-from": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "peer": true }, "call-bind": { @@ -10126,36 +10839,46 @@ } }, "callsites": { - "version": "3.1.0" + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true }, "camelcase-keys": { "version": "6.2.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", "dev": true, "requires": { "camelcase": "^5.3.1", "map-obj": "^4.0.0", "quick-lru": "^4.0.1" - }, - "dependencies": { - "camelcase": { - "version": "5.3.1", - "dev": true - } } }, "camelize": { - "version": "1.0.0" + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.1.tgz", + "integrity": "sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==" }, "can-use-dom": { - "version": "0.1.0" + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/can-use-dom/-/can-use-dom-0.1.0.tgz", + "integrity": "sha512-ceOhN1DL7Y4O6M0j9ICgmTYziV89WMd96SvSl0REd8PMgrY0B/WBOPoed5S1KUmJqXgUXh8gzSe6E3ae27upsQ==" }, "caniuse-lite": { - "version": "1.0.30001563", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001563.tgz", - "integrity": "sha512-na2WUmOxnwIZtwnFI2CZ/3er0wdNzU7hN+cPYz/z2ajHThnkWjNBOpEPP4n+4r2WPM847JaMotaJE3bnfzjyKw==" + "version": "1.0.30001579", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001579.tgz", + "integrity": "sha512-u5AUVkixruKHJjw/pj9wISlcMpgFWzSrczLZbrqBSxukQixmg0SJ5sZTpvaFvxU0HoQKd4yoyAogyrAz9pzJnA==" }, "canvg": { "version": "3.0.10", + "resolved": "https://registry.npmjs.org/canvg/-/canvg-3.0.10.tgz", + "integrity": "sha512-qwR2FRNO9NlzTeKIPIKpnTY6fqwuYSequ8Ru8c0YkYU7U0oW+hLUvWadLvAu1Rl72OMNiFhoLu4f8eUjQ7l/+Q==", "optional": true, "requires": { "@babel/runtime": "^7.12.5", @@ -10166,6 +10889,14 @@ "rgbcolor": "^1.0.1", "stackblur-canvas": "^2.0.0", "svg-pathdata": "^6.0.3" + }, + "dependencies": { + "regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "optional": true + } } }, "chalk": { @@ -10179,13 +10910,19 @@ } }, "character-entities": { - "version": "1.2.4" + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==" }, "character-entities-legacy": { - "version": "1.1.4" + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==" }, "character-reference-invalid": { - "version": "1.1.4" + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==" }, "chart.js": { "version": "3.9.1", @@ -10193,29 +10930,36 @@ "integrity": "sha512-Ro2JbLmvg83gXF5F4sniaQ+lTbSv18E+TIf2cOeiH1Iqd2PGFOtem+DUufMZsCJwFE7ywPOpfXFBwRTGq7dh6w==" }, "cheerio": { - "version": "1.0.0-rc.10", + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz", + "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==", "requires": { - "cheerio-select": "^1.5.0", - "dom-serializer": "^1.3.2", - "domhandler": "^4.2.0", - "htmlparser2": "^6.1.0", - "parse5": "^6.0.1", - "parse5-htmlparser2-tree-adapter": "^6.0.1", - "tslib": "^2.2.0" + "cheerio-select": "^2.1.0", + "dom-serializer": "^2.0.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "htmlparser2": "^8.0.1", + "parse5": "^7.0.0", + "parse5-htmlparser2-tree-adapter": "^7.0.0" } }, "cheerio-select": { - "version": "1.5.0", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz", + "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", "requires": { - "css-select": "^4.1.3", - "css-what": "^5.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0", - "domutils": "^2.7.0" + "boolbase": "^1.0.0", + "css-select": "^5.1.0", + "css-what": "^6.1.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1" } }, "chokidar": { "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "dev": true, "requires": { "anymatch": "~3.1.2", @@ -10230,6 +10974,8 @@ "dependencies": { "glob-parent": { "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "requires": { "is-glob": "^4.0.1" @@ -10239,19 +10985,14 @@ }, "chrome-trace-event": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", "peer": true }, "classnames": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", - "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" - }, - "clone-regexp": { - "version": "2.2.0", - "dev": true, - "requires": { - "is-regexp": "^2.0.0" - } + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", + "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==" }, "color-convert": { "version": "1.9.3", @@ -10267,7 +11008,9 @@ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" }, "colord": { - "version": "2.9.2", + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", "dev": true }, "combined-stream": { @@ -10279,10 +11022,14 @@ } }, "comma-separated-tokens": { - "version": "1.0.8" + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz", + "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==" }, "commander": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", "dev": true }, "compute-gcd": { @@ -10308,26 +11055,32 @@ }, "concat-map": { "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, "convert-source-map": { - "version": "1.8.0", - "requires": { - "safe-buffer": "~5.1.1" - } + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" }, "copy-to-clipboard": { - "version": "3.3.1", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz", + "integrity": "sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==", "requires": { "toggle-selection": "^1.0.6" } }, "core-js": { - "version": "3.21.1" + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.35.0.tgz", + "integrity": "sha512-ntakECeqg81KqMueeGJ79Q5ZgQNR+6eaE8sxGCx62zMbAIj65q+uYvatToew3m6eAGdU4gNZwpZ34NMe4GYswg==" }, "cosmiconfig": { - "version": "7.0.1", - "dev": true, + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", "requires": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", @@ -10338,6 +11091,8 @@ }, "create-react-class": { "version": "15.7.0", + "resolved": "https://registry.npmjs.org/create-react-class/-/create-react-class-15.7.0.tgz", + "integrity": "sha512-QZv4sFWG9S5RUvkTYWbflxeZX+JG7Cz0Tn33rQBJ+WFQTqTfUTjMjiv9tnfXazjsO5r0KhPs+AqCjyrQX6h2ng==", "requires": { "loose-envify": "^1.3.1", "object-assign": "^4.1.1" @@ -10345,6 +11100,8 @@ }, "cross-spawn": { "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, "requires": { "path-key": "^3.1.0", @@ -10353,31 +11110,41 @@ } }, "css-color-keywords": { - "version": "1.0.0" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz", + "integrity": "sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==" }, "css-functions-list": { - "version": "3.1.0", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.1.tgz", + "integrity": "sha512-Nj5YcaGgBtuUmn1D7oHqPW0c9iui7xsTsj5lIX8ZgevdfhmjFfKB3r8moHJtNJnctnYXJyYX5I1pp90HM4TPgQ==", "dev": true }, "css-line-break": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-line-break/-/css-line-break-2.1.0.tgz", + "integrity": "sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==", "optional": true, "requires": { "utrie": "^1.0.2" } }, "css-select": { - "version": "4.2.1", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", "requires": { "boolbase": "^1.0.0", - "css-what": "^5.1.0", - "domhandler": "^4.3.0", - "domutils": "^2.8.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", "nth-check": "^2.0.1" } }, "css-to-react-native": { - "version": "3.0.0", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.2.0.tgz", + "integrity": "sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==", "requires": { "camelize": "^1.0.0", "css-color-keywords": "^1.0.0", @@ -10385,31 +11152,46 @@ } }, "css-what": { - "version": "5.1.0" + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" }, "cssesc": { - "version": "3.0.0" + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" }, "csstype": { - "version": "3.0.10" + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" }, "date-fns": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz", - "integrity": "sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==" + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "requires": { + "@babel/runtime": "^7.21.0" + } }, "debug": { "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "requires": { "ms": "2.1.2" } }, "decamelize": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", "dev": true }, "decamelize-keys": { - "version": "1.1.0", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", + "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", "dev": true, "requires": { "decamelize": "^1.1.0", @@ -10418,6 +11200,8 @@ "dependencies": { "map-obj": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", "dev": true } } @@ -10429,7 +11213,9 @@ "dev": true }, "deepmerge": { - "version": "4.2.2" + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" }, "define-data-property": { "version": "1.1.1", @@ -10462,20 +11248,28 @@ "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" }, "desandro-matches-selector": { - "version": "2.0.2" + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/desandro-matches-selector/-/desandro-matches-selector-2.0.2.tgz", + "integrity": "sha512-+1q0nXhdzg1IpIJdMKalUwvvskeKnYyEe3shPRwedNcWtnhEKT3ZxvFjzywHDeGcKViIxTCAoOYQWP1qD7VNyg==" }, "dir-glob": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, "requires": { "path-type": "^4.0.0" } }, "discontinuous-range": { - "version": "1.0.0" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz", + "integrity": "sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==" }, "doctrine": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, "requires": { "esutils": "^2.0.2" @@ -10483,55 +11277,75 @@ }, "dom-helpers": { "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", "requires": { "@babel/runtime": "^7.8.7", "csstype": "^3.0.2" } }, "dom-serializer": { - "version": "1.3.2", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" } }, "domelementtype": { - "version": "2.2.0" + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" }, "domhandler": { - "version": "4.3.0", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", "requires": { - "domelementtype": "^2.2.0" + "domelementtype": "^2.3.0" } }, "dompurify": { - "version": "2.3.6", + "version": "2.4.7", + "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-2.4.7.tgz", + "integrity": "sha512-kxxKlPEDa6Nc5WJi+qRgPbOAbgTpSULL+vI3NUXsZMlkJxTqYI9wg5ZTay2sFrdZRWHPWNi+EdAhcJf81WtoMQ==", "optional": true }, "domutils": { - "version": "2.8.0", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", "requires": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" } }, "electron-to-chromium": { - "version": "1.4.464", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.464.tgz", - "integrity": "sha512-guZ84yoou4+ILNdj0XEbmGs6DEWj6zpVOWYpY09GU66yEb0DSYvP/biBPzHn0GuW/3RC/pnaYNUWlQE1fJYtgA==" + "version": "1.4.640", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.640.tgz", + "integrity": "sha512-z/6oZ/Muqk4BaE7P69bXhUhpJbUM9ZJeka43ZwxsDshKtePns4mhBlh8bU5+yrnOnz3fhG82XLzGUXazOmsWnA==" }, "element-resize-detector": { "version": "1.2.4", + "resolved": "https://registry.npmjs.org/element-resize-detector/-/element-resize-detector-1.2.4.tgz", + "integrity": "sha512-Fl5Ftk6WwXE0wqCgNoseKWndjzZlDCwuPTcoVZfCP9R3EHQF8qUtr3YUPNETegRBOKqQKPW3n4kiIWngGi8tKg==", "requires": { "batch-processor": "1.0.0" } }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, "enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", "peer": true, "requires": { "graceful-fs": "^4.2.4", @@ -10539,10 +11353,14 @@ } }, "entities": { - "version": "2.2.0" + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" }, "enzyme": { "version": "3.11.0", + "resolved": "https://registry.npmjs.org/enzyme/-/enzyme-3.11.0.tgz", + "integrity": "sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==", "requires": { "array.prototype.flat": "^1.2.3", "cheerio": "^1.0.0-rc.3", @@ -10569,14 +11387,18 @@ } }, "enzyme-shallow-equal": { - "version": "1.0.4", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.5.tgz", + "integrity": "sha512-i6cwm7hN630JXenxxJFBKzgLC3hMTafFQXflvzHgPmDhOBhxUWDe8AeRv1qp2/uWJ2Y8z5yLWMzmAfkTOiOCZg==", "requires": { "has": "^1.0.3", - "object-is": "^1.1.2" + "object-is": "^1.1.5" } }, "error-ex": { "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "requires": { "is-arrayish": "^0.2.1" } @@ -10628,7 +11450,9 @@ } }, "es-array-method-boxes-properly": { - "version": "1.0.0" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" }, "es-iterator-helpers": { "version": "1.0.15", @@ -10653,7 +11477,9 @@ } }, "es-module-lexer": { - "version": "0.9.3", + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.1.tgz", + "integrity": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==", "peer": true }, "es-set-tostringtag": { @@ -10676,6 +11502,8 @@ }, "es-to-primitive": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "requires": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", @@ -10683,37 +11511,40 @@ } }, "esbuild": { - "version": "0.19.8", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.8.tgz", - "integrity": "sha512-l7iffQpT2OrZfH2rXIp7/FkmaeZM0vxbxN9KfiCwGYuZqzMg/JdvX26R31Zxn/Pxvsrg3Y9N6XTcnknqDyyv4w==", - "dev": true, - "requires": { - "@esbuild/android-arm": "0.19.8", - "@esbuild/android-arm64": "0.19.8", - "@esbuild/android-x64": "0.19.8", - "@esbuild/darwin-arm64": "0.19.8", - "@esbuild/darwin-x64": "0.19.8", - "@esbuild/freebsd-arm64": "0.19.8", - "@esbuild/freebsd-x64": "0.19.8", - "@esbuild/linux-arm": "0.19.8", - "@esbuild/linux-arm64": "0.19.8", - "@esbuild/linux-ia32": "0.19.8", - "@esbuild/linux-loong64": "0.19.8", - "@esbuild/linux-mips64el": "0.19.8", - "@esbuild/linux-ppc64": "0.19.8", - "@esbuild/linux-riscv64": "0.19.8", - "@esbuild/linux-s390x": "0.19.8", - "@esbuild/linux-x64": "0.19.8", - "@esbuild/netbsd-x64": "0.19.8", - "@esbuild/openbsd-x64": "0.19.8", - "@esbuild/sunos-x64": "0.19.8", - "@esbuild/win32-arm64": "0.19.8", - "@esbuild/win32-ia32": "0.19.8", - "@esbuild/win32-x64": "0.19.8" + "version": "0.19.11", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.11.tgz", + "integrity": "sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==", + "dev": true, + "requires": { + "@esbuild/aix-ppc64": "0.19.11", + "@esbuild/android-arm": "0.19.11", + "@esbuild/android-arm64": "0.19.11", + "@esbuild/android-x64": "0.19.11", + "@esbuild/darwin-arm64": "0.19.11", + "@esbuild/darwin-x64": "0.19.11", + "@esbuild/freebsd-arm64": "0.19.11", + "@esbuild/freebsd-x64": "0.19.11", + "@esbuild/linux-arm": "0.19.11", + "@esbuild/linux-arm64": "0.19.11", + "@esbuild/linux-ia32": "0.19.11", + "@esbuild/linux-loong64": "0.19.11", + "@esbuild/linux-mips64el": "0.19.11", + "@esbuild/linux-ppc64": "0.19.11", + "@esbuild/linux-riscv64": "0.19.11", + "@esbuild/linux-s390x": "0.19.11", + "@esbuild/linux-x64": "0.19.11", + "@esbuild/netbsd-x64": "0.19.11", + "@esbuild/openbsd-x64": "0.19.11", + "@esbuild/sunos-x64": "0.19.11", + "@esbuild/win32-arm64": "0.19.11", + "@esbuild/win32-ia32": "0.19.11", + "@esbuild/win32-x64": "0.19.11" } }, "escalade": { - "version": "3.1.1" + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" }, "escape-string-regexp": { "version": "1.0.5", @@ -10721,15 +11552,15 @@ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" }, "eslint": { - "version": "8.54.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.54.0.tgz", - "integrity": "sha512-NY0DfAkM8BIZDVl6PgSa1ttZbx3xHgJzSNJKYcQglem6CppHyMhRIQkBVSSMaSRnLhig3jsDbEzOjwCVt4AmmA==", + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", + "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", "dev": true, "requires": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.3", - "@eslint/js": "8.54.0", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.56.0", "@humanwhocodes/config-array": "^0.11.13", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", @@ -10766,8 +11597,22 @@ "text-table": "^0.2.0" }, "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, "ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "requires": { "color-convert": "^2.0.1" @@ -10775,6 +11620,8 @@ }, "chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", @@ -10783,6 +11630,8 @@ }, "color-convert": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "requires": { "color-name": "~1.1.4" @@ -10790,16 +11639,20 @@ }, "color-name": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, "escape-string-regexp": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true }, "globals": { - "version": "13.23.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", - "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "requires": { "type-fest": "^0.20.2" @@ -10807,19 +11660,37 @@ }, "has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, "supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "requires": { "has-flag": "^4.0.0" } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true } } }, "eslint-config-prettier": { - "version": "8.5.0", + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz", + "integrity": "sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==", "dev": true, "requires": {} }, @@ -10876,9 +11747,9 @@ } }, "eslint-plugin-import": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.0.tgz", - "integrity": "sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==", + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", + "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", "dev": true, "requires": { "array-includes": "^3.1.7", @@ -10897,7 +11768,7 @@ "object.groupby": "^1.0.1", "object.values": "^1.1.7", "semver": "^6.3.1", - "tsconfig-paths": "^3.14.2" + "tsconfig-paths": "^3.15.0" }, "dependencies": { "debug": { @@ -10921,7 +11792,9 @@ } }, "eslint-plugin-prettier": { - "version": "4.0.0", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz", + "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==", "dev": true, "requires": { "prettier-linter-helpers": "^1.0.0" @@ -10981,9 +11854,9 @@ "requires": {} }, "eslint-plugin-react-refresh": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.4.tgz", - "integrity": "sha512-eD83+65e8YPVg6603Om2iCIwcQJf/y7++MWm4tACtEswFLYMwxwVWAfwN+e19f5Ad/FOyyNg9Dfi5lXhH3Y3rA==", + "version": "0.4.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.5.tgz", + "integrity": "sha512-D53FYKJa+fDmZMtriODxvhwrO+IOqrxoEo21gMA0sjHdU6dPVH4OhyFip9ypl8HOF5RV5KdTo+rBQLvnY2cO8w==", "dev": true, "requires": {} }, @@ -11025,12 +11898,16 @@ }, "esrecurse": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "requires": { "estraverse": "^5.2.0" } }, "estraverse": { - "version": "5.3.0" + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" }, "estree-walker": { "version": "2.0.2", @@ -11040,31 +11917,36 @@ }, "esutils": { "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true }, "ev-emitter": { - "version": "1.1.1" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ev-emitter/-/ev-emitter-1.1.1.tgz", + "integrity": "sha512-ipiDYhdQSCZ4hSbX4rMW+XzNKMD1prg/sTvoVmSLkuQ1MVlwjJQQA+sW8tMYR3BLUr9KjodFV4pvzunvRhd33Q==" }, "events": { "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", "peer": true }, - "execall": { - "version": "2.0.0", - "dev": true, - "requires": { - "clone-regexp": "^2.1.0" - } - }, "fast-deep-equal": { - "version": "3.1.3" + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" }, "fast-diff": { - "version": "1.2.0", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", + "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", "dev": true }, "fast-glob": { - "version": "3.2.11", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", "dev": true, "requires": { "@nodelib/fs.stat": "^2.0.2", @@ -11076,6 +11958,8 @@ "dependencies": { "glob-parent": { "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "requires": { "is-glob": "^4.0.1" @@ -11084,7 +11968,9 @@ } }, "fast-json-stable-stringify": { - "version": "2.1.0" + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" }, "fast-levenshtein": { "version": "2.0.6", @@ -11093,11 +11979,15 @@ "dev": true }, "fastest-levenshtein": { - "version": "1.0.12", + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", "dev": true }, "fastq": { - "version": "1.13.0", + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.16.0.tgz", + "integrity": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==", "dev": true, "requires": { "reusify": "^1.0.4" @@ -11105,15 +11995,21 @@ }, "fault": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/fault/-/fault-1.0.4.tgz", + "integrity": "sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==", "requires": { "format": "^0.2.0" } }, "fflate": { - "version": "0.4.8" + "version": "0.4.8", + "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.4.8.tgz", + "integrity": "sha512-FJqqoDBR00Mdj9ppamLa/Y7vxm+PRmNWA67N846RvsoYVMKB4q3y/de5PA7gUmRMYK/8CMz2GDZQmCRN1wBcWA==" }, "file-entry-cache": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, "requires": { "flat-cache": "^3.0.4" @@ -11121,6 +12017,8 @@ }, "fill-range": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, "requires": { "to-regex-range": "^5.0.1" @@ -11141,10 +12039,14 @@ "requires": {} }, "find-root": { - "version": "1.1.0" + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" }, "find-up": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, "requires": { "locate-path": "^6.0.0", @@ -11153,26 +12055,33 @@ }, "fizzy-ui-utils": { "version": "2.0.7", + "resolved": "https://registry.npmjs.org/fizzy-ui-utils/-/fizzy-ui-utils-2.0.7.tgz", + "integrity": "sha512-CZXDVXQ1If3/r8s0T+v+qVeMshhfcuq0rqIFgJnrtd+Bu8GmDmqMjntjUePypVtjHXKJ6V4sw9zeyox34n9aCg==", "requires": { "desandro-matches-selector": "^2.0.0" } }, "flat-cache": { - "version": "3.0.4", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", "dev": true, "requires": { - "flatted": "^3.1.0", + "flatted": "^3.2.9", + "keyv": "^4.5.3", "rimraf": "^3.0.2" } }, "flatted": { - "version": "3.2.5", + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", "dev": true }, "follow-redirects": { - "version": "1.15.3", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz", - "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==" + "version": "1.15.5", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", + "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==" }, "for-each": { "version": "0.3.3", @@ -11193,10 +12102,14 @@ } }, "format": { - "version": "0.2.2" + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz", + "integrity": "sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==" }, "fs.realpath": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "dev": true }, "fsevents": { @@ -11233,10 +12146,14 @@ "integrity": "sha512-14F4hBIxqKvD4Zz/XjDc3y94mNZN6pRv3U13Udo0lNLCWRBUsrMv2xwcF/y/Z5sV6+FQW+/ow68cHpm4sunt8Q==" }, "fuzzysort": { - "version": "1.2.1" + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/fuzzysort/-/fuzzysort-1.9.0.tgz", + "integrity": "sha512-MOxCT0qLTwLqmEwc7UtU045RKef7mc8Qz8eR4r2bLNEq9dy/c3ZKMEFp6IEst69otkQdFZ4FfgH2dmZD+ddX1g==" }, "gensync": { - "version": "1.0.0-beta.2" + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" }, "get-intrinsic": { "version": "1.2.2", @@ -11250,33 +12167,37 @@ } }, "get-size": { - "version": "2.0.3" - }, - "get-stdin": { - "version": "8.0.0", - "dev": true + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/get-size/-/get-size-2.0.3.tgz", + "integrity": "sha512-lXNzT/h/dTjTxRbm9BXb+SGxxzkm97h/PCIKtlN/CBCxxmkkIVV21udumMS93MuVTDX583gqc94v3RjuHmI+2Q==" }, "get-symbol-description": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", "requires": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.1" } }, "glob": { - "version": "7.2.0", + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^3.0.4", + "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }, "glob-parent": { "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, "requires": { "is-glob": "^4.0.3" @@ -11290,6 +12211,8 @@ }, "global-modules": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", "dev": true, "requires": { "global-prefix": "^3.0.0" @@ -11297,6 +12220,8 @@ }, "global-prefix": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", "dev": true, "requires": { "ini": "^1.3.5", @@ -11306,6 +12231,8 @@ "dependencies": { "which": { "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, "requires": { "isexe": "^2.0.0" @@ -11314,7 +12241,9 @@ } }, "globals": { - "version": "11.12.0" + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" }, "globalthis": { "version": "1.0.3", @@ -11326,6 +12255,8 @@ }, "globby": { "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, "requires": { "array-union": "^2.1.0", @@ -11338,6 +12269,8 @@ }, "globjoin": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", + "integrity": "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==", "dev": true }, "gopd": { @@ -11349,7 +12282,9 @@ } }, "graceful-fs": { - "version": "4.2.9", + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "peer": true }, "graphemer": { @@ -11359,11 +12294,13 @@ "dev": true }, "handlebars": { - "version": "4.7.7", + "version": "4.7.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", + "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", "dev": true, "requires": { "minimist": "^1.2.5", - "neo-async": "^2.6.0", + "neo-async": "^2.6.2", "source-map": "^0.6.1", "uglify-js": "^3.1.4", "wordwrap": "^1.0.0" @@ -11371,13 +12308,14 @@ }, "hard-rejection": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", "dev": true }, "has": { - "version": "1.0.3", - "requires": { - "function-bind": "^1.1.1" - } + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz", + "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==" }, "has-bigints": { "version": "1.0.2", @@ -11385,14 +12323,16 @@ "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" }, "has-flag": { - "version": "3.0.0" + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" }, "has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", "requires": { - "get-intrinsic": "^1.1.1" + "get-intrinsic": "^1.2.2" } }, "has-proto": { @@ -11401,10 +12341,14 @@ "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" }, "has-symbols": { - "version": "1.0.3" + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" }, "has-tostringtag": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", "requires": { "has-symbols": "^1.0.2" } @@ -11418,10 +12362,14 @@ } }, "hast-util-parse-selector": { - "version": "2.2.5" + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz", + "integrity": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==" }, "hastscript": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz", + "integrity": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==", "requires": { "@types/hast": "^2.0.0", "comma-separated-tokens": "^1.0.0", @@ -11431,48 +12379,75 @@ } }, "highlight.js": { - "version": "10.7.3" - }, - "history": { - "version": "5.3.0", - "requires": { - "@babel/runtime": "^7.7.6" - } + "version": "10.7.3", + "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz", + "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==" }, "hoist-non-react-statics": { "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", "requires": { "react-is": "^16.7.0" }, "dependencies": { "react-is": { - "version": "16.13.1" + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" } } }, "hosted-git-info": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", "dev": true, "requires": { "lru-cache": "^6.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } } }, "hotkeys-js": { - "version": "3.8.7" + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/hotkeys-js/-/hotkeys-js-3.9.4.tgz", + "integrity": "sha512-2zuLt85Ta+gIyvs4N88pCYskNrxf1TFv3LR9t5mdAZIX8BcgQQ48F2opUptvHa6m8zsy5v/a0i9mWzTrlNWU0Q==" }, "html-element-map": { "version": "1.3.1", + "resolved": "https://registry.npmjs.org/html-element-map/-/html-element-map-1.3.1.tgz", + "integrity": "sha512-6XMlxrAFX4UEEGxctfFnmrFaaZFNf9i5fNuV5wZ3WWQ4FVaNP1aX1LkX9j2mfEx1NpjeE/rL3nmgEn23GdFmrg==", "requires": { "array.prototype.filter": "^1.0.0", "call-bind": "^1.0.2" } }, "html-tags": { - "version": "3.2.0", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", + "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", "dev": true }, "html2canvas": { "version": "1.4.1", + "resolved": "https://registry.npmjs.org/html2canvas/-/html2canvas-1.4.1.tgz", + "integrity": "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==", "optional": true, "requires": { "css-line-break": "^2.1.0", @@ -11480,33 +12455,45 @@ } }, "htmlparser2": { - "version": "6.1.0", + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", + "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^4.0.0", - "domutils": "^2.5.2", - "entities": "^2.0.0" + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "entities": "^4.4.0" } }, "husky": { "version": "7.0.4", + "resolved": "https://registry.npmjs.org/husky/-/husky-7.0.4.tgz", + "integrity": "sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==", "dev": true }, "iconv-lite": { "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "requires": { "safer-buffer": ">= 2.1.2 < 3.0.0" } }, "ieee754": { - "version": "1.2.1" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" }, "ignore": { - "version": "5.2.0", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", + "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", "dev": true }, "imagesloaded": { "version": "4.1.4", + "resolved": "https://registry.npmjs.org/imagesloaded/-/imagesloaded-4.1.4.tgz", + "integrity": "sha512-ltiBVcYpc/TYTF5nolkMNsnREHW+ICvfQ3Yla2Sgr71YFwQ86bDwV9hgpFhFtrGPuwEx5+LqOHIrdXBdoWwwsA==", "requires": { "ev-emitter": "^1.0.0" } @@ -11517,35 +12504,42 @@ "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==" }, "immutable": { - "version": "4.0.0", + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.4.tgz", + "integrity": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==", "dev": true }, "import-fresh": { "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "requires": { "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "dependencies": { - "resolve-from": { - "version": "4.0.0" - } + "resolve-from": "^4.0.0" } }, "import-lazy": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", + "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", "dev": true }, "imurmurhash": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true }, "indent-string": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "dev": true }, "inflight": { "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dev": true, "requires": { "once": "^1.3.0", @@ -11554,10 +12548,14 @@ }, "inherits": { "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, "ini": { "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", "dev": true }, "internal-slot": { @@ -11572,15 +12570,21 @@ }, "invariant": { "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", "requires": { "loose-envify": "^1.0.0" } }, "is-alphabetical": { - "version": "1.0.4" + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==" }, "is-alphanumerical": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", "requires": { "is-alphabetical": "^1.0.0", "is-decimal": "^1.0.0" @@ -11597,7 +12601,9 @@ } }, "is-arrayish": { - "version": "0.2.1" + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" }, "is-async-function": { "version": "2.0.0", @@ -11618,6 +12624,8 @@ }, "is-binary-path": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, "requires": { "binary-extensions": "^2.0.0" @@ -11625,6 +12633,8 @@ }, "is-boolean-object": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "requires": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -11645,15 +12655,21 @@ }, "is-date-object": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", "requires": { "has-tostringtag": "^1.0.0" } }, "is-decimal": { - "version": "1.0.4" + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==" }, "is-extglob": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true }, "is-finalizationregistry": { @@ -11667,6 +12683,8 @@ }, "is-fullwidth-code-point": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true }, "is-generator-function": { @@ -11680,13 +12698,17 @@ }, "is-glob": { "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "requires": { "is-extglob": "^2.1.1" } }, "is-hexadecimal": { - "version": "1.0.4" + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==" }, "is-map": { "version": "2.0.2", @@ -11695,14 +12717,20 @@ "dev": true }, "is-negative-zero": { - "version": "2.0.2" + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" }, "is-number": { "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true }, "is-number-object": { - "version": "1.0.6", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "requires": { "has-tostringtag": "^1.0.0" } @@ -11715,23 +12743,25 @@ }, "is-plain-obj": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", "dev": true }, "is-plain-object": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", "dev": true }, "is-regex": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "requires": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" } }, - "is-regexp": { - "version": "2.1.0", - "dev": true - }, "is-set": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", @@ -11740,21 +12770,29 @@ }, "is-shared-array-buffer": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", "requires": { "call-bind": "^1.0.2" } }, "is-string": { "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "requires": { "has-tostringtag": "^1.0.0" } }, "is-subset": { - "version": "0.1.1" + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-subset/-/is-subset-0.1.1.tgz", + "integrity": "sha512-6Ybun0IkarhmEqxXCNw/C0bna6Zb/TkfUX9UbwJtK6ObwAVCxmAP308WWTHviM/zAqXk05cdhYsUsZeGQh99iw==" }, "is-symbol": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "requires": { "has-symbols": "^1.0.2" } @@ -11775,6 +12813,8 @@ }, "is-weakref": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", "requires": { "call-bind": "^1.0.2" } @@ -11796,6 +12836,8 @@ }, "isexe": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", "dev": true }, "iterator.prototype": { @@ -11821,6 +12863,8 @@ }, "jest-worker": { "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "peer": true, "requires": { "@types/node": "*", @@ -11830,10 +12874,14 @@ "dependencies": { "has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "peer": true }, "supports-color": { "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "peer": true, "requires": { "has-flag": "^4.0.0" @@ -11842,7 +12890,9 @@ } }, "js-tokens": { - "version": "4.0.0" + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, "js-yaml": { "version": "4.1.0", @@ -11854,10 +12904,20 @@ } }, "jsesc": { - "version": "2.5.2" + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + }, + "json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true }, "json-parse-even-better-errors": { - "version": "2.3.1" + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" }, "json-schema-compare": { "version": "0.2.2", @@ -11878,14 +12938,20 @@ } }, "json-schema-traverse": { - "version": "0.4.1" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" }, "json-stable-stringify-without-jsonify": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true }, "json-stringify-safe": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", "dev": true }, "json5": { @@ -11900,6 +12966,8 @@ }, "jspdf": { "version": "2.5.1", + "resolved": "https://registry.npmjs.org/jspdf/-/jspdf-2.5.1.tgz", + "integrity": "sha512-hXObxz7ZqoyhxET78+XR34Xu2qFGrJJ2I2bE5w4SM8eFaFEkW2xcGRVUss360fYelwRSid/jT078kbNvmoW0QA==", "requires": { "@babel/runtime": "^7.14.0", "atob": "^2.1.2", @@ -11912,7 +12980,9 @@ } }, "jspdf-autotable": { - "version": "3.5.23", + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/jspdf-autotable/-/jspdf-autotable-3.8.1.tgz", + "integrity": "sha512-UjJqo80Z3/WUzDi4JipTGp0pAvNvR3Gsm38inJ5ZnwsJH0Lw4pEbssRSH6zMWAhR1ZkTrsDpQo5p6rZk987/AQ==", "requires": {} }, "jsx-ast-utils": { @@ -11927,12 +12997,25 @@ "object.values": "^1.1.6" } }, + "keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "requires": { + "json-buffer": "3.0.1" + } + }, "kind-of": { "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true }, "known-css-properties": { - "version": "0.25.0", + "version": "0.26.0", + "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.26.0.tgz", + "integrity": "sha512-5FZRzrZzNTBruuurWpvZnvP9pum+fe0HcK8z/ooo+U+Hmp4vtbyp1/QDsqmufirXy4egGzbaH/y2uCZf+6W5Kg==", "dev": true }, "levn": { @@ -11946,14 +13029,20 @@ } }, "lines-and-columns": { - "version": "1.2.4" + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, "loader-runner": { - "version": "4.2.0", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", "peer": true }, "locate-path": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, "requires": { "p-locate": "^5.0.0" @@ -11970,63 +13059,88 @@ "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" }, "lodash.debounce": { - "version": "4.0.8" + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" }, "lodash.escape": { - "version": "4.0.1" + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-4.0.1.tgz", + "integrity": "sha512-nXEOnb/jK9g0DYMr1/Xvq6l5xMD7GDG55+GSYIYmS0G4tBk/hURD4JR9WCavs04t33WmJx9kCyp9vJ+mr4BOUw==" }, "lodash.flattendeep": { - "version": "4.4.0" + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz", + "integrity": "sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==" }, "lodash.isequal": { - "version": "4.5.0" + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" }, "lodash.memoize": { - "version": "4.1.2" + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" }, "lodash.merge": { "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true }, "lodash.throttle": { - "version": "4.1.1" + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", + "integrity": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==" }, "lodash.truncate": { "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", "dev": true }, "loose-envify": { "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "requires": { "js-tokens": "^3.0.0 || ^4.0.0" } }, "lowlight": { "version": "1.20.0", + "resolved": "https://registry.npmjs.org/lowlight/-/lowlight-1.20.0.tgz", + "integrity": "sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==", "requires": { "fault": "^1.0.0", "highlight.js": "~10.7.0" } }, "lru-cache": { - "version": "6.0.0", - "dev": true, + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "requires": { - "yallist": "^4.0.0" + "yallist": "^3.0.2" } }, "map-obj": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", "dev": true }, "markdown-to-jsx": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.3.2.tgz", - "integrity": "sha512-B+28F5ucp83aQm+OxNrPkS8z0tMKaeHiy0lHJs3LqCyDQFtWuenaIrkaVTgAm1pf1AU85LXltva86hlaT17i8Q==", + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.4.0.tgz", + "integrity": "sha512-zilc+MIkVVXPyTb4iIUTIz9yyqfcWjszGXnwF9K/aiBWcHXFcmdEMTkG01/oQhwSCH7SY1BnG6+ev5BzWmbPrg==", "requires": {} }, "masonry-layout": { "version": "4.2.2", + "resolved": "https://registry.npmjs.org/masonry-layout/-/masonry-layout-4.2.2.tgz", + "integrity": "sha512-iGtAlrpHNyxaR19CvKC3npnEcAwszXoyJiI8ARV2ePi7fmYhIud25MHK8Zx4P0LCC4d3TNO9+rFa1KoK1OEOaA==", "requires": { "get-size": "^2.0.2", "outlayer": "^2.1.0" @@ -12034,13 +13148,19 @@ }, "mathml-tag-names": { "version": "2.1.3", + "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", + "integrity": "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==", "dev": true }, "memoize-one": { - "version": "5.2.1" + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz", + "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" }, "meow": { "version": "9.0.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", + "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", "dev": true, "requires": { "@types/minimist": "^1.2.0", @@ -12055,24 +13175,24 @@ "trim-newlines": "^3.0.0", "type-fest": "^0.18.0", "yargs-parser": "^20.2.3" - }, - "dependencies": { - "type-fest": { - "version": "0.18.1", - "dev": true - } } }, "merge-stream": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "peer": true }, "merge2": { "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true }, "micromatch": { "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "requires": { "braces": "^3.0.2", @@ -12080,31 +13200,43 @@ } }, "mime-db": { - "version": "1.51.0" + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" }, "mime-types": { - "version": "2.1.34", + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "requires": { - "mime-db": "1.51.0" + "mime-db": "1.52.0" } }, "min-indent": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", "dev": true }, "minimatch": { "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { - "version": "1.2.6", + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true }, "minimist-options": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", "dev": true, "requires": { "arrify": "^1.0.1", @@ -12113,19 +13245,25 @@ } }, "moment": { - "version": "2.29.4" + "version": "2.30.1", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz", + "integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==" }, "monaco-editor": { - "version": "0.41.0", - "resolved": "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.41.0.tgz", - "integrity": "sha512-1o4olnZJsiLmv5pwLEAmzHTE/5geLKQ07BrGxlF4Ri/AXAc2yyDGZwHjiTqD8D/ROKUZmwMA28A+yEowLNOEcA==", + "version": "0.45.0", + "resolved": "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.45.0.tgz", + "integrity": "sha512-mjv1G1ZzfEE3k9HZN0dQ2olMdwIfaeAAjFiwNprLfYNRSz7ctv9XuCT7gPtBGrMUeV1/iZzYKj17Khu1hxoHOA==", "peer": true }, "moo": { - "version": "0.5.1" + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.2.tgz", + "integrity": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==" }, "ms": { - "version": "2.1.2" + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "nanoid": { "version": "3.3.7", @@ -12134,10 +13272,14 @@ }, "natural-compare": { "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, "nearley": { "version": "2.20.1", + "resolved": "https://registry.npmjs.org/nearley/-/nearley-2.20.1.tgz", + "integrity": "sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==", "requires": { "commander": "^2.19.0", "moo": "^0.5.0", @@ -12146,27 +13288,35 @@ }, "dependencies": { "commander": { - "version": "2.20.3" + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" } } }, "neo-async": { - "version": "2.6.2" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" }, "node-fetch": { - "version": "2.6.7", + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", "dev": true, "requires": { "whatwg-url": "^5.0.0" } }, "node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" }, "normalize-package-data": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", "dev": true, "requires": { "hosted-git-info": "^4.0.1", @@ -12175,6 +13325,15 @@ "validate-npm-package-license": "^3.0.1" }, "dependencies": { + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, "semver": { "version": "7.5.4", "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", @@ -12183,21 +13342,33 @@ "requires": { "lru-cache": "^6.0.0" } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true } } }, "normalize-path": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true }, "nth-check": { - "version": "2.0.1", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "requires": { "boolbase": "^1.0.0" } }, "object-assign": { - "version": "4.1.1" + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" }, "object-inspect": { "version": "1.13.1", @@ -12206,21 +13377,25 @@ }, "object-is": { "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.3" } }, "object-keys": { - "version": "1.1.1" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" }, "object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", "has-symbols": "^1.0.3", "object-keys": "^1.1.1" } @@ -12280,6 +13455,8 @@ }, "once": { "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, "requires": { "wrappy": "1" @@ -12301,6 +13478,8 @@ }, "outlayer": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/outlayer/-/outlayer-2.1.1.tgz", + "integrity": "sha512-+GplXsCQ3VrbGujAeHEzP9SXsBmJxzn/YdDSQZL0xqBmAWBmortu2Y9Gwdp9J0bgDQ8/YNIPMoBM13nTwZfAhw==", "requires": { "ev-emitter": "^1.0.0", "fizzy-ui-utils": "^2.0.0", @@ -12309,6 +13488,8 @@ }, "p-limit": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, "requires": { "yocto-queue": "^0.1.0" @@ -12316,6 +13497,8 @@ }, "p-locate": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, "requires": { "p-limit": "^3.0.2" @@ -12323,19 +13506,27 @@ }, "p-try": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, "papaparse": { - "version": "5.3.1" + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.4.1.tgz", + "integrity": "sha512-HipMsgJkZu8br23pW15uvo6sib6wne/4woLZPlFf3rpDyMe9ywEXUsuD7+6K9PRkJlVT51j/sCOYDKGGS3ZJrw==" }, "parent-module": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "requires": { "callsites": "^3.0.0" } }, "parse-entities": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", "requires": { "character-entities": "^1.0.0", "character-entities-legacy": "^1.0.0", @@ -12347,10 +13538,14 @@ }, "parse-github-url": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-github-url/-/parse-github-url-1.0.2.tgz", + "integrity": "sha512-kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==", "dev": true }, "parse-json": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "requires": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", @@ -12359,45 +13554,69 @@ } }, "parse5": { - "version": "6.0.1" + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", + "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "requires": { + "entities": "^4.4.0" + } }, "parse5-htmlparser2-tree-adapter": { - "version": "6.0.1", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz", + "integrity": "sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==", "requires": { - "parse5": "^6.0.1" + "domhandler": "^5.0.2", + "parse5": "^7.0.0" } }, "path-exists": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true }, "path-is-absolute": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true }, "path-key": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true }, "path-parse": { - "version": "1.0.7" + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" }, "path-type": { - "version": "4.0.0" + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" }, "performance-now": { - "version": "2.1.0" + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" }, "picocolors": { - "version": "1.0.0" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" }, "picomatch": { - "version": "2.3.1" + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" }, "postcss": { - "version": "8.4.32", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.32.tgz", - "integrity": "sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==", + "version": "8.4.33", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.33.tgz", + "integrity": "sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==", "requires": { "nanoid": "^3.3.7", "picocolors": "^1.0.0", @@ -12414,24 +13633,34 @@ }, "postcss-media-query-parser": { "version": "0.2.3", + "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", + "integrity": "sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==", "dev": true }, "postcss-resolve-nested-selector": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz", + "integrity": "sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==", "dev": true }, "postcss-safe-parser": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", + "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", "dev": true, "requires": {} }, "postcss-scss": { - "version": "4.0.3", + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.9.tgz", + "integrity": "sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==", "dev": true, "requires": {} }, "postcss-selector-parser": { - "version": "6.0.10", + "version": "6.0.15", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz", + "integrity": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==", "requires": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -12439,11 +13668,15 @@ }, "postcss-sorting": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-sorting/-/postcss-sorting-7.0.1.tgz", + "integrity": "sha512-iLBFYz6VRYyLJEJsBJ8M3TCqNcckVzz4wFounSc5Oez35ogE/X+aoC5fFu103Ot7NyvjU3/xqIXn93Gp3kJk4g==", "dev": true, "requires": {} }, "postcss-value-parser": { - "version": "4.2.0" + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "prelude-ls": { "version": "1.2.1", @@ -12453,26 +13686,36 @@ }, "prettier": { "version": "2.4.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.4.1.tgz", + "integrity": "sha512-9fbDAXSBcc6Bs1mZrDYb3XKzDLm4EXXL9sC1LqKP5rZkT6KRr/rf9amVUcODVXgguK/isJz0d0hP72WeaKWsvA==", "dev": true }, "prettier-linter-helpers": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", "dev": true, "requires": { "fast-diff": "^1.1.2" } }, "prismjs": { - "version": "1.27.0" + "version": "1.29.0", + "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz", + "integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==" }, "promise": { - "version": "8.1.0", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", "requires": { "asap": "~2.0.6" } }, "prop-types": { "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", "requires": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", @@ -12480,7 +13723,9 @@ }, "dependencies": { "react-is": { - "version": "16.13.1" + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" } } }, @@ -12502,6 +13747,8 @@ }, "property-information": { "version": "5.6.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-5.6.0.tgz", + "integrity": "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==", "requires": { "xtend": "^4.0.0" } @@ -12512,27 +13759,39 @@ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" }, "punycode": { - "version": "2.1.1" + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" }, "queue-microtask": { "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true }, "quick-lru": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", "dev": true }, "raf": { "version": "3.4.1", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", "requires": { "performance-now": "^2.1.0" } }, "railroad-diagrams": { - "version": "1.0.0" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz", + "integrity": "sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==" }, "randexp": { "version": "0.4.6", + "resolved": "https://registry.npmjs.org/randexp/-/randexp-0.4.6.tgz", + "integrity": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==", "requires": { "discontinuous-range": "1.0.0", "ret": "~0.1.10" @@ -12540,6 +13799,8 @@ }, "randombytes": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "peer": true, "requires": { "safe-buffer": "^5.1.0" @@ -12555,6 +13816,8 @@ }, "react-app-polyfill": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-2.0.0.tgz", + "integrity": "sha512-0sF4ny9v/B7s6aoehwze9vJNWcmCemAUYBVasscVr92+UYiEqDXOxfKjXN685mDaMRNF3WdhHQs76oTODMocFA==", "requires": { "core-js": "^3.6.5", "object-assign": "^4.1.1", @@ -12562,12 +13825,19 @@ "raf": "^3.4.1", "regenerator-runtime": "^0.13.7", "whatwg-fetch": "^3.4.1" + }, + "dependencies": { + "regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + } } }, "react-bootstrap": { - "version": "1.6.7", - "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-1.6.7.tgz", - "integrity": "sha512-IzCYXuLSKDEjGFglbFWk0/iHmdhdcJzTmtS6lXxc0kaNFx2PFgrQf5jKnx5sarF2tiXh9Tgx3pSt3pdK7YwkMA==", + "version": "1.6.8", + "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-1.6.8.tgz", + "integrity": "sha512-yD6uN78XlFOkETQp6GRuVe0s5509x3XYx8PfPbirwFTYCj5/RfmSs9YZGCwkUrhZNFzj7tZPdpb+3k50mK1E4g==", "requires": { "@babel/runtime": "^7.14.0", "@restart/context": "^2.1.4", @@ -12598,21 +13868,23 @@ } }, "react-data-table-component": { - "version": "7.4.7", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/react-data-table-component/-/react-data-table-component-7.6.2.tgz", + "integrity": "sha512-nHe7040fmtrJyQr/ieGrTfV0jBflYGK4sLokC6/AFOv3ThjmA9WzKz8Z8/2wMxzRqLU+Rn0CVFg+8+frKLepWQ==", "requires": { - "deepmerge": "^4.2.2" + "deepmerge": "^4.3.1" } }, "react-datepicker": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/react-datepicker/-/react-datepicker-4.10.0.tgz", - "integrity": "sha512-6IfBCZyWj54ZZGLmEZJ9c4Yph0s9MVfEGDC2evOvf9AmVz+RRcfP2Czqad88Ff9wREbcbqa4dk7IFYeXF1d3Ag==", + "version": "4.25.0", + "resolved": "https://registry.npmjs.org/react-datepicker/-/react-datepicker-4.25.0.tgz", + "integrity": "sha512-zB7CSi44SJ0sqo8hUQ3BF1saE/knn7u25qEMTO1CQGofY1VAKahO8k9drZtp0cfW1DMfoYLR3uSY1/uMvbEzbg==", "requires": { - "@popperjs/core": "^2.9.2", + "@popperjs/core": "^2.11.8", "classnames": "^2.2.6", - "date-fns": "^2.24.0", + "date-fns": "^2.30.0", "prop-types": "^15.7.2", - "react-onclickoutside": "^6.12.2", + "react-onclickoutside": "^6.13.0", "react-popper": "^2.3.0" } }, @@ -12626,7 +13898,9 @@ } }, "react-fast-compare": { - "version": "3.2.0" + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz", + "integrity": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==" }, "react-final-form": { "version": "6.5.9", @@ -12646,6 +13920,8 @@ }, "react-final-form-listeners": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/react-final-form-listeners/-/react-final-form-listeners-1.0.3.tgz", + "integrity": "sha512-OrdCNxSS4JQS/EXD+R530kZKFqaPfa+WcXPgVro/h4BpaBDF/Ja+BtHyCzDezCIb5rWaGGdOJIj+tN2YdtvrXg==", "requires": { "@babel/runtime": "^7.12.5" } @@ -12663,13 +13939,17 @@ } }, "react-hotkeys-hook": { - "version": "3.4.4", + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/react-hotkeys-hook/-/react-hotkeys-hook-3.4.7.tgz", + "integrity": "sha512-+bbPmhPAl6ns9VkXkNNyxlmCAIyDAcWbB76O4I0ntr3uWCRuIQf/aRLartUahe9chVMPj+OEzzfk3CQSjclUEQ==", "requires": { - "hotkeys-js": "3.8.7" + "hotkeys-js": "3.9.4" } }, "react-is": { - "version": "17.0.2" + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" }, "react-lifecycles-compat": { "version": "3.0.4", @@ -12677,11 +13957,15 @@ "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" }, "react-loading-skeleton": { - "version": "3.1.0", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/react-loading-skeleton/-/react-loading-skeleton-3.3.1.tgz", + "integrity": "sha512-NilqqwMh2v9omN7LteiDloEVpFyMIa0VGqF+ukqp0ncVlYu1sKYbYGX9JEl+GtOT9TKsh04zCHAbavnQ2USldA==", "requires": {} }, "react-masonry-component": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/react-masonry-component/-/react-masonry-component-6.3.0.tgz", + "integrity": "sha512-4ZI78nxMfCpU5yQiS6Rup07Ju++YzcOGAyvbMcl2GfpZTw8GRwT548lkKr0PJarNicRV1qE2D/NiT26UPg1T7A==", "requires": { "create-react-class": "^15.6.2", "element-resize-detector": "^1.1.9", @@ -12693,6 +13977,8 @@ }, "react-media-hook": { "version": "0.4.9", + "resolved": "https://registry.npmjs.org/react-media-hook/-/react-media-hook-0.4.9.tgz", + "integrity": "sha512-FZr/2xA1+23vDJ1IZ794yLqMRRkBoCNOiJATdtTfB5GyVc5djf8FL2qEB/68pSkiNgHdHsmKknMSDr0sC4zBKQ==", "requires": {} }, "react-onclickoutside": { @@ -12718,6 +14004,8 @@ }, "react-papaparse": { "version": "3.18.2", + "resolved": "https://registry.npmjs.org/react-papaparse/-/react-papaparse-3.18.2.tgz", + "integrity": "sha512-qDth1fWX198VQe7xpkSioK+7MqZc7TqLHCl7hGOz4KWL47AxrFhRjaZMphdX6z43TWCTUf+zhh7BYU2uSMVDkQ==", "requires": { "@types/papaparse": "^5.3.1", "papaparse": "^5.3.1" @@ -12733,7 +14021,9 @@ } }, "react-redux": { - "version": "7.2.6", + "version": "7.2.9", + "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz", + "integrity": "sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==", "requires": { "@babel/runtime": "^7.15.4", "@types/react-redux": "^7.1.20", @@ -12741,6 +14031,13 @@ "loose-envify": "^1.4.0", "prop-types": "^15.7.2", "react-is": "^17.0.2" + }, + "dependencies": { + "react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + } } }, "react-refresh": { @@ -12750,52 +14047,64 @@ "dev": true }, "react-router": { - "version": "6.2.2", + "version": "6.21.3", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.21.3.tgz", + "integrity": "sha512-a0H638ZXULv1OdkmiK6s6itNhoy33ywxmUFT/xtSoVyf9VnC7n7+VT4LjVzdIHSaF5TIh9ylUgxMXksHTgGrKg==", "requires": { - "history": "^5.2.0" + "@remix-run/router": "1.14.2" } }, "react-router-dom": { - "version": "6.2.2", + "version": "6.21.3", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.21.3.tgz", + "integrity": "sha512-kNzubk7n4YHSrErzjLK72j0B5i969GsuCGazRl3G6j1zqZBLjuSlYBdVdkDOgzGdPIffUOc9nmgiadTEVoq91g==", "requires": { - "history": "^5.2.0", - "react-router": "6.2.2" + "@remix-run/router": "1.14.2", + "react-router": "6.21.3" } }, "react-select": { - "version": "5.3.0", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/react-select/-/react-select-5.8.0.tgz", + "integrity": "sha512-TfjLDo58XrhP6VG5M/Mi56Us0Yt8X7xD6cDybC7yoRMUNm7BGO7qk8J0TLQOua/prb8vUOtsfnXZwfm30HGsAA==", "requires": { "@babel/runtime": "^7.12.0", "@emotion/cache": "^11.4.0", - "@emotion/react": "^11.1.1", + "@emotion/react": "^11.8.1", + "@floating-ui/dom": "^1.0.1", "@types/react-transition-group": "^4.4.0", - "memoize-one": "^5.0.0", + "memoize-one": "^6.0.0", "prop-types": "^15.6.0", - "react-transition-group": "^4.3.0" + "react-transition-group": "^4.3.0", + "use-isomorphic-layout-effect": "^1.1.2" } }, "react-select-search": { - "version": "3.0.9", + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/react-select-search/-/react-select-search-3.0.10.tgz", + "integrity": "sha512-K3Ww5HfOaoqgjNIZt++DMeSjWgu5T78d2xXt/hEa3ERLvEqfxBwXUML2E23goWGIUQBv2b+kGkb86YnOwH0hUw==", "requires": { - "fuse.js": "^3.4.5" + "fuse.js": "^6.6.0" }, "dependencies": { "fuse.js": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-3.6.1.tgz", - "integrity": "sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw==", + "version": "6.6.2", + "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-6.6.2.tgz", + "integrity": "sha512-cJaJkxCCxC8qIIcPBF9yGxY0W/tVZS3uEISDxhYIdtk8OL93pe+6Zj7LjCqVV4dzbqcriOZ+kQ/NE4RXZHsIGA==", "optional": true } } }, "react-syntax-highlighter": { - "version": "15.4.5", + "version": "15.5.0", + "resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-15.5.0.tgz", + "integrity": "sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==", "requires": { "@babel/runtime": "^7.3.1", "highlight.js": "^10.4.1", "lowlight": "^1.17.0", - "prismjs": "^1.25.0", - "refractor": "^3.2.0" + "prismjs": "^1.27.0", + "refractor": "^3.6.0" } }, "react-time-ago": { @@ -12806,13 +14115,6 @@ "memoize-one": "^6.0.0", "prop-types": "^15.8.1", "raf": "^3.4.1" - }, - "dependencies": { - "memoize-one": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz", - "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" - } } }, "react-transition-group": { @@ -12828,6 +14130,8 @@ }, "read-pkg": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", "dev": true, "requires": { "@types/normalize-package-data": "^2.4.0", @@ -12838,10 +14142,14 @@ "dependencies": { "hosted-git-info": { "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", "dev": true }, "normalize-package-data": { "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, "requires": { "hosted-git-info": "^2.1.4", @@ -12858,12 +14166,16 @@ }, "type-fest": { "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", "dev": true } } }, "read-pkg-up": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", "dev": true, "requires": { "find-up": "^4.1.0", @@ -12873,6 +14185,8 @@ "dependencies": { "find-up": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "requires": { "locate-path": "^5.0.0", @@ -12881,6 +14195,8 @@ }, "locate-path": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "requires": { "p-locate": "^4.1.0" @@ -12888,6 +14204,8 @@ }, "p-limit": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "requires": { "p-try": "^2.0.0" @@ -12895,6 +14213,8 @@ }, "p-locate": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "requires": { "p-limit": "^2.2.0" @@ -12902,12 +14222,16 @@ }, "type-fest": { "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", "dev": true } } }, "readdirp": { "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dev": true, "requires": { "picomatch": "^2.2.1" @@ -12915,6 +14239,8 @@ }, "redent": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", "dev": true, "requires": { "indent-string": "^4.0.0", @@ -12923,12 +14249,16 @@ }, "redux": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/redux/-/redux-4.1.1.tgz", + "integrity": "sha512-hZQZdDEM25UY2P493kPYuKqviVwZ58lEmGQNeQ+gXa+U0gYPUBf7NKYazbe3m+bs/DzM/ahN12DbF+NG8i0CWw==", "requires": { "@babel/runtime": "^7.9.2" } }, "redux-immutable-state-invariant": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/redux-immutable-state-invariant/-/redux-immutable-state-invariant-2.1.0.tgz", + "integrity": "sha512-3czbDKs35FwiBRsx/3KabUk5zSOoTXC+cgVofGkpBNv3jQcqIe5JrHcF5AmVt7B/4hyJ8MijBIpCJ8cife6yJg==", "dev": true, "requires": { "invariant": "^2.1.0", @@ -12937,6 +14267,8 @@ }, "redux-persist": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/redux-persist/-/redux-persist-6.0.0.tgz", + "integrity": "sha512-71LLMbUq2r02ng2We9S215LtPu3fY0KgaGE0k8WRgl6RkqxtGfl7HUozz1Dftwsb0D/5mZ8dwAaPbtnzfvbEwQ==", "requires": {} }, "redux-thunk": { @@ -12961,14 +14293,25 @@ }, "refractor": { "version": "3.6.0", + "resolved": "https://registry.npmjs.org/refractor/-/refractor-3.6.0.tgz", + "integrity": "sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==", "requires": { "hastscript": "^6.0.0", "parse-entities": "^2.0.0", "prismjs": "~1.27.0" + }, + "dependencies": { + "prismjs": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.27.0.tgz", + "integrity": "sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==" + } } }, "regenerator-runtime": { - "version": "0.13.9" + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" }, "regexp.prototype.flags": { "version": "1.5.1", @@ -12986,7 +14329,9 @@ "integrity": "sha512-aCv3juQw4hT1/P/OrVltKWLlp15eW1GRcwP1XdxHrPdZE9MtgqFpegjnTjLhi2m2WI9MT/hQQtE+tjEWG1hgkQ==" }, "require-from-string": { - "version": "2.0.2" + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" }, "reselect": { "version": "4.1.8", @@ -13004,38 +14349,63 @@ } }, "resolve-from": { - "version": "5.0.0", - "dev": true + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" }, "ret": { - "version": "0.1.15" + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" }, "reusify": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true }, "rgbcolor": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgbcolor/-/rgbcolor-1.0.1.tgz", + "integrity": "sha512-9aZLIrhRaD97sgVhtJOW6ckOEh6/GnvQtdVNfdZ6s67+3/XwLS9lBcQYzEEhYVeUowN7pRzMLsyGhK2i/xvWbw==", "optional": true }, "rimraf": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dev": true, "requires": { "glob": "^7.1.3" } }, "rollup": { - "version": "2.79.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", - "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", - "dev": true, - "requires": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.9.5.tgz", + "integrity": "sha512-E4vQW0H/mbNMw2yLSqJyjtkHY9dslf/p0zuT1xehNRqUTBOFMqEjguDvqhXr7N7r/4ttb2jr4T41d3dncmIgbQ==", + "dev": true, + "requires": { + "@rollup/rollup-android-arm-eabi": "4.9.5", + "@rollup/rollup-android-arm64": "4.9.5", + "@rollup/rollup-darwin-arm64": "4.9.5", + "@rollup/rollup-darwin-x64": "4.9.5", + "@rollup/rollup-linux-arm-gnueabihf": "4.9.5", + "@rollup/rollup-linux-arm64-gnu": "4.9.5", + "@rollup/rollup-linux-arm64-musl": "4.9.5", + "@rollup/rollup-linux-riscv64-gnu": "4.9.5", + "@rollup/rollup-linux-x64-gnu": "4.9.5", + "@rollup/rollup-linux-x64-musl": "4.9.5", + "@rollup/rollup-win32-arm64-msvc": "4.9.5", + "@rollup/rollup-win32-ia32-msvc": "4.9.5", + "@rollup/rollup-win32-x64-msvc": "4.9.5", + "@types/estree": "1.0.5", "fsevents": "~2.3.2" } }, "rst-selector-parser": { "version": "2.2.3", + "resolved": "https://registry.npmjs.org/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz", + "integrity": "sha512-nDG1rZeP6oFTLN6yNDV/uiAvs1+FS/KlrEwh7+y7dpuApDBy6bI2HTBcc0/V8lv9OTqfyD34eF7au2pm8aBbhA==", "requires": { "lodash.flattendeep": "^4.4.0", "nearley": "^2.7.10" @@ -13043,42 +14413,49 @@ }, "run-parallel": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, "requires": { "queue-microtask": "^1.2.2" } }, "safe-array-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", - "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.0.tgz", + "integrity": "sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==", "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", + "call-bind": "^1.0.5", + "get-intrinsic": "^1.2.2", "has-symbols": "^1.0.3", "isarray": "^2.0.5" } }, "safe-buffer": { - "version": "5.1.2" + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "peer": true }, "safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.2.tgz", + "integrity": "sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==", "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", + "call-bind": "^1.0.5", + "get-intrinsic": "^1.2.2", "is-regex": "^1.1.4" } }, "safer-buffer": { - "version": "2.1.2" + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "sass": { - "version": "1.64.2", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.64.2.tgz", - "integrity": "sha512-TnDlfc+CRnUAgLO9D8cQLFu/GIjJIzJCGkE7o4ekIGQOH7T3GetiRR/PsTWJUHhkzcSPrARkPI+gNWn5alCzDg==", + "version": "1.70.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.70.0.tgz", + "integrity": "sha512-uUxNQ3zAHeAx5nRFskBnrWzDUJrrvpCPD5FNAoRvTi0WwremlheES3tg+56PaVtCs5QDRX5CBLxxKMDJMEa1WQ==", "dev": true, "requires": { "chokidar": ">=3.0.0 <4.0.0", @@ -13095,12 +14472,41 @@ } }, "schema-utils": { - "version": "3.1.1", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "peer": true, "requires": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", "ajv-keywords": "^3.5.2" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "peer": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peer": true, + "requires": {} + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "peer": true + } } }, "semver": { @@ -13109,21 +14515,24 @@ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" }, "serialize-javascript": { - "version": "6.0.0", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", "peer": true, "requires": { "randombytes": "^2.1.0" } }, "set-function-length": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", - "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.0.tgz", + "integrity": "sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==", "requires": { "define-data-property": "^1.1.1", - "get-intrinsic": "^1.2.1", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.2", "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" + "has-property-descriptors": "^1.0.1" } }, "set-function-name": { @@ -13137,10 +14546,14 @@ } }, "shallowequal": { - "version": "1.1.0" + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", + "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" }, "shebang-command": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "requires": { "shebang-regex": "^3.0.0" @@ -13148,6 +14561,8 @@ }, "shebang-regex": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true }, "side-channel": { @@ -13162,10 +14577,14 @@ }, "signal-exit": { "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, "simplebar": { - "version": "5.3.6", + "version": "5.3.9", + "resolved": "https://registry.npmjs.org/simplebar/-/simplebar-5.3.9.tgz", + "integrity": "sha512-1vIIpjDvY9sVH14e0LGeiCiTFU3ILqAghzO6OI9axeG+mvU/vMSrvXeAXkBolqFFz3XYaY8n5ahH9MeP3sp2Ag==", "requires": { "@juggle/resize-observer": "^3.3.1", "can-use-dom": "^0.1.0", @@ -13176,18 +14595,24 @@ } }, "simplebar-react": { - "version": "2.3.6", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/simplebar-react/-/simplebar-react-2.4.3.tgz", + "integrity": "sha512-Ep8gqAUZAS5IC2lT5RE4t1ZFUIVACqbrSRQvFV9a6NbVUzXzOMnc4P82Hl8Ak77AnPQvmgUwZS7aUKLyBoMAcg==", "requires": { "prop-types": "^15.6.1", - "simplebar": "^5.3.6" + "simplebar": "^5.3.9" } }, "slash": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true }, "slice-ansi": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", "dev": true, "requires": { "ansi-styles": "^4.0.0", @@ -13197,6 +14622,8 @@ "dependencies": { "ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "requires": { "color-convert": "^2.0.1" @@ -13204,6 +14631,8 @@ }, "color-convert": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "requires": { "color-name": "~1.1.4" @@ -13211,18 +14640,26 @@ }, "color-name": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true } } }, "source-map": { - "version": "0.6.1" + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" }, "source-map-js": { - "version": "1.0.2" + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" }, "source-map-loader": { - "version": "3.0.1", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", + "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", "requires": { "abab": "^2.0.5", "iconv-lite": "^0.6.3", @@ -13231,6 +14668,8 @@ }, "source-map-support": { "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "peer": true, "requires": { "buffer-from": "^1.0.0", @@ -13238,10 +14677,14 @@ } }, "space-separated-tokens": { - "version": "1.1.5" + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", + "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==" }, "spdx-correct": { - "version": "3.1.1", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", "dev": true, "requires": { "spdx-expression-parse": "^3.0.0", @@ -13250,10 +14693,14 @@ }, "spdx-exceptions": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", "dev": true }, "spdx-expression-parse": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, "requires": { "spdx-exceptions": "^2.1.0", @@ -13261,11 +14708,15 @@ } }, "spdx-license-ids": { - "version": "3.0.11", + "version": "3.0.16", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", + "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==", "dev": true }, "stackblur-canvas": { - "version": "2.5.0", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/stackblur-canvas/-/stackblur-canvas-2.6.0.tgz", + "integrity": "sha512-8S1aIA+UoF6erJYnglGPug6MaHYGo1Ot7h5fuXx4fUPvcvQfcdw2o/ppCse63+eZf8PPidSu4v1JnmEVtEDnpg==", "optional": true }, "state-local": { @@ -13275,17 +14726,13 @@ }, "string-width": { "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "requires": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" - }, - "dependencies": { - "emoji-regex": { - "version": "8.0.0", - "dev": true - } } }, "string.prototype.matchall": { @@ -13337,6 +14784,8 @@ }, "strip-ansi": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "requires": { "ansi-regex": "^5.0.1" @@ -13350,6 +14799,8 @@ }, "strip-indent": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", "dev": true, "requires": { "min-indent": "^1.0.0" @@ -13363,14 +14814,18 @@ }, "style-search": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", + "integrity": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==", "dev": true }, "styled-components": { - "version": "5.3.3", + "version": "5.3.11", + "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-5.3.11.tgz", + "integrity": "sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw==", "requires": { "@babel/helper-module-imports": "^7.0.0", "@babel/traverse": "^7.4.5", - "@emotion/is-prop-valid": "^0.8.8", + "@emotion/is-prop-valid": "^1.1.0", "@emotion/stylis": "^0.8.4", "@emotion/unitless": "^0.7.4", "babel-plugin-styled-components": ">= 1.12.0", @@ -13378,70 +14833,79 @@ "hoist-non-react-statics": "^3.0.0", "shallowequal": "^1.1.0", "supports-color": "^5.5.0" + }, + "dependencies": { + "@emotion/unitless": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz", + "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==" + } } }, "stylelint": { - "version": "14.9.1", + "version": "14.16.1", + "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-14.16.1.tgz", + "integrity": "sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A==", "dev": true, "requires": { - "@csstools/selector-specificity": "^2.0.1", + "@csstools/selector-specificity": "^2.0.2", "balanced-match": "^2.0.0", - "colord": "^2.9.2", - "cosmiconfig": "^7.0.1", + "colord": "^2.9.3", + "cosmiconfig": "^7.1.0", "css-functions-list": "^3.1.0", "debug": "^4.3.4", - "execall": "^2.0.0", - "fast-glob": "^3.2.11", - "fastest-levenshtein": "^1.0.12", + "fast-glob": "^3.2.12", + "fastest-levenshtein": "^1.0.16", "file-entry-cache": "^6.0.1", - "get-stdin": "^8.0.0", "global-modules": "^2.0.0", "globby": "^11.1.0", "globjoin": "^0.1.4", "html-tags": "^3.2.0", - "ignore": "^5.2.0", + "ignore": "^5.2.1", "import-lazy": "^4.0.0", "imurmurhash": "^0.1.4", "is-plain-object": "^5.0.0", - "known-css-properties": "^0.25.0", + "known-css-properties": "^0.26.0", "mathml-tag-names": "^2.1.3", "meow": "^9.0.0", "micromatch": "^4.0.5", "normalize-path": "^3.0.0", "picocolors": "^1.0.0", - "postcss": "^8.4.14", + "postcss": "^8.4.19", "postcss-media-query-parser": "^0.2.3", "postcss-resolve-nested-selector": "^0.1.1", "postcss-safe-parser": "^6.0.0", - "postcss-selector-parser": "^6.0.10", + "postcss-selector-parser": "^6.0.11", "postcss-value-parser": "^4.2.0", "resolve-from": "^5.0.0", "string-width": "^4.2.3", "strip-ansi": "^6.0.1", "style-search": "^0.1.0", - "supports-hyperlinks": "^2.2.0", + "supports-hyperlinks": "^2.3.0", "svg-tags": "^1.0.0", - "table": "^6.8.0", + "table": "^6.8.1", "v8-compile-cache": "^2.3.0", - "write-file-atomic": "^4.0.1" + "write-file-atomic": "^4.0.2" }, "dependencies": { "balanced-match": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", + "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", "dev": true }, - "write-file-atomic": { - "version": "4.0.1", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - } + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true } } }, "stylelint-config-sass-guidelines": { "version": "9.0.1", + "resolved": "https://registry.npmjs.org/stylelint-config-sass-guidelines/-/stylelint-config-sass-guidelines-9.0.1.tgz", + "integrity": "sha512-N06PsVsrgKijQ3YT5hqKA7x3NUkgELTRI1cbWMqcYiCGG6MjzvNk6Cb5YYA1PrvrksBV76BvY9P9bAswojVMqA==", "dev": true, "requires": { "postcss-scss": "^4.0.2", @@ -13451,6 +14915,8 @@ }, "stylelint-order": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/stylelint-order/-/stylelint-order-5.0.0.tgz", + "integrity": "sha512-OWQ7pmicXufDw5BlRqzdz3fkGKJPgLyDwD1rFY3AIEfIH/LQY38Vu/85v8/up0I+VPiuGRwbc2Hg3zLAsJaiyw==", "dev": true, "requires": { "postcss": "^8.3.11", @@ -13458,27 +14924,34 @@ } }, "stylelint-scss": { - "version": "4.3.0", + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-4.7.0.tgz", + "integrity": "sha512-TSUgIeS0H3jqDZnby1UO1Qv3poi1N8wUYIJY6D1tuUq2MN3lwp/rITVo0wD+1SWTmRm0tNmGO0b7nKInnqF6Hg==", "dev": true, "requires": { - "lodash": "^4.17.21", "postcss-media-query-parser": "^0.2.3", "postcss-resolve-nested-selector": "^0.1.1", - "postcss-selector-parser": "^6.0.6", - "postcss-value-parser": "^4.1.0" + "postcss-selector-parser": "^6.0.11", + "postcss-value-parser": "^4.2.0" } }, "stylis": { - "version": "4.0.13" + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", + "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==" }, "supports-color": { "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "requires": { "has-flag": "^3.0.0" } }, "supports-hyperlinks": { - "version": "2.2.0", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", "dev": true, "requires": { "has-flag": "^4.0.0", @@ -13487,10 +14960,14 @@ "dependencies": { "has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, "supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "requires": { "has-flag": "^4.0.0" @@ -13499,18 +14976,26 @@ } }, "supports-preserve-symlinks-flag": { - "version": "1.0.0" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" }, "svg-pathdata": { "version": "6.0.3", + "resolved": "https://registry.npmjs.org/svg-pathdata/-/svg-pathdata-6.0.3.tgz", + "integrity": "sha512-qsjeeq5YjBZ5eMdFuUa4ZosMLxgr5RZ+F+Y1OrDhuOCEInRMA3x74XdBtggJcj9kOeInz0WE+LgCPDkZFlBYJw==", "optional": true }, "svg-tags": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", + "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", "dev": true }, "table": { - "version": "6.8.0", + "version": "6.8.1", + "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", + "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", "dev": true, "requires": { "ajv": "^8.0.1", @@ -13518,59 +15003,51 @@ "slice-ansi": "^4.0.0", "string-width": "^4.2.3", "strip-ansi": "^6.0.1" - }, - "dependencies": { - "ajv": { - "version": "8.10.0", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "dev": true - } } }, "tapable": { "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", "peer": true }, "terser": { - "version": "5.14.2", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", - "integrity": "sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==", + "version": "5.27.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.27.0.tgz", + "integrity": "sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A==", "peer": true, "requires": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, "dependencies": { "commander": { "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "peer": true } } }, "terser-webpack-plugin": { - "version": "5.3.1", + "version": "5.3.10", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", + "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", "peer": true, "requires": { + "@jridgewell/trace-mapping": "^0.3.20", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "source-map": "^0.6.1", - "terser": "^5.7.2" + "serialize-javascript": "^6.0.1", + "terser": "^5.26.0" } }, "text-segmentation": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/text-segmentation/-/text-segmentation-1.0.3.tgz", + "integrity": "sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==", "optional": true, "requires": { "utrie": "^1.0.2" @@ -13578,33 +15055,45 @@ }, "text-table": { "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true }, "to-fast-properties": { - "version": "2.0.0" + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" }, "to-regex-range": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, "requires": { "is-number": "^7.0.0" } }, "toggle-selection": { - "version": "1.0.6" + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", + "integrity": "sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==" }, "tr46": { "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", "dev": true }, "trim-newlines": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", "dev": true }, "tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", "dev": true, "requires": { "@types/json5": "^0.0.29", @@ -13624,11 +15113,6 @@ } } }, - "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" - }, "type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", @@ -13639,9 +15123,9 @@ } }, "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", "dev": true }, "typed-array-buffer": { @@ -13688,7 +15172,9 @@ } }, "uglify-js": { - "version": "3.15.2", + "version": "3.17.4", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", + "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", "dev": true, "optional": true }, @@ -13720,9 +15206,9 @@ "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" }, "update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", "requires": { "escalade": "^3.1.1", "picocolors": "^1.0.0" @@ -13730,26 +15216,42 @@ }, "uri-js": { "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "requires": { "punycode": "^2.1.0" } }, + "use-isomorphic-layout-effect": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz", + "integrity": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==", + "requires": {} + }, "util-deprecate": { - "version": "1.0.2" + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" }, "utrie": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/utrie/-/utrie-1.0.2.tgz", + "integrity": "sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==", "optional": true, "requires": { "base64-arraybuffer": "^1.0.2" } }, "v8-compile-cache": { - "version": "2.3.0", + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz", + "integrity": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==", "dev": true }, "validate-npm-package-license": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "dev": true, "requires": { "spdx-correct": "^3.0.0", @@ -13789,38 +15291,15 @@ "integrity": "sha512-kRAyotcbNaSYoDnXvb4MHg/0a1egJdLwS6oJ38TJY7aw9n93Fl/3blIXdyYvPOp55CNxywooG/3BcrwNrBpcSg==" }, "vite": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.0.6.tgz", - "integrity": "sha512-MD3joyAEBtV7QZPl2JVVUai6zHms3YOmLR+BpMzLlX2Yzjfcc4gTgNi09d/Rua3F4EtC8zdwPU8eQYyib4vVMQ==", + "version": "5.0.12", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.0.12.tgz", + "integrity": "sha512-4hsnEkG3q0N4Tzf1+t6NdN9dg/L3BM+q8SWgbSPnJvrgH2kgdyzfVJwbR1ic69/4uMJJ/3dqDZZE5/WwqW8U1w==", "dev": true, "requires": { "esbuild": "^0.19.3", "fsevents": "~2.3.3", "postcss": "^8.4.32", "rollup": "^4.2.0" - }, - "dependencies": { - "rollup": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.6.1.tgz", - "integrity": "sha512-jZHaZotEHQaHLgKr8JnQiDT1rmatjgKlMekyksz+yk9jt/8z9quNjnKNRoaM0wd9DC2QKXjmWWuDYtM3jfF8pQ==", - "dev": true, - "requires": { - "@rollup/rollup-android-arm-eabi": "4.6.1", - "@rollup/rollup-android-arm64": "4.6.1", - "@rollup/rollup-darwin-arm64": "4.6.1", - "@rollup/rollup-darwin-x64": "4.6.1", - "@rollup/rollup-linux-arm-gnueabihf": "4.6.1", - "@rollup/rollup-linux-arm64-gnu": "4.6.1", - "@rollup/rollup-linux-arm64-musl": "4.6.1", - "@rollup/rollup-linux-x64-gnu": "4.6.1", - "@rollup/rollup-linux-x64-musl": "4.6.1", - "@rollup/rollup-win32-arm64-msvc": "4.6.1", - "@rollup/rollup-win32-ia32-msvc": "4.6.1", - "@rollup/rollup-win32-x64-msvc": "4.6.1", - "fsevents": "~2.3.2" - } - } } }, "vite-plugin-eslint": { @@ -13832,6 +15311,17 @@ "@rollup/pluginutils": "^4.2.1", "@types/eslint": "^8.4.5", "rollup": "^2.77.2" + }, + "dependencies": { + "rollup": { + "version": "2.79.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", + "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", + "dev": true, + "requires": { + "fsevents": "~2.3.2" + } + } } }, "warning": { @@ -13852,23 +15342,29 @@ "graceful-fs": "^4.1.2" } }, + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, "webpack": { - "version": "5.77.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.77.0.tgz", - "integrity": "sha512-sbGNjBr5Ya5ss91yzjeJTLKyfiwo5C628AFjEa6WSXcZa4E+F57om3Cc8xLb1Jh0b243AWuSYRf3dn7HVeFQ9Q==", + "version": "5.89.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.89.0.tgz", + "integrity": "sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==", "peer": true, "requires": { "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", "acorn": "^8.7.1", - "acorn-import-assertions": "^1.7.6", + "acorn-import-assertions": "^1.9.0", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.10.0", - "es-module-lexer": "^0.9.0", + "enhanced-resolve": "^5.15.0", + "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", @@ -13877,15 +15373,17 @@ "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", + "schema-utils": "^3.2.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", + "terser-webpack-plugin": "^5.3.7", "watchpack": "^2.4.0", "webpack-sources": "^3.2.3" }, "dependencies": { "eslint-scope": { "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "peer": true, "requires": { "esrecurse": "^4.3.0", @@ -13894,33 +15392,37 @@ }, "estraverse": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "peer": true } } }, "webpack-sources": { "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", "peer": true }, "whatwg-fetch": { - "version": "3.6.2" + "version": "3.6.20", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", + "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==" }, "whatwg-url": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "dev": true, "requires": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" - }, - "dependencies": { - "webidl-conversions": { - "version": "3.0.1", - "dev": true - } } }, "which": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "requires": { "isexe": "^2.0.0" @@ -13984,28 +15486,51 @@ }, "wordwrap": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", "dev": true }, "wrappy": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, + "write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + } + }, "xtend": { - "version": "4.0.2" + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" }, "yallist": { - "version": "4.0.0", - "dev": true + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" }, "yaml": { - "version": "1.10.2" + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" }, "yargs-parser": { "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "dev": true }, "yocto-queue": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true } } From 3ca7a67be3080f982a951349c1bf637b8e34e99d Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Sat, 20 Jan 2024 00:54:32 +0100 Subject: [PATCH 29/69] update version --- public/version_latest.txt | 2 +- version_latest.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/version_latest.txt b/public/version_latest.txt index 28cbf7c0aae3..32f3eaad0d92 100644 --- a/public/version_latest.txt +++ b/public/version_latest.txt @@ -1 +1 @@ -5.0.0 \ No newline at end of file +5.0.1 \ No newline at end of file diff --git a/version_latest.txt b/version_latest.txt index 28cbf7c0aae3..32f3eaad0d92 100644 --- a/version_latest.txt +++ b/version_latest.txt @@ -1 +1 @@ -5.0.0 \ No newline at end of file +5.0.1 \ No newline at end of file From c19cc9afe1ccac5609e4886ceef0e9359858172b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Sat, 20 Jan 2024 19:32:29 +0100 Subject: [PATCH 30/69] Update with all new licenses --- src/data/M365Licenses.json | 65944 +++++++++++++++++++++-------------- 1 file changed, 39736 insertions(+), 26208 deletions(-) diff --git a/src/data/M365Licenses.json b/src/data/M365Licenses.json index a2773f8c871c..3f8b5e97c369 100644 --- a/src/data/M365Licenses.json +++ b/src/data/M365Licenses.json @@ -1,26210 +1,39738 @@ [ - { - "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": "App governance add-on to Microsoft Defender for Cloud Apps", - "String_Id": "Microsoft_Cloud_App_Security_App_Governance_Add_On", - "GUID": "9706eed9-966f-4f1b-94f6-bb2b4af99a5b", - "Service_Plan_Name": "M365_AUDIT_PLATFORM", - "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" - }, - { - "Product_Display_Name": "App governance add-on to Microsoft Defender for Cloud Apps", - "String_Id": "Microsoft_Cloud_App_Security_App_Governance_Add_On", - "GUID": "9706eed9-966f-4f1b-94f6-bb2b4af99a5b", - "Service_Plan_Name": "MICROSOFT_APPLICATION_PROTECTION_AND_GOVERNANCE_A", - "Service_Plan_Id": "5f3b1ded-75c0-4b31-8e6e-9b077eaadfd5", - "Service_Plans_Included_Friendly_Names": "Microsoft Application Protection and Governance (A)" - }, - { - "Product_Display_Name": "App governance add-on to Microsoft Defender for Cloud Apps", - "String_Id": "Microsoft_Cloud_App_Security_App_Governance_Add_On", - "GUID": "9706eed9-966f-4f1b-94f6-bb2b4af99a5b", - "Service_Plan_Name": "MICROSOFT_APPLICATION_PROTECTION_AND_GOVERNANCE_D", - "Service_Plan_Id": "2e6ffd72-52d1-4541-8f6c-938f9a8d4cdc", - "Service_Plans_Included_Friendly_Names": "Microsoft Application Protection and Governance (D)" - }, - { - "Product_Display_Name": "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 P1 for Faculty", - "String_Id": "AAD_PREMIUM_FACULTY", - "GUID": "30fc3c36-5a95-4956-ba57-c09c2a600bb9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Azure Active Directory Premium P1 for Faculty", - "String_Id": "AAD_PREMIUM_FACULTY", - "GUID": "30fc3c36-5a95-4956-ba57-c09c2a600bb9", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Azure Active Directory Premium P1 for Faculty", - "String_Id": "AAD_PREMIUM_FACULTY", - "GUID": "30fc3c36-5a95-4956-ba57-c09c2a600bb9", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Azure Active Directory Premium P1 for Faculty", - "String_Id": "AAD_PREMIUM_FACULTY", - "GUID": "30fc3c36-5a95-4956-ba57-c09c2a600bb9", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "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 Data Service for Apps File Capacity", - "String_Id": "CDS_FILE_CAPACITY", - "GUID": "631d5fb1-a668-4c2a-9427-8830665a742e", - "Service_Plan_Name": "CDS_FILE_CAPACITY", - "Service_Plan_Id": "dd12a3a8-caec-44f8-b4fb-2f1a864b51e3", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Apps File Capacity" - }, - { - "Product_Display_Name": "Common Data Service for Apps File Capacity", - "String_Id": "CDS_FILE_CAPACITY", - "GUID": "631d5fb1-a668-4c2a-9427-8830665a742e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Common Data Service Database Capacity", - "String_Id": "CDS_DB_CAPACITY", - "GUID": "e612d426-6bc3-4181-9658-91aa906b0ac0", - "Service_Plan_Name": "CDS_DB_CAPACITY", - "Service_Plan_Id": "360bcc37-0c11-4264-8eed-9fa7a3297c9b", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Apps Database Capacity" - }, - { - "Product_Display_Name": "Common Data Service Database Capacity", - "String_Id": "CDS_DB_CAPACITY", - "GUID": "e612d426-6bc3-4181-9658-91aa906b0ac0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Common Data Service Database Capacity for Government", - "String_Id": "CDS_DB_CAPACITY_GOV", - "GUID": "eddf428b-da0e-4115-accf-b29eb0b83965", - "Service_Plan_Name": "CDS_DB_CAPACITY_GOV", - "Service_Plan_Id": "1ddffef6-4f69-455e-89c7-d5d72105f915", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Apps Database Capacity for Government" - }, - { - "Product_Display_Name": "Common Data Service Database Capacity for Government", - "String_Id": "CDS_DB_CAPACITY_GOV", - "GUID": "eddf428b-da0e-4115-accf-b29eb0b83965", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Common Data Service Log Capacity", - "String_Id": "CDS_LOG_CAPACITY", - "GUID": "448b063f-9cc6-42fc-a0e6-40e08724a395", - "Service_Plan_Name": "CDS_LOG_CAPACITY", - "Service_Plan_Id": "dc48f5c5-e87d-43d6-b884-7ac4a59e7ee9", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Apps Log Capacity" - }, - { - "Product_Display_Name": "Common Data Service Log Capacity", - "String_Id": "CDS_LOG_CAPACITY", - "GUID": "448b063f-9cc6-42fc-a0e6-40e08724a395", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Communications Credits", - "String_Id": "MCOPSTNC", - "GUID": "47794cd0-f0e5-45c5-9033-2eb6b5fc84e0", - "Service_Plan_Name": "MCOPSTNC", - "Service_Plan_Id": "505e180f-f7e0-4b65-91d4-00d670bbd18c", - "Service_Plans_Included_Friendly_Names": "COMMUNICATIONS CREDITS" - }, - { - "Product_Display_Name": "Compliance Manager Premium Assessment Add-On", - "String_Id": "CMPA_addon", - "GUID": "8a5fbbed-8b8c-41e5-907e-c50c471340fd", - "Service_Plan_Name": "COMPLIANCE_MANAGER_PREMIUM_ASSESSMENT_ADDON", - "Service_Plan_Id": "3a117d30-cfac-4f00-84ac-54f8b6a18d78", - "Service_Plans_Included_Friendly_Names": "Compliance Manager Premium Assessment Add-On" - }, - { - "Product_Display_Name": "Compliance Manager Premium Assessment Add-On for GCC", - "String_Id": "CMPA_addon_GCC", - "GUID": "a9d7ef53-9bea-4a2a-9650-fa7df58fe094", - "Service_Plan_Name": "COMPLIANCE_MANAGER_PREMIUM_ASSESSMENT_ADDON", - "Service_Plan_Id": "3a117d30-cfac-4f00-84ac-54f8b6a18d78", - "Service_Plans_Included_Friendly_Names": "Compliance Manager Premium Assessment Add-On" - }, - { - "Product_Display_Name": "Defender Threat Intelligence", - "String_Id": "Defender_Threat_Intelligence", - "GUID": "a9c51c15-ffad-4c66-88c0-8771455c832d", - "Service_Plan_Name": "THREAT_INTELLIGENCE_APP", - "Service_Plan_Id": "fbdb91e6-7bfd-4a1f-8f7a-d27f4ef39702", - "Service_Plans_Included_Friendly_Names": "Defender Threat Intelligence" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Database Storage (Qualified Offer)", - "String_Id": "CRMSTORAGE", - "GUID": "328dc228-00bc-48c6-8b09-1fbc8bc3435d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Database Storage (Qualified Offer)", - "String_Id": "CRMSTORAGE", - "GUID": "328dc228-00bc-48c6-8b09-1fbc8bc3435d", - "Service_Plan_Name": "CRMSTORAGE", - "Service_Plan_Id": "77866113-0f3e-4e6e-9666-b1e25c6f99b0", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Storage Add-On" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Production Instance (Qualified Offer)", - "String_Id": "CRMINSTANCE", - "GUID": "9d776713-14cb-4697-a21d-9a52455c738a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Production Instance (Qualified Offer)", - "String_Id": "CRMINSTANCE", - "GUID": "9d776713-14cb-4697-a21d-9a52455c738a", - "Service_Plan_Name": "CRMINSTANCE", - "Service_Plan_Id": "eeea837a-c885-4167-b3d5-ddde30cbd85f", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Instance" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Non-Production Instance (Qualified Offer)", - "String_Id": "CRMTESTINSTANCE", - "GUID": "e06abcc2-7ec5-4a79-b08b-d9c282376f72", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Non-Production Instance (Qualified Offer)", - "String_Id": "CRMTESTINSTANCE", - "GUID": "e06abcc2-7ec5-4a79-b08b-d9c282376f72", - "Service_Plan_Name": "CRMTESTINSTANCE", - "Service_Plan_Id": "a98b7619-66c7-4885-bdfc-1d9c8c3d279f", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Additional Test Instance" - }, - { - "Product_Display_Name": "Dynamics 365 AI for Market Insights (Preview)", - "String_Id": "SOCIAL_ENGAGEMENT_APP_USER", - "GUID": "c6df1e30-1c9f-427f-907c-3d913474a1c7", - "Service_Plan_Name": "SOCIAL_ENGAGEMENT_APP_USER", - "Service_Plan_Id": "339f4def-5ad8-4430-8d12-da5fd4c769a7", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Market Insights - Free" - }, - { - "Product_Display_Name": "Dynamics 365 AI for Market Insights (Preview)", - "String_Id": "SOCIAL_ENGAGEMENT_APP_USER", - "GUID": "c6df1e30-1c9f-427f-907c-3d913474a1c7", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Asset Management Addl Assets", - "String_Id": "DYN365_ASSETMANAGEMENT", - "GUID": "673afb9d-d85b-40c2-914e-7bf46cd5cd75", - "Service_Plan_Name": "D365_AssetforSCM", - "Service_Plan_Id": "90467813-5b40-40d4-835c-abd48009b1d9", - "Service_Plans_Included_Friendly_Names": "Asset Maintenance Add-in" - }, - { - "Product_Display_Name": "Dynamics 365 Asset Management Addl Assets", - "String_Id": "DYN365_ASSETMANAGEMENT", - "GUID": "673afb9d-d85b-40c2-914e-7bf46cd5cd75", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Additional Environment Addon", - "String_Id": "DYN365_BUSCENTRAL_ADD_ENV_ADDON", - "GUID": "a58f5506-b382-44d4-bfab-225b2fbf8390", - "Service_Plan_Name": "DYN365_BUSCENTRAL_ENVIRONMENT", - "Service_Plan_Id": "d397d6c6-9664-4502-b71c-66f39c400ca4", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Additional Environment Addon" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Database Capacity", - "String_Id": "DYN365_BUSCENTRAL_DB_CAPACITY", - "GUID": "7d0d4f9a-2686-4cb8-814c-eff3fdab6d74", - "Service_Plan_Name": "DYN365_BUSCENTRAL_DB_CAPACITY", - "Service_Plan_Id": "ae6b27b3-fe31-4e77-ae06-ec5fabbc103a", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Database Capacity" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Database Capacity", - "String_Id": "DYN365_BUSCENTRAL_DB_CAPACITY", - "GUID": "7d0d4f9a-2686-4cb8-814c-eff3fdab6d74", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Essentials", - "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL", - "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa", - "Service_Plan_Name": "DYN365_FINANCIALS_BUSINESS", - "Service_Plan_Id": "920656a2-7dd8-4c83-97b6-a356414dbd36", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Business Central Essentials" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Essentials", - "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL", - "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Essentials", - "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL", - "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Essentials", - "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL", - "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central External Accountant", - "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU", - "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4", - "Service_Plan_Name": "DYN365_FINANCIALS_ACCOUNTANT", - "Service_Plan_Id": "170991d7-b98e-41c5-83d4-db2052e1795f", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central External Accountant" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central External Accountant", - "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU", - "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central External Accountant", - "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU", - "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central External Accountant", - "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU", - "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central for IWs", - "String_Id": "PROJECT_MADEIRA_PREVIEW_IW_SKU", - "GUID": "6a4a1628-9b9a-424d-bed5-4118f0ede3fd", - "Service_Plan_Name": "PROJECT_MADEIRA_PREVIEW_IW", - "Service_Plan_Id": "3f2afeed-6fb5-4bf9-998f-f2912133aead", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central for IWs" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central for IWs", - "String_Id": "PROJECT_MADEIRA_PREVIEW_IW_SKU", - "GUID": "6a4a1628-9b9a-424d-bed5-4118f0ede3fd", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Premium", - "String_Id": "DYN365_BUSCENTRAL_PREMIUM", - "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029", - "Service_Plan_Name": "DYN365_BUSCENTRAL_PREMIUM", - "Service_Plan_Id": "8e9002c0-a1d8-4465-b952-817d2948e6e2", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Premium" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Premium", - "String_Id": "DYN365_BUSCENTRAL_PREMIUM", - "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Premium", - "String_Id": "DYN365_BUSCENTRAL_PREMIUM", - "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Premium", - "String_Id": "DYN365_BUSCENTRAL_PREMIUM", - "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Team Members", - "String_Id": "DYN365_BUSCENTRAL_TEAM_MEMBER", - "GUID": "2e3c4023-80f6-4711-aa5d-29e0ecb46835", - "Service_Plan_Name": "DYN365_FINANCIALS_TEAM_MEMBERS", - "Service_Plan_Id": "d9a6391b-8970-4976-bd94-5f205007c8d8", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Team Members" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Team Members", - "String_Id": "DYN365_BUSCENTRAL_TEAM_MEMBER", - "GUID": "2e3c4023-80f6-4711-aa5d-29e0ecb46835", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Team Members", - "String_Id": "DYN365_BUSCENTRAL_TEAM_MEMBER", - "GUID": "2e3c4023-80f6-4711-aa5d-29e0ecb46835", - "Service_Plan_Name": "POWERAPPS_DYN_TEAM", - "Service_Plan_Id": "52e619e2-2730-439a-b0d3-d09ab7e8b705", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Team Members", - "String_Id": "DYN365_BUSCENTRAL_TEAM_MEMBER", - "GUID": "2e3c4023-80f6-4711-aa5d-29e0ecb46835", - "Service_Plan_Name": "FLOW_DYN_TEAM", - "Service_Plan_Id": "1ec58c70-f69c-486a-8109-4b87ce86e449", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Commerce Trial", - "String_Id": "DYN365_RETAIL_TRIAL", - "GUID": "1508ad2d-5802-44e6-bfe8-6fb65de63d28", - "Service_Plan_Name": "DYN365_RETAIL_TRIAL", - "Service_Plan_Id": "874d6da5-2a67-45c1-8635-96e8b3e300ea", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Retail Trial" - }, - { - "Product_Display_Name": "Dynamics 365 Commerce Trial", - "String_Id": "DYN365_RETAIL_TRIAL", - "GUID": "1508ad2d-5802-44e6-bfe8-6fb65de63d28", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "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 Insights Attach", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_ATTACH", - "GUID": "a3d0cd86-8068-4071-ad40-4dc5b5908c4b", - "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS_BASE", - "Service_Plan_Id": "d04ca659-b119-4a92-b8fc-3ede584a9d65", - "Service_Plans_Included_Friendly_Names": "Dataverse for Customer Insights?BASE" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights Attach", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_ATTACH", - "GUID": "a3d0cd86-8068-4071-ad40-4dc5b5908c4b", - "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS", - "Service_Plan_Id": "ca00cff5-2568-4d03-bb6c-a653a8f360ca", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Customer Insights" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights Attach", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_ATTACH", - "GUID": "a3d0cd86-8068-4071-ad40-4dc5b5908c4b", - "Service_Plan_Name": "DYN365_CUSTOMER_INSIGHTS_BASE", - "Service_Plan_Id": "ee85d528-c4b4-4a99-9b07-fb9a1365dc93", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Insights" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights Attach", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_ATTACH", - "GUID": "a3d0cd86-8068-4071-ad40-4dc5b5908c4b", - "Service_Plan_Name": "Customer_Voice_Customer_Insights", - "Service_Plan_Id": "46c5ea0a-2343-49d9-ae4f-1c268b232d53", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Insights App" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights Attach", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_ATTACH", - "GUID": "a3d0cd86-8068-4071-ad40-4dc5b5908c4b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", - "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", - "Service_Plan_Name": "CUSTOMER_VOICE_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "dbe07046-af68-4861-a20d-1c8cbda9194f", - "Service_Plans_Included_Friendly_Names": "Customer Voice for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", - "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", - "Service_Plan_Name": "DYN365_CS_MESSAGING_TPS", - "Service_Plan_Id": "47c2b191-a5fb-4129-b690-00c474d2f623", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging add-on" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", - "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", - "Service_Plan_Name": "D365_CSI_EMBED_CSEnterprise", - "Service_Plan_Id": "5b1e5982-0e88-47bb-a95e-ae6085eda612", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Insights for CS Enterprise" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", - "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", - "Service_Plan_Name": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "Service_Plan_Id": "99340b49-fb81-4b1e-976b-8f2ae8e9394f", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", - "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", - "Service_Plan_Name": "DYN365_CS_VOICE", - "Service_Plan_Id": "f6ec6dfa-2402-468d-a455-89be11116d43", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Voice Add-in" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", - "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_VOICE", - "Service_Plan_Id": "a3dce1be-e9ca-453a-9483-e69a5b46ce98", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Customer Service Voice" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", - "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_MESSAGING", - "Service_Plan_Id": "2d2f174c-c3cc-4abe-9ce8-4dd86f469ab1", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Digital Messaging" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", - "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", - "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", - "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights Standalone", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE", - "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2", - "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS_BASE", - "Service_Plan_Id": "d04ca659-b119-4a92-b8fc-3ede584a9d65", - "Service_Plans_Included_Friendly_Names": "Dataverse for Cust Insights?BASE" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights Standalone", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE", - "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2", - "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS", - "Service_Plan_Id": "ca00cff5-2568-4d03-bb6c-a653a8f360ca", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Customer Insights" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights Standalone", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE", - "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2", - "Service_Plan_Name": "DYN365_CUSTOMER_INSIGHTS_BASE", - "Service_Plan_Id": "ee85d528-c4b4-4a99-9b07-fb9a1365dc93", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Insights" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights Standalone", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE", - "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2", - "Service_Plan_Name": "DYN365_CUSTOMER_INSIGHTS_ENGAGEMENT_INSIGHTS_BASE", - "Service_Plan_Id": "b3c26516-3b8d-492f-a5a3-64d70ad3f8d0", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Insights Engagement Insights" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights Standalone", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE", - "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2", - "Service_Plan_Name": "Customer_Voice_Customer_Insights", - "Service_Plan_Id": "46c5ea0a-2343-49d9-ae4f-1c268b232d53", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Insights App" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights Standalone", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE", - "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights vTrial", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_VIRAL", - "GUID": "036c2481-aa8a-47cd-ab43-324f0c157c2d", - "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS_TRIAL", - "Service_Plan_Id": "94e5cbf6-d843-4ee8-a2ec-8b15eb52019e", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Customer Insights Trial" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights vTrial", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_VIRAL", - "GUID": "036c2481-aa8a-47cd-ab43-324f0c157c2d", - "Service_Plan_Name": "DYN365_CUSTOMER_INSIGHTS_ENGAGEMENT_INSIGHTS_BASE_TRIAL", - "Service_Plan_Id": "e2bdea63-235e-44c6-9f5e-5b0e783f07dd", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Insights Engagement Insights Viral" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights vTrial", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_VIRAL", - "GUID": "036c2481-aa8a-47cd-ab43-324f0c157c2d", - "Service_Plan_Name": "DYN365_CUSTOMER_INSIGHTS_VIRAL", - "Service_Plan_Id": "ed8e8769-94c5-4132-a3e7-7543b713d51f", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Insights Viral Plan" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Insights vTrial", - "String_Id": "DYN365_CUSTOMER_INSIGHTS_VIRAL", - "GUID": "036c2481-aa8a-47cd-ab43-324f0c157c2d", - "Service_Plan_Name": "Forms_Pro_Customer_Insights", - "Service_Plan_Id": "fe581650-cf61-4a09-8814-4bd77eca9cb5", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Insights" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Attach to Qualifying Dynamics 365 Base Offer A", - "String_Id": "D365_CUSTOMER_SERVICE_ENT_ATTACH", - "GUID": "eb18b715-ea9d-4290-9994-2ebf4b5042d2", - "Service_Plan_Name": "D365_CUSTOMER_SERVICE_ENT_ATTACH", - "Service_Plan_Id": "61a2665f-1873-488c-9199-c3d0bc213fdf", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Enterprise Attach" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Attach to Qualifying Dynamics 365 Base Offer A", - "String_Id": "D365_CUSTOMER_SERVICE_ENT_ATTACH", - "GUID": "eb18b715-ea9d-4290-9994-2ebf4b5042d2", - "Service_Plan_Name": "Power_Pages_Internal_User", - "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", - "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Attach to Qualifying Dynamics 365 Base Offer A", - "String_Id": "D365_CUSTOMER_SERVICE_ENT_ATTACH", - "GUID": "eb18b715-ea9d-4290-9994-2ebf4b5042d2", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", - "GUID": "1e615a51-59db-4807-9957-aa83c3657351", - "Service_Plan_Name": "CUSTOMER_VOICE_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "dbe07046-af68-4861-a20d-1c8cbda9194f", - "Service_Plans_Included_Friendly_Names": "Customer Voice for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", - "GUID": "1e615a51-59db-4807-9957-aa83c3657351", - "Service_Plan_Name": "CCIBOTS_PRIVPREV_VIRAL", - "Service_Plan_Id": "ce312d15-8fdf-44c0-9974-a25a177125ee", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Customer Service Virtual Agents Viral" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", - "GUID": "1e615a51-59db-4807-9957-aa83c3657351", - "Service_Plan_Name": "DYN365_CS_MESSAGING_VIRAL_TRIAL", - "Service_Plan_Id": "3bf52bdf-5226-4a97-829e-5cca9b3f3392", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", - "GUID": "1e615a51-59db-4807-9957-aa83c3657351", - "Service_Plan_Name": "DYN365_CS_ENTERPRISE_VIRAL_TRIAL", - "Service_Plan_Id": "94fb67d3-465f-4d1f-a50a-952da079a564", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Enterprise vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", - "GUID": "1e615a51-59db-4807-9957-aa83c3657351", - "Service_Plan_Name": "DYNB365_CSI_VIRAL_TRIAL", - "Service_Plan_Id": "33f1466e-63a6-464c-bf6a-d1787928a56a", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Insights vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", - "GUID": "1e615a51-59db-4807-9957-aa83c3657351", - "Service_Plan_Name": "DYN365_CS_VOICE_VIRAL_TRIAL", - "Service_Plan_Id": "3de81e39-4ce1-47f7-a77f-8473d4eb6d7c", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Voice vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", - "GUID": "1e615a51-59db-4807-9957-aa83c3657351", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", - "GUID": "1e615a51-59db-4807-9957-aa83c3657351", - "Service_Plan_Name": "POWER_APPS_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "54b37829-818e-4e3c-a08a-3ea66ab9b45d", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", - "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", - "GUID": "1e615a51-59db-4807-9957-aa83c3657351", - "Service_Plan_Name": "POWER_AUTOMATE_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "81d4ecb8-0481-42fb-8868-51536c5aceeb", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Insights Trial", - "String_Id": "DYN365_AI_SERVICE_INSIGHTS", - "GUID": "61e6bd70-fbdb-4deb-82ea-912842f39431", - "Service_Plan_Name": "DYN365_AI_SERVICE_INSIGHTS", - "Service_Plan_Id": "4ade5aa6-5959-4d2c-bf0a-f4c9e2cc00f2", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Customer Service Trial" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Trial", - "String_Id": "FORMS_PRO", - "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", - "Service_Plan_Name": "DYN365_CDS_FORMS_PRO", - "Service_Plan_Id": "363430d1-e3f7-43bc-b07b-767b6bb95e4b", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Trial", - "String_Id": "FORMS_PRO", - "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", - "Service_Plan_Name": "FORMS_PRO", - "Service_Plan_Id": "17efdd9f-c22c-4ad8-b48e-3b1f3ee1dc9a", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Voice" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Trial", - "String_Id": "FORMS_PRO", - "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Trial", - "String_Id": "FORMS_PRO", - "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Trial", - "String_Id": "FORMS_PRO", - "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", - "Service_Plan_Name": "FLOW_FORMS_PRO", - "Service_Plan_Id": "57a0746c-87b8-4405-9397-df365a9db793", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 Customer Voice" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "DYN365_CUSTOMER_SERVICE_PRO", - "Service_Plan_Id": "6929f657-b31b-4947-b4ce-5066c3214f54", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Pro" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "POWERAPPS_CUSTOMER_SERVICE_PRO", - "Service_Plan_Id": "c507b04c-a905-4940-ada6-918891e6d3ad", - "Service_Plans_Included_Friendly_Names": "Power Apps for Customer Service Pro" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "FLOW_CUSTOMER_SERVICE_PRO", - "Service_Plan_Id": "0368fc9c-3721-437f-8b7d-3d0f888cdefc", - "Service_Plans_Included_Friendly_Names": "Power Automate for Customer Service Pro" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice", - "String_Id": "DYN365_CUSTOMER_VOICE_BASE", - "GUID": "359ea3e6-8130-4a57-9f8f-ad897a0342f1", - "Service_Plan_Name": "Customer_Voice_Base", - "Service_Plan_Id": "296820fe-dce5-40f4-a4f2-e14b8feef383", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Voice Base Plan" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice", - "String_Id": "DYN365_CUSTOMER_VOICE_BASE", - "GUID": "359ea3e6-8130-4a57-9f8f-ad897a0342f1", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses", - "String_Id": "Forms_Pro_AddOn", - "GUID": "446a86f8-a0cb-4095-83b3-d100eb050e3d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses", - "String_Id": "Forms_Pro_AddOn", - "GUID": "446a86f8-a0cb-4095-83b3-d100eb050e3d", - "Service_Plan_Name": "Forms_Pro_AddOn", - "Service_Plan_Id": "90a816f6-de5f-49fd-963c-df490d73b7b5", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice Add-on" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses", - "String_Id": "DYN365_CUSTOMER_VOICE_ADDON", - "GUID": "65f71586-ade3-4ce1-afc0-1b452eaf3782", - "Service_Plan_Name": "CUSTOMER_VOICE_ADDON", - "Service_Plan_Id": "e6e35e2d-2e7f-4e71-bc6f-2f40ed062f5d", - "Service_Plans_Included_Friendly_Names": "Dynamics Customer Voice Add-On" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses", - "String_Id": "DYN365_CUSTOMER_VOICE_ADDON", - "GUID": "65f71586-ade3-4ce1-afc0-1b452eaf3782", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice USL", - "String_Id": "Forms_Pro_USL", - "GUID": "e2ae107b-a571-426f-9367-6d4c8f1390ba", - "Service_Plan_Name": "CDS_FORM_PRO_USL", - "Service_Plan_Id": "e9830cfd-e65d-49dc-84fb-7d56b9aa2c89", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice USL", - "String_Id": "Forms_Pro_USL", - "GUID": "e2ae107b-a571-426f-9367-6d4c8f1390ba", - "Service_Plan_Name": "Forms_Pro_USL", - "Service_Plan_Id": "3ca0766a-643e-4304-af20-37f02726339b", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice USL" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice USL", - "String_Id": "Forms_Pro_USL", - "GUID": "e2ae107b-a571-426f-9367-6d4c8f1390ba", - "Service_Plan_Name": "FLOW_FORMS_PRO", - "Service_Plan_Id": "57a0746c-87b8-4405-9397-df365a9db793", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 Customer Voice" - }, - { - "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional 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 Field Service, Enterprise Edition - Resource Scheduling Optimization", - "String_Id": "CRM_AUTO_ROUTING_ADDON", - "GUID": "977464c4-bfaf-4b67-b761-a9bb735a2196", - "Service_Plan_Name": "CRM_AUTO_ROUTING_ENGINE_ADDON", - "Service_Plan_Id": "24435e4b-87d0-4d7d-8beb-63a9b1573022", - "Service_Plans_Included_Friendly_Names": "Field Service ? Automated Routing Engine Add-On" - }, - { - "Product_Display_Name": "Dynamics 365 Field Service, Enterprise Edition - Resource Scheduling Optimization", - "String_Id": "CRM_AUTO_ROUTING_ADDON", - "GUID": "977464c4-bfaf-4b67-b761-a9bb735a2196", - "Service_Plan_Name": "CRM_AUTO_ROUTING_ADDON", - "Service_Plan_Id": "2ba394e0-6f18-4b77-b45f-a5663bbab540", - "Service_Plans_Included_Friendly_Names": "RETIRED - Field Service ? Automated Routing Engine Add-On" - }, - { - "Product_Display_Name": "Dynamics 365 Field Service, Enterprise Edition - Resource Scheduling Optimization", - "String_Id": "CRM_AUTO_ROUTING_ADDON", - "GUID": "977464c4-bfaf-4b67-b761-a9bb735a2196", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Field Service Viral Trial", - "String_Id": "Dynamics_365_Field_Service_Enterprise_viral_trial", - "GUID": "29fcd665-d8d1-4f34-8eed-3811e3fca7b3", - "Service_Plan_Name": "CUSTOMER_VOICE_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "dbe07046-af68-4861-a20d-1c8cbda9194f", - "Service_Plans_Included_Friendly_Names": "Customer Voice for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Field Service Viral Trial", - "String_Id": "Dynamics_365_Field_Service_Enterprise_viral_trial", - "GUID": "29fcd665-d8d1-4f34-8eed-3811e3fca7b3", - "Service_Plan_Name": "DYN365_FS_ENTERPRISE_VIRAL_TRIAL", - "Service_Plan_Id": "20d1455b-72b2-4725-8354-a177845ab77d", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Field Service Enterprise vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Field Service Viral Trial", - "String_Id": "Dynamics_365_Field_Service_Enterprise_viral_trial", - "GUID": "29fcd665-d8d1-4f34-8eed-3811e3fca7b3", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Field Service Viral Trial", - "String_Id": "Dynamics_365_Field_Service_Enterprise_viral_trial", - "GUID": "29fcd665-d8d1-4f34-8eed-3811e3fca7b3", - "Service_Plan_Name": "POWER_APPS_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "54b37829-818e-4e3c-a08a-3ea66ab9b45d", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Field Service Viral Trial", - "String_Id": "Dynamics_365_Field_Service_Enterprise_viral_trial", - "GUID": "29fcd665-d8d1-4f34-8eed-3811e3fca7b3", - "Service_Plan_Name": "POWER_AUTOMATE_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "81d4ecb8-0481-42fb-8868-51536c5aceeb", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "DYN365_CDS_FINANCE", - "Service_Plan_Id": "e95d7060-d4d9-400a-a2bd-a244bf0b609e", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Dynamics 365 Finance" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "DYN365_REGULATORY_SERVICE", - "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Finance and Operations Enterprise edition - Regulatory Service" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "D365_Finance", - "Service_Plan_Id": "9f0e1b4e-9b33-4300-b451-b2c662cd4ff7", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 for Finance" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", - "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", - "Service_Plan_Name": "DYN365_ENTERPRISE_CASE_MANAGEMENT", - "Service_Plan_Id": "2822a3a1-9b8f-4432-8989-e11669a60dc8", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Case Management" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", - "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", - "Service_Plan_Name": "NBENTERPRISE", - "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", - "Service_Plans_Included_Friendly_Names": "Retired - Microsoft Social Engagement" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", - "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", - "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", - "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", - "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", - "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", - "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Chat", - "String_Id": "DYN365_CS_CHAT", - "GUID": "7d7af6c2-0be6-46df-84d1-c181b0272909", - "Service_Plan_Name": "DYN365_CS_CHAT_FPA", - "Service_Plan_Id": "426ec19c-d5b1-4548-b894-6fe75028c30d", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Chat Application Integration" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Chat", - "String_Id": "DYN365_CS_CHAT", - "GUID": "7d7af6c2-0be6-46df-84d1-c181b0272909", - "Service_Plan_Name": "DYN365_CS_CHAT", - "Service_Plan_Id": "f69129db-6dc1-4107-855e-0aaebbcd9dd4", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Chat" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Chat", - "String_Id": "DYN365_CS_CHAT", - "GUID": "7d7af6c2-0be6-46df-84d1-c181b0272909", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_CHAT", - "Service_Plan_Id": "19e4c3a8-3ebe-455f-a294-4f3479873ae3", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Chat" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Chat", - "String_Id": "DYN365_CS_CHAT", - "GUID": "7d7af6c2-0be6-46df-84d1-c181b0272909", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "D365_CSI_EMBED_CSEnterprise", - "Service_Plan_Id": "5b1e5982-0e88-47bb-a95e-ae6085eda612", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Insights for CS Enterprise" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "Service_Plan_Id": "99340b49-fb81-4b1e-976b-8f2ae8e9394f", - "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT - SERVICE DISCONTINUATION" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "Forms_Pro_Service", - "Service_Plan_Id": "67bf4812-f90b-4db9-97e7-c0bbbf7b2d09", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Service Enterprise" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "NBENTERPRISE", - "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR CUSTOMER SERVICE" - }, - { - "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Attach to Qualifying Dynamics 365 Base Offer", - "String_Id": "D365_FIELD_SERVICE_ATTACH", - "GUID": "a36cdaa2-a806-4b6e-9ae0-28dbd993c20e", - "Service_Plan_Name": "D365_FIELD_SERVICE_ATTACH", - "Service_Plan_Id": "55c9148b-d5f0-4101-b5a0-b2727cfc0916", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Field Service Attach" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Attach to Qualifying Dynamics 365 Base Offer", - "String_Id": "D365_FIELD_SERVICE_ATTACH", - "GUID": "a36cdaa2-a806-4b6e-9ae0-28dbd993c20e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", - "GUID": "c7d15985-e746-4f01-b113-20b575898250", - "Service_Plan_Name": "DYN365_ENTERPRISE_FIELD_SERVICE", - "Service_Plan_Id": "8c66ef8a-177f-4c0d-853c-d4f219331d09", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Field Service" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", - "GUID": "c7d15985-e746-4f01-b113-20b575898250", - "Service_Plan_Name": "Forms_Pro_FS", - "Service_Plan_Id": "9c439259-63b0-46cc-a258-72be4313a42d", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Field Service" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", - "GUID": "c7d15985-e746-4f01-b113-20b575898250", - "Service_Plan_Name": "NBENTERPRISE", - "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", - "Service_Plans_Included_Friendly_Names": "Retired - Microsoft Social Engagement" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", - "GUID": "c7d15985-e746-4f01-b113-20b575898250", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", - "GUID": "c7d15985-e746-4f01-b113-20b575898250", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", - "GUID": "c7d15985-e746-4f01-b113-20b575898250", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", - "GUID": "c7d15985-e746-4f01-b113-20b575898250", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", - "GUID": "c7d15985-e746-4f01-b113-20b575898250", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", - "GUID": "c7d15985-e746-4f01-b113-20b575898250", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 for 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 Hybrid Connector", - "String_Id": "CRM_HYBRIDCONNECTOR", - "GUID": "de176c31-616d-4eae-829a-718918d7ec23", - "Service_Plan_Name": "CRM_HYBRIDCONNECTOR", - "Service_Plan_Id": "0210d5c8-49d2-4dd1-a01b-a91c7c14e0bf", - "Service_Plans_Included_Friendly_Names": "CRM Hybrid Connector" - }, - { - "Product_Display_Name": "Dynamics 365 Hybrid Connector", - "String_Id": "CRM_HYBRIDCONNECTOR", - "GUID": "de176c31-616d-4eae-829a-718918d7ec23", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Additional Application", - "String_Id": "DYN365_MARKETING_APPLICATION_ADDON", - "GUID": "99c5688b-6c75-4496-876f-07f0fbd69add", - "Service_Plan_Name": "DYN365_MARKETING_APPLICATION_ADDON", - "Service_Plan_Id": "51cf0638-4861-40c0-8b20-1161ab2f80be", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing Additional Application" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Additional Application", - "String_Id": "DYN365_MARKETING_APPLICATION_ADDON", - "GUID": "99c5688b-6c75-4496-876f-07f0fbd69add", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Addnl Contacts Tier 3", - "String_Id": "DYN365_MARKETING_CONTACT_ADDON_T3", - "GUID": "23053933-0fda-431f-9a5b-a00fd78444c1", - "Service_Plan_Name": "DYN365_MARKETING_50K_CONTACT_ADDON", - "Service_Plan_Id": "e626a4ec-1ba2-409e-bf75-9bc0bc30cca7", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing 50K Addnl Contacts" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Addnl Contacts Tier 3", - "String_Id": "DYN365_MARKETING_CONTACT_ADDON_T3", - "GUID": "23053933-0fda-431f-9a5b-a00fd78444c1", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Addnl Contacts Tier 5", - "String_Id": "DYN365_MARKETING_CONTACT_ADDON_T5", - "GUID": "d8eec316-778c-4f14-a7d1-a0aca433b4e7", - "Service_Plan_Name": "DYN365_MARKETING_50K_CONTACT_ADDON", - "Service_Plan_Id": "e626a4ec-1ba2-409e-bf75-9bc0bc30cca7", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing 50K Addnl Contacts" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Addnl Contacts Tier 5", - "String_Id": "DYN365_MARKETING_CONTACT_ADDON_T5", - "GUID": "d8eec316-778c-4f14-a7d1-a0aca433b4e7", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Additional Non-Prod Application", - "String_Id": "DYN365_MARKETING_SANDBOX_APPLICATION_ADDON", - "GUID": "c393e9bd-2335-4b46-8b88-9e2a86a85ec1", - "Service_Plan_Name": "DYN365_MARKETING_SANDBOX_APPLICATION_ADDON", - "Service_Plan_Id": "1599de10-5250-4c95-acf2-491f74edce48", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Marketing Sandbox Application AddOn" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Attach", - "String_Id": "DYN365_MARKETING_APP_ATTACH", - "GUID": "85430fb9-02e8-48be-9d7e-328beb41fa29", - "Service_Plan_Name": "DYN365_MARKETING_APP", - "Service_Plan_Id": "a3a4fa10-5092-401a-af30-0462a95a7ac8", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Attach", - "String_Id": "DYN365_MARKETING_APP_ATTACH", - "GUID": "85430fb9-02e8-48be-9d7e-328beb41fa29", - "Service_Plan_Name": "Forms_Pro_Marketing_App", - "Service_Plan_Id": "22b657cf-0a9e-467b-8a91-5e31f21bc570", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Marketing Application" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Attach", - "String_Id": "DYN365_MARKETING_APP_ATTACH", - "GUID": "85430fb9-02e8-48be-9d7e-328beb41fa29", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing USL", - "String_Id": "D365_MARKETING_USER", - "GUID": "4b32a493-9a67-4649-8eb9-9fc5a5f75c12", - "Service_Plan_Name": "DYN365_MARKETING_MSE_USER", - "Service_Plan_Id": "2824c69a-1ac5-4397-8592-eae51cb8b581", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing MSE User" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing USL", - "String_Id": "D365_MARKETING_USER", - "GUID": "4b32a493-9a67-4649-8eb9-9fc5a5f75c12", - "Service_Plan_Name": "DYN365_MARKETING_USER", - "Service_Plan_Id": "5d7a6abc-eebd-46ab-96e1-e4a2f54a2248", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing USL" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing USL", - "String_Id": "D365_MARKETING_USER", - "GUID": "4b32a493-9a67-4649-8eb9-9fc5a5f75c12", - "Service_Plan_Name": "Forms_Pro_Marketing", - "Service_Plan_Id": "76366ba0-d230-47aa-8087-b6d55dae454f", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Marketing" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing USL", - "String_Id": "D365_MARKETING_USER", - "GUID": "4b32a493-9a67-4649-8eb9-9fc5a5f75c12", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 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 Sales, Field Service and Customer Service Partner Sandbox", - "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox", - "GUID": "494721b8-1f30-4315-aba6-70ca169358d9", - "Service_Plan_Name": "DYN365_ENTERPRISE_P1", - "Service_Plan_Id": "d56f3deb-50d8-465a-bedb-f079817ccac1", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Engagement Plan" - }, - { - "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox", - "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox", - "GUID": "494721b8-1f30-4315-aba6-70ca169358d9", - "Service_Plan_Name": "Forms_Pro_Service", - "Service_Plan_Id": "67bf4812-f90b-4db9-97e7-c0bbbf7b2d09", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Service Enterprise" - }, - { - "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox", - "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox", - "GUID": "494721b8-1f30-4315-aba6-70ca169358d9", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox", - "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox", - "GUID": "494721b8-1f30-4315-aba6-70ca169358d9", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox", - "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox", - "GUID": "494721b8-1f30-4315-aba6-70ca169358d9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox", - "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox", - "GUID": "494721b8-1f30-4315-aba6-70ca169358d9", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "DYN365_SALES_INSIGHTS", - "Service_Plan_Id": "fedc185f-0711-4cc0-80ed-0a92da1a8384", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Sales (Embedded)" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "Microsoft_Viva_Sales_PowerAutomate", - "Service_Plan_Id": "a933a62f-c3fb-48e5-a0b7-ac92b94b4420", - "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium with Power Automate" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "Microsoft_Viva_Sales_PremiumTrial", - "Service_Plan_Id": "8ba1ff15-7bf6-4620-b65c-ecedb6942766", - "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium \u0026 Trial" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "Power_Pages_Internal_User", - "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", - "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "Forms_Pro_SalesEnt", - "Service_Plan_Id": "8839ef0e-91f1-4085-b485-62e06e7c7987", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Sales Enterprise" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium", - "String_Id": "DYN365_SALES_PREMIUM", - "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", - "Service_Plan_Name": "DYN365_ENTERPRISE_SALES", - "Service_Plan_Id": "2da8e897-7791-486b-b08f-cc63c8129df7", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Business Edition", - "String_Id": "DYN365_BUSINESS_MARKETING", - "GUID": "238e2f8d-e429-4035-94db-6926be4ffe7b", - "Service_Plan_Name": "DYN365_BUSINESS_Marketing", - "Service_Plan_Id": "393a0c96-9ba1-4af0-8975-fa2f853a25ac", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Marketing" - }, - { - "Product_Display_Name": "Dynamics 365 for Marketing Business Edition", - "String_Id": "DYN365_BUSINESS_MARKETING", - "GUID": "238e2f8d-e429-4035-94db-6926be4ffe7b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Regulatory Service - Enterprise Edition Trial", - "String_Id": "DYN365_REGULATORY_SERVICE", - "GUID": "7ed4877c-0863-4f69-9187-245487128d4f", - "Service_Plan_Name": "DYN365_REGULATORY_SERVICE", - "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Finance and Operations Enterprise edition - Regulatory Service" - }, - { - "Product_Display_Name": "Dynamics 365 Regulatory Service - Enterprise Edition Trial", - "String_Id": "DYN365_REGULATORY_SERVICE", - "GUID": "7ed4877c-0863-4f69-9187-245487128d4f", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial", - "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial", - "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71", - "Service_Plan_Name": "CUSTOMER_VOICE_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "dbe07046-af68-4861-a20d-1c8cbda9194f", - "Service_Plans_Included_Friendly_Names": "Customer Voice for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial", - "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial", - "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71", - "Service_Plan_Name": "DYN365_SALES_ENTERPRISE_VIRAL_TRIAL", - "Service_Plan_Id": "7f636c80-0961-41b2-94da-9642ccf02de0", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Sales Enterprise vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial", - "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial", - "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71", - "Service_Plan_Name": "DYN365_SALES_INSIGHTS_VIRAL_TRIAL", - "Service_Plan_Id": "456747c0-cf1e-4b0d-940f-703a01b964cc", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Sales Insights vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial", - "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial", - "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial", - "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial", - "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71", - "Service_Plan_Name": "POWER_APPS_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "54b37829-818e-4e3c-a08a-3ea66ab9b45d", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial", - "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial", - "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71", - "Service_Plan_Name": "POWER_AUTOMATE_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "81d4ecb8-0481-42fb-8868-51536c5aceeb", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Dynamics 365 For Sales Professional", - "String_Id": "D365_SALES_PRO", - "GUID": "be9f9771-1c64-4618-9907-244325141096", - "Service_Plan_Name": "DYN365_SALES_PRO", - "Service_Plan_Id": "88d83950-ff78-4e85-aa66-abfc787f8090", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Professional" - }, - { - "Product_Display_Name": "Dynamics 365 For Sales Professional", - "String_Id": "D365_SALES_PRO", - "GUID": "be9f9771-1c64-4618-9907-244325141096", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 For Sales Professional", - "String_Id": "D365_SALES_PRO", - "GUID": "be9f9771-1c64-4618-9907-244325141096", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Dynamics 365 For Sales Professional", - "String_Id": "D365_SALES_PRO", - "GUID": "be9f9771-1c64-4618-9907-244325141096", - "Service_Plan_Name": "POWERAPPS_SALES_PRO", - "Service_Plan_Id": "6f9f70ce-138d-49f8-bb8b-2e701b7dde75", - "Service_Plans_Included_Friendly_Names": "Power Apps for Sales Pro" - }, - { - "Product_Display_Name": "Dynamics 365 For Sales Professional", - "String_Id": "D365_SALES_PRO", - "GUID": "be9f9771-1c64-4618-9907-244325141096", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "f944d685-f762-4371-806d-a1f48e5bea13", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Dynamics 365 For Sales Professional", - "String_Id": "D365_SALES_PRO", - "GUID": "be9f9771-1c64-4618-9907-244325141096", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)Dynamics 365 for Sales Pro Attach" - }, - { - "Product_Display_Name": "Dynamics 365 For Sales Professional Trial", - "String_Id": "D365_SALES_PRO_IW", - "GUID": "9c7bff7a-3715-4da7-88d3-07f57f8d0fb6", - "Service_Plan_Name": "D365_SALES_PRO_IW", - "Service_Plan_Id": "73f205fc-6b15-47a5-967e-9e64fdf72d0a", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Professional Trial" - }, - { - "Product_Display_Name": "Dynamics 365 For Sales Professional Trial", - "String_Id": "D365_SALES_PRO_IW", - "GUID": "9c7bff7a-3715-4da7-88d3-07f57f8d0fb6", - "Service_Plan_Name": "D365_SALES_PRO_IW_Trial", - "Service_Plan_Id": "db39a47e-1f4f-462b-bf5b-2ec471fb7b88", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Professional Trial" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Professional Attach to Qualifying Dynamics 365 Base Offer", - "String_Id": "D365_SALES_PRO_ATTACH", - "GUID": "245e6bf9-411e-481e-8611-5c08595e2988", - "Service_Plan_Name": "D365_SALES_PRO_ATTACH", - "Service_Plan_Id": "065f3c64-0649-4ec7-9f47-ef5cf134c751", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Pro Attach" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Professional Attach to Qualifying Dynamics 365 Base Offer", - "String_Id": "D365_SALES_PRO_ATTACH", - "GUID": "245e6bf9-411e-481e-8611-5c08595e2988", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Supply Chain Management", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "DYN365_CDS_SUPPLYCHAINMANAGEMENT", - "Service_Plan_Id": "b6a8b974-2956-4e14-ae81-f0384c363528", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR DYNAMICS 365 SUPPLY CHAIN MANAGEMENT" - }, - { - "Product_Display_Name": "Dynamics 365 for Supply Chain Management", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "DYN365_REGULATORY_SERVICE", - "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR FINANCE AND OPERATIONS ENTERPRISE EDITION - REGULATORY SERVICE" - }, - { - "Product_Display_Name": "Dynamics 365 for Supply Chain Management", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "D365_SCM", - "Service_Plan_Id": "1224eae4-0d91-474a-8a52-27ec96a63fe7", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT" - }, - { - "Product_Display_Name": "Dynamics 365 for Supply Chain Management", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Dynamics 365 for Supply Chain Management", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Supply Chain Management", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "DYN365_CDS_DYN_APPS", - "Service_Plan_Id": "2d925ad8-2479-4bd8-bb76-5b80f1d48935", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "Dynamics_365_Hiring_Free_PLAN", - "Service_Plan_Id": "f815ac79-c5dd-4bcc-9b78-d97f7b817d0d", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent: Attract" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "Dynamics_365_Onboarding_Free_PLAN", - "Service_Plan_Id": "300b8114-8555-4313-b861-0c115d820f50", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent: Onboard" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "Dynamics_365_for_HCM_Trial", - "Service_Plan_Id": "5ed38b64-c3b7-4d9f-b1cd-0de18c9c4331", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for HCM Trial" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Talent: Attract", - "String_Id": "Dynamics_365_Hiring_SKU", - "GUID": "e561871f-74fa-4f02-abee-5b0ef54dd36d", - "Service_Plan_Name": "DYN365_CDS_DYN_APPS", - "Service_Plan_Id": "2d925ad8-2479-4bd8-bb76-5b80f1d48935", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Dynamics 365 Talent: Attract", - "String_Id": "Dynamics_365_Hiring_SKU", - "GUID": "e561871f-74fa-4f02-abee-5b0ef54dd36d", - "Service_Plan_Name": "Dynamics_365_Hiring_Free_PLAN", - "Service_Plan_Id": "f815ac79-c5dd-4bcc-9b78-d97f7b817d0d", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent: Attract" - }, - { - "Product_Display_Name": "Dynamics 365 Talent: Attract", - "String_Id": "Dynamics_365_Hiring_SKU", - "GUID": "e561871f-74fa-4f02-abee-5b0ef54dd36d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "DYN365_Enterprise_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 Tria for Information Workers", - "String_Id": "DYN365_ENTERPRISE_P1_IW", - "GUID": "338148b6-1b11-4102-afb9-f92b6cdc0f8d", - "Service_Plan_Name": "DYN365_ENTERPRISE_P1_IW", - "Service_Plan_Id": "056a5f80-b4e0-4983-a8be-7ad254a113c9", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 P1 TRIAL FOR INFORMATION WORKERS" - }, - { - "Product_Display_Name": "Dynamics 365 P1 Tria for Information Workers", - "String_Id": "DYN365_ENTERPRISE_P1_IW", - "GUID": "338148b6-1b11-4102-afb9-f92b6cdc0f8d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Dynamics 365 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 A3 for Faculty", - "String_Id": "EMS_EDU_FACULTY", - "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", - "String_Id": "EMS_EDU_FACULTY", - "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", - "Service_Plan_Name": "AAD_EDU", - "Service_Plan_Id": "3a3976ce-de18-4a87-a78e-5e9245e252df", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory for Education" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", - "String_Id": "EMS_EDU_FACULTY", - "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", - "String_Id": "EMS_EDU_FACULTY", - "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", - "String_Id": "EMS_EDU_FACULTY", - "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", - "String_Id": "EMS_EDU_FACULTY", - "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", - "String_Id": "EMS_EDU_FACULTY", - "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", - "String_Id": "EMS_EDU_FACULTY", - "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", - "String_Id": "EMS_EDU_FACULTY", - "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", - "String_Id": "EMS_EDU_FACULTY", - "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", - "Service_Plan_Name": "WINDOWS_STORE", - "Service_Plan_Id": "a420f25f-a7b3-4ff5-a9d0-5d58f73b537d", - "Service_Plans_Included_Friendly_Names": "Windows Store Service" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security E3", - "String_Id": "EMS", - "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "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 1) for Alumni with Yammer", - "String_Id": "EXCHANGESTANDARD_ALUMNI", - "GUID": "aa0f9eb7-eff2-4943-8424-226fb137fcad", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1) for Alumni with Yammer", - "String_Id": "EXCHANGESTANDARD_ALUMNI", - "GUID": "aa0f9eb7-eff2-4943-8424-226fb137fcad", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1) for Alumni with Yammer", - "String_Id": "EXCHANGESTANDARD_ALUMNI", - "GUID": "aa0f9eb7-eff2-4943-8424-226fb137fcad", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1) for Students", - "String_Id": "EXCHANGESTANDARD_STUDENT", - "GUID": "ad2fe44a-915d-4e2b-ade1-6766d50a9d9c", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1) for Students", - "String_Id": "EXCHANGESTANDARD_STUDENT", - "GUID": "ad2fe44a-915d-4e2b-ade1-6766d50a9d9c", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1) for Students", - "String_Id": "EXCHANGESTANDARD_STUDENT", - "GUID": "ad2fe44a-915d-4e2b-ade1-6766d50a9d9c", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1) for Students", - "String_Id": "EXCHANGESTANDARD_STUDENT", - "GUID": "ad2fe44a-915d-4e2b-ade1-6766d50a9d9c", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1) for GCC", - "String_Id": "EXCHANGESTANDARD_GOV", - "GUID": "f37d5ebf-4bf1-4aa2-8fa3-50c51059e983", - "Service_Plan_Name": "EXCHANGE_S_STANDARD_GOV", - "Service_Plan_Id": "e9b4930a-925f-45e2-ac2a-3f7788ca6fdd", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1) for Government" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1) for GCC", - "String_Id": "EXCHANGESTANDARD_GOV", - "GUID": "f37d5ebf-4bf1-4aa2-8fa3-50c51059e983", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Exchange Online (Plan 2)", - "String_Id": "EXCHANGEENTERPRISE", - "GUID": "19ec0d23-8335-4cbd-94ac-6050e30712fa", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Exchange Online (Plan 2) for Faculty", - "String_Id": "EXCHANGEENTERPRISE_FACULTY", - "GUID": "0b7b15a8-7fd2-4964-bb96-5a566d4e3c15", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Exchange Online (Plan 2) for Faculty", - "String_Id": "EXCHANGEENTERPRISE_FACULTY", - "GUID": "0b7b15a8-7fd2-4964-bb96-5a566d4e3c15", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Exchange Online (Plan 2) for Faculty", - "String_Id": "EXCHANGEENTERPRISE_FACULTY", - "GUID": "0b7b15a8-7fd2-4964-bb96-5a566d4e3c15", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "Exchange Online (Plan 2) for Faculty", - "String_Id": "EXCHANGEENTERPRISE_FACULTY", - "GUID": "0b7b15a8-7fd2-4964-bb96-5a566d4e3c15", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Exchange Online Archiving for Exchange Online", - "String_Id": "EXCHANGEARCHIVE_ADDON", - "GUID": "ee02fd1b-340e-4a4b-b355-4a514e4c8943", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", - "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE ONLINE" - }, - { - "Product_Display_Name": "Exchange Online Archiving for Exchange Server", - "String_Id": "EXCHANGEARCHIVE", - "GUID": "90b5e015-709a-4b8b-b08e-3200f994494c", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE", - "Service_Plan_Id": "da040e0a-b393-4bea-bb76-928b3fa1cf5a", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE SERVER" - }, - { - "Product_Display_Name": "Exchange Online Essentials (ExO P1 Based)", - "String_Id": "EXCHANGEESSENTIALS", - "GUID": "7fc0182e-d107-4556-8329-7caaa511197b", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "Exchange Online Essentials", - "String_Id": "EXCHANGE_S_ESSENTIALS", - "GUID": "e8f81a67-bd96-4074-b108-cf193eb9433b", - "Service_Plan_Name": "EXCHANGE_S_ESSENTIALS", - "Service_Plan_Id": "1126bef5-da20-4f07-b45e-ad25d2581aa8", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ESSENTIALS" - }, - { - "Product_Display_Name": "Exchange Online Essentials", - "String_Id": "EXCHANGE_S_ESSENTIALS", - "GUID": "e8f81a67-bd96-4074-b108-cf193eb9433b", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)" - }, - { - "Product_Display_Name": "Exchange Online Kiosk", - "String_Id": "EXCHANGEDESKLESS", - "GUID": "80b2d799-d2ba-4d2a-8842-fb0d0f3a4b82", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS", - "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE KIOSK" - }, - { - "Product_Display_Name": "Exchange Online POP", - "String_Id": "EXCHANGETELCO", - "GUID": "cb0a98a8-11bc-494c-83d9-c1b1ac65327e", - "Service_Plan_Name": "EXCHANGE_B_STANDARD", - "Service_Plan_Id": "90927877-dcff-4af6-b346-2332c0b15bb7", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE POP" - }, - { - "Product_Display_Name": "Exchange Online Protection", - "String_Id": "EOP_ENTERPRISE", - "GUID": "45a2423b-e884-448d-a831-d9e139c52d2f", - "Service_Plan_Name": "EOP_ENTERPRISE", - "Service_Plan_Id": "326e2b78-9d27-42c9-8509-46c827743a17", - "Service_Plans_Included_Friendly_Names": "Exchange Online Protection" - }, - { - "Product_Display_Name": "Intune", - "String_Id": "INTUNE_A", - "GUID": "061f9ace-7d42-4136-88ac-31dc755f143f", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "Intune for Education", - "String_Id": "INTUNE_EDU", - "GUID": "d9d89b70-a645-4c24-b041-8d3cb1884ec7", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Intune for Education", - "String_Id": "INTUNE_EDU", - "GUID": "d9d89b70-a645-4c24-b041-8d3cb1884ec7", - "Service_Plan_Name": "AAD_EDU", - "Service_Plan_Id": "3a3976ce-de18-4a87-a78e-5e9245e252df", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory for Education" - }, - { - "Product_Display_Name": "Intune for Education", - "String_Id": "INTUNE_EDU", - "GUID": "d9d89b70-a645-4c24-b041-8d3cb1884ec7", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Intune for Education", - "String_Id": "INTUNE_EDU", - "GUID": "d9d89b70-a645-4c24-b041-8d3cb1884ec7", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" - }, - { - "Product_Display_Name": "Intune for Education", - "String_Id": "INTUNE_EDU", - "GUID": "d9d89b70-a645-4c24-b041-8d3cb1884ec7", - "Service_Plan_Name": "WINDOWS_STORE", - "Service_Plan_Id": "a420f25f-a7b3-4ff5-a9d0-5d58f73b537d", - "Service_Plans_Included_Friendly_Names": "Windows Store Service" - }, - { - "Product_Display_Name": "Microsoft Dynamics AX7 User Trial", - "String_Id": "AX7_USER_TRIAL", - "GUID": "fcecd1f9-a91e-488d-a918-a96cdb6ce2b0", - "Service_Plan_Name": "ERP_TRIAL_INSTANCE", - "Service_Plan_Id": "e2f705fd-2468-4090-8c58-fad6e6b1e724", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Operations Trial Environment" - }, - { - "Product_Display_Name": "Microsoft Dynamics AX7 User Trial", - "String_Id": "AX7_USER_TRIAL", - "GUID": "fcecd1f9-a91e-488d-a918-a96cdb6ce2b0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft 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": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MDE_LITE", - "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "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": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MDE_LITE", - "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "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": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Students", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING", - "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086", - "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "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": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 Suite features for faculty", - "String_Id": "Microsoft 365 A3 Suite features for faculty", - "GUID": "32a0e471-8a27-4167-b24f-941559912425", - "Service_Plan_Name": "MDE_LITE", - "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 Suite features for faculty", - "String_Id": "Microsoft 365 A3 Suite features for faculty", - "GUID": "32a0e471-8a27-4167-b24f-941559912425", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1 for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 Suite features for faculty", - "String_Id": "Microsoft 365 A3 Suite features for faculty", - "GUID": "32a0e471-8a27-4167-b24f-941559912425", - "Service_Plan_Name": "REMOTE_HELP", - "Service_Plan_Id": "a4c6cf29-1168-4076-ba5c-e8fe0e62b17e", - "Service_Plans_Included_Friendly_Names": "Remote help" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "OFFICESUBSCRIPTION_unattended", - "Service_Plan_Id": "8d77e2d9-9e28-4450-8431-0def64078fc5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise (Unattended)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING", - "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086", - "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "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": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "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": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_3", - "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", - "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "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" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_3", - "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", - "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "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": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Students", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING", - "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086", - "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "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": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty", - "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY", - "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Premium" - }, - { - "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty", - "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY", - "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty", - "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY", - "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty", - "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY", - "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty", - "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY", - "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty", - "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY", - "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1 for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "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": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Enterprise", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Enterprise", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Enterprise", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Enterprise", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Enterprise", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Enterprise", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "ONEDRIVESTANDARD", - "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", - "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Enterprise", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Enterprise", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for enterprise (device)", - "String_Id": "OFFICE_PROPLUS_DEVICE1", - "GUID": "ea4c5ec8-50e3-4193-89b9-50da5bd4cdc7", - "Service_Plan_Name": "OFFICE_PROPLUS_DEVICE", - "Service_Plan_Id": "3c994f28-87d5-4273-b07a-eb6190852599", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise (Device)" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Students", - "String_Id": "OFFICESUBSCRIPTION_STUDENT", - "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Students", - "String_Id": "OFFICESUBSCRIPTION_STUDENT", - "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Students", - "String_Id": "OFFICESUBSCRIPTION_STUDENT", - "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Students", - "String_Id": "OFFICESUBSCRIPTION_STUDENT", - "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Students", - "String_Id": "OFFICESUBSCRIPTION_STUDENT", - "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Students", - "String_Id": "OFFICESUBSCRIPTION_STUDENT", - "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Students", - "String_Id": "OFFICESUBSCRIPTION_STUDENT", - "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", - "Service_Plan_Name": "ONEDRIVESTANDARD", - "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", - "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Students", - "String_Id": "OFFICESUBSCRIPTION_STUDENT", - "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Students", - "String_Id": "OFFICESUBSCRIPTION_STUDENT", - "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Students", - "String_Id": "OFFICESUBSCRIPTION_STUDENT", - "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Faculty", - "String_Id": "OFFICESUBSCRIPTION_FACULTY", - "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Faculty", - "String_Id": "OFFICESUBSCRIPTION_FACULTY", - "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Faculty", - "String_Id": "OFFICESUBSCRIPTION_FACULTY", - "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Faculty", - "String_Id": "OFFICESUBSCRIPTION_FACULTY", - "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Faculty", - "String_Id": "OFFICESUBSCRIPTION_FACULTY", - "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Faculty", - "String_Id": "OFFICESUBSCRIPTION_FACULTY", - "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Faculty", - "String_Id": "OFFICESUBSCRIPTION_FACULTY", - "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Faculty", - "String_Id": "OFFICESUBSCRIPTION_FACULTY", - "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", - "Service_Plan_Name": "ONEDRIVESTANDARD", - "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", - "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Faculty", - "String_Id": "OFFICESUBSCRIPTION_FACULTY", - "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 Apps for Faculty", - "String_Id": "OFFICESUBSCRIPTION_FACULTY", - "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Audio Conferencing for GCC", - "String_Id": "MCOMEETADV_GOV", - "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5", - "Service_Plan_Name": "EXCHANGE_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT" - }, - { - "Product_Display_Name": "Microsoft 365 Audio Conferencing for GCC", - "String_Id": "MCOMEETADV_GOV", - "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5", - "Service_Plan_Name": "MCOMEETADV_GOV", - "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 AUDIO CONFERENCING FOR GOVERNMENT" - }, - { - "Product_Display_Name": "Microsoft 365 Audio Conferencing Pay-Per-Minute - EA", - "String_Id": "MCOMEETACPEA", - "GUID": "df9561a4-4969-4e6a-8e73-c601b68ec077", - "Service_Plan_Name": "MCOMEETACPEA", - "Service_Plan_Id": "bb038288-76ab-49d6-afc1-eaa6c222c65a", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing Pay-Per-Minute" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "OFFICEMOBILE_SUBSCRIPTION" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "OFFICEMOBILE_SUBSCRIPTION" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 Business Basic", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "YAMMER_MIDSIZE", - "Service_Plan_Id": "41bf139a-4e60-409f-9346-a1361efc6dfb", - "Service_Plans_Included_Friendly_Names": "YAMMER MIDSIZE" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "OFFICE_BUSINESS", - "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Business" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "KAIZALA_O365_P2", - "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "STREAM_O365_SMB", - "Service_Plan_Id": "3c53ea51-d578-46fa-a4c0-fd0a92809a60", - "Service_Plans_Included_Friendly_Names": "Stream for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 Business Standard - 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": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "BPOS_S_DlpAddOn", - "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed", - "Service_Plans_Included_Friendly_Names": "Data Loss Prevention" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", - "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", - "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "OFFICE_BUSINESS", - "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Business" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "MDE_SMB", - "Service_Plan_Id": "bfc1bbd9-981b-4f71-9b82-17c35fd0e2a4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Business" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "KAIZALA_O365_P2", - "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "OFFICE_SHARED_COMPUTER_ACTIVATION", - "Service_Plan_Id": "276d6e8a-f056-4f70-b7e8-4fc27f79f809", - "Service_Plans_Included_Friendly_Names": "Office Shared Computer Activation" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "O365_SB_Relationship_Management", - "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79", - "Service_Plans_Included_Friendly_Names": "RETIRED - Outlook Customer Manager" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "WINBIZ", - "Service_Plan_Id": "8e229017-d77b-43d5-9305-903395523b99", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Business" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "AAD_SMB", - "Service_Plan_Id": "de377cbc-0019-4ec2-b77c-3f223947e102", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "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 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "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": "STREAM_O365_E1", - "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E1" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 Business Premium", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 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": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "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": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "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", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "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", - "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": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "MDE_LITE", - "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "FORMS_PLAN_E3", - "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "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": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "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": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "OFFICESUBSCRIPTION_unattended", - "Service_Plan_Id": "8d77e2d9-9e28-4450-8431-0def64078fc5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise (Unattended)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MDE_LITE", - "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "FORMS_PLAN_E3", - "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "Windows Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "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": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "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": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "MDE_LITE", - "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "FORMS_PLAN_E3", - "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "Windows Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "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 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E3", - "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 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": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", - "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "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": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "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": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "Windows Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "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 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5", - "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", - "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "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 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", - "String_Id": "DEVELOPERPACK_E5", - "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", - "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "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": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", - "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", - "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", - "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", - "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", - "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", - "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", - "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", - "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", - "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", - "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MCOPSTN8", - "Service_Plan_Id": "16935b20-87c0-4908-934a-22aa267d0d26", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan (120 min) at User Level" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", - "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "Windows Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "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 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", - "String_Id": "SPE_E5_CALLINGMINUTES", - "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", - "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "Windows Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "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 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", - "String_Id": "SPE_E5_NOPSTNCONF", - "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "Windows Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "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 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", - "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", - "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 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": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "CDS_O365_F1", - "Service_Plan_Id": "90db65a7-bf11-4904-a79f-ef657605145b", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS", - "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", - "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "FORMS_PLAN_K", - "Service_Plan_Id": "f07046bd-2a3c-4b96-b0be-dea79d7cbfb8", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "KAIZALA_O365_P1", - "Service_Plan_Id": "73b2a583-6a59-42e3-8e83-54db46bc3278", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "PROJECT_O365_F3", - "Service_Plan_Id": "7f6f28c2-34bb-4d4b-be36-48ca2e77e1ec", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan F)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "BPOS_S_TODO_FIRSTLINE", - "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5", - "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1", - "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "WIN10_ENT_LOC_F1", - "Service_Plan_Id": "e041597c-9c7f-4ed9-99b0-2663301576f7", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise E3 (Local Only)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "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": "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": "DYN365_CDS_O365_F1", - "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "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": "STREAM_O365_K", - "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 F3" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "POWERAPPS_O365_S1", - "Service_Plan_Id": "e0287f9f-e222-4f98-9a83-f379e249159a", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "FLOW_O365_S1", - "Service_Plan_Id": "bd91b1a4-9f94-4ecf-b45b-3a65e5c8128a", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_F1", - "Service_Plan_Id": "ba2fdb48-290b-4632-b46a-e4ecc58ac11a", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "RMS_S_PREMIUM_GOV", - "Service_Plan_Id": "1b66aedf-8ca1-4f73-af76-ec76c6180f98", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1 for GCC" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", - "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "DYN365_CDS_O365_F1_GCC", - "Service_Plan_Id": "29007dd3-36c0-4cc2-935d-f5bca2c2c473", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 F1" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "CDS_O365_F1_GCC", - "Service_Plan_Id": "5e05331a-0aec-437e-87db-9ef5934b5771", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_F1 GCC" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS_GOV", - "Service_Plan_Id": "88f4d7ef-a73b-4246-8047-516022144c9f", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Kiosk) for Government" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "FORMS_GOV_F1", - "Service_Plan_Id": "bfd4133a-bbf3-4212-972b-60412137c428", - "Service_Plans_Included_Friendly_Names": "Forms for Government (Plan F1)" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "STREAM_O365_K_GOV", - "Service_Plan_Id": "d65648f1-9504-46e4-8611-2658763f28b8", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 for Government (F1)" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", - "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", - "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION_GOV", - "Service_Plan_Id": "4ccb60ee-9523-48fd-8f63-4b090f1ad77a", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365 for GCC" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "POWERAPPS_O365_S1_GOV", - "Service_Plan_Id": "49f06c3d-da7d-4fa0-bcce-1458fdd18a59", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3 for Government" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "FLOW_O365_S1_GOV", - "Service_Plan_Id": "5d32692e-5b24-4a59-a77e-b2a8650e25c1", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3 for Government" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "SHAREPOINTDESKLESS_GOV", - "Service_Plan_Id": "b1aeb897-3a19-46e2-8c27-a609413cf193", - "Service_Plans_Included_Friendly_Names": "SharePoint KioskG" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "MCOIMP_GOV", - "Service_Plan_Id": "8a9f17f1-5872-44e8-9b11-3caade9dc90f", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1) for Government" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "BPOS_S_TODO_FIRSTLINE", - "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5", - "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)" - }, - { - "Product_Display_Name": "Microsoft 365 F3 GCC", - "String_Id": "M365_F1_GOV", - "GUID": "2a914830-d700-444a-b73c-e3f31980d833", - "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1", - "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "BPOS_S_DlpAddOn", - "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed", - "Service_Plans_Included_Friendly_Names": "Data Loss Prevention" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", - "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", - "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", - "String_Id": "SPE_F5_COMP", - "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", - "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", - "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", - "Service_Plan_Name": "ADALLOM_S_STANDALONE_DOD", - "Service_Plan_Id": "6ebdddb7-8e55-4af2-952b-69e77262f96c", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps for DOD" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "BPOS_S_DlpAddOn", - "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed", - "Service_Plans_Included_Friendly_Names": "Data Loss Prevention" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", - "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", - "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", - "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", - "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV", - "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "BPOS_S_DlpAddOn", - "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed", - "Service_Plans_Included_Friendly_Names": "Data Loss Prevention" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", - "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", - "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV", - "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", - "String_Id": "SPE_F5_COMP_GCC", - "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security Add-on", - "String_Id": "SPE_F5_SEC", - "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security Add-on", - "String_Id": "SPE_F5_SEC", - "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security Add-on", - "String_Id": "SPE_F5_SEC", - "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security Add-on", - "String_Id": "SPE_F5_SEC", - "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security Add-on", - "String_Id": "SPE_F5_SEC", - "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security Add-on", - "String_Id": "SPE_F5_SEC", - "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security Add-on", - "String_Id": "SPE_F5_SEC", - "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "BPOS_S_DlpAddOn", - "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed", - "Service_Plans_Included_Friendly_Names": "Data Loss Prevention" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", - "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", - "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", - "String_Id": "SPE_F5_SECCOMP", - "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "CDS_O365_P3_GCC", - "Service_Plan_Id": "bce5e5ca-c2fd-4d53-8ee2-58dfffed4c10", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV", - "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", - "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV", - "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise G" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MCOMEETADV_GOV", - "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MCOEV_GOV", - "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "ATP_ENTERPRISE_GOV", - "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV", - "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2) for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "FORMS_GOV_E5", - "Service_Plan_Id": "843da3a8-d2cc-4e7a-9e90-dc46019f964c", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "EXCHANGE_ANALYTICS_GOV", - "Service_Plan_Id": "208120d1-9adb-4daf-8c22-816bd5d237e7", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics for Government (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV", - "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", - "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", - "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "BI_AZURE_P_2_GOV", - "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76", - "Service_Plans_Included_Friendly_Names": "Power BI Pro for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "STREAM_O365_E5_GOV", - "Service_Plan_Id": "92c2089d-9a53-49fe-b1a6-9e6bdf959547", - "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E5)" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "RMS_S_PREMIUM_GOV", - "Service_Plan_Id": "1b66aedf-8ca1-4f73-af76-ec76c6180f98", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1 for GCC" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "RMS_S_PREMIUM2_GOV", - "Service_Plan_Id": "5400a66d-eaa5-427d-80f2-0f26d59d8fce", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2 for GCC" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", - "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "DYN365_CDS_O365_P3_GCC", - "Service_Plan_Id": "a7d3fb37-b6df-4085-b509-50810d991a39", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "POWERAPPS_O365_P3_GOV", - "Service_Plan_Id": "0eacfc38-458a-40d3-9eab-9671258f1a3e", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" - }, - { - "Product_Display_Name": "Microsoft 365 GCC G5", - "String_Id": "M365_G5_GCC", - "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", - "Service_Plan_Name": "FLOW_O365_P3_GOV", - "Service_Plan_Id": "8055d84a-c172-42eb-b997-6c2ae4628246", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" - }, - { - "Product_Display_Name": "Microsoft 365 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": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" - }, - { - "Product_Display_Name": "Microsoft 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "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 Lighthouse", - "String_Id": "Microsoft365_Lighthouse", - "GUID": "9c0587f3-8665-4252-a8ad-b7a5ade57312", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Lighthouse", - "String_Id": "Microsoft365_Lighthouse", - "GUID": "9c0587f3-8665-4252-a8ad-b7a5ade57312", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 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 Cloud for Sustainability vTrial", - "String_Id": "Microsoft_Cloud_for_Sustainability_vTrial", - "GUID": "556640c0-53ea-4773-907d-29c55332983f", - "Service_Plan_Name": "MCS_BizApps_Cloud_for_Sustainability_vTrial", - "Service_Plan_Id": "c1c902e3-a956-4273-abdb-c92afcd027ef", - "Service_Plans_Included_Friendly_Names": "MCS - BizApps_Cloud for Sustainability_vTrial" - }, - { - "Product_Display_Name": "Microsoft Cloud for Sustainability vTrial", - "String_Id": "Microsoft_Cloud_for_Sustainability_vTrial", - "GUID": "556640c0-53ea-4773-907d-29c55332983f", - "Service_Plan_Name": "POWER_APPS_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "54b37829-818e-4e3c-a08a-3ea66ab9b45d", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Microsoft Cloud for Sustainability vTrial", - "String_Id": "Microsoft_Cloud_for_Sustainability_vTrial", - "GUID": "556640c0-53ea-4773-907d-29c55332983f", - "Service_Plan_Name": "POWER_AUTOMATE_DYN365_VIRAL_TRIAL", - "Service_Plan_Id": "81d4ecb8-0481-42fb-8868-51536c5aceeb", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 vTrial" - }, - { - "Product_Display_Name": "Microsoft Cloud for Sustainability vTrial", - "String_Id": "Microsoft_Cloud_for_Sustainability_vTrial", - "GUID": "556640c0-53ea-4773-907d-29c55332983f", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Cloud for Sustainability vTrial", - "String_Id": "Microsoft_Cloud_for_Sustainability_vTrial", - "GUID": "556640c0-53ea-4773-907d-29c55332983f", - "Service_Plan_Name": "DYN365_CDS_VIRAL", - "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint", - "String_Id": "WIN_DEF_ATP", - "GUID": "111046dd-295b-4d6d-9724-d52ac90bd1f2", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint", - "String_Id": "WIN_DEF_ATP", - "GUID": "111046dd-295b-4d6d-9724-d52ac90bd1f2", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR ENDPOINT" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint P1", - "String_Id": "DEFENDER_ENDPOINT_P1", - "GUID": "16a55f2f-ff35-4cd5-9146-fb784e3761a5", - "Service_Plan_Name": "Intune_Defender", - "Service_Plan_Id": "1689aade-3d6a-4bfc-b017-46d2672df5ad", - "Service_Plans_Included_Friendly_Names": "MDE_SecurityManagement" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint P1", - "String_Id": "DEFENDER_ENDPOINT_P1", - "GUID": "16a55f2f-ff35-4cd5-9146-fb784e3761a5", - "Service_Plan_Name": "MDE_LITE", - "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint P1 for EDU", - "String_Id": "DEFENDER_ENDPOINT_P1_EDU", - "GUID": "bba890d4-7881-4584-8102-0c3fdfb739a7", - "Service_Plan_Name": "MDE_LITE", - "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint P2_XPLAT", - "String_Id": "MDATP_XPLAT", - "GUID": "b126b073-72db-4a9d-87a4-b17afe41d4ab", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint P2_XPLAT", - "String_Id": "MDATP_XPLAT", - "GUID": "b126b073-72db-4a9d-87a4-b17afe41d4ab", - "Service_Plan_Name": "Intune_Defender", - "Service_Plan_Id": "1689aade-3d6a-4bfc-b017-46d2672df5ad", - "Service_Plans_Included_Friendly_Names": "MDE_SecurityManagement" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint P2_XPLAT", - "String_Id": "MDATP_XPLAT", - "GUID": "b126b073-72db-4a9d-87a4-b17afe41d4ab", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint Server", - "String_Id": "MDATP_Server", - "GUID": "509e8ab6-0274-4cda-bcbd-bd164fd562c4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint Server", - "String_Id": "MDATP_Server", - "GUID": "509e8ab6-0274-4cda-bcbd-bd164fd562c4", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online Basic", - "String_Id": "CRMPLAN2", - "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online Basic", - "String_Id": "CRMPLAN2", - "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online Basic", - "String_Id": "CRMPLAN2", - "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657", - "Service_Plan_Name": "CRMPLAN2", - "Service_Plan_Id": "bf36ca64-95c6-4918-9275-eb9f4ce2c04f", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DYNAMICS CRM ONLINE BASIC" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online Basic", - "String_Id": "CRMPLAN2", - "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Microsoft Defender for Identity", - "String_Id": "ATA", - "GUID": "98defdf7-f6c1-44f5-a1f6-943b6764e7a5", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Defender for Identity", - "String_Id": "ATA", - "GUID": "98defdf7-f6c1-44f5-a1f6-943b6764e7a5", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft Defender for Identity", - "String_Id": "ATA", - "GUID": "98defdf7-f6c1-44f5-a1f6-943b6764e7a5", - "Service_Plan_Name": "ADALLOM_FOR_AATP", - "Service_Plan_Id": "61d18b02-6889-479f-8f36-56e6e0fe5792", - "Service_Plans_Included_Friendly_Names": "SecOps Investigation for MDI" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 1) Faculty", - "String_Id": "ATP_ENTERPRISE_FACULTY", - "GUID": "26ad4b5c-b686-462e-84b9-d7c22b46837f", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 1) GCC", - "String_Id": "ATP_ENTERPRISE_GOV", - "GUID": "d0d1ca43-b81a-4f51-81e5-a5b1ad7bb005", - "Service_Plan_Name": "ATP_ENTERPRISE_GOV", - "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2) GCC", - "String_Id": "THREAT_INTELLIGENCE_GOV", - "GUID": "56a59ffb-9df1-421b-9e61-8b568583474d", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2) GCC", - "String_Id": "THREAT_INTELLIGENCE_GOV", - "GUID": "56a59ffb-9df1-421b-9e61-8b568583474d", - "Service_Plan_Name": "ATP_ENTERPRISE_GOV", - "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2) GCC", - "String_Id": "THREAT_INTELLIGENCE_GOV", - "GUID": "56a59ffb-9df1-421b-9e61-8b568583474d", - "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV", - "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2) for Government" - }, - { - "Product_Display_Name": "Microsoft Defender Vulnerability Management", - "String_Id": "TVM_Premium_Standalone", - "GUID": "1925967e-8013-495f-9644-c99f8b463748", - "Service_Plan_Name": "TVM_PREMIUM_1", - "Service_Plan_Id": "36810a13-b903-490a-aa45-afbeb7540832", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender Vulnerability Management" - }, - { - "Product_Display_Name": "Microsoft Defender Vulnerability Management Add-on", - "String_Id": "TVM_Premium_Add_on", - "GUID": "ad7a56e0-6903-4d13-94f3-5ad491e78960", - "Service_Plan_Name": "TVM_PREMIUM_1", - "Service_Plan_Id": "36810a13-b903-490a-aa45-afbeb7540832", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender Vulnerability Management" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online", - "String_Id": "CRMSTANDARD", - "GUID": "d17b27af-3f49-4822-99f9-56a661538792", - "Service_Plan_Name": "CRMSTANDARD", - "Service_Plan_Id": "f9646fb2-e3b2-4309-95de-dc4833737456", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DYNAMICS CRM ONLINE PROFESSIONA" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online", - "String_Id": "CRMSTANDARD", - "GUID": "d17b27af-3f49-4822-99f9-56a661538792", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online", - "String_Id": "CRMSTANDARD", - "GUID": "d17b27af-3f49-4822-99f9-56a661538792", - "Service_Plan_Name": "MDM_SALES_COLLABORATION", - "Service_Plan_Id": "3413916e-ee66-4071-be30-6f94d4adfeda", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DYNAMICS MARKETING SALES COLLABORATION - ELIGIBILITY CRITERIA APPLY" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online", - "String_Id": "CRMSTANDARD", - "GUID": "d17b27af-3f49-4822-99f9-56a661538792", - "Service_Plan_Name": "NBPROFESSIONALFORCRM", - "Service_Plan_Id": "3e58e97c-9abe-ebab-cd5f-d543d1529634", - "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT PROFESSIONAL - ELIGIBILITY CRITERIA APPLY" - }, - { - "Product_Display_Name": "Microsoft Dynamics CRM Online", - "String_Id": "CRMSTANDARD", - "GUID": "d17b27af-3f49-4822-99f9-56a661538792", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Microsoft 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 for Developer", - "String_Id": "POWERAPPS_DEV", - "GUID": "5b631642-bd26-49fe-bd20-1daaa972ef80", - "Service_Plan_Name": "DYN365_CDS_DEV_VIRAL", - "Service_Plan_Id": "d8c638e2-9508-40e3-9877-feb87603837b", - "Service_Plans_Included_Friendly_Names": "Common Data Service - DEV VIRAL" - }, - { - "Product_Display_Name": "Microsoft Power Apps for Developer", - "String_Id": "POWERAPPS_DEV", - "GUID": "5b631642-bd26-49fe-bd20-1daaa972ef80", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Power Apps for Developer", - "String_Id": "POWERAPPS_DEV", - "GUID": "5b631642-bd26-49fe-bd20-1daaa972ef80", - "Service_Plan_Name": "FLOW_DEV_VIRAL", - "Service_Plan_Id": "c7ce3f26-564d-4d3a-878d-d8ab868c85fe", - "Service_Plans_Included_Friendly_Names": "Flow for Developer" - }, - { - "Product_Display_Name": "Microsoft Power Apps for Developer", - "String_Id": "POWERAPPS_DEV", - "GUID": "5b631642-bd26-49fe-bd20-1daaa972ef80", - "Service_Plan_Name": "POWERAPPS_DEV_VIRAL", - "Service_Plan_Id": "a2729df7-25f8-4e63-984b-8a8484121554", - "Service_Plans_Included_Friendly_Names": "PowerApps for Developer" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", - "String_Id": "POWERAPPS_VIRAL", - "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", - "Service_Plan_Name": "DYN365_CDS_VIRAL", - "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0", - "Service_Plans_Included_Friendly_Names": "Common Data Service - VIRAL" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", - "String_Id": "POWERAPPS_VIRAL", - "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", - "String_Id": "POWERAPPS_VIRAL", - "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", - "Service_Plan_Name": "FLOW_P2_VIRAL", - "Service_Plan_Id": "50e68c76-46c6-4674-81f9-75456511b170", - "Service_Plans_Included_Friendly_Names": "Flow Free" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", - "String_Id": "POWERAPPS_VIRAL", - "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", - "Service_Plan_Name": "FLOW_P2_VIRAL_REAL", - "Service_Plan_Id": "d20bfa21-e9ae-43fc-93c2-20783f0840c3", - "Service_Plans_Included_Friendly_Names": "Flow P2 Viral" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", - "String_Id": "POWERAPPS_VIRAL", - "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", - "Service_Plan_Name": "POWERAPPS_P2_VIRAL", - "Service_Plan_Id": "d5368ca3-357e-4acb-9c21-8495fb025d1f", - "Service_Plans_Included_Friendly_Names": "PowerApps Trial" - }, - { - "Product_Display_Name": "Microsoft Power Automate Free", - "String_Id": "FLOW_FREE", - "GUID": "f30db892-07e9-47e9-837c-80727f46fd3d", - "Service_Plan_Name": "DYN365_CDS_VIRAL", - "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE" - }, - { - "Product_Display_Name": "Microsoft Power Automate Free", - "String_Id": "FLOW_FREE", - "GUID": "f30db892-07e9-47e9-837c-80727f46fd3d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Microsoft Power Automate Free", - "String_Id": "FLOW_FREE", - "GUID": "f30db892-07e9-47e9-837c-80727f46fd3d", - "Service_Plan_Name": "FLOW_P2_VIRAL", - "Service_Plan_Id": "50e68c76-46c6-4674-81f9-75456511b170", - "Service_Plans_Included_Friendly_Names": "FLOW FREE" - }, - { - "Product_Display_Name": "Microsoft Power Automate Plan 2", - "String_Id": "FLOW_P2", - "GUID": "4755df59-3f73-41ab-a249-596ad72b5504", - "Service_Plan_Name": "DYN365_CDS_P2", - "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", - "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" - }, - { - "Product_Display_Name": "Microsoft Power Automate Plan 2", - "String_Id": "FLOW_P2", - "GUID": "4755df59-3f73-41ab-a249-596ad72b5504", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Power Automate Plan 2", - "String_Id": "FLOW_P2", - "GUID": "4755df59-3f73-41ab-a249-596ad72b5504", - "Service_Plan_Name": "FLOW_P2", - "Service_Plan_Id": "56be9436-e4b2-446c-bb7f-cc15d16cca4d", - "Service_Plans_Included_Friendly_Names": "Power Automate (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Intune SMB", - "String_Id": "INTUNE_SMB", - "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958", - "Service_Plan_Name": "AAD_SMB", - "Service_Plan_Id": "de377cbc-0019-4ec2-b77c-3f223947e102", - "Service_Plans_Included_Friendly_Names": "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 Intune Suite", - "String_Id": "Microsoft_Intune_Suite", - "GUID": "a929cd4d-8672-47c9-8664-159c1f322ba8", - "Service_Plan_Name": "Intune_AdvancedEA", - "Service_Plan_Id": "2a4baa0e-5e99-4c38-b1f2-6864960f1bd1", - "Service_Plans_Included_Friendly_Names": "Intune Advanced endpoint analytics" - }, - { - "Product_Display_Name": "Microsoft Intune Suite", - "String_Id": "Microsoft_Intune_Suite", - "GUID": "a929cd4d-8672-47c9-8664-159c1f322ba8", - "Service_Plan_Name": "Intune-EPM", - "Service_Plan_Id": "bb73f429-78ef-4ff2-83c8-722b04c3e7d1", - "Service_Plans_Included_Friendly_Names": "Intune Endpoint Privilege Management" - }, - { - "Product_Display_Name": "Microsoft Intune Suite", - "String_Id": "Microsoft_Intune_Suite", - "GUID": "a929cd4d-8672-47c9-8664-159c1f322ba8", - "Service_Plan_Name": "INTUNE_P2", - "Service_Plan_Id": "d9923fe3-a2de-4d29-a5be-e3e83bb786be", - "Service_Plans_Included_Friendly_Names": "Intune Plan 2" - }, - { - "Product_Display_Name": "Microsoft Intune Suite", - "String_Id": "Microsoft_Intune_Suite", - "GUID": "a929cd4d-8672-47c9-8664-159c1f322ba8", - "Service_Plan_Name": "Intune-MAMTunnel", - "Service_Plan_Id": "a6e407da-7411-4397-8a2e-d9b52780849e", - "Service_Plans_Included_Friendly_Names": "Microsoft Tunnel for Mobile Application Management" - }, - { - "Product_Display_Name": "Microsoft Intune Suite", - "String_Id": "Microsoft_Intune_Suite", - "GUID": "a929cd4d-8672-47c9-8664-159c1f322ba8", - "Service_Plan_Name": "REMOTE_HELP", - "Service_Plan_Id": "a4c6cf29-1168-4076-ba5c-e8fe0e62b17e", - "Service_Plans_Included_Friendly_Names": "Remote help" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)", - "String_Id": "POWERFLOW_P2", - "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b", - "Service_Plan_Name": "DYN365_CDS_P2", - "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", - "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)", - "String_Id": "POWERFLOW_P2", - "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)", - "String_Id": "POWERFLOW_P2", - "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b", - "Service_Plan_Name": "POWERAPPS_P2", - "Service_Plan_Id": "00527d7f-d5bc-4c2a-8d1e-6c0de2410c81", - "Service_Plans_Included_Friendly_Names": "Power Apps (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)", - "String_Id": "POWERFLOW_P2", - "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b", - "Service_Plan_Name": "FLOW_P2", - "Service_Plan_Id": "56be9436-e4b2-446c-bb7f-cc15d16cca4d", - "Service_Plans_Included_Friendly_Names": "Power Automate (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Relationship Sales solution", - "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", - "Service_Plan_Name": "Forms_Pro_Relationship_Sales", - "Service_Plan_Id": "507172c0-6001-4f4f-80e7-f350507af3e5", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Relationship Sales" - }, - { - "Product_Display_Name": "Microsoft Relationship Sales solution", - "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", - "Service_Plan_Name": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "Service_Plan_Id": "56e3d4ca-2e31-4c3f-8d57-89c1d363503b", - "Service_Plans_Included_Friendly_Names": "Microsoft Relationship Sales solution" - }, - { - "Product_Display_Name": "Microsoft Relationship Sales solution", - "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", - "Service_Plan_Name": "NBENTERPRISE", - "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", - "Service_Plans_Included_Friendly_Names": "Retired - Microsoft Social Engagement" - }, - { - "Product_Display_Name": "Microsoft Relationship Sales solution", - "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Relationship Sales solution", - "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", - "Service_Plan_Name": "Microsoft_Viva_Sales_PremiumTrial", - "Service_Plan_Id": "8ba1ff15-7bf6-4620-b65c-ecedb6942766", - "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium \u0026 Trial" - }, - { - "Product_Display_Name": "Microsoft Relationship Sales solution", - "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", - "Service_Plan_Name": "Microsoft_Viva_Sales_PowerAutomate", - "Service_Plan_Id": "a933a62f-c3fb-48e5-a0b7-ac92b94b4420", - "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium with Power Automate" - }, - { - "Product_Display_Name": "Microsoft Relationship Sales solution", - "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft Relationship Sales solution", - "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Microsoft Relationship Sales solution", - "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Relationship Sales solution", - "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Microsoft Relationship Sales solution", - "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", - "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "Microsoft Stream", - "String_Id": "STREAM", - "GUID": "1f2f344a-700d-42c9-9427-5cea1d5d7ba6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Microsoft Stream", - "String_Id": "STREAM", - "GUID": "1f2f344a-700d-42c9-9427-5cea1d5d7ba6", - "Service_Plan_Name": "MICROSOFTSTREAM", - "Service_Plan_Id": "acffdce6-c30f-4dc2-81c0-372e33c515ec", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM" - }, - { - "Product_Display_Name": "Microsoft Stream Plan 2", - "String_Id": "STREAM_P2", - "GUID": "ec156933-b85b-4c50-84ec-c9e5603709ef", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Stream Plan 2", - "String_Id": "STREAM_P2", - "GUID": "ec156933-b85b-4c50-84ec-c9e5603709ef", - "Service_Plan_Name": "STREAM_P2", - "Service_Plan_Id": "d3a458d0-f10d-48c2-9e44-86f3f684029e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream Plan 2" - }, - { - "Product_Display_Name": "Microsoft Stream Storage Add-On (500 GB)", - "String_Id": "STREAM_STORAGE", - "GUID": "9bd7c846-9556-4453-a542-191d527209e8", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Stream Storage Add-On (500 GB)", - "String_Id": "STREAM_STORAGE", - "GUID": "9bd7c846-9556-4453-a542-191d527209e8", - "Service_Plan_Name": "STREAM_STORAGE", - "Service_Plan_Id": "83bced11-77ce-4071-95bd-240133796768", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream Storage Add-On" - }, - { - "Product_Display_Name": "Microsoft Teams Audio Conferencing with dial-out to USA/CAN", - "String_Id": "Microsoft_Teams_Audio_Conferencing_select_dial_out", - "GUID": "1c27243e-fb4d-42b1-ae8c-fe25c9616588", - "Service_Plan_Name": "MCOMEETBASIC", - "Service_Plan_Id": "9974d6cf-cd24-4ba2-921c-e2aa687da846", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Audio Conferencing with dial-out to select geographies" - }, - { - "Product_Display_Name": "Microsoft Teams (Free)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Microsoft Teams (Free)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "MCOFREE", - "Service_Plan_Id": "617d9209-3b90-4879-96e6-838c42b2701d", - "Service_Plans_Included_Friendly_Names": "MCO FREE FOR MICROSOFT TEAMS (FREE)" - }, - { - "Product_Display_Name": "Microsoft Teams (Free)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "TEAMS_FREE", - "Service_Plan_Id": "4fa4026d-ce74-4962-a151-8e96d57ea8e4", - "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS (FREE)" - }, - { - "Product_Display_Name": "Microsoft Teams (Free)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT KIOSK" - }, - { - "Product_Display_Name": "Microsoft Teams (Free)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "TEAMS_FREE_SERVICE", - "Service_Plan_Id": "bd6f2ac2-991a-49f9-b23c-18c96a02c228", - "Service_Plans_Included_Friendly_Names": "TEAMS FREE SERVICE" - }, - { - "Product_Display_Name": "Microsoft Teams (Free)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1", - "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3", - "Service_Plans_Included_Friendly_Names": "WHITEBOARD (FIRSTLINE)" - }, - { - "Product_Display_Name": "Microsoft Teams Essentials", - "String_Id": "Teams_Ess", - "GUID": "fde42873-30b6-436b-b361-21af5a6b84ae", - "Service_Plan_Name": "TeamsEss", - "Service_Plan_Id": "f4f2f6de-6830-442b-a433-e92249faebe2", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Essentials" - }, - { - "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", - "String_Id": "TEAMS_ESSENTIALS_AAD", - "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS", - "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", - "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk" - }, - { - "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", - "String_Id": "TEAMS_ESSENTIALS_AAD", - "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", - "String_Id": "TEAMS_ESSENTIALS_AAD", - "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", - "String_Id": "TEAMS_ESSENTIALS_AAD", - "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", - "String_Id": "TEAMS_ESSENTIALS_AAD", - "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", - "String_Id": "TEAMS_ESSENTIALS_AAD", - "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", - "String_Id": "TEAMS_ESSENTIALS_AAD", - "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", - "Service_Plan_Name": "ONEDRIVE_BASIC_P2", - "Service_Plan_Id": "4495894f-534f-41ca-9d3b-0ebf1220a423", - "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Basic 2)" - }, - { - "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", - "String_Id": "TEAMS_ESSENTIALS_AAD", - "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "CDS_O365_P1", - "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR TEAMS_P1" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "INSIGHTS BY MYANALYTICS" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNER" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "MICROSOFT SEARCH" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "DESKLESS", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "STREAM_O365_E1", - "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E1 SKU" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "MCO_TEAMS_IW", - "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b", - "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "MOBILE DEVICE MANAGEMENT FOR OFFICE 365" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE FOR THE WEB" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "OFFICE MOBILE APPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWER APPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "POWER AUTOMATE FOR OFFICE 365" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1", - "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813", - "Service_Plans_Included_Friendly_Names": "POWER VIRTUAL AGENTS FOR OFFICE 365 P1" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT STANDARD" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "WHITEBOARD (PLAN 1)" - }, - { - "Product_Display_Name": "Microsoft Teams Exploratory", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER ENTERPRIS" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Standard", - "String_Id": "MCOEV", - "GUID": "e43b5b99-8dfb-405f-9987-dc307f34bcbd", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Standard for DOD", - "String_Id": "MCOEV_DOD", - "GUID": "d01d9287-694b-44f3-bcc5-ada78c8d953e", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Standard for Faculty", - "String_Id": "MCOEV_FACULTY", - "GUID": "d979703c-028d-4de5-acbf-7955566b69b9", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTE" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Standard for GCC", - "String_Id": "MCOEV_GOV", - "GUID": "a460366a-ade7-4791-b581-9fbff1bdaa85", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Standard for GCC", - "String_Id": "MCOEV_GOV", - "GUID": "a460366a-ade7-4791-b581-9fbff1bdaa85", - "Service_Plan_Name": "MCOEV_GOV", - "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM FOR GOVERNMENT" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Standard for GCCHIGH", - "String_Id": "MCOEV_GCCHIGH", - "GUID": "7035277a-5e49-4abc-a24f-0ec49c501bb5", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Standard for Small and Medium Business", - "String_Id": "MCOEVSMB_1", - "GUID": "aa6791d3-bb09-4bc2-afed-c30c3fe26032", - "Service_Plan_Name": "MCOEVSMB", - "Service_Plan_Id": "ed777b71-af04-42ca-9798-84344c66f7c6", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS CLOUD PBX FOR SMALL AND MEDIUM BUSINESS" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Standard for Students", - "String_Id": "MCOEV_STUDENT", - "GUID": "1f338bbc-767e-4a1e-a2d4-b73207cc5b93", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Standard for TELSTRA", - "String_Id": "MCOEV_TELSTRA", - "GUID": "ffaf2d68-1c95-4eb3-9ddd-59b81fba0f61", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Standard_USGOV_DOD", - "String_Id": "MCOEV_USGOV_DOD", - "GUID": "b0e7de67-e503-4934-b729-53d595ba5cd1", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Standard_USGOV_GCCHIGH", - "String_Id": "MCOEV_USGOV_GCCHIGH", - "GUID": "985fcb26-7b94-475b-b512-89356697be71", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Resource Account", - "String_Id": "PHONESYSTEM_VIRTUALUSER", - "GUID": "440eaaa8-b3e0-484b-a8be-62870b9ba70a", - "Service_Plan_Name": "MCOEV_VIRTUALUSER", - "Service_Plan_Id": "f47330e9-c134-43b3-9993-e7f004506889", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone Standard Resource Account" - }, - { - "Product_Display_Name": "Microsoft Teams Phone Resource Account for GCC", - "String_Id": "PHONESYSTEM_VIRTUALUSER_GOV", - "GUID": "2cf22bcb-0c9e-4bc6-8daf-7e7654c0f285", - "Service_Plan_Name": "MCOEV_VIRTUALUSER_GOV", - "Service_Plan_Id": "0628a73f-3b4a-4989-bd7b-0f8823144313", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone Standard Resource Account for Government" - }, - { - "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing", - "String_Id": "Microsoft_Teams_Premium", - "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a", - "Service_Plan_Name": "MICROSOFT_ECDN", - "Service_Plan_Id": "85704d55-2e73-47ee-93b4-4b8ea14db92b", - "Service_Plans_Included_Friendly_Names": "Microsoft eCDN" - }, - { - "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing", - "String_Id": "Microsoft_Teams_Premium", - "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a", - "Service_Plan_Name": "TEAMSPRO_MGMT", - "Service_Plan_Id": "0504111f-feb8-4a3c-992a-70280f9a2869", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Intelligent" - }, - { - "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing", - "String_Id": "Microsoft_Teams_Premium", - "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a", - "Service_Plan_Name": "TEAMSPRO_CUST", - "Service_Plan_Id": "cc8c0802-a325-43df-8cba-995d0c6cb373", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Personalized" - }, - { - "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing", - "String_Id": "Microsoft_Teams_Premium", - "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a", - "Service_Plan_Name": "TEAMSPRO_PROTECTION", - "Service_Plan_Id": "f8b44f54-18bb-46a3-9658-44ab58712968", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Secure" - }, - { - "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing", - "String_Id": "Microsoft_Teams_Premium", - "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a", - "Service_Plan_Name": "TEAMSPRO_VIRTUALAPPT", - "Service_Plan_Id": "9104f592-f2a7-4f77-904c-ca5a5715883f", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Virtual Appointment" - }, - { - "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing", - "String_Id": "Microsoft_Teams_Premium", - "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a", - "Service_Plan_Name": "MCO_VIRTUAL_APPT", - "Service_Plan_Id": "711413d0-b36e-4cd4-93db-0a50a4ab7ea3", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Virtual Appointments" - }, - { - "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing", - "String_Id": "Microsoft_Teams_Premium", - "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a", - "Service_Plan_Name": "TEAMSPRO_WEBINAR", - "Service_Plan_Id": "78b58230-ec7e-4309-913c-93a45cc4735b", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Webinar" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic", - "String_Id": "Microsoft_Teams_Rooms_Basic", - "GUID": "6af4b3d6-14bb-4a2a-960c-6c902aad34f3", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic", - "String_Id": "Microsoft_Teams_Rooms_Basic", - "GUID": "6af4b3d6-14bb-4a2a-960c-6c902aad34f3", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic", - "String_Id": "Microsoft_Teams_Rooms_Basic", - "GUID": "6af4b3d6-14bb-4a2a-960c-6c902aad34f3", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic for EDU", - "String_Id": "Microsoft_Teams_Rooms_Basic_FAC", - "GUID": "a4e376bd-c61e-4618-9901-3fc0cb1b88bb", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic for EDU", - "String_Id": "Microsoft_Teams_Rooms_Basic_FAC", - "GUID": "a4e376bd-c61e-4618-9901-3fc0cb1b88bb", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic for EDU", - "String_Id": "Microsoft_Teams_Rooms_Basic_FAC", - "GUID": "a4e376bd-c61e-4618-9901-3fc0cb1b88bb", - "Service_Plan_Name": "Teams_Room_Basic", - "Service_Plan_Id": "8081ca9c-188c-4b49-a8e5-c23b5e9463a8", - "Service_Plans_Included_Friendly_Names": "Teams Room Basic" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic for EDU", - "String_Id": "Microsoft_Teams_Rooms_Basic_FAC", - "GUID": "a4e376bd-c61e-4618-9901-3fc0cb1b88bb", - "Service_Plan_Name": "Teams_Room_Pro", - "Service_Plan_Id": "ec17f317-f4bc-451e-b2da-0167e5c260f9", - "Service_Plans_Included_Friendly_Names": "Teams Room Pro" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic for EDU", - "String_Id": "Microsoft_Teams_Rooms_Basic_FAC", - "GUID": "a4e376bd-c61e-4618-9901-3fc0cb1b88bb", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic without Audio Conferencing", - "String_Id": "Microsoft_Teams_Rooms_Basic_without_Audio_Conferencing", - "GUID": "50509a35-f0bd-4c5e-89ac-22f0e16a00f8", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Basic without Audio Conferencing", - "String_Id": "Microsoft_Teams_Rooms_Basic_without_Audio_Conferencing", - "GUID": "50509a35-f0bd-4c5e-89ac-22f0e16a00f8", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro", - "String_Id": "Microsoft_Teams_Rooms_Pro", - "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro", - "String_Id": "Microsoft_Teams_Rooms_Pro", - "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro", - "String_Id": "Microsoft_Teams_Rooms_Pro", - "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro", - "String_Id": "Microsoft_Teams_Rooms_Pro", - "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro", - "String_Id": "Microsoft_Teams_Rooms_Pro", - "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro", - "String_Id": "Microsoft_Teams_Rooms_Pro", - "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro", - "String_Id": "Microsoft_Teams_Rooms_Pro", - "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing", - "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing", - "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing", - "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing", - "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing", - "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing", - "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing", - "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing", - "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing", - "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing", - "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing", - "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing", - "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices", - "String_Id": "MCOCAP", - "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices", - "String_Id": "MCOCAP", - "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices", - "String_Id": "MCOCAP", - "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices", - "String_Id": "MCOCAP", - "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices", - "String_Id": "MCOCAP", - "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices", - "String_Id": "MCOCAP", - "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices for GCC", - "String_Id": "MCOCAP_GOV", - "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", - "Service_Plan_Name": "MCOEV_GOV", - "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices for GCC", - "String_Id": "MCOCAP_GOV", - "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices for GCC", - "String_Id": "MCOCAP_GOV", - "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices for GCC", - "String_Id": "MCOCAP_GOV", - "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices for GCC", - "String_Id": "MCOCAP_GOV", - "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft Teams Shared Devices for GCC", - "String_Id": "MCOCAP_GOV", - "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", - "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium Plan 1" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "Teams_Room_Standard", - "Service_Plan_Id": "92c6b761-01de-457a-9dd9-793a975238f7", - "Service_Plans_Included_Friendly_Names": "Teams Room Standard" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard without Audio Conferencing", - "String_Id": "MEETING_ROOM_NOAUDIOCONF", - "GUID": "61bec411-e46a-4dab-8f46-8b58ec845ffe", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard without Audio Conferencing", - "String_Id": "MEETING_ROOM_NOAUDIOCONF", - "GUID": "61bec411-e46a-4dab-8f46-8b58ec845ffe", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard without Audio Conferencing", - "String_Id": "MEETING_ROOM_NOAUDIOCONF", - "GUID": "61bec411-e46a-4dab-8f46-8b58ec845ffe", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard without Audio Conferencing", - "String_Id": "MEETING_ROOM_NOAUDIOCONF", - "GUID": "61bec411-e46a-4dab-8f46-8b58ec845ffe", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard without Audio Conferencing", - "String_Id": "MEETING_ROOM_NOAUDIOCONF", - "GUID": "61bec411-e46a-4dab-8f46-8b58ec845ffe", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "MCO_TEAMS_IW", - "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft Threat Experts - Experts on Demand", - "String_Id": "EXPERTS_ON_DEMAND", - "GUID": "9fa2f157-c8e4-4351-a3f2-ffa506da1406", - "Service_Plan_Name": "EXPERTS_ON_DEMAND", - "Service_Plan_Id": "b83a66d4-f05f-414d-ac0f-ea1c5239c42b", - "Service_Plans_Included_Friendly_Names": "Microsoft Threat Experts - Experts on Demand" - }, - { - "Product_Display_Name": "Microsoft Viva Goals", - "String_Id": "Microsoft_Viva_Goals", - "GUID": "ba929637-f158-4dee-927c-eb7cdefcd955", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Viva Goals", - "String_Id": "Microsoft_Viva_Goals", - "GUID": "ba929637-f158-4dee-927c-eb7cdefcd955", - "Service_Plan_Name": "Viva_Goals_Premium", - "Service_Plan_Id": "b44c6eaf-5c9f-478c-8f16-8cea26353bfb", - "Service_Plans_Included_Friendly_Names": "Viva Goals" - }, - { - "Product_Display_Name": "Microsoft Viva Suite", - "String_Id": "VIVA", - "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX_TOPICEXP", - "Service_Plan_Id": "b74d57b2-58e9-484a-9731-aeccbba954f0", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index (Microsoft Viva Topics)" - }, - { - "Product_Display_Name": "Microsoft Viva Suite", - "String_Id": "VIVA", - "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", - "Service_Plan_Name": "WORKPLACE_ANALYTICS_INSIGHTS_USER", - "Service_Plan_Id": "b622badb-1b45-48d5-920f-4b27a2c0996c", - "Service_Plans_Included_Friendly_Names": "Microsoft Viva Insights" - }, - { - "Product_Display_Name": "Microsoft Viva Suite", - "String_Id": "VIVA", - "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", - "Service_Plan_Name": "WORKPLACE_ANALYTICS_INSIGHTS_BACKEND", - "Service_Plan_Id": "ff7b261f-d98b-415b-827c-42a3fdf015af", - "Service_Plans_Included_Friendly_Names": "Microsoft Viva Insights Backend" - }, - { - "Product_Display_Name": "Microsoft Viva Suite", - "String_Id": "VIVA", - "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", - "Service_Plan_Name": "CORTEX", - "Service_Plan_Id": "c815c93d-0759-4bb8-b857-bc921a71be83", - "Service_Plans_Included_Friendly_Names": "Microsoft Viva Topics" - }, - { - "Product_Display_Name": "Microsoft Viva Suite", - "String_Id": "VIVA", - "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", - "Service_Plan_Name": "VIVAENGAGE_COMMUNITIES_AND_COMMUNICATIONS", - "Service_Plan_Id": "43304c6a-1d4e-4e0b-9b06-5b2a2ff58a90", - "Service_Plans_Included_Friendly_Names": "Viva Engage Communities and Communications" - }, - { - "Product_Display_Name": "Microsoft Viva Suite", - "String_Id": "VIVA", - "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", - "Service_Plan_Name": "VIVAENGAGE_KNOWLEDGE", - "Service_Plan_Id": "c244cc9e-622f-4576-92ea-82e233e44e36", - "Service_Plans_Included_Friendly_Names": "Viva Engage Knowledge" - }, - { - "Product_Display_Name": "Microsoft Viva Suite", - "String_Id": "VIVA", - "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", - "Service_Plan_Name": "Viva_Goals_Premium", - "Service_Plan_Id": "b44c6eaf-5c9f-478c-8f16-8cea26353bfb", - "Service_Plans_Included_Friendly_Names": "Viva Goals" - }, - { - "Product_Display_Name": "Microsoft Viva Suite", - "String_Id": "VIVA", - "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", - "Service_Plan_Name": "VIVA_LEARNING_PREMIUM", - "Service_Plan_Id": "7162bd38-edae-4022-83a7-c5837f951759", - "Service_Plans_Included_Friendly_Names": "Viva Learning" - }, - { - "Product_Display_Name": "Minecraft Education Student", - "String_Id": "MEE_STUDENT", - "GUID": "533b8f26-f74b-4e9c-9c59-50fc4b393b63", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education" - }, - { - "Product_Display_Name": "Minecraft Education Student", - "String_Id": "MEE_STUDENT", - "GUID": "533b8f26-f74b-4e9c-9c59-50fc4b393b63", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Minecraft Education Faculty", - "String_Id": "MEE_FACULTY", - "GUID": "984df360-9a74-4647-8cf8-696749f6247a", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education" - }, - { - "Product_Display_Name": "Minecraft Education Faculty", - "String_Id": "MEE_FACULTY", - "GUID": "984df360-9a74-4647-8cf8-696749f6247a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Multi-Geo Capabilities in Office 365", - "String_Id": "OFFICE365_MULTIGEO", - "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607", - "Service_Plan_Name": "EXCHANGEONLINE_MULTIGEO", - "Service_Plan_Id": "897d51f1-2cfa-4848-9b30-469149f5e68e", - "Service_Plans_Included_Friendly_Names": "Exchange Online Multi-Geo" - }, - { - "Product_Display_Name": "Multi-Geo Capabilities in Office 365", - "String_Id": "OFFICE365_MULTIGEO", - "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607", - "Service_Plan_Name": "SHAREPOINTONLINE_MULTIGEO", - "Service_Plan_Id": "735c1d98-dd3f-4818-b4ed-c8052e18e62d", - "Service_Plans_Included_Friendly_Names": "SharePoint Multi-Geo" - }, - { - "Product_Display_Name": "Multi-Geo Capabilities in Office 365", - "String_Id": "OFFICE365_MULTIGEO", - "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607", - "Service_Plan_Name": "TEAMSMULTIGEO", - "Service_Plan_Id": "41eda15d-6b52-453b-906f-bc4a5b25a26b", - "Service_Plans_Included_Friendly_Names": "Teams Multi-Geo" - }, - { - "Product_Display_Name": "Nonprofit Portal", - "String_Id": "NONPROFIT_PORTAL", - "GUID": "aa2695c9-8d59-4800-9dc8-12e01f1735af", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Nonprofit Portal", - "String_Id": "NONPROFIT_PORTAL", - "GUID": "aa2695c9-8d59-4800-9dc8-12e01f1735af", - "Service_Plan_Name": "NONPROFIT_PORTAL", - "Service_Plan_Id": "7dbc2d88-20e2-4eb6-b065-4510b38d6eb2", - "Service_Plans_Included_Friendly_Names": "Nonprofit Portal" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "DYN365_CDS_O365_P1", - "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P1" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "KAIZALA_O365_P2", - "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 2" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "PROJECT_O365_P1", - "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P1", - "Service_Plan_Id": "c33802dd-1b50-4b9a-8bb9-f13d2cdeadac", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "SHAREPOINTSTANDARD_EDU", - "Service_Plan_Id": "0a4983bb-d3e5-4a09-95d8-b2d0127b3df5", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1) for Education" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 for faculty", - "String_Id": "STANDARDWOFFPACK_FACULTY", - "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "DYN365_CDS_O365_P1", - "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P1" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "KAIZALA_O365_P2", - "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 2" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "PROJECT_O365_P1", - "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P1", - "Service_Plan_Id": "c33802dd-1b50-4b9a-8bb9-f13d2cdeadac", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "SHAREPOINTSTANDARD_EDU", - "Service_Plan_Id": "0a4983bb-d3e5-4a09-95d8-b2d0127b3df5", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1) for Education" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for faculty", - "String_Id": "STANDARDWOFFPACK_IW_FACULTY", - "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "DYN365_CDS_O365_P1", - "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P1" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "KAIZALA_O365_P2", - "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 2" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "PROJECT_O365_P1", - "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P1", - "Service_Plan_Id": "c33802dd-1b50-4b9a-8bb9-f13d2cdeadac", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "SHAREPOINTSTANDARD_EDU", - "Service_Plan_Id": "0a4983bb-d3e5-4a09-95d8-b2d0127b3df5", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1) for Education" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 for students", - "String_Id": "STANDARDWOFFPACK_STUDENT", - "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "DYN365_CDS_O365_P1", - "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P1" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "KAIZALA_O365_P2", - "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 2" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "PROJECT_O365_P1", - "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P1", - "Service_Plan_Id": "c33802dd-1b50-4b9a-8bb9-f13d2cdeadac", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "SHAREPOINTSTANDARD_EDU", - "Service_Plan_Id": "0a4983bb-d3e5-4a09-95d8-b2d0127b3df5", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1) for Education" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A1 Plus for students", - "String_Id": "STANDARDWOFFPACK_IW_STUDENT", - "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "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 Education" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_3", - "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_3", - "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV", - "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics -Premium" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Standard" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV", - "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance for GCC", - "String_Id": "EQUIVIO_ANALYTICS_GOV", - "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 1)", - "String_Id": "ATP_ENTERPRISE", - "GUID": "4ef96642-f096-40de-a3e9-d83fb2f90211", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 Extra File Storage for GCC", - "String_Id": "SHAREPOINTSTORAGE_GOV", - "GUID": "e5788282-6381-469f-84f0-3d7d4021d34d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_FOUNDATION_GOV" - }, - { - "Product_Display_Name": "Office 365 Extra File Storage for GCC", - "String_Id": "SHAREPOINTSTORAGE_GOV", - "GUID": "e5788282-6381-469f-84f0-3d7d4021d34d", - "Service_Plan_Name": "SHAREPOINTSTORAGE_GOV", - "Service_Plan_Id": "e5bb877f-6ac9-4461-9e43-ca581543ab16", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTORAGE_GOV" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "CDS_O365_P1", - "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P1" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "STREAM_O365_E1", - "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E1 SKU" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "MCO_TEAMS_IW", - "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1", - "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P1" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Office 365 Cloud App Security", - "String_Id": "ADALLOM_O365", - "GUID": "84d5f90f-cd0d-4864-b90b-1c7ba63b4808", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Office 365 Cloud App Security", - "String_Id": "ADALLOM_O365", - "GUID": "84d5f90f-cd0d-4864-b90b-1c7ba63b4808", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Office 365 Extra File Storage", - "String_Id": "SHAREPOINTSTORAGE", - "GUID": "99049c9c-6011-4908-bf17-15f496e6519d", - "Service_Plan_Name": "SHAREPOINTSTORAGE", - "Service_Plan_Id": "be5a7ed5-c598-4fcd-a061-5e6724c68a58", - "Service_Plans_Included_Friendly_Names": "Office 365 Extra File Storage" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "CDS_O365_P1", - "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "KAIZALA_O365_P2", - "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "PROJECT_O365_P1", - "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "DYN365_CDS_O365_P1", - "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "STREAM_O365_E1", - "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E1" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1", - "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Office 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Office 365 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": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Office 365 E3 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": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "Nucleus", - "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", - "Service_Plans_Included_Friendly_Names": "Nucleus" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "VIVA_LEARNING_SEEDED", - "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", - "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "DYN365_CDS_O365_F1", - "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 F1" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "CDS_O365_F1", - "Service_Plan_Id": "90db65a7-bf11-4904-a79f-ef657605145b", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_F1" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS", - "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", - "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "FORMS_PLAN_K", - "Service_Plan_Id": "f07046bd-2a3c-4b96-b0be-dea79d7cbfb8", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1)" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "KAIZALA_O365_P1", - "Service_Plan_Id": "73b2a583-6a59-42e3-8e83-54db46bc3278", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 1" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "STREAM_O365_K", - "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 F3" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "POWERAPPS_O365_S1", - "Service_Plan_Id": "e0287f9f-e222-4f98-9a83-f379e249159a", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "FLOW_O365_S1", - "Service_Plan_Id": "bd91b1a4-9f94-4ecf-b45b-3a65e5c8128a", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_F1", - "Service_Plan_Id": "ba2fdb48-290b-4632-b46a-e4ecc58ac11a", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 F1" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "PROJECT_O365_F3", - "Service_Plan_Id": "7f6f28c2-34bb-4d4b-be36-48ca2e77e1ec", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan F)" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "BPOS_S_TODO_FIRSTLINE", - "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5", - "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "VIVAENGAGE_CORE", - "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", - "Service_Plans_Included_Friendly_Names": "Viva Engage Core" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1", - "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)" - }, - { - "Product_Display_Name": "Office 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "DYN365_CDS_O365_P1_GCC", - "Service_Plan_Id": "8eb5e9bc-783f-4425-921a-c65f45dd72c6", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P1 GCC" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "CDS_O365_P1_GCC", - "Service_Plan_Id": "959e5dec-6522-4d44-8349-132c27c3795a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P1 GCC" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "EXCHANGE_S_STANDARD_GOV", - "Service_Plan_Id": "e9b4930a-925f-45e2-ac2a-3f7788ca6fdd", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1) for Government" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "FORMS_GOV_E1", - "Service_Plan_Id": "f4cba850-4f34-4fd2-a341-0fddfdce1e8f", - "Service_Plans_Included_Friendly_Names": "Forms for Government (Plan E1)" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "MYANALYTICS_P2_GOV", - "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics for Government" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "STREAM_O365_E1_GOV", - "Service_Plan_Id": "15267263-5986-449d-ac5c-124f3b49b2d6", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 for Government (E1)" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", - "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", - "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION_GOV", - "Service_Plan_Id": "4ccb60ee-9523-48fd-8f63-4b090f1ad77a", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365 for GCC" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "POWERAPPS_O365_P1_GOV", - "Service_Plan_Id": "c42aa49a-f357-45d5-9972-bc29df885fee", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "FLOW_O365_P1_GOV", - "Service_Plan_Id": "ad6c8870-6356-474c-901c-64d7da8cea48", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "SharePoint Plan 1G", - "Service_Plan_Id": "f9c43823-deb4-46a8-aa65-8b551f0c4f8a", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 1G" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 G1 GCC", - "String_Id": "STANDARDPACK_GOV", - "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "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": "Power Apps and Logic Flows", - "String_Id": "POWERAPPS_INDIVIDUAL_USER", - "GUID": "87bbbc60-4754-4998-8c88-227dca264858", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Power Apps and Logic Flows", - "String_Id": "POWERAPPS_INDIVIDUAL_USER", - "GUID": "87bbbc60-4754-4998-8c88-227dca264858", - "Service_Plan_Name": "POWERFLOWSFREE", - "Service_Plan_Id": "0b4346bb-8dc3-4079-9dfc-513696f56039", - "Service_Plans_Included_Friendly_Names": "LOGIC FLOWS" - }, - { - "Product_Display_Name": "Power Apps and Logic Flows", - "String_Id": "POWERAPPS_INDIVIDUAL_USER", - "GUID": "87bbbc60-4754-4998-8c88-227dca264858", - "Service_Plan_Name": "POWERVIDEOSFREE", - "Service_Plan_Id": "2c4ec2dc-c62d-4167-a966-52a3e6374015", - "Service_Plans_Included_Friendly_Names": "MICROSOFT POWER VIDEOS BASIC" - }, - { - "Product_Display_Name": "Power Apps and Logic Flows", - "String_Id": "POWERAPPS_INDIVIDUAL_USER", - "GUID": "87bbbc60-4754-4998-8c88-227dca264858", - "Service_Plan_Name": "POWERAPPSFREE", - "Service_Plan_Id": "e61a2945-1d4e-4523-b6e7-30ba39d20f32", - "Service_Plans_Included_Friendly_Names": "MICROSOFT POWERAPPS" - }, - { - "Product_Display_Name": "PowerApps per app baseline access", - "String_Id": "POWERAPPS_PER_APP_IW", - "GUID": "bf666882-9c9b-4b2e-aa2f-4789b0a52ba2", - "Service_Plan_Name": "CDS_PER_APP_IWTRIAL", - "Service_Plan_Id": "94a669d1-84d5-4e54-8462-53b0ae2c8be5", - "Service_Plans_Included_Friendly_Names": "CDS Per app baseline access" - }, - { - "Product_Display_Name": "PowerApps per app baseline access", - "String_Id": "POWERAPPS_PER_APP_IW", - "GUID": "bf666882-9c9b-4b2e-aa2f-4789b0a52ba2", - "Service_Plan_Name": "Flow_Per_APP_IWTRIAL", - "Service_Plan_Id": "dd14867e-8d31-4779-a595-304405f5ad39", - "Service_Plans_Included_Friendly_Names": "Flow per app baseline access" - }, - { - "Product_Display_Name": "PowerApps per app baseline access", - "String_Id": "POWERAPPS_PER_APP_IW", - "GUID": "bf666882-9c9b-4b2e-aa2f-4789b0a52ba2", - "Service_Plan_Name": "POWERAPPS_PER_APP_IWTRIAL", - "Service_Plan_Id": "35122886-cef5-44a3-ab36-97134eabd9ba", - "Service_Plans_Included_Friendly_Names": "PowerApps per app baseline access" - }, - { - "Product_Display_Name": "Power Apps per app plan", - "String_Id": "POWERAPPS_PER_APP", - "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206", - "Service_Plan_Name": "CDS_PER_APP", - "Service_Plan_Id": "9f2f00ad-21ae-4ceb-994b-d8bc7be90999", - "Service_Plans_Included_Friendly_Names": "CDS PowerApps per app plan" - }, - { - "Product_Display_Name": "Power Apps per app plan", - "String_Id": "POWERAPPS_PER_APP", - "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Apps per app plan", - "String_Id": "POWERAPPS_PER_APP", - "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206", - "Service_Plan_Name": "POWERAPPS_PER_APP", - "Service_Plan_Id": "b4f657ff-d83e-4053-909d-baa2b595ec97", - "Service_Plans_Included_Friendly_Names": "Power Apps per App Plan" - }, - { - "Product_Display_Name": "Power Apps per app plan", - "String_Id": "POWERAPPS_PER_APP", - "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206", - "Service_Plan_Name": "Flow_Per_APP", - "Service_Plan_Id": "c539fa36-a64e-479a-82e1-e40ff2aa83ee", - "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per App Plan" - }, - { - "Product_Display_Name": "Power Apps per app plan (1 app or portal)", - "String_Id": "POWERAPPS_PER_APP_NEW", - "GUID": "b4d7b828-e8dc-4518-91f9-e123ae48440d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Apps per app plan (1 app or portal)", - "String_Id": "POWERAPPS_PER_APP_NEW", - "GUID": "b4d7b828-e8dc-4518-91f9-e123ae48440d", - "Service_Plan_Name": "CDSAICAPACITY_PERAPP", - "Service_Plan_Id": "5d7a2e9a-4ee5-4f1c-bc9f-abc481bf39d8", - "Service_Plans_Included_Friendly_Names": "AI Builder capacity Per App add-on" - }, - { - "Product_Display_Name": "Power Apps per app plan (1 app or portal)", - "String_Id": "POWERAPPS_PER_APP_NEW", - "GUID": "b4d7b828-e8dc-4518-91f9-e123ae48440d", - "Service_Plan_Name": "DATAVERSE_POWERAPPS_PER_APP_NEW", - "Service_Plan_Id": "6f0e9100-ff66-41ce-96fc-3d8b7ad26887", - "Service_Plans_Included_Friendly_Names": "Dataverse for Power Apps per app" - }, - { - "Product_Display_Name": "Power Apps per app plan (1 app or portal)", - "String_Id": "POWERAPPS_PER_APP_NEW", - "GUID": "b4d7b828-e8dc-4518-91f9-e123ae48440d", - "Service_Plan_Name": "POWERAPPS_PER_APP_NEW", - "Service_Plan_Id": "14f8dac2-0784-4daa-9cb2-6d670b088d64", - "Service_Plans_Included_Friendly_Names": "Power Apps per app" - }, - { - "Product_Display_Name": "Power Apps per app plan (1 app or portal)", - "String_Id": "POWERAPPS_PER_APP_NEW", - "GUID": "b4d7b828-e8dc-4518-91f9-e123ae48440d", - "Service_Plan_Name": "Flow_Per_APP", - "Service_Plan_Id": "c539fa36-a64e-479a-82e1-e40ff2aa83ee", - "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per App Plan" - }, - { - "Product_Display_Name": "Power Apps per user plan", - "String_Id": "POWERAPPS_PER_USER", - "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579", - "Service_Plan_Name": "DYN365_CDS_P2", - "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", - "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" - }, - { - "Product_Display_Name": "Power Apps per user plan", - "String_Id": "POWERAPPS_PER_USER", - "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Apps per user plan", - "String_Id": "POWERAPPS_PER_USER", - "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579", - "Service_Plan_Name": "POWERAPPS_PER_USER", - "Service_Plan_Id": "ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86", - "Service_Plans_Included_Friendly_Names": "Power Apps per User Plan" - }, - { - "Product_Display_Name": "Power Apps per user plan", - "String_Id": "POWERAPPS_PER_USER", - "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579", - "Service_Plan_Name": "Flow_PowerApps_PerUser", - "Service_Plan_Id": "dc789ed8-0170-4b65-a415-eb77d5bb350a", - "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per User Plan" - }, - { - "Product_Display_Name": "Power Apps per user plan for Government", - "String_Id": "POWERAPPS_PER_USER_GCC", - "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1", - "Service_Plan_Name": "CDSAICAPACITY_PERUSER", - "Service_Plan_Id": "91f50f7b-2204-4803-acac-5cf5668b8b39", - "Service_Plans_Included_Friendly_Names": "AI Builder capacity Per User add-on" - }, - { - "Product_Display_Name": "Power Apps per user plan for Government", - "String_Id": "POWERAPPS_PER_USER_GCC", - "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1", - "Service_Plan_Name": "CDSAICAPACITY_PERUSER_NEW", - "Service_Plan_Id": "74d93933-6f22-436e-9441-66d205435abb", - "Service_Plans_Included_Friendly_Names": "AI Builder capacity Per User add-on" - }, - { - "Product_Display_Name": "Power Apps per user plan for Government", - "String_Id": "POWERAPPS_PER_USER_GCC", - "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1", - "Service_Plan_Name": "DYN365_CDS_P2_GOV", - "Service_Plan_Id": "37396c73-2203-48e6-8be1-d882dae53275", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Government" - }, - { - "Product_Display_Name": "Power Apps per user plan for Government", - "String_Id": "POWERAPPS_PER_USER_GCC", - "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Power Apps per user plan for Government", - "String_Id": "POWERAPPS_PER_USER_GCC", - "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1", - "Service_Plan_Name": "POWERAPPS_PER_USER_GCC", - "Service_Plan_Id": "8f55b472-f8bf-40a9-be30-e29919d4ddfe", - "Service_Plans_Included_Friendly_Names": "Power Apps per User Plan for Government" - }, - { - "Product_Display_Name": "Power Apps per user plan for Government", - "String_Id": "POWERAPPS_PER_USER_GCC", - "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1", - "Service_Plan_Name": "Flow_PowerApps_PerUser_GCC", - "Service_Plan_Id": "8e3eb3bd-bc99-4221-81b8-8b8bc882e128", - "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per User Plan for GCC" - }, - { - "Product_Display_Name": "PowerApps Plan 1 for Government", - "String_Id": "POWERAPPS_P1_GOV", - "GUID": "eca22b68-b31f-4e9c-a20c-4d40287bc5dd", - "Service_Plan_Name": "DYN365_CDS_P1_GOV", - "Service_Plan_Id": "ce361df2-f2a5-4713-953f-4050ba09aad8", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Government" - }, - { - "Product_Display_Name": "PowerApps Plan 1 for Government", - "String_Id": "POWERAPPS_P1_GOV", - "GUID": "eca22b68-b31f-4e9c-a20c-4d40287bc5dd", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "PowerApps Plan 1 for Government", - "String_Id": "POWERAPPS_P1_GOV", - "GUID": "eca22b68-b31f-4e9c-a20c-4d40287bc5dd", - "Service_Plan_Name": "FLOW_P1_GOV", - "Service_Plan_Id": "774da41c-a8b3-47c1-8322-b9c1ab68be9f", - "Service_Plans_Included_Friendly_Names": "Power Automate (Plan 1) for Government" - }, - { - "Product_Display_Name": "PowerApps Plan 1 for Government", - "String_Id": "POWERAPPS_P1_GOV", - "GUID": "eca22b68-b31f-4e9c-a20c-4d40287bc5dd", - "Service_Plan_Name": "POWERAPPS_P1_GOV", - "Service_Plan_Id": "5ce719f1-169f-4021-8a64-7d24dcaec15f", - "Service_Plans_Included_Friendly_Names": "PowerApps Plan 1 for Government" - }, - { - "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min)", - "String_Id": "POWERAPPS_PORTALS_LOGIN_T2", - "GUID": "57f3babd-73ce-40de-bcb2-dadbfbfff9f7", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min)", - "String_Id": "POWERAPPS_PORTALS_LOGIN_T2", - "GUID": "57f3babd-73ce-40de-bcb2-dadbfbfff9f7", - "Service_Plan_Name": "CDS_POWERAPPS_PORTALS_LOGIN", - "Service_Plan_Id": "32ad3a4e-2272-43b4-88d0-80d284258208", - "Service_Plans_Included_Friendly_Names": "Common Data Service Power Apps Portals Login Capacity" - }, - { - "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min)", - "String_Id": "POWERAPPS_PORTALS_LOGIN_T2", - "GUID": "57f3babd-73ce-40de-bcb2-dadbfbfff9f7", - "Service_Plan_Name": "POWERAPPS_PORTALS_LOGIN", - "Service_Plan_Id": "084747ad-b095-4a57-b41f-061d84d69f6f", - "Service_Plans_Included_Friendly_Names": "Power Apps Portals Login Capacity Add-On" - }, - { - "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min) for Government", - "String_Id": "POWERAPPS_PORTALS_LOGIN_T2_GCC", - "GUID": "26c903d5-d385-4cb1-b650-8d81a643b3c4", - "Service_Plan_Name": "CDS_POWERAPPS_PORTALS_LOGIN_GCC", - "Service_Plan_Id": "0f7b9a29-7990-44ff-9d05-a76be778f410", - "Service_Plans_Included_Friendly_Names": "Common Data Service Power Apps Portals Login Capacity for GCC" - }, - { - "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min) for Government", - "String_Id": "POWERAPPS_PORTALS_LOGIN_T2_GCC", - "GUID": "26c903d5-d385-4cb1-b650-8d81a643b3c4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min) for Government", - "String_Id": "POWERAPPS_PORTALS_LOGIN_T2_GCC", - "GUID": "26c903d5-d385-4cb1-b650-8d81a643b3c4", - "Service_Plan_Name": "POWERAPPS_PORTALS_LOGIN_GCC", - "Service_Plan_Id": "bea6aef1-f52d-4cce-ae09-bed96c4b1811", - "Service_Plans_Included_Friendly_Names": "Power Apps Portals Login Capacity Add-On for Government" - }, - { - "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 3 (50 unit min)", - "String_Id": "POWERAPPS_PORTALS_LOGIN_T3", - "GUID": "927d8402-8d3b-40e8-b779-34e859f7b497", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 3 (50 unit min)", - "String_Id": "POWERAPPS_PORTALS_LOGIN_T3", - "GUID": "927d8402-8d3b-40e8-b779-34e859f7b497", - "Service_Plan_Name": "CDS_POWERAPPS_PORTALS_LOGIN", - "Service_Plan_Id": "32ad3a4e-2272-43b4-88d0-80d284258208", - "Service_Plans_Included_Friendly_Names": "Common Data Service Power Apps Portals Login Capacity" - }, - { - "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 3 (50 unit min)", - "String_Id": "POWERAPPS_PORTALS_LOGIN_T3", - "GUID": "927d8402-8d3b-40e8-b779-34e859f7b497", - "Service_Plan_Name": "POWERAPPS_PORTALS_LOGIN", - "Service_Plan_Id": "084747ad-b095-4a57-b41f-061d84d69f6f", - "Service_Plans_Included_Friendly_Names": "Power Apps Portals Login Capacity Add-On" - }, - { - "Product_Display_Name": "Power Apps Portals page view capacity add-on", - "String_Id": "POWERAPPS_PORTALS_PAGEVIEW", - "GUID": "a0de5e3a-2500-4a19-b8f4-ec1c64692d22", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Apps Portals page view capacity add-on", - "String_Id": "POWERAPPS_PORTALS_PAGEVIEW", - "GUID": "a0de5e3a-2500-4a19-b8f4-ec1c64692d22", - "Service_Plan_Name": "CDS_POWERAPPS_PORTALS_PAGEVIEW", - "Service_Plan_Id": "72c30473-7845-460a-9feb-b58f216e8694", - "Service_Plans_Included_Friendly_Names": "CDS PowerApps Portals page view capacity add-on" - }, - { - "Product_Display_Name": "Power Apps Portals page view capacity add-on", - "String_Id": "POWERAPPS_PORTALS_PAGEVIEW", - "GUID": "a0de5e3a-2500-4a19-b8f4-ec1c64692d22", - "Service_Plan_Name": "POWERAPPS_PORTALS_PAGEVIEW", - "Service_Plan_Id": "1c5a559a-ec06-4f76-be5b-6a315418495f", - "Service_Plans_Included_Friendly_Names": "Power Apps Portals Page View Capacity Add-On" - }, - { - "Product_Display_Name": "Power Apps Portals page view capacity add-on for Government", - "String_Id": "POWERAPPS_PORTALS_PAGEVIEW_GCC", - "GUID": "15a64d3e-5b99-4c4b-ae8f-aa6da264bfe7", - "Service_Plan_Name": "CDS_POWERAPPS_PORTALS_PAGEVIEW_GCC", - "Service_Plan_Id": "352257a9-db78-4217-a29d-8b8d4705b014", - "Service_Plans_Included_Friendly_Names": "CDS PowerApps Portals page view capacity add-on for GCC" - }, - { - "Product_Display_Name": "Power Apps Portals page view capacity add-on for Government", - "String_Id": "POWERAPPS_PORTALS_PAGEVIEW_GCC", - "GUID": "15a64d3e-5b99-4c4b-ae8f-aa6da264bfe7", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Power Apps Portals page view capacity add-on for Government", - "String_Id": "POWERAPPS_PORTALS_PAGEVIEW_GCC", - "GUID": "15a64d3e-5b99-4c4b-ae8f-aa6da264bfe7", - "Service_Plan_Name": "POWERAPPS_PORTALS_PAGEVIEW_GCC", - "Service_Plan_Id": "483d5646-7724-46ac-ad71-c78b7f099d8d", - "Service_Plans_Included_Friendly_Names": "Power Apps Portals Page View Capacity Add-On for Government" - }, - { - "Product_Display_Name": "Power Automate per flow plan", - "String_Id": "FLOW_BUSINESS_PROCESS", - "GUID": "b3a42176-0a8c-4c3f-ba4e-f2b37fe5be6b", - "Service_Plan_Name": "CDS_Flow_Business_Process", - "Service_Plan_Id": "c84e52ae-1906-4947-ac4d-6fb3e5bf7c2e", - "Service_Plans_Included_Friendly_Names": "Common data service for Flow per business process plan" - }, - { - "Product_Display_Name": "Power Automate per flow plan", - "String_Id": "FLOW_BUSINESS_PROCESS", - "GUID": "b3a42176-0a8c-4c3f-ba4e-f2b37fe5be6b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Automate per flow plan", - "String_Id": "FLOW_BUSINESS_PROCESS", - "GUID": "b3a42176-0a8c-4c3f-ba4e-f2b37fe5be6b", - "Service_Plan_Name": "FLOW_BUSINESS_PROCESS", - "Service_Plan_Id": "7e017b61-a6e0-4bdc-861a-932846591f6e", - "Service_Plans_Included_Friendly_Names": "Flow per business process plan" - }, - { - "Product_Display_Name": "Power Automate per user plan", - "String_Id": "FLOW_PER_USER", - "GUID": "4a51bf65-409c-4a91-b845-1121b571cc9d", - "Service_Plan_Name": "DYN365_CDS_P2", - "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", - "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" - }, - { - "Product_Display_Name": "Power Automate per user plan", - "String_Id": "FLOW_PER_USER", - "GUID": "4a51bf65-409c-4a91-b845-1121b571cc9d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Automate per user plan", - "String_Id": "FLOW_PER_USER", - "GUID": "4a51bf65-409c-4a91-b845-1121b571cc9d", - "Service_Plan_Name": "FLOW_PER_USER", - "Service_Plan_Id": "c5002c70-f725-4367-b409-f0eff4fee6c0", - "Service_Plans_Included_Friendly_Names": "Flow per user plan" - }, - { - "Product_Display_Name": "Power Automate per user plan dept", - "String_Id": "FLOW_PER_USER_DEPT", - "GUID": "d80a4c5d-8f05-4b64-9926-6574b9e6aee4", - "Service_Plan_Name": "DYN365_CDS_P2", - "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", - "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" - }, - { - "Product_Display_Name": "Power Automate per user plan dept", - "String_Id": "FLOW_PER_USER_DEPT", - "GUID": "d80a4c5d-8f05-4b64-9926-6574b9e6aee4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Automate per user plan dept", - "String_Id": "FLOW_PER_USER_DEPT", - "GUID": "d80a4c5d-8f05-4b64-9926-6574b9e6aee4", - "Service_Plan_Name": "FLOW_PER_USER", - "Service_Plan_Id": "c5002c70-f725-4367-b409-f0eff4fee6c0", - "Service_Plans_Included_Friendly_Names": "Flow per user plan" - }, - { - "Product_Display_Name": "Power Automate per user plan for Government", - "String_Id": "FLOW_PER_USER_GCC", - "GUID": "c8803586-c136-479a-8ff3-f5f32d23a68e", - "Service_Plan_Name": "DYN365_CDS_P2_GOV", - "Service_Plan_Id": "37396c73-2203-48e6-8be1-d882dae53275", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Government" - }, - { - "Product_Display_Name": "Power Automate per user plan for Government", - "String_Id": "FLOW_PER_USER_GCC", - "GUID": "c8803586-c136-479a-8ff3-f5f32d23a68e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Power Automate per user plan for Government", - "String_Id": "FLOW_PER_USER_GCC", - "GUID": "c8803586-c136-479a-8ff3-f5f32d23a68e", - "Service_Plan_Name": "FLOW_PER_USER_GCC", - "Service_Plan_Id": "769b8bee-2779-4c5a-9456-6f4f8629fd41", - "Service_Plans_Included_Friendly_Names": "Power Automate per User Plan for Government" - }, - { - "Product_Display_Name": "Power Automate per user with attended RPA plan", - "String_Id": "POWERAUTOMATE_ATTENDED_RPA", - "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9", - "Service_Plan_Name": "CDS_ATTENDED_RPA", - "Service_Plan_Id": "3da2fd4c-1bee-4b61-a17f-94c31e5cab93", - "Service_Plans_Included_Friendly_Names": "Common Data Service Attended RPA" - }, - { - "Product_Display_Name": "Power Automate per user with attended RPA plan", - "String_Id": "POWERAUTOMATE_ATTENDED_RPA", - "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Automate per user with attended RPA plan", - "String_Id": "POWERAUTOMATE_ATTENDED_RPA", - "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9", - "Service_Plan_Name": "POWER_AUTOMATE_ATTENDED_RPA", - "Service_Plan_Id": "375cd0ad-c407-49fd-866a-0bff4f8a9a4d", - "Service_Plans_Included_Friendly_Names": "Power Automate RPA Attended" - }, - { - "Product_Display_Name": "Power Automate 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 Premium Per User for Faculty", - "String_Id": "PBI_PREMIUM_PER_USER_FACULTY", - "GUID": "060d8061-f606-4e69-a4e7-e8fff75ea1f5", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Premium Per User for Faculty", - "String_Id": "PBI_PREMIUM_PER_USER_FACULTY", - "GUID": "060d8061-f606-4e69-a4e7-e8fff75ea1f5", - "Service_Plan_Name": "BI_AZURE_P3", - "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c", - "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User" - }, - { - "Product_Display_Name": "Power BI Premium Per User for Faculty", - "String_Id": "PBI_PREMIUM_PER_USER_FACULTY", - "GUID": "060d8061-f606-4e69-a4e7-e8fff75ea1f5", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Power BI Pro", - "String_Id": "POWER_BI_PRO", - "GUID": "f8a1db68-be16-40ed-86d5-cb42ce701560", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Pro", - "String_Id": "POWER_BI_PRO", - "GUID": "f8a1db68-be16-40ed-86d5-cb42ce701560", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Power BI Pro CE", - "String_Id": "POWER_BI_PRO_CE", - "GUID": "420af87e-8177-4146-a780-3786adaffbca", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Pro CE", - "String_Id": "POWER_BI_PRO_CE", - "GUID": "420af87e-8177-4146-a780-3786adaffbca", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Power BI Pro Dept", - "String_Id": "POWER_BI_PRO_DEPT", - "GUID": "3a6a908c-09c5-406a-8170-8ebb63c42882", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Pro Dept", - "String_Id": "POWER_BI_PRO_DEPT", - "GUID": "3a6a908c-09c5-406a-8170-8ebb63c42882", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Power BI Pro for Faculty", - "String_Id": "POWER_BI_PRO_FACULTY", - "GUID": "de5f128b-46d7-4cfc-b915-a89ba060ea56", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Pro for Faculty", - "String_Id": "POWER_BI_PRO_FACULTY", - "GUID": "de5f128b-46d7-4cfc-b915-a89ba060ea56", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Power BI Pro for GCC", - "String_Id": "POWERBI_PRO_GOV", - "GUID": "f0612879-44ea-47fb-baf0-3d76d9235576", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Power BI Pro for GCC", - "String_Id": "POWERBI_PRO_GOV", - "GUID": "f0612879-44ea-47fb-baf0-3d76d9235576", - "Service_Plan_Name": "BI_AZURE_P_2_GOV", - "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76", - "Service_Plans_Included_Friendly_Names": "Power BI Pro for Government" - }, - { - "Product_Display_Name": "Power Pages vTrial for Makers", - "String_Id": "Power_Pages_vTrial_for_Makers", - "GUID": "3f9f06f5-3c31-472c-985f-62d9c10ec167", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Pages vTrial for Makers", - "String_Id": "Power_Pages_vTrial_for_Makers", - "GUID": "3f9f06f5-3c31-472c-985f-62d9c10ec167", - "Service_Plan_Name": "DYN365_CDS_VIRAL", - "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Power Pages vTrial for Makers", - "String_Id": "Power_Pages_vTrial_for_Makers", - "GUID": "3f9f06f5-3c31-472c-985f-62d9c10ec167", - "Service_Plan_Name": "POWER_PAGES_VTRIAL", - "Service_Plan_Id": "6817d093-2d30-4249-8bd6-774f01efa78c", - "Service_Plans_Included_Friendly_Names": "Power Pages vTrial for Makers" - }, - { - "Product_Display_Name": "Power Virtual Agent", - "String_Id": "VIRTUAL_AGENT_BASE", - "GUID": "e4e55366-9635-46f4-a907-fc8c3b5ec81f", - "Service_Plan_Name": "CDS_VIRTUAL_AGENT_BASE", - "Service_Plan_Id": "0a0a23fa-fea1-4195-bb89-b4789cb12f7f", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Virtual Agent Base" - }, - { - "Product_Display_Name": "Power Virtual Agent", - "String_Id": "VIRTUAL_AGENT_BASE", - "GUID": "e4e55366-9635-46f4-a907-fc8c3b5ec81f", - "Service_Plan_Name": "FLOW_VIRTUAL_AGENT_BASE", - "Service_Plan_Id": "4b81a949-69a1-4409-ad34-9791a6ec88aa", - "Service_Plans_Included_Friendly_Names": "Power Automate for Virtual Agent" - }, - { - "Product_Display_Name": "Power Virtual Agent", - "String_Id": "VIRTUAL_AGENT_BASE", - "GUID": "e4e55366-9635-46f4-a907-fc8c3b5ec81f", - "Service_Plan_Name": "VIRTUAL_AGENT_BASE", - "Service_Plan_Id": "f6934f16-83d3-4f3b-ad27-c6e9c187b260", - "Service_Plans_Included_Friendly_Names": "Virtual Agent Base" - }, - { - "Product_Display_Name": "Power Virtual Agent User License", - "String_Id": "VIRTUAL_AGENT_USL", - "GUID": "4b74a65c-8b4a-4fc8-9f6b-5177ed11ddfa", - "Service_Plan_Name": "CDS_VIRTUAL_AGENT_USL", - "Service_Plan_Id": "cb867b3c-7f38-4d0d-99ce-e29cd69812c8", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Power Virtual Agent User License", - "String_Id": "VIRTUAL_AGENT_USL", - "GUID": "4b74a65c-8b4a-4fc8-9f6b-5177ed11ddfa", - "Service_Plan_Name": "FLOW_VIRTUAL_AGENT_USL", - "Service_Plan_Id": "82f141c9-2e87-4f43-8cb2-12d2701dc6b3", - "Service_Plans_Included_Friendly_Names": "Power Automate for Virtual Agent" - }, - { - "Product_Display_Name": "Power Virtual Agent User License", - "String_Id": "VIRTUAL_AGENT_USL", - "GUID": "4b74a65c-8b4a-4fc8-9f6b-5177ed11ddfa", - "Service_Plan_Name": "VIRTUAL_AGENT_USL", - "Service_Plan_Id": "1263586c-59a4-4ad0-85e1-d50bc7149501", - "Service_Plans_Included_Friendly_Names": "Virtual Agent" - }, - { - "Product_Display_Name": "Power Virtual Agents Viral Trial", - "String_Id": "CCIBOTS_PRIVPREV_VIRAL", - "GUID": "606b54a9-78d8-4298-ad8b-df6ef4481c80", - "Service_Plan_Name": "DYN365_CDS_CCI_BOTS", - "Service_Plan_Id": "cf7034ed-348f-42eb-8bbd-dddeea43ee81", - "Service_Plans_Included_Friendly_Names": "Common Data Service for CCI Bots" - }, - { - "Product_Display_Name": "Power Virtual Agents Viral Trial", - "String_Id": "CCIBOTS_PRIVPREV_VIRAL", - "GUID": "606b54a9-78d8-4298-ad8b-df6ef4481c80", - "Service_Plan_Name": "CCIBOTS_PRIVPREV_VIRAL", - "Service_Plan_Id": "ce312d15-8fdf-44c0-9974-a25a177125ee", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Customer Service Virtual Agents Viral" - }, - { - "Product_Display_Name": "Power Virtual Agents Viral Trial", - "String_Id": "CCIBOTS_PRIVPREV_VIRAL", - "GUID": "606b54a9-78d8-4298-ad8b-df6ef4481c80", - "Service_Plan_Name": "FLOW_CCI_BOTS", - "Service_Plan_Id": "5d798708-6473-48ad-9776-3acc301c40af", - "Service_Plans_Included_Friendly_Names": "Flow for CCI Bots" - }, - { - "Product_Display_Name": "Privacy Management ? risk", - "String_Id": "PRIVACY_MANAGEMENT_RISK", - "GUID": "e42bc969-759a-4820-9283-6b73085b68e6", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Privacy Management ? risk", - "String_Id": "PRIVACY_MANAGEMENT_RISK", - "GUID": "e42bc969-759a-4820-9283-6b73085b68e6", - "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK", - "Service_Plan_Id": "f281fb1f-99a7-46ab-9edb-ffd74e260ed3", - "Service_Plans_Included_Friendly_Names": "Priva - Risk" - }, - { - "Product_Display_Name": "Privacy Management ? risk", - "String_Id": "PRIVACY_MANAGEMENT_RISK", - "GUID": "e42bc969-759a-4820-9283-6b73085b68e6", - "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK_EXCHANGE", - "Service_Plan_Id": "ebb17a6e-6002-4f65-acb0-d386480cebc1", - "Service_Plans_Included_Friendly_Names": "Priva - Risk (Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - risk for EDU", - "String_Id": "PRIVACY_MANAGEMENT_RISK_EDU", - "GUID": "dcdbaae7-d8c9-40cb-8bb1-62737b9e5a86", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Privacy Management - risk for EDU", - "String_Id": "PRIVACY_MANAGEMENT_RISK_EDU", - "GUID": "dcdbaae7-d8c9-40cb-8bb1-62737b9e5a86", - "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK", - "Service_Plan_Id": "f281fb1f-99a7-46ab-9edb-ffd74e260ed3", - "Service_Plans_Included_Friendly_Names": "Priva - Risk" - }, - { - "Product_Display_Name": "Privacy Management - risk for EDU", - "String_Id": "PRIVACY_MANAGEMENT_RISK_EDU", - "GUID": "dcdbaae7-d8c9-40cb-8bb1-62737b9e5a86", - "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK_EXCHANGE", - "Service_Plan_Id": "ebb17a6e-6002-4f65-acb0-d386480cebc1", - "Service_Plans_Included_Friendly_Names": "Priva - Risk (Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - risk GCC", - "String_Id": "PRIVACY_MANAGEMENT_RISK_GCC", - "GUID": "046f7d3b-9595-4685-a2e8-a2832d2b26aa", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Privacy Management - risk GCC", - "String_Id": "PRIVACY_MANAGEMENT_RISK_GCC", - "GUID": "046f7d3b-9595-4685-a2e8-a2832d2b26aa", - "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK", - "Service_Plan_Id": "f281fb1f-99a7-46ab-9edb-ffd74e260ed3", - "Service_Plans_Included_Friendly_Names": "Priva - Risk" - }, - { - "Product_Display_Name": "Privacy Management - risk GCC", - "String_Id": "PRIVACY_MANAGEMENT_RISK_GCC", - "GUID": "046f7d3b-9595-4685-a2e8-a2832d2b26aa", - "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK_EXCHANGE", - "Service_Plan_Id": "ebb17a6e-6002-4f65-acb0-d386480cebc1", - "Service_Plans_Included_Friendly_Names": "Priva - Risk (Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - risk_USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_DOD", - "GUID": "83b30692-0d09-435c-a455-2ab220d504b9", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Privacy Management - risk_USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_DOD", - "GUID": "83b30692-0d09-435c-a455-2ab220d504b9", - "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK", - "Service_Plan_Id": "f281fb1f-99a7-46ab-9edb-ffd74e260ed3", - "Service_Plans_Included_Friendly_Names": "Priva - Risk" - }, - { - "Product_Display_Name": "Privacy Management - risk_USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_DOD", - "GUID": "83b30692-0d09-435c-a455-2ab220d504b9", - "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK_EXCHANGE", - "Service_Plan_Id": "ebb17a6e-6002-4f65-acb0-d386480cebc1", - "Service_Plans_Included_Friendly_Names": "Priva - Risk (Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - risk_USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_GCCHIGH", - "GUID": "787d7e75-29ca-4b90-a3a9-0b780b35367c", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Privacy Management - risk_USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_GCCHIGH", - "GUID": "787d7e75-29ca-4b90-a3a9-0b780b35367c", - "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK", - "Service_Plan_Id": "f281fb1f-99a7-46ab-9edb-ffd74e260ed3", - "Service_Plans_Included_Friendly_Names": "Priva - Risk" - }, - { - "Product_Display_Name": "Privacy Management - risk_USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_GCCHIGH", - "GUID": "787d7e75-29ca-4b90-a3a9-0b780b35367c", - "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK_EXCHANGE", - "Service_Plan_Id": "ebb17a6e-6002-4f65-acb0-d386480cebc1", - "Service_Plans_Included_Friendly_Names": "Priva - Risk (Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2", - "GUID": "d9020d1c-94ef-495a-b6de-818cbbcaa3b8", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2", - "GUID": "d9020d1c-94ef-495a-b6de-818cbbcaa3b8", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_1", - "Service_Plan_Id": "93d24177-c2c3-408a-821d-3d25dfa66e7a", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2", - "GUID": "d9020d1c-94ef-495a-b6de-818cbbcaa3b8", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_1", - "Service_Plan_Id": "07a4098c-3f2d-427f-bfe2-5889ed75dd7b", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_EDU_V2", - "GUID": "475e3e81-3c75-4e07-95b6-2fed374536c8", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_EDU_V2", - "GUID": "475e3e81-3c75-4e07-95b6-2fed374536c8", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_1", - "Service_Plan_Id": "93d24177-c2c3-408a-821d-3d25dfa66e7a", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_EDU_V2", - "GUID": "475e3e81-3c75-4e07-95b6-2fed374536c8", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_1", - "Service_Plan_Id": "07a4098c-3f2d-427f-bfe2-5889ed75dd7b", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) GCC", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_GCC", - "GUID": "017fb6f8-00dd-4025-be2b-4eff067cae72", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) GCC", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_GCC", - "GUID": "017fb6f8-00dd-4025-be2b-4eff067cae72", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_1", - "Service_Plan_Id": "93d24177-c2c3-408a-821d-3d25dfa66e7a", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) GCC", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_GCC", - "GUID": "017fb6f8-00dd-4025-be2b-4eff067cae72", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_1", - "Service_Plan_Id": "07a4098c-3f2d-427f-bfe2-5889ed75dd7b", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_DOD", - "GUID": "d3c841f3-ea93-4da2-8040-6f2348d20954", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_DOD", - "GUID": "d3c841f3-ea93-4da2-8040-6f2348d20954", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_1", - "Service_Plan_Id": "93d24177-c2c3-408a-821d-3d25dfa66e7a", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_DOD", - "GUID": "d3c841f3-ea93-4da2-8040-6f2348d20954", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_1", - "Service_Plan_Id": "07a4098c-3f2d-427f-bfe2-5889ed75dd7b", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_GCCHIGH", - "GUID": "706d2425-6170-4818-ba08-2ad8f1d2d078", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_GCCHIGH", - "GUID": "706d2425-6170-4818-ba08-2ad8f1d2d078", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_1", - "Service_Plan_Id": "93d24177-c2c3-408a-821d-3d25dfa66e7a", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_GCCHIGH", - "GUID": "706d2425-6170-4818-ba08-2ad8f1d2d078", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_1", - "Service_Plan_Id": "07a4098c-3f2d-427f-bfe2-5889ed75dd7b", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2", - "GUID": "78ea43ac-9e5d-474f-8537-4abb82dafe27", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2", - "GUID": "78ea43ac-9e5d-474f-8537-4abb82dafe27", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_10", - "Service_Plan_Id": "f0241705-7b44-4401-a6b6-7055062b5b03", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2", - "GUID": "78ea43ac-9e5d-474f-8537-4abb82dafe27", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_10", - "Service_Plan_Id": "74853901-d7a9-428e-895d-f4c8687a9f0b", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_EDU_V2", - "GUID": "e001d9f1-5047-4ebf-8927-148530491f83", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_EDU_V2", - "GUID": "e001d9f1-5047-4ebf-8927-148530491f83", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_10", - "Service_Plan_Id": "f0241705-7b44-4401-a6b6-7055062b5b03", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_EDU_V2", - "GUID": "e001d9f1-5047-4ebf-8927-148530491f83", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_10", - "Service_Plan_Id": "74853901-d7a9-428e-895d-f4c8687a9f0b", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) GCC", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_GCC", - "GUID": "a056b037-1fa0-4133-a583-d05cff47d551", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) GCC", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_GCC", - "GUID": "a056b037-1fa0-4133-a583-d05cff47d551", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_10", - "Service_Plan_Id": "f0241705-7b44-4401-a6b6-7055062b5b03", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) GCC", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_GCC", - "GUID": "a056b037-1fa0-4133-a583-d05cff47d551", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_10", - "Service_Plan_Id": "74853901-d7a9-428e-895d-f4c8687a9f0b", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_DOD", - "GUID": "ab28dfa1-853a-4f54-9315-f5146975ac9a", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_DOD", - "GUID": "ab28dfa1-853a-4f54-9315-f5146975ac9a", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_10", - "Service_Plan_Id": "f0241705-7b44-4401-a6b6-7055062b5b03", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_DOD", - "GUID": "ab28dfa1-853a-4f54-9315-f5146975ac9a", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_10", - "Service_Plan_Id": "74853901-d7a9-428e-895d-f4c8687a9f0b", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_GCCHIGH", - "GUID": "f6aa3b3d-62f4-4c1d-a44f-0550f40f729c", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_GCCHIGH", - "GUID": "f6aa3b3d-62f4-4c1d-a44f-0550f40f729c", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_10", - "Service_Plan_Id": "f0241705-7b44-4401-a6b6-7055062b5b03", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_GCCHIGH", - "GUID": "f6aa3b3d-62f4-4c1d-a44f-0550f40f729c", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_10", - "Service_Plan_Id": "74853901-d7a9-428e-895d-f4c8687a9f0b", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (50)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50", - "GUID": "c416b349-a83c-48cb-9529-c420841dedd6", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (50)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50", - "GUID": "c416b349-a83c-48cb-9529-c420841dedd6", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR", - "Service_Plan_Id": "8bbd1fea-6dc6-4aef-8abc-79af22d746e4", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (50)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50", - "GUID": "c416b349-a83c-48cb-9529-c420841dedd6", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE", - "Service_Plan_Id": "7ca7f875-98db-4458-ab1b-47503826dd73", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (50)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_V2", - "GUID": "f6c82f13-9554-4da1-bed3-c024cc906e02", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (50)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_V2", - "GUID": "f6c82f13-9554-4da1-bed3-c024cc906e02", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR", - "Service_Plan_Id": "8bbd1fea-6dc6-4aef-8abc-79af22d746e4", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (50)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_V2", - "GUID": "f6c82f13-9554-4da1-bed3-c024cc906e02", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE", - "Service_Plan_Id": "7ca7f875-98db-4458-ab1b-47503826dd73", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (50) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_EDU_V2", - "GUID": "ed45d397-7d61-4110-acc0-95674917bb14", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (50) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_EDU_V2", - "GUID": "ed45d397-7d61-4110-acc0-95674917bb14", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR", - "Service_Plan_Id": "8bbd1fea-6dc6-4aef-8abc-79af22d746e4", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (50) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_EDU_V2", - "GUID": "ed45d397-7d61-4110-acc0-95674917bb14", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE", - "Service_Plan_Id": "7ca7f875-98db-4458-ab1b-47503826dd73", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2", - "GUID": "cf4c6c3b-f863-4940-97e8-1d25e912f4c4", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2", - "GUID": "cf4c6c3b-f863-4940-97e8-1d25e912f4c4", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_100", - "Service_Plan_Id": "5c221cec-2c39-435b-a1e2-7cdd7fac5913", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100)", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2", - "GUID": "cf4c6c3b-f863-4940-97e8-1d25e912f4c4", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_100", - "Service_Plan_Id": "500f440d-167e-4030-a3a7-8cd35421fbd8", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_EDU_V2", - "GUID": "9b85b4f0-92d9-4c3d-b230-041520cb1046", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_EDU_V2", - "GUID": "9b85b4f0-92d9-4c3d-b230-041520cb1046", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_100", - "Service_Plan_Id": "5c221cec-2c39-435b-a1e2-7cdd7fac5913", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) for EDU", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_EDU_V2", - "GUID": "9b85b4f0-92d9-4c3d-b230-041520cb1046", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_100", - "Service_Plan_Id": "500f440d-167e-4030-a3a7-8cd35421fbd8", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) GCC", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_GCC", - "GUID": "91bbc479-4c2c-4210-9c88-e5b468c35b83", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) GCC", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_GCC", - "GUID": "91bbc479-4c2c-4210-9c88-e5b468c35b83", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_100", - "Service_Plan_Id": "5c221cec-2c39-435b-a1e2-7cdd7fac5913", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) GCC", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_GCC", - "GUID": "91bbc479-4c2c-4210-9c88-e5b468c35b83", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_100", - "Service_Plan_Id": "500f440d-167e-4030-a3a7-8cd35421fbd8", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_DOD", - "GUID": "ba6e69d5-ba2e-47a7-b081-66c1b8e7e7d4", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_DOD", - "GUID": "ba6e69d5-ba2e-47a7-b081-66c1b8e7e7d4", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_100", - "Service_Plan_Id": "5c221cec-2c39-435b-a1e2-7cdd7fac5913", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_DOD", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_DOD", - "GUID": "ba6e69d5-ba2e-47a7-b081-66c1b8e7e7d4", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_100", - "Service_Plan_Id": "500f440d-167e-4030-a3a7-8cd35421fbd8", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_GCCHIGH", - "GUID": "cee36ce4-cc31-481f-8cab-02765d3e441f", - "Service_Plan_Name": "MIP_S_EXCHANGE_CO", - "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_GCCHIGH", - "GUID": "cee36ce4-cc31-481f-8cab-02765d3e441f", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_100", - "Service_Plan_Id": "5c221cec-2c39-435b-a1e2-7cdd7fac5913", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100 - Exchange)" - }, - { - "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_GCCHIGH", - "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_GCCHIGH", - "GUID": "cee36ce4-cc31-481f-8cab-02765d3e441f", - "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_100", - "Service_Plan_Id": "500f440d-167e-4030-a3a7-8cd35421fbd8", - "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100)" - }, - { - "Product_Display_Name": "Project for Office 365", - "String_Id": "PROJECTCLIENT", - "GUID": "a10d5e58-74da-4312-95c8-76be4e5b75a0", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE DESKTOP CLIENT" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Project Online Essentials for Faculty", - "String_Id": "PROJECTESSENTIALS_FACULTY", - "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Online Essentials for Faculty", - "String_Id": "PROJECTESSENTIALS_FACULTY", - "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Project Online Essentials for Faculty", - "String_Id": "PROJECTESSENTIALS_FACULTY", - "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Project Online Essentials for Faculty", - "String_Id": "PROJECTESSENTIALS_FACULTY", - "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Project Online Essentials for Faculty", - "String_Id": "PROJECTESSENTIALS_FACULTY", - "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Project Online Essentials for Faculty", - "String_Id": "PROJECTESSENTIALS_FACULTY", - "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Project Online Essentials for GCC", - "String_Id": "PROJECTESSENTIALS_GOV", - "GUID": "ca1a159a-f09e-42b8-bb82-cb6420f54c8e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Project Online Essentials for GCC", - "String_Id": "PROJECTESSENTIALS_GOV", - "GUID": "ca1a159a-f09e-42b8-bb82-cb6420f54c8e", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" - }, - { - "Product_Display_Name": "Project Online Essentials for GCC", - "String_Id": "PROJECTESSENTIALS_GOV", - "GUID": "ca1a159a-f09e-42b8-bb82-cb6420f54c8e", - "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", - "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" - }, - { - "Product_Display_Name": "Project Online Essentials for GCC", - "String_Id": "PROJECTESSENTIALS_GOV", - "GUID": "ca1a159a-f09e-42b8-bb82-cb6420f54c8e", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Project Online Premium", - "String_Id": "PROJECTPREMIUM", - "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE DESKTOP CLIENT" - }, - { - "Product_Display_Name": "Project Online Premium", - "String_Id": "PROJECTPREMIUM", - "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT_PROJECT" - }, - { - "Product_Display_Name": "Project Online Premium", - "String_Id": "PROJECTPREMIUM", - "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Project Online Premium", - "String_Id": "PROJECTPREMIUM", - "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "Project Online Premium Without Project Client", - "String_Id": "PROJECTONLINE_PLAN_1", - "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "Project Online Premium Without Project Client", - "String_Id": "PROJECTONLINE_PLAN_1", - "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT_PROJECT" - }, - { - "Product_Display_Name": "Project Online Premium Without Project Client", - "String_Id": "PROJECTONLINE_PLAN_1", - "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Project Online Premium Without Project Client", - "String_Id": "PROJECTONLINE_PLAN_1", - "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "Project Online Premium Without Project Client", - "String_Id": "PROJECTONLINE_PLAN_1", - "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "Project Online With Project for Office 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "Project Online With Project for Office 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE DESKTOP CLIENT" - }, - { - "Product_Display_Name": "Project Online With Project for Office 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT_PROJECT" - }, - { - "Product_Display_Name": "Project Online With Project for Office 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Project Online With Project for Office 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "Project Online With Project for Office 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "Project Plan 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "DYN365_CDS_FOR_PROJECT_P1", - "Service_Plan_Id": "a6f677b3-62a6-4644-93e7-2a85d240845e", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR PROJECT P1" - }, - { - "Product_Display_Name": "Project Plan 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Project Plan 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "Power_Automate_For_Project_P1", - "Service_Plan_Id": "00283e6b-2bd8-440f-a2d5-87358e4c89a1", - "Service_Plans_Included_Friendly_Names": "POWER AUTOMATE FOR PROJECT P1" - }, - { - "Product_Display_Name": "Project Plan 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS" - }, - { - "Product_Display_Name": "Project Plan 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "PROJECT_P1", - "Service_Plan_Id": "4a12c688-56c6-461a-87b1-30d6f32136f9", - "Service_Plans_Included_Friendly_Names": "PROJECT P1" - }, - { - "Product_Display_Name": "Project Plan 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "DYN365_CDS_FOR_PROJECT_P1", - "Service_Plan_Id": "a6f677b3-62a6-4644-93e7-2a85d240845e", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Project P1" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "Power_Automate_For_Project_P1", - "Service_Plan_Id": "00283e6b-2bd8-440f-a2d5-87358e4c89a1", - "Service_Plans_Included_Friendly_Names": "Power Automate for Project P1" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "PROJECT_P1", - "Service_Plan_Id": "4a12c688-56c6-461a-87b1-30d6f32136f9", - "Service_Plans_Included_Friendly_Names": "Project P1" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT STANDARD" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "DYN365_CDS_PROJECT", - "Service_Plan_Id": "50554c47-71d9-49fd-bc54-42a2765c555c", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Project" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "FLOW_FOR_PROJECT", - "Service_Plan_Id": "fa200448-008c-4acb-abd4-ea106ed2199d", - "Service_Plans_Included_Friendly_Names": "Flow for Project" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "Project Online Service" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "PROJECT_PROFESSIONAL", - "Service_Plan_Id": "818523f5-016b-4355-9be8-ed6944946ea7", - "Service_Plans_Included_Friendly_Names": "Project P3" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "DYN365_CDS_PROJECT", - "Service_Plan_Id": "50554c47-71d9-49fd-bc54-42a2765c555c", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Project" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "FLOW_FOR_PROJECT", - "Service_Plan_Id": "fa200448-008c-4acb-abd4-ea106ed2199d", - "Service_Plans_Included_Friendly_Names": "Flow for Project" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "Project Online Service" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "PROJECT_PROFESSIONAL", - "Service_Plan_Id": "818523f5-016b-4355-9be8-ed6944946ea7", - "Service_Plans_Included_Friendly_Names": "Project P3" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Project Plan 3 for Faculty", - "String_Id": "PROJECTPROFESSIONAL_FACULTY", - "GUID": "46974aed-363e-423c-9e6a-951037cec495", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Plan 3 for Faculty", - "String_Id": "PROJECTPROFESSIONAL_FACULTY", - "GUID": "46974aed-363e-423c-9e6a-951037cec495", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Project Plan 3 for Faculty", - "String_Id": "PROJECTPROFESSIONAL_FACULTY", - "GUID": "46974aed-363e-423c-9e6a-951037cec495", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" - }, - { - "Product_Display_Name": "Project Plan 3 for Faculty", - "String_Id": "PROJECTPROFESSIONAL_FACULTY", - "GUID": "46974aed-363e-423c-9e6a-951037cec495", - "Service_Plan_Name": "SHAREPOINT_PROJECT_EDU", - "Service_Plan_Id": "664a2fed-6c7a-468e-af35-d61740f0ec90", - "Service_Plans_Included_Friendly_Names": "Project Online Service for Education" - }, - { - "Product_Display_Name": "Project Plan 3 for Faculty", - "String_Id": "PROJECTPROFESSIONAL_FACULTY", - "GUID": "46974aed-363e-423c-9e6a-951037cec495", - "Service_Plan_Name": "PROJECT_PROFESSIONAL_FACULTY", - "Service_Plan_Id": "22572403-045f-432b-a660-af949c0a77b5", - "Service_Plans_Included_Friendly_Names": "Project P3 for Faculty" - }, - { - "Product_Display_Name": "Project Plan 3 for Faculty", - "String_Id": "PROJECTPROFESSIONAL_FACULTY", - "GUID": "46974aed-363e-423c-9e6a-951037cec495", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Project Plan 3 for Faculty", - "String_Id": "PROJECTPROFESSIONAL_FACULTY", - "GUID": "46974aed-363e-423c-9e6a-951037cec495", - "Service_Plan_Name": "DYN365_CDS_PROJECT", - "Service_Plan_Id": "50554c47-71d9-49fd-bc54-42a2765c555c", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Project" - }, - { - "Product_Display_Name": "Project Plan 3 for Faculty", - "String_Id": "PROJECTPROFESSIONAL_FACULTY", - "GUID": "46974aed-363e-423c-9e6a-951037cec495", - "Service_Plan_Name": "FLOW_FOR_PROJECT", - "Service_Plan_Id": "fa200448-008c-4acb-abd4-ea106ed2199d", - "Service_Plans_Included_Friendly_Names": "Power Automate for Project" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC", - "String_Id": "PROJECTPROFESSIONAL_GOV", - "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", - "Service_Plan_Name": "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": "Project Plan 5 without Project Client for Faculty", - "String_Id": "PROJECTONLINE_PLAN_1_FACULTY", - "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Plan 5 without Project Client for Faculty", - "String_Id": "PROJECTONLINE_PLAN_1_FACULTY", - "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Project Plan 5 without Project Client for Faculty", - "String_Id": "PROJECTONLINE_PLAN_1_FACULTY", - "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Project Plan 5 without Project Client for Faculty", - "String_Id": "PROJECTONLINE_PLAN_1_FACULTY", - "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac", - "Service_Plan_Name": "SHAREPOINT_PROJECT_EDU", - "Service_Plan_Id": "664a2fed-6c7a-468e-af35-d61740f0ec90", - "Service_Plans_Included_Friendly_Names": "Project Online Service for Education" - }, - { - "Product_Display_Name": "Project Plan 5 without Project Client for Faculty", - "String_Id": "PROJECTONLINE_PLAN_1_FACULTY", - "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Project Plan 5 without Project Client for Faculty", - "String_Id": "PROJECTONLINE_PLAN_1_FACULTY", - "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Rights Management Adhoc", - "String_Id": "RIGHTSMANAGEMENT_ADHOC", - "GUID": "8c4ce438-32a7-4ac5-91a6-e22ae08d9c8b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Rights Management Adhoc", - "String_Id": "RIGHTSMANAGEMENT_ADHOC", - "GUID": "8c4ce438-32a7-4ac5-91a6-e22ae08d9c8b", - "Service_Plan_Name": "RMS_S_ADHOC", - "Service_Plan_Id": "7a39d7dd-e456-4e09-842a-0204ee08187b", - "Service_Plans_Included_Friendly_Names": "Rights Management Adhoc" - }, - { - "Product_Display_Name": "Rights Management Service Basic Content Protection", - "String_Id": "RMSBASIC", - "GUID": "093e8d14-a334-43d9-93e3-30589a8b47d0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Rights Management Service Basic Content Protection", - "String_Id": "RMSBASIC", - "GUID": "093e8d14-a334-43d9-93e3-30589a8b47d0", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Sensor Data Intelligence Additional Machines Add-in for Dynamics 365 Supply Chain Management", - "String_Id": "DYN365_IOT_INTELLIGENCE_ADDL_MACHINES", - "GUID": "08e18479-4483-4f70-8f17-6f92156d8ea9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Sensor Data Intelligence Additional Machines Add-in for Dynamics 365 Supply Chain Management", - "String_Id": "DYN365_IOT_INTELLIGENCE_ADDL_MACHINES", - "GUID": "08e18479-4483-4f70-8f17-6f92156d8ea9", - "Service_Plan_Name": "D365_IOTFORSCM_ADDITIONAL", - "Service_Plan_Id": "a5f38206-2f48-4d83-9957-525f4e75e9c0", - "Service_Plans_Included_Friendly_Names": "IoT Intelligence Add-in Additional Machines" - }, - { - "Product_Display_Name": "Sensor Data Intelligence Scenario Add-in for Dynamics 365 Supply Chain Management", - "String_Id": "DYN365_IOT_INTELLIGENCE_SCENARIO", - "GUID": "9ea4bdef-a20b-4668-b4a7-73e1f7696e0a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Sensor Data Intelligence Scenario Add-in for Dynamics 365 Supply Chain Management", - "String_Id": "DYN365_IOT_INTELLIGENCE_SCENARIO", - "GUID": "9ea4bdef-a20b-4668-b4a7-73e1f7696e0a", - "Service_Plan_Name": "D365_IOTFORSCM", - "Service_Plan_Id": "83dd9619-c7d5-44da-9250-dc4ee79fff7e", - "Service_Plans_Included_Friendly_Names": "Iot Intelligence Add-in for D365 Supply Chain Management" - }, - { - "Product_Display_Name": "SharePoint Online (Plan 1)", - "String_Id": "SHAREPOINTSTANDARD", - "GUID": "1fc08a02-8b3d-43b9-831e-f76859e04e1a", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "SharePoint Online (Plan 2)", - "String_Id": "SHAREPOINTENTERPRISE", - "GUID": "a9732ec9-17d9-494c-a51c-d6b45b384dcb", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "SharePoint Syntex", - "String_Id": "Intelligent_Content_Services", - "GUID": "f61d4aba-134f-44e9-a2a0-f81a5adb26e4", - "Service_Plan_Name": "CDS_O365_E5_KM", - "Service_Plan_Id": "3069d530-e41b-421c-ad59-fb1001a23e11", - "Service_Plans_Included_Friendly_Names": "Common Data Service for SharePoint Syntex" - }, - { - "Product_Display_Name": "SharePoint Syntex", - "String_Id": "Intelligent_Content_Services", - "GUID": "f61d4aba-134f-44e9-a2a0-f81a5adb26e4", - "Service_Plan_Name": "Intelligent_Content_Services", - "Service_Plan_Id": "f00bd55e-1633-416e-97c0-03684e42bc42", - "Service_Plans_Included_Friendly_Names": "SharePoint Syntex" - }, - { - "Product_Display_Name": "SharePoint Syntex", - "String_Id": "Intelligent_Content_Services", - "GUID": "f61d4aba-134f-44e9-a2a0-f81a5adb26e4", - "Service_Plan_Name": "Intelligent_Content_Services_SPO_type", - "Service_Plan_Id": "fd2e7f90-1010-487e-a11b-d2b1ae9651fc", - "Service_Plans_Included_Friendly_Names": "SharePoint Syntex - SPO type" - }, - { - "Product_Display_Name": "Skype for Business Online (Plan 1)", - "String_Id": "MCOIMP", - "GUID": "b8b749f8-a4ef-4887-9539-c95b1eaa5db7", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "Skype for Business Online (Plan 2)", - "String_Id": "MCOSTANDARD", - "GUID": "d42c793f-6c78-4f43-92ca-e8f6a02b035f", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Skype for Business PSTN Domestic and International Calling", - "String_Id": "MCOPSTN2", - "GUID": "d3b4fe1f-9992-4930-8acb-ca6ec609365e", - "Service_Plan_Name": "MCOPSTN2", - "Service_Plan_Id": "5a10155d-f5c1-411a-a8ec-e99aae125390", - "Service_Plans_Included_Friendly_Names": "DOMESTIC AND INTERNATIONAL CALLING PLAN" - }, - { - "Product_Display_Name": "Skype for Business PSTN Domestic Calling", - "String_Id": "MCOPSTN1", - "GUID": "0dab259f-bf13-4952-b7f8-7db8f131b28d", - "Service_Plan_Name": "MCOPSTN1", - "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8", - "Service_Plans_Included_Friendly_Names": "DOMESTIC CALLING PLAN" - }, - { - "Product_Display_Name": "Skype for Business PSTN Domestic Calling (120 Minutes)", - "String_Id": "MCOPSTN5", - "GUID": "54a152dc-90de-4996-93d2-bc47e670fc06", - "Service_Plan_Name": "MCOPSTN5", - "Service_Plan_Id": "54a152dc-90de-4996-93d2-bc47e670fc06", - "Service_Plans_Included_Friendly_Names": "DOMESTIC CALLING PLAN" - }, - { - "Product_Display_Name": "Skype for Business PSTN Usage Calling Plan", - "String_Id": "MCOPSTNPP", - "GUID": "06b48c5f-01d9-4b18-9015-03b52040f51a", - "Service_Plan_Name": "MCOPSTN3", - "Service_Plan_Id": "6b340437-d6f9-4dc5-8cc2-99163f7f83d6", - "Service_Plans_Included_Friendly_Names": "MCOPSTN3" - }, - { - "Product_Display_Name": "Teams Phone with Calling Plan", - "String_Id": "MCOTEAMS_ESSENTIALS", - "GUID": "ae2343d1-0999-43f6-ae18-d816516f6e78", - "Service_Plan_Name": "MCOPSTN1", - "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan" - }, - { - "Product_Display_Name": "Teams Phone with Calling Plan", - "String_Id": "MCOTEAMS_ESSENTIALS", - "GUID": "ae2343d1-0999-43f6-ae18-d816516f6e78", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "MMR_P1", - "Service_Plan_Id": "bdaa59a3-74fd-4137-981a-31d4f84eb8a0", - "Service_Plans_Included_Friendly_Names": "Meeting Room Managed Services" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "TELSTRA Calling for O365", - "String_Id": "MCOPSTNEAU2", - "GUID": "de3312e1-c7b0-46e6-a7c3-a515ff90bc86", - "Service_Plan_Name": "MCOPSTNEAU", - "Service_Plan_Id": "7861360b-dc3b-4eba-a3fc-0d323a035746", - "Service_Plans_Included_Friendly_Names": "AUSTRALIA CALLING PLAN" - }, - { - "Product_Display_Name": "Universal Print", - "String_Id": "UNIVERSAL_PRINT", - "GUID": "9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "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": "Visio Plan 2 for Faculty", - "String_Id": "VISIOCLIENT_FACULTY", - "GUID": "bf95fd32-576a-4742-8d7a-6dc4940b9532", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Visio Plan 2 for Faculty", - "String_Id": "VISIOCLIENT_FACULTY", - "GUID": "bf95fd32-576a-4742-8d7a-6dc4940b9532", - "Service_Plan_Name": "ONEDRIVE_BASIC", - "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1", - "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Basic)" - }, - { - "Product_Display_Name": "Visio Plan 2 for Faculty", - "String_Id": "VISIOCLIENT_FACULTY", - "GUID": "bf95fd32-576a-4742-8d7a-6dc4940b9532", - "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "663a804f-1c30-4ff0-9915-9db84f0d1cea", - "Service_Plans_Included_Friendly_Names": "Visio Desktop App" - }, - { - "Product_Display_Name": "Visio Plan 2 for Faculty", - "String_Id": "VISIOCLIENT_FACULTY", - "GUID": "bf95fd32-576a-4742-8d7a-6dc4940b9532", - "Service_Plan_Name": "VISIOONLINE", - "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f", - "Service_Plans_Included_Friendly_Names": "Visio Web App" - }, - { - "Product_Display_Name": "Viva Topics", - "String_Id": "TOPIC_EXPERIENCES", - "GUID": "4016f256-b063-4864-816e-d818aad600c9", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX_TOPICEXP", - "Service_Plan_Id": "b74d57b2-58e9-484a-9731-aeccbba954f0", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index (Viva Topics)" - }, - { - "Product_Display_Name": "Viva Topics", - "String_Id": "TOPIC_EXPERIENCES", - "GUID": "4016f256-b063-4864-816e-d818aad600c9", - "Service_Plan_Name": "CORTEX", - "Service_Plan_Id": "c815c93d-0759-4bb8-b857-bc921a71be83", - "Service_Plans_Included_Friendly_Names": "Viva Topics" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)", - "String_Id": "WIN_ENT_E5", - "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e", - "Service_Plan_Name": "DATAVERSE_FOR_POWERAUTOMATE_DESKTOP", - "Service_Plan_Id": "59231cdf-b40d-4534-a93e-14d0cd31d27e", - "Service_Plans_Included_Friendly_Names": "Dataverse for PAD" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)", - "String_Id": "WIN_ENT_E5", - "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)", - "String_Id": "WIN_ENT_E5", - "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)", - "String_Id": "WIN_ENT_E5", - "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e", - "Service_Plan_Name": "POWERAUTOMATE_DESKTOP_FOR_WIN", - "Service_Plan_Id": "2d589a15-b171-4e61-9b5f-31d15eeb2872", - "Service_Plans_Included_Friendly_Names": "PAD for Windows" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)", - "String_Id": "WIN_ENT_E5", - "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)", - "String_Id": "WIN_ENT_E5", - "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)", - "String_Id": "WIN_ENT_E5", - "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A3 for faculty", - "String_Id": "WIN10_ENT_A3_FAC", - "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A3 for faculty", - "String_Id": "WIN10_ENT_A3_FAC", - "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A3 for faculty", - "String_Id": "WIN10_ENT_A3_FAC", - "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A3 for faculty", - "String_Id": "WIN10_ENT_A3_FAC", - "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A3 for students", - "String_Id": "WIN10_ENT_A3_STU", - "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A3 for students", - "String_Id": "WIN10_ENT_A3_STU", - "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A3 for students", - "String_Id": "WIN10_ENT_A3_STU", - "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A3 for students", - "String_Id": "WIN10_ENT_A3_STU", - "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A5 for faculty", - "String_Id": "WIN10_ENT_A5_FAC", - "GUID": "7b1a89a9-5eb9-4cf8-9467-20c943f1122c", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A5 for faculty", - "String_Id": "WIN10_ENT_A5_FAC", - "GUID": "7b1a89a9-5eb9-4cf8-9467-20c943f1122c", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A5 for faculty", - "String_Id": "WIN10_ENT_A5_FAC", - "GUID": "7b1a89a9-5eb9-4cf8-9467-20c943f1122c", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A5 for faculty", - "String_Id": "WIN10_ENT_A5_FAC", - "GUID": "7b1a89a9-5eb9-4cf8-9467-20c943f1122c", - "Service_Plan_Name": "Virtualization Rights for Windows 10", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise A5 for faculty", - "String_Id": "WIN10_ENT_A5_FAC", - "GUID": "7b1a89a9-5eb9-4cf8-9467-20c943f1122c", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3", - "String_Id": "WIN10_PRO_ENT_SUB", - "GUID": "cb10e6cd-9da4-4992-867b-67546b1db821", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "WINDOWS 10 ENTERPRISE" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3", - "String_Id": "WIN10_VDA_E3", - "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3", - "String_Id": "WIN10_VDA_E3", - "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "UNIVERSAL PRINT" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3", - "String_Id": "WIN10_VDA_E3", - "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "WINDOWS 10 ENTERPRISE (NEW)" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3", - "String_Id": "WIN10_VDA_E3", - "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "WINDOWS UPDATE FOR BUSINESS DEPLOYMENT SERVICE" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3", - "String_Id": "WIN10_VDA_E3", - "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5", - "String_Id": "WIN10_VDA_E5", - "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5", - "String_Id": "WIN10_VDA_E5", - "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender For Endpoint" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5", - "String_Id": "WIN10_VDA_E5", - "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5", - "String_Id": "WIN10_VDA_E5", - "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5", - "String_Id": "WIN10_VDA_E5", - "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5", - "String_Id": "WIN10_VDA_E5", - "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5 Commercial (GCC Compatible)", - "String_Id": "WINE5_GCC_COMPAT", - "GUID": "938fd547-d794-42a4-996c-1cc206619580", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5 Commercial (GCC Compatible)", - "String_Id": "WINE5_GCC_COMPAT", - "GUID": "938fd547-d794-42a4-996c-1cc206619580", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender For Endpoint" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E5 Commercial (GCC Compatible)", - "String_Id": "WINE5_GCC_COMPAT", - "GUID": "938fd547-d794-42a4-996c-1cc206619580", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA", - "String_Id": "E3_VDA_only", - "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA", - "String_Id": "E3_VDA_only", - "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA", - "String_Id": "E3_VDA_only", - "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550", - "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA", - "String_Id": "E3_VDA_only", - "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550", - "Service_Plan_Name": "Windows_Autopatch", - "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", - "Service_Plans_Included_Friendly_Names": "Windows Autopatch" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA", - "String_Id": "E3_VDA_only", - "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA", - "String_Id": "E3_VDA_only", - "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550", - "Service_Plan_Name": "DATAVERSE_FOR_POWERAUTOMATE_DESKTOP", - "Service_Plan_Id": "59231cdf-b40d-4534-a93e-14d0cd31d27e", - "Service_Plans_Included_Friendly_Names": "Dataverse for PAD" - }, - { - "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA", - "String_Id": "E3_VDA_only", - "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550", - "Service_Plan_Name": "POWERAUTOMATE_DESKTOP_FOR_WIN", - "Service_Plan_Id": "2d589a15-b171-4e61-9b5f-31d15eeb2872", - "Service_Plans_Included_Friendly_Names": "PAD for Windows" - }, - { - "Product_Display_Name": "Windows 365 Business 1 vCPU 2 GB 64 GB", - "String_Id": "CPC_B_1C_2RAM_64GB", - "GUID": "816eacd3-e1e3-46b3-83c8-1ffd37e053d9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 1 vCPU 2 GB 64 GB", - "String_Id": "CPC_B_1C_2RAM_64GB", - "GUID": "816eacd3-e1e3-46b3-83c8-1ffd37e053d9", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 1 vCPU 2 GB 64 GB", - "String_Id": "CPC_B_1C_2RAM_64GB", - "GUID": "816eacd3-e1e3-46b3-83c8-1ffd37e053d9", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 1 vCPU 2 GB 64 GB", - "String_Id": "CPC_B_1C_2RAM_64GB", - "GUID": "816eacd3-e1e3-46b3-83c8-1ffd37e053d9", - "Service_Plan_Name": "CPC_B_1C_2RAM_64GB", - "Service_Plan_Id": "3b98b912-1720-4a1e-9630-c9a41dbb61d8", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 1 vCPU 2 GB 64 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 128 GB", - "String_Id": "CPC_B_2C_4RAM_128GB", - "GUID": "135bee78-485b-4181-ad6e-40286e311850", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 128 GB", - "String_Id": "CPC_B_2C_4RAM_128GB", - "GUID": "135bee78-485b-4181-ad6e-40286e311850", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 128 GB", - "String_Id": "CPC_B_2C_4RAM_128GB", - "GUID": "135bee78-485b-4181-ad6e-40286e311850", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 128 GB", - "String_Id": "CPC_B_2C_4RAM_128GB", - "GUID": "135bee78-485b-4181-ad6e-40286e311850", - "Service_Plan_Name": "CPC_B_2C_4RAM_128GB", - "Service_Plan_Id": "1a13832e-cd79-497d-be76-24186f55c8b0", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU 4 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 256 GB", - "String_Id": "CPC_B_2C_4RAM_256GB", - "GUID": "805d57c3-a97d-4c12-a1d0-858ffe5015d0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 256 GB", - "String_Id": "CPC_B_2C_4RAM_256GB", - "GUID": "805d57c3-a97d-4c12-a1d0-858ffe5015d0", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 256 GB", - "String_Id": "CPC_B_2C_4RAM_256GB", - "GUID": "805d57c3-a97d-4c12-a1d0-858ffe5015d0", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 256 GB", - "String_Id": "CPC_B_2C_4RAM_256GB", - "GUID": "805d57c3-a97d-4c12-a1d0-858ffe5015d0", - "Service_Plan_Name": "CPC_B_2C_4RAM_256GB", - "Service_Plan_Id": "a0b1c075-51c9-4a42-b34c-308f3993bb7e", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU 4 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 64 GB", - "String_Id": "CPC_B_2C_4RAM_64GB", - "GUID": "42e6818f-8966-444b-b7ac-0027c83fa8b5", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 64 GB", - "String_Id": "CPC_B_2C_4RAM_64GB", - "GUID": "42e6818f-8966-444b-b7ac-0027c83fa8b5", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 64 GB", - "String_Id": "CPC_B_2C_4RAM_64GB", - "GUID": "42e6818f-8966-444b-b7ac-0027c83fa8b5", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 64 GB", - "String_Id": "CPC_B_2C_4RAM_64GB", - "GUID": "42e6818f-8966-444b-b7ac-0027c83fa8b5", - "Service_Plan_Name": "CPC_B_2C_4RAM_64GB", - "Service_Plan_Id": "a790cd6e-a153-4461-83c7-e127037830b6", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU 4 GB 64 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 128 GB", - "String_Id": "CPC_B_2C_8RAM_128GB", - "GUID": "71f21848-f89b-4aaa-a2dc-780c8e8aac5b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 128 GB", - "String_Id": "CPC_B_2C_8RAM_128GB", - "GUID": "71f21848-f89b-4aaa-a2dc-780c8e8aac5b", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 128 GB", - "String_Id": "CPC_B_2C_8RAM_128GB", - "GUID": "71f21848-f89b-4aaa-a2dc-780c8e8aac5b", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 128 GB", - "String_Id": "CPC_B_2C_8RAM_128GB", - "GUID": "71f21848-f89b-4aaa-a2dc-780c8e8aac5b", - "Service_Plan_Name": "CPC_SS_2", - "Service_Plan_Id": "9d2eed2c-b0c0-4a89-940c-bc303444a41b", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU, 8 GB, 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 256 GB", - "String_Id": "CPC_B_2C_8RAM_256GB", - "GUID": "750d9542-a2f8-41c7-8c81-311352173432", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 256 GB", - "String_Id": "CPC_B_2C_8RAM_256GB", - "GUID": "750d9542-a2f8-41c7-8c81-311352173432", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 256 GB", - "String_Id": "CPC_B_2C_8RAM_256GB", - "GUID": "750d9542-a2f8-41c7-8c81-311352173432", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 256 GB", - "String_Id": "CPC_B_2C_8RAM_256GB", - "GUID": "750d9542-a2f8-41c7-8c81-311352173432", - "Service_Plan_Name": "CPC_B_2C_8RAM_256GB", - "Service_Plan_Id": "1a3ef005-2ef6-434b-8be1-faa56c892854", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU 8 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB", - "String_Id": "CPC_B_4C_16RAM_128GB", - "GUID": "ad83ac17-4a5a-4ebb-adb2-079fb277e8b9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB", - "String_Id": "CPC_B_4C_16RAM_128GB", - "GUID": "ad83ac17-4a5a-4ebb-adb2-079fb277e8b9", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB", - "String_Id": "CPC_B_4C_16RAM_128GB", - "GUID": "ad83ac17-4a5a-4ebb-adb2-079fb277e8b9", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB", - "String_Id": "CPC_B_4C_16RAM_128GB", - "GUID": "ad83ac17-4a5a-4ebb-adb2-079fb277e8b9", - "Service_Plan_Name": "CPC_B_4C_16RAM_128GB", - "Service_Plan_Id": "1d4f75d3-a19b-49aa-88cb-f1ea1690b550", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 4 vCPU 16 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB (with Windows Hybrid Benefit)", - "String_Id": "CPC_B_4C_16RAM_128GB_WHB", - "GUID": "439ac253-bfbc-49c7-acc0-6b951407b5ef", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB (with Windows Hybrid Benefit)", - "String_Id": "CPC_B_4C_16RAM_128GB_WHB", - "GUID": "439ac253-bfbc-49c7-acc0-6b951407b5ef", - "Service_Plan_Name": "CPC_B_4C_16RAM_128GB", - "Service_Plan_Id": "1d4f75d3-a19b-49aa-88cb-f1ea1690b550", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 4 vCPU 16 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 256 GB", - "String_Id": "CPC_B_4C_16RAM_256GB", - "GUID": "b3891a9f-c7d9-463c-a2ec-0b2321bda6f9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 256 GB", - "String_Id": "CPC_B_4C_16RAM_256GB", - "GUID": "b3891a9f-c7d9-463c-a2ec-0b2321bda6f9", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 256 GB", - "String_Id": "CPC_B_4C_16RAM_256GB", - "GUID": "b3891a9f-c7d9-463c-a2ec-0b2321bda6f9", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 256 GB", - "String_Id": "CPC_B_4C_16RAM_256GB", - "GUID": "b3891a9f-c7d9-463c-a2ec-0b2321bda6f9", - "Service_Plan_Name": "CPC_B_4C_16RAM_256GB", - "Service_Plan_Id": "30f6e561-8805-41d0-80ce-f82698b72d7d", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 4 vCPU 16 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 512 GB", - "String_Id": "CPC_B_4C_16RAM_512GB", - "GUID": "1b3043ad-dfc6-427e-a2c0-5ca7a6c94a2b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 512 GB", - "String_Id": "CPC_B_4C_16RAM_512GB", - "GUID": "1b3043ad-dfc6-427e-a2c0-5ca7a6c94a2b", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 512 GB", - "String_Id": "CPC_B_4C_16RAM_512GB", - "GUID": "1b3043ad-dfc6-427e-a2c0-5ca7a6c94a2b", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 512 GB", - "String_Id": "CPC_B_4C_16RAM_512GB", - "GUID": "1b3043ad-dfc6-427e-a2c0-5ca7a6c94a2b", - "Service_Plan_Name": "CPC_B_4C_16RAM_512GB", - "Service_Plan_Id": "15499661-b229-4a1f-b0f9-bd5832ef7b3e", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 4 vCPU 16 GB 512 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 128 GB", - "String_Id": "CPC_B_8C_32RAM_128GB", - "GUID": "3cb45fab-ae53-4ff6-af40-24c1915ca07b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 128 GB", - "String_Id": "CPC_B_8C_32RAM_128GB", - "GUID": "3cb45fab-ae53-4ff6-af40-24c1915ca07b", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 128 GB", - "String_Id": "CPC_B_8C_32RAM_128GB", - "GUID": "3cb45fab-ae53-4ff6-af40-24c1915ca07b", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 128 GB", - "String_Id": "CPC_B_8C_32RAM_128GB", - "GUID": "3cb45fab-ae53-4ff6-af40-24c1915ca07b", - "Service_Plan_Name": "CPC_B_8C_32RAM_128GB", - "Service_Plan_Id": "648005fc-b330-4bd9-8af6-771f28958ac0", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 8 vCPU 32 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 256 GB", - "String_Id": "CPC_B_8C_32RAM_256GB", - "GUID": "fbc79df2-da01-4c17-8d88-17f8c9493d8f", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 256 GB", - "String_Id": "CPC_B_8C_32RAM_256GB", - "GUID": "fbc79df2-da01-4c17-8d88-17f8c9493d8f", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 256 GB", - "String_Id": "CPC_B_8C_32RAM_256GB", - "GUID": "fbc79df2-da01-4c17-8d88-17f8c9493d8f", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 256 GB", - "String_Id": "CPC_B_8C_32RAM_256GB", - "GUID": "fbc79df2-da01-4c17-8d88-17f8c9493d8f", - "Service_Plan_Name": "CPC_B_8C_32RAM_256GB", - "Service_Plan_Id": "d7a5113a-0276-4dc2-94f8-ca9f2c5ae078", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 8 vCPU 32 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 512 GB", - "String_Id": "CPC_B_8C_32RAM_512GB", - "GUID": "8ee402cd-e6a8-4b67-a411-54d1f37a2049", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 512 GB", - "String_Id": "CPC_B_8C_32RAM_512GB", - "GUID": "8ee402cd-e6a8-4b67-a411-54d1f37a2049", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 512 GB", - "String_Id": "CPC_B_8C_32RAM_512GB", - "GUID": "8ee402cd-e6a8-4b67-a411-54d1f37a2049", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 512 GB", - "String_Id": "CPC_B_8C_32RAM_512GB", - "GUID": "8ee402cd-e6a8-4b67-a411-54d1f37a2049", - "Service_Plan_Name": "CPC_B_8C_32RAM_512GB", - "Service_Plan_Id": "4229a0b4-7f34-4835-b068-6dc8d10be57c", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 8 vCPU 32 GB 512 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 1 vCPU 2 GB 64 GB", - "String_Id": "CPC_E_1C_2GB_64GB", - "GUID": "0c278af4-c9c1-45de-9f4b-cd929e747a2c", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 1 vCPU 2 GB 64 GB", - "String_Id": "CPC_E_1C_2GB_64GB", - "GUID": "0c278af4-c9c1-45de-9f4b-cd929e747a2c", - "Service_Plan_Name": "CPC_E_1C_2GB_64GB", - "Service_Plan_Id": "86d70dbb-d4c6-4662-ba17-3014204cbb28", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 1 vCPU 2 GB 64 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 64 GB", - "String_Id": "CPC_E_2C_4GB_64GB", - "GUID": "7bb14422-3b90-4389-a7be-f1b745fc037f", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 64 GB", - "String_Id": "CPC_E_2C_4GB_64GB", - "GUID": "7bb14422-3b90-4389-a7be-f1b745fc037f", - "Service_Plan_Name": "CPC_E_2C_4GB_64GB", - "Service_Plan_Id": "23a25099-1b2f-4e07-84bd-b84606109438", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 4 GB 64 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB", - "String_Id": "CPC_E_2C_4GB_128GB", - "GUID": "226ca751-f0a4-4232-9be5-73c02a92555e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB", - "String_Id": "CPC_E_2C_4GB_128GB", - "GUID": "226ca751-f0a4-4232-9be5-73c02a92555e", - "Service_Plan_Name": "CPC_1", - "Service_Plan_Id": "545e3611-3af8-49a5-9a0a-b7867968f4b0", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB (Preview)", - "String_Id": "CPC_LVL_1", - "GUID": "bce09f38-1800-4a51-8d50-5486380ba84a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB (Preview)", - "String_Id": "CPC_LVL_1", - "GUID": "bce09f38-1800-4a51-8d50-5486380ba84a", - "Service_Plan_Name": "CPC_1", - "Service_Plan_Id": "545e3611-3af8-49a5-9a0a-b7867968f4b0", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 256 GB", - "String_Id": "CPC_E_2C_4GB_256GB", - "GUID": "5265a84e-8def-4fa2-ab4b-5dc278df5025", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 256 GB", - "String_Id": "CPC_E_2C_4GB_256GB", - "GUID": "5265a84e-8def-4fa2-ab4b-5dc278df5025", - "Service_Plan_Name": "CPC_E_2C_4GB_256GB", - "Service_Plan_Id": "0d143570-9b92-4f57-adb5-e4efcd23b3bb", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 4 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB", - "String_Id": "CPC_E_2C_8GB_128GB", - "GUID": "e2aebe6c-897d-480f-9d62-fff1381581f7", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB", - "String_Id": "CPC_E_2C_8GB_128GB", - "GUID": "e2aebe6c-897d-480f-9d62-fff1381581f7", - "Service_Plan_Name": "CPC_2", - "Service_Plan_Id": "3efff3fe-528a-4fc5-b1ba-845802cc764f", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB (Preview)", - "String_Id": "CPC_LVL_2", - "GUID": "461cb62c-6db7-41aa-bf3c-ce78236cdb9e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB (Preview)", - "String_Id": "CPC_LVL_2", - "GUID": "461cb62c-6db7-41aa-bf3c-ce78236cdb9e", - "Service_Plan_Name": "CPC_2", - "Service_Plan_Id": "3efff3fe-528a-4fc5-b1ba-845802cc764f", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 256 GB", - "String_Id": "CPC_E_2C_8GB_256GB", - "GUID": "1c79494f-e170-431f-a409-428f6053fa35", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 256 GB", - "String_Id": "CPC_E_2C_8GB_256GB", - "GUID": "1c79494f-e170-431f-a409-428f6053fa35", - "Service_Plan_Name": "CPC_E_2C_8GB_256GB", - "Service_Plan_Id": "d3468c8c-3545-4f44-a32f-b465934d2498", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 8 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 128 GB", - "String_Id": "CPC_E_4C_16GB_128GB", - "GUID": "d201f153-d3b2-4057-be2f-fe25c8983e6f", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 128 GB", - "String_Id": "CPC_E_4C_16GB_128GB", - "GUID": "d201f153-d3b2-4057-be2f-fe25c8983e6f", - "Service_Plan_Name": "CPC_E_4C_16GB_128GB", - "Service_Plan_Id": "2de9c682-ca3f-4f2b-b360-dfc4775db133", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 4 vCPU 16 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB", - "String_Id": "CPC_E_4C_16GB_256GB", - "GUID": "96d2951e-cb42-4481-9d6d-cad3baac177e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB", - "String_Id": "CPC_E_4C_16GB_256GB", - "GUID": "96d2951e-cb42-4481-9d6d-cad3baac177e", - "Service_Plan_Name": "CPC_E_4C_16GB_256GB", - "Service_Plan_Id": "9ecf691d-8b82-46cb-b254-cd061b2c02fb", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB (Preview)", - "String_Id": "CPC_LVL_3", - "GUID": "bbb4bf6e-3e12-4343-84a1-54d160c00f40", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB (Preview)", - "String_Id": "CPC_LVL_3", - "GUID": "bbb4bf6e-3e12-4343-84a1-54d160c00f40", - "Service_Plan_Name": "CPC_E_4C_16GB_256GB", - "Service_Plan_Id": "9ecf691d-8b82-46cb-b254-cd061b2c02fb", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 512 GB", - "String_Id": "CPC_E_4C_16GB_512GB", - "GUID": "0da63026-e422-4390-89e8-b14520d7e699", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 512 GB", - "String_Id": "CPC_E_4C_16GB_512GB", - "GUID": "0da63026-e422-4390-89e8-b14520d7e699", - "Service_Plan_Name": "CPC_E_4C_16GB_512GB", - "Service_Plan_Id": "3bba9856-7cf2-4396-904a-00de74fba3a4", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 4 vCPU 16 GB 512 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 128 GB", - "String_Id": "CPC_E_8C_32GB_128GB", - "GUID": "c97d00e4-0c4c-4ec2-a016-9448c65de986", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 128 GB", - "String_Id": "CPC_E_8C_32GB_128GB", - "GUID": "c97d00e4-0c4c-4ec2-a016-9448c65de986", - "Service_Plan_Name": "CPC_E_8C_32GB_128GB", - "Service_Plan_Id": "2f3cdb12-bcde-4e37-8529-e9e09ec09e23", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 8 vCPU 32 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 256 GB", - "String_Id": "CPC_E_8C_32GB_256GB", - "GUID": "7818ca3e-73c8-4e49-bc34-1276a2d27918", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 256 GB", - "String_Id": "CPC_E_8C_32GB_256GB", - "GUID": "7818ca3e-73c8-4e49-bc34-1276a2d27918", - "Service_Plan_Name": "CPC_E_8C_32GB_256GB", - "Service_Plan_Id": "69dc175c-dcff-4757-8389-d19e76acb45d", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 8 vCPU 32 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 512 GB", - "String_Id": "CPC_E_8C_32GB_512GB", - "GUID": "9fb0ba5f-4825-4e84-b239-5167a3a5d4dc", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 512 GB", - "String_Id": "CPC_E_8C_32GB_512GB", - "GUID": "9fb0ba5f-4825-4e84-b239-5167a3a5d4dc", - "Service_Plan_Name": "CPC_E_8C_32GB_512GB", - "Service_Plan_Id": "0e837228-8250-4047-8a80-d4a34ba11658", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 8 vCPU 32 GB 512 GB" - }, - { - "Product_Display_Name": "Windows 365 Shared Use 2 vCPU 4 GB 64 GB", - "String_Id": "Windows_365_S_2vCPU_4GB_64GB", - "GUID": "1f9990ca-45d9-4c8d-8d04-a79241924ce1", - "Service_Plan_Name": "CPC_S_2C_4GB_64GB", - "Service_Plan_Id": "64981bdb-a5a6-4a22-869f-a9455366d5bc", - "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 2 vCPU 4 GB 64 GB" - }, - { - "Product_Display_Name": "Windows 365 Shared Use 2 vCPU 4 GB 128 GB", - "String_Id": "Windows_365_S_2vCPU_4GB_128GB", - "GUID": "90369797-7141-4e75-8f5e-d13f4b6092c1", - "Service_Plan_Name": "CPC_S_2C_4GB_128GB", - "Service_Plan_Id": "51855c77-4d2e-4736-be67-6dca605f2b57", - "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 2 vCPU 4 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Shared Use 2 vCPU 4 GB 256 GB", - "String_Id": "Windows_365_S_2vCPU_4GB_256GB", - "GUID": "8fe96593-34d3-49bb-aeee-fb794fed0800", - "Service_Plan_Name": "CPC_S_2C_4GB_256GB", - "Service_Plan_Id": "aa8fbe7b-695c-4c05-8d45-d1dddf6f7616", - "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 2 vCPU 4 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Shared Use 2 vCPU 8 GB 128 GB", - "String_Id": "Windows_365_S_2vCPU_8GB_128GB", - "GUID": "2d21fc84-b918-491e-ad84-e24d61ccec94", - "Service_Plan_Name": "CPC_S_2C_8GB_128GB", - "Service_Plan_Id": "057efbfe-a95d-4263-acb0-12b4a31fed8d", - "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 2 vCPU 8 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Shared Use 2 vCPU 8 GB 256 GB", - "String_Id": "Windows_365_S_2vCPU_8GB_256GB", - "GUID": "2eaa4058-403e-4434-9da9-ea693f5d96dc", - "Service_Plan_Name": "CPC_S_2C_8GB_256GB", - "Service_Plan_Id": "50ef7026-6174-40ba-bff7-f0e4fcddbf65", - "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 2 vCPU 8 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Shared Use 4 vCPU 16 GB 128 GB", - "String_Id": "Windows_365_S_4vCPU_16GB_128GB", - "GUID": "1bf40e76-4065-4530-ac37-f1513f362f50", - "Service_Plan_Name": "CPC_S_4C_16GB_128GB", - "Service_Plan_Id": "dd3801e2-4aa1-4b16-a44b-243e55497584", - "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 4 vCPU 16 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Shared Use 4 vCPU 16 GB 256 GB", - "String_Id": "Windows_365_S_4vCPU_16GB_256GB", - "GUID": "a9d1e0df-df6f-48df-9386-76a832119cca", - "Service_Plan_Name": "CPC_S_4C_16GB_256GB", - "Service_Plan_Id": "2d1d344e-d10c-41bb-953b-b3a47521dca0", - "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 4 vCPU 16 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Shared Use 4 vCPU 16 GB 512 GB", - "String_Id": "Windows_365_S_4vCPU_16GB_512GB", - "GUID": "469af4da-121c-4529-8c85-9467bbebaa4b", - "Service_Plan_Name": "CPC_S_4C_16GB_512GB", - "Service_Plan_Id": "48b82071-99a5-4214-b493-406a637bd68d", - "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 4 vCPU 16 GB 512 GB" - }, - { - "Product_Display_Name": "Windows 365 Shared Use 8 vCPU 32 GB 128 GB", - "String_Id": "Windows_365_S_8vCPU_32GB_128GB", - "GUID": "f319c63a-61a9-42b7-b786-5695bc7edbaf", - "Service_Plan_Name": "CPC_S_8C_32GB_128GB", - "Service_Plan_Id": "e4dee41f-a5c5-457d-b7d3-c309986fdbb2", - "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 8 vCPU 32 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Shared Use 8 vCPU 32 GB 256 GB", - "String_Id": "Windows_365_S_8vCPU_32GB_256GB", - "GUID": "fb019e88-26a0-4218-bd61-7767d109ac26", - "Service_Plan_Name": "CPC_S_8C_32GB_256GB", - "Service_Plan_Id": "1e2321a0-f81c-4d43-a0d5-9895125706b8", - "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 8 vCPU 32 GB 256 GB" - }, - { - "Product_Display_Name": "Windows 365 Shared Use 8 vCPU 32 GB 512 GB", - "String_Id": "Windows_365_S_8vCPU_32GB_512GB", - "GUID": "f4dc1de8-8c94-4d37-af8a-1fca6675590a", - "Service_Plan_Name": "CPC_S_8C_32GB_512GB", - "Service_Plan_Id": "fa0b4021-0f60-4d95-bf68-95036285282a", - "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 8 vCPU 32 GB 512 GB" - }, - { - "Product_Display_Name": "Windows Store for Business", - "String_Id": "WINDOWS_STORE", - "GUID": "6470687e-a428-4b7a-bef2-8a291ad947c9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Windows Store for Business", - "String_Id": "WINDOWS_STORE", - "GUID": "6470687e-a428-4b7a-bef2-8a291ad947c9", - "Service_Plan_Name": "WINDOWS_STORE", - "Service_Plan_Id": "a420f25f-a7b3-4ff5-a9d0-5d58f73b537d", - "Service_Plans_Included_Friendly_Names": "WINDOWS STORE SERVICE" - }, - { - "Product_Display_Name": "Windows Store for Business EDU Faculty", - "String_Id": "WSFB_EDU_FACULTY", - "GUID": "c7e9d9e6-1981-4bf3-bb50-a5bdfaa06fb2", - "Service_Plan_Name": "Windows Store for Business EDU Store_faculty", - "Service_Plan_Id": "aaa2cd24-5519-450f-a1a0-160750710ca1", - "Service_Plans_Included_Friendly_Names": "Windows Store for Business EDU Store_faculty" - }, - { - "Product_Display_Name": "Microsoft Workplace Analytics", - "String_Id": "WORKPLACE_ANALYTICS", - "GUID": "3d957427-ecdc-4df2-aacd-01cc9d519da8", - "Service_Plan_Name": "WORKPLACE_ANALYTICS", - "Service_Plan_Id": "f477b0f0-3bb1-4890-940c-40fcee6ce05f", - "Service_Plans_Included_Friendly_Names": "Microsoft Workplace Analytics" - }, - { - "Product_Display_Name": "Microsoft Workplace Analytics", - "String_Id": "WORKPLACE_ANALYTICS", - "GUID": "3d957427-ecdc-4df2-aacd-01cc9d519da8", - "Service_Plan_Name": "WORKPLACE_ANALYTICS_INSIGHTS_BACKEND", - "Service_Plan_Id": "ff7b261f-d98b-415b-827c-42a3fdf015af", - "Service_Plans_Included_Friendly_Names": "Microsoft Workplace Analytics Insights Backend" - }, - { - "Product_Display_Name": "Microsoft Workplace Analytics", - "String_Id": "WORKPLACE_ANALYTICS", - "GUID": "3d957427-ecdc-4df2-aacd-01cc9d519da8", - "Service_Plan_Name": "WORKPLACE_ANALYTICS_INSIGHTS_USER", - "Service_Plan_Id": "b622badb-1b45-48d5-920f-4b27a2c0996c", - "Service_Plans_Included_Friendly_Names": "Microsoft Workplace Analytics Insights User" - } + { + "Product_Display_Name": "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": "App governance add-on to Microsoft Defender for Cloud Apps", + "String_Id": "Microsoft_Cloud_App_Security_App_Governance_Add_On", + "GUID": "9706eed9-966f-4f1b-94f6-bb2b4af99a5b", + "Service_Plan_Name": "M365_AUDIT_PLATFORM", + "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" + }, + { + "Product_Display_Name": "App governance add-on to Microsoft Defender for Cloud Apps", + "String_Id": "Microsoft_Cloud_App_Security_App_Governance_Add_On", + "GUID": "9706eed9-966f-4f1b-94f6-bb2b4af99a5b", + "Service_Plan_Name": "MICROSOFT_APPLICATION_PROTECTION_AND_GOVERNANCE_A", + "Service_Plan_Id": "5f3b1ded-75c0-4b31-8e6e-9b077eaadfd5", + "Service_Plans_Included_Friendly_Names": "Microsoft Application Protection and Governance (A)" + }, + { + "Product_Display_Name": "App governance add-on to Microsoft Defender for Cloud Apps", + "String_Id": "Microsoft_Cloud_App_Security_App_Governance_Add_On", + "GUID": "9706eed9-966f-4f1b-94f6-bb2b4af99a5b", + "Service_Plan_Name": "MICROSOFT_APPLICATION_PROTECTION_AND_GOVERNANCE_D", + "Service_Plan_Id": "2e6ffd72-52d1-4541-8f6c-938f9a8d4cdc", + "Service_Plans_Included_Friendly_Names": "Microsoft Application Protection and Governance (D)" + }, + { + "Product_Display_Name": "Career Coach for faculty", + "String_Id": "CAREERCOACH_FACULTY", + "GUID": "95de1760-7682-406d-98c9-52ef14e51e2b", + "Service_Plan_Name": "CAREERCOACH_EDU", + "Service_Plan_Id": "80f0ae31-0dfb-425c-b3fc-36f40170eb35", + "Service_Plans_Included_Friendly_Names": "Career Coach" + }, + { + "Product_Display_Name": "Career Coach for students", + "String_Id": "CAREERCOACH_STUDENTS", + "GUID": "01c8007a-57d2-41e0-a3c3-0b46ead16cc4", + "Service_Plan_Name": "CAREERCOACH_EDU", + "Service_Plan_Id": "80f0ae31-0dfb-425c-b3fc-36f40170eb35", + "Service_Plans_Included_Friendly_Names": "Career Coach" + }, + { + "Product_Display_Name": "Clipchamp Premium", + "String_Id": "Clipchamp_Premium", + "GUID": "0fe440c5-f2bf-442b-a4f4-9a7af77a200b", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Clipchamp Premium", + "String_Id": "Clipchamp_Premium", + "GUID": "0fe440c5-f2bf-442b-a4f4-9a7af77a200b", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Clipchamp Premium", + "String_Id": "Clipchamp_Premium", + "GUID": "0fe440c5-f2bf-442b-a4f4-9a7af77a200b", + "Service_Plan_Name": "CLIPCHAMP_PREMIUM", + "Service_Plan_Id": "430b908f-78e1-4812-b045-cf83320e7d5d", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp Premium" + }, + { + "Product_Display_Name": "Clipchamp Premium", + "String_Id": "Clipchamp_Premium", + "GUID": "0fe440c5-f2bf-442b-a4f4-9a7af77a200b", + "Service_Plan_Name": "ONEDRIVECLIPCHAMP", + "Service_Plan_Id": "f7e5b77d-f293-410a-bae8-f941f19fe680", + "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Clipchamp)" + }, + { + "Product_Display_Name": "Clipchamp Standard", + "String_Id": "Clipchamp_Standard", + "GUID": "481f3bc2-5756-4b28-9375-5c8c86b99e6b", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Clipchamp Standard", + "String_Id": "Clipchamp_Standard", + "GUID": "481f3bc2-5756-4b28-9375-5c8c86b99e6b", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Clipchamp Standard", + "String_Id": "Clipchamp_Standard", + "GUID": "481f3bc2-5756-4b28-9375-5c8c86b99e6b", + "Service_Plan_Name": "ONEDRIVECLIPCHAMP", + "Service_Plan_Id": "f7e5b77d-f293-410a-bae8-f941f19fe680", + "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Clipchamp)" + }, + { + "Product_Display_Name": "Microsoft 365 Audio Conferencing", + "String_Id": "MCOMEETADV", + "GUID": "0c266dff-15dd-4b49-8397-2bb16070ed52", + "Service_Plan_Name": "MCOMEETADV", + "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" + }, + { + "Product_Display_Name": "Microsoft Entra ID Basic", + "String_Id": "AAD_BASIC", + "GUID": "2b9c8e7c-319c-43a2-a2a0-48c5c6161de7", + "Service_Plan_Name": "AAD_BASIC", + "Service_Plan_Id": "c4da7f8a-5ee2-4c99-a7e1-87d2df57f6fe", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra BASIC" + }, + { + "Product_Display_Name": "Microsoft Entra ID P1", + "String_Id": "AAD_PREMIUM", + "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft Entra ID P1", + "String_Id": "AAD_PREMIUM", + "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "CLOUD APP SECURITY DISCOVERY" + }, + { + "Product_Display_Name": "Microsoft Entra ID P1", + "String_Id": "AAD_PREMIUM", + "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" + }, + { + "Product_Display_Name": "Microsoft Entra ID P1", + "String_Id": "AAD_PREMIUM", + "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION" + }, + { + "Product_Display_Name": "Microsoft Entra ID P1 for Faculty", + "String_Id": "AAD_PREMIUM_FACULTY", + "GUID": "30fc3c36-5a95-4956-ba57-c09c2a600bb9", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Entra ID P1 for Faculty", + "String_Id": "AAD_PREMIUM_FACULTY", + "GUID": "30fc3c36-5a95-4956-ba57-c09c2a600bb9", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft Entra ID P1 for Faculty", + "String_Id": "AAD_PREMIUM_FACULTY", + "GUID": "30fc3c36-5a95-4956-ba57-c09c2a600bb9", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft Entra ID P1 for Faculty", + "String_Id": "AAD_PREMIUM_FACULTY", + "GUID": "30fc3c36-5a95-4956-ba57-c09c2a600bb9", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" + }, + { + "Product_Display_Name": "Microsoft Entra ID P1_USGOV_GCCHIGH", + "String_Id": "AAD_PREMIUM_USGOV_GCCHIGH ", + "GUID": "de597797-22fb-4d65-a9fe-b7dbe8893914", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Entra ID P1_USGOV_GCCHIGH", + "String_Id": "AAD_PREMIUM_USGOV_GCCHIGH ", + "GUID": "de597797-22fb-4d65-a9fe-b7dbe8893914", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft Entra ID P1_USGOV_GCCHIGH", + "String_Id": "AAD_PREMIUM_USGOV_GCCHIGH ", + "GUID": "de597797-22fb-4d65-a9fe-b7dbe8893914", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" + }, + { + "Product_Display_Name": "Microsoft Entra ID P1_USGOV_GCCHIGH", + "String_Id": "AAD_PREMIUM_USGOV_GCCHIGH ", + "GUID": "de597797-22fb-4d65-a9fe-b7dbe8893914", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft Entra ID P2", + "String_Id": "AAD_PREMIUM_P2", + "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft Entra ID P2", + "String_Id": "AAD_PREMIUM_P2", + "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" + }, + { + "Product_Display_Name": "Microsoft Entra ID P2", + "String_Id": "AAD_PREMIUM_P2", + "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "CLOUD APP SECURITY DISCOVERY" + }, + { + "Product_Display_Name": "Microsoft Entra ID P2", + "String_Id": "AAD_PREMIUM_P2", + "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" + }, + { + "Product_Display_Name": "Microsoft Entra ID P2", + "String_Id": "AAD_PREMIUM_P2", + "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION" + }, + { + "Product_Display_Name": "Azure Information Protection Plan 1", + "String_Id": "RIGHTSMANAGEMENT", + "GUID": "c52ea49f-fe5d-4e95-93ba-1de91d380f89", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1" + }, + { + "Product_Display_Name": "Azure Information Protection Plan 1", + "String_Id": "RIGHTSMANAGEMENT", + "GUID": "c52ea49f-fe5d-4e95-93ba-1de91d380f89", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra RIGHTS" + }, + { + "Product_Display_Name": "Azure Information Protection Plan 1", + "String_Id": "RIGHTSMANAGEMENT_CE", + "GUID": "a0e6a48f-b056-4037-af70-b9ac53504551", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Azure Information Protection Plan 1", + "String_Id": "RIGHTSMANAGEMENT_CE", + "GUID": "a0e6a48f-b056-4037-af70-b9ac53504551", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Azure Information Protection Plan 1", + "String_Id": "RIGHTSMANAGEMENT_CE", + "GUID": "a0e6a48f-b056-4037-af70-b9ac53504551", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Azure Information Protection Premium P1_USGOV_GCCHIGH", + "String_Id": "RIGHTSMANAGEMENT_CE_USGOV_GCCHIGH", + "GUID": "c57afa2a-d468-46c4-9a90-f86cb1b3c54a", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Azure Information Protection Premium P1_USGOV_GCCHIGH", + "String_Id": "RIGHTSMANAGEMENT_CE_USGOV_GCCHIGH", + "GUID": "c57afa2a-d468-46c4-9a90-f86cb1b3c54a", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Azure Information Protection Premium P1_USGOV_GCCHIGH", + "String_Id": "RIGHTSMANAGEMENT_CE_USGOV_GCCHIGH", + "GUID": "c57afa2a-d468-46c4-9a90-f86cb1b3c54a", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Business Apps (free)", + "String_Id": "SMB_APPS", + "GUID": "90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96", + "Service_Plan_Name": "DYN365BC_MS_INVOICING", + "Service_Plan_Id": "39b5c996-467e-4e60-bd62-46066f572726", + "Service_Plans_Included_Friendly_Names": "Microsoft Invoicing" + }, + { + "Product_Display_Name": "Business Apps (free)", + "String_Id": "SMB_APPS", + "GUID": "90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Common Data Service for Apps File Capacity", + "String_Id": "CDS_FILE_CAPACITY", + "GUID": "631d5fb1-a668-4c2a-9427-8830665a742e", + "Service_Plan_Name": "CDS_FILE_CAPACITY", + "Service_Plan_Id": "dd12a3a8-caec-44f8-b4fb-2f1a864b51e3", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Apps File Capacity" + }, + { + "Product_Display_Name": "Common Data Service for Apps File Capacity", + "String_Id": "CDS_FILE_CAPACITY", + "GUID": "631d5fb1-a668-4c2a-9427-8830665a742e", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Common Data Service Database Capacity", + "String_Id": "CDS_DB_CAPACITY", + "GUID": "e612d426-6bc3-4181-9658-91aa906b0ac0", + "Service_Plan_Name": "CDS_DB_CAPACITY", + "Service_Plan_Id": "360bcc37-0c11-4264-8eed-9fa7a3297c9b", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Apps Database Capacity" + }, + { + "Product_Display_Name": "Common Data Service Database Capacity", + "String_Id": "CDS_DB_CAPACITY", + "GUID": "e612d426-6bc3-4181-9658-91aa906b0ac0", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Common Data Service Database Capacity for Government", + "String_Id": "CDS_DB_CAPACITY_GOV", + "GUID": "eddf428b-da0e-4115-accf-b29eb0b83965", + "Service_Plan_Name": "CDS_DB_CAPACITY_GOV", + "Service_Plan_Id": "1ddffef6-4f69-455e-89c7-d5d72105f915", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Apps Database Capacity for Government" + }, + { + "Product_Display_Name": "Common Data Service Database Capacity for Government", + "String_Id": "CDS_DB_CAPACITY_GOV", + "GUID": "eddf428b-da0e-4115-accf-b29eb0b83965", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Common Data Service Log Capacity", + "String_Id": "CDS_LOG_CAPACITY", + "GUID": "448b063f-9cc6-42fc-a0e6-40e08724a395", + "Service_Plan_Name": "CDS_LOG_CAPACITY", + "Service_Plan_Id": "dc48f5c5-e87d-43d6-b884-7ac4a59e7ee9", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Apps Log Capacity" + }, + { + "Product_Display_Name": "Common Data Service Log Capacity", + "String_Id": "CDS_LOG_CAPACITY", + "GUID": "448b063f-9cc6-42fc-a0e6-40e08724a395", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Communications Credits", + "String_Id": "MCOPSTNC", + "GUID": "47794cd0-f0e5-45c5-9033-2eb6b5fc84e0", + "Service_Plan_Name": "MCOPSTNC", + "Service_Plan_Id": "505e180f-f7e0-4b65-91d4-00d670bbd18c", + "Service_Plans_Included_Friendly_Names": "COMMUNICATIONS CREDITS" + }, + { + "Product_Display_Name": "Compliance Manager Premium Assessment Add-On", + "String_Id": "CMPA_addon", + "GUID": "8a5fbbed-8b8c-41e5-907e-c50c471340fd", + "Service_Plan_Name": "COMPLIANCE_MANAGER_PREMIUM_ASSESSMENT_ADDON", + "Service_Plan_Id": "3a117d30-cfac-4f00-84ac-54f8b6a18d78", + "Service_Plans_Included_Friendly_Names": "Compliance Manager Premium Assessment Add-On" + }, + { + "Product_Display_Name": "Compliance Manager Premium Assessment Add-On for GCC", + "String_Id": "CMPA_addon_GCC", + "GUID": "a9d7ef53-9bea-4a2a-9650-fa7df58fe094", + "Service_Plan_Name": "COMPLIANCE_MANAGER_PREMIUM_ASSESSMENT_ADDON", + "Service_Plan_Id": "3a117d30-cfac-4f00-84ac-54f8b6a18d78", + "Service_Plans_Included_Friendly_Names": "Compliance Manager Premium Assessment Add-On" + }, + { + "Product_Display_Name": "Defender Threat Intelligence", + "String_Id": "Defender_Threat_Intelligence", + "GUID": "a9c51c15-ffad-4c66-88c0-8771455c832d", + "Service_Plan_Name": "THREAT_INTELLIGENCE_APP", + "Service_Plan_Id": "fbdb91e6-7bfd-4a1f-8f7a-d27f4ef39702", + "Service_Plans_Included_Friendly_Names": "Defender Threat Intelligence" + }, + { + "Product_Display_Name": "Digital Messaging for GCC Test SKU", + "String_Id": "MESSAGING_GCC_TEST", + "GUID": "064a9707-9dba-4cc1-9902-38bfcfda6328", + "Service_Plan_Name": "DYN365_CS_CHAT_FPA_GOV", + "Service_Plan_Id": "b9f7ce72-67ff-4695-a9d9-5ff620232024", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Chat Application Integration for Government" + }, + { + "Product_Display_Name": "Digital Messaging for GCC Test SKU", + "String_Id": "MESSAGING_GCC_TEST", + "GUID": "064a9707-9dba-4cc1-9902-38bfcfda6328", + "Service_Plan_Name": "DYN365_CS_MESSAGING_TPS_GOV", + "Service_Plan_Id": "9d37aa61-3cc3-457c-8b54-e6f3853aa6b6", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging add-on for Government" + }, + { + "Product_Display_Name": "Digital Messaging for GCC Test SKU", + "String_Id": "MESSAGING_GCC_TEST", + "GUID": "064a9707-9dba-4cc1-9902-38bfcfda6328", + "Service_Plan_Name": "DYN365_CS_MESSAGING_GOV", + "Service_Plan_Id": "e304c3c3-f86c-4200-b174-1ade48805b22", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging application integration for Government" + }, + { + "Product_Display_Name": "Digital Messaging for GCC Test SKU", + "String_Id": "MESSAGING_GCC_TEST", + "GUID": "064a9707-9dba-4cc1-9902-38bfcfda6328", + "Service_Plan_Name": "DYN365_CS_CHAT_GOV", + "Service_Plan_Id": "ffb878a5-3184-472b-800b-65eadc63d764", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Chat for Government" + }, + { + "Product_Display_Name": "Digital Messaging for GCC Test SKU", + "String_Id": "MESSAGING_GCC_TEST", + "GUID": "064a9707-9dba-4cc1-9902-38bfcfda6328", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_CHAT_GOV", + "Service_Plan_Id": "9023fe69-f9e0-4c1e-bfde-654954469162", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Chat for Gov" + }, + { + "Product_Display_Name": "Digital Messaging for GCC Test SKU", + "String_Id": "MESSAGING_GCC_TEST", + "GUID": "064a9707-9dba-4cc1-9902-38bfcfda6328", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_MESSAGING_GOV", + "Service_Plan_Id": "e501d49b-1176-4816-aece-2563c0d995db", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Digital Messaging for Gov" + }, + { + "Product_Display_Name": "Dynamics 365 - Additional Database Storage (Qualified Offer)", + "String_Id": "CRMSTORAGE", + "GUID": "328dc228-00bc-48c6-8b09-1fbc8bc3435d", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 - Additional Database Storage (Qualified Offer)", + "String_Id": "CRMSTORAGE", + "GUID": "328dc228-00bc-48c6-8b09-1fbc8bc3435d", + "Service_Plan_Name": "CRMSTORAGE", + "Service_Plan_Id": "77866113-0f3e-4e6e-9666-b1e25c6f99b0", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Storage Add-On" + }, + { + "Product_Display_Name": "Dynamics 365 - Additional Production Instance (Qualified Offer)", + "String_Id": "CRMINSTANCE", + "GUID": "9d776713-14cb-4697-a21d-9a52455c738a", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 - Additional Production Instance (Qualified Offer)", + "String_Id": "CRMINSTANCE", + "GUID": "9d776713-14cb-4697-a21d-9a52455c738a", + "Service_Plan_Name": "CRMINSTANCE", + "Service_Plan_Id": "eeea837a-c885-4167-b3d5-ddde30cbd85f", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Instance" + }, + { + "Product_Display_Name": "Dynamics 365 - Additional Non-Production Instance (Qualified Offer)", + "String_Id": "CRMTESTINSTANCE", + "GUID": "e06abcc2-7ec5-4a79-b08b-d9c282376f72", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 - Additional Non-Production Instance (Qualified Offer)", + "String_Id": "CRMTESTINSTANCE", + "GUID": "e06abcc2-7ec5-4a79-b08b-d9c282376f72", + "Service_Plan_Name": "CRMTESTINSTANCE", + "Service_Plan_Id": "a98b7619-66c7-4885-bdfc-1d9c8c3d279f", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Additional Test Instance" + }, + { + "Product_Display_Name": "Dynamics 365 AI for Market Insights (Preview)", + "String_Id": "SOCIAL_ENGAGEMENT_APP_USER", + "GUID": "c6df1e30-1c9f-427f-907c-3d913474a1c7", + "Service_Plan_Name": "SOCIAL_ENGAGEMENT_APP_USER", + "Service_Plan_Id": "339f4def-5ad8-4430-8d12-da5fd4c769a7", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Market Insights - Free" + }, + { + "Product_Display_Name": "Dynamics 365 AI for Market Insights (Preview)", + "String_Id": "SOCIAL_ENGAGEMENT_APP_USER", + "GUID": "c6df1e30-1c9f-427f-907c-3d913474a1c7", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Asset Management Addl Assets", + "String_Id": "DYN365_ASSETMANAGEMENT", + "GUID": "673afb9d-d85b-40c2-914e-7bf46cd5cd75", + "Service_Plan_Name": "D365_AssetforSCM", + "Service_Plan_Id": "90467813-5b40-40d4-835c-abd48009b1d9", + "Service_Plans_Included_Friendly_Names": "Asset Maintenance Add-in" + }, + { + "Product_Display_Name": "Dynamics 365 Asset Management Addl Assets", + "String_Id": "DYN365_ASSETMANAGEMENT", + "GUID": "673afb9d-d85b-40c2-914e-7bf46cd5cd75", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Business Central Additional Environment Addon", + "String_Id": "DYN365_BUSCENTRAL_ADD_ENV_ADDON", + "GUID": "a58f5506-b382-44d4-bfab-225b2fbf8390", + "Service_Plan_Name": "DYN365_BUSCENTRAL_ENVIRONMENT", + "Service_Plan_Id": "d397d6c6-9664-4502-b71c-66f39c400ca4", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Additional Environment Addon" + }, + { + "Product_Display_Name": "Dynamics 365 Business Central Database Capacity", + "String_Id": "DYN365_BUSCENTRAL_DB_CAPACITY", + "GUID": "7d0d4f9a-2686-4cb8-814c-eff3fdab6d74", + "Service_Plan_Name": "DYN365_BUSCENTRAL_DB_CAPACITY", + "Service_Plan_Id": "ae6b27b3-fe31-4e77-ae06-ec5fabbc103a", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Database Capacity" + }, + { + "Product_Display_Name": "Dynamics 365 Business Central Database Capacity", + "String_Id": "DYN365_BUSCENTRAL_DB_CAPACITY", + "GUID": "7d0d4f9a-2686-4cb8-814c-eff3fdab6d74", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Business Central Essentials", + "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL", + "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa", + "Service_Plan_Name": "DYN365_FINANCIALS_BUSINESS", + "Service_Plan_Id": "920656a2-7dd8-4c83-97b6-a356414dbd36", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Business Central Essentials" + }, + { + "Product_Display_Name": "Dynamics 365 Business Central Essentials", + "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL", + "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Business Central Essentials", + "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL", + "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa", + "Service_Plan_Name": "FLOW_DYN_APPS", + "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", + "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Business Central Essentials", + "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL", + "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa", + "Service_Plan_Name": "POWERAPPS_DYN_APPS", + "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", + "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Business Central External Accountant", + "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU", + "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4", + "Service_Plan_Name": "DYN365_FINANCIALS_ACCOUNTANT", + "Service_Plan_Id": "170991d7-b98e-41c5-83d4-db2052e1795f", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central External Accountant" + }, + { + "Product_Display_Name": "Dynamics 365 Business Central External Accountant", + "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU", + "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Business Central External Accountant", + "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU", + "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4", + "Service_Plan_Name": "FLOW_DYN_APPS", + "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", + "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Business Central External Accountant", + "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU", + "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4", + "Service_Plan_Name": "POWERAPPS_DYN_APPS", + "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", + "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Business Central for IWs", + "String_Id": "PROJECT_MADEIRA_PREVIEW_IW_SKU", + "GUID": "6a4a1628-9b9a-424d-bed5-4118f0ede3fd", + "Service_Plan_Name": "PROJECT_MADEIRA_PREVIEW_IW", + "Service_Plan_Id": "3f2afeed-6fb5-4bf9-998f-f2912133aead", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central for IWs" + }, + { + "Product_Display_Name": "Dynamics 365 Business Central for IWs", + "String_Id": "PROJECT_MADEIRA_PREVIEW_IW_SKU", + "GUID": "6a4a1628-9b9a-424d-bed5-4118f0ede3fd", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Business Central Premium", + "String_Id": "DYN365_BUSCENTRAL_PREMIUM", + "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029", + "Service_Plan_Name": "DYN365_BUSCENTRAL_PREMIUM", + "Service_Plan_Id": "8e9002c0-a1d8-4465-b952-817d2948e6e2", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Premium" + }, + { + "Product_Display_Name": "Dynamics 365 Business Central Premium", + "String_Id": "DYN365_BUSCENTRAL_PREMIUM", + "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Business Central Premium", + "String_Id": "DYN365_BUSCENTRAL_PREMIUM", + "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029", + "Service_Plan_Name": "FLOW_DYN_APPS", + "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", + "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Business Central Premium", + "String_Id": "DYN365_BUSCENTRAL_PREMIUM", + "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029", + "Service_Plan_Name": "POWERAPPS_DYN_APPS", + "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", + "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Business Central Team Members", + "String_Id": "DYN365_BUSCENTRAL_TEAM_MEMBER", + "GUID": "2e3c4023-80f6-4711-aa5d-29e0ecb46835", + "Service_Plan_Name": "DYN365_FINANCIALS_TEAM_MEMBERS", + "Service_Plan_Id": "d9a6391b-8970-4976-bd94-5f205007c8d8", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Team Members" + }, + { + "Product_Display_Name": "Dynamics 365 Business Central Team Members", + "String_Id": "DYN365_BUSCENTRAL_TEAM_MEMBER", + "GUID": "2e3c4023-80f6-4711-aa5d-29e0ecb46835", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Business Central Team Members", + "String_Id": "DYN365_BUSCENTRAL_TEAM_MEMBER", + "GUID": "2e3c4023-80f6-4711-aa5d-29e0ecb46835", + "Service_Plan_Name": "POWERAPPS_DYN_TEAM", + "Service_Plan_Id": "52e619e2-2730-439a-b0d3-d09ab7e8b705", + "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Business Central Team Members", + "String_Id": "DYN365_BUSCENTRAL_TEAM_MEMBER", + "GUID": "2e3c4023-80f6-4711-aa5d-29e0ecb46835", + "Service_Plan_Name": "FLOW_DYN_TEAM", + "Service_Plan_Id": "1ec58c70-f69c-486a-8109-4b87ce86e449", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Commerce Trial", + "String_Id": "DYN365_RETAIL_TRIAL", + "GUID": "1508ad2d-5802-44e6-bfe8-6fb65de63d28", + "Service_Plan_Name": "DYN365_RETAIL_TRIAL", + "Service_Plan_Id": "874d6da5-2a67-45c1-8635-96e8b3e300ea", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Retail Trial" + }, + { + "Product_Display_Name": "Dynamics 365 Commerce Trial", + "String_Id": "DYN365_RETAIL_TRIAL", + "GUID": "1508ad2d-5802-44e6-bfe8-6fb65de63d28", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", + "String_Id": "DYN365_ENTERPRISE_PLAN1", + "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", + "Service_Plan_Name": "DYN365_ENTERPRISE_P1", + "Service_Plan_Id": "d56f3deb-50d8-465a-bedb-f079817ccac1", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Engagement Plan" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", + "String_Id": "DYN365_ENTERPRISE_PLAN1", + "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", + "Service_Plan_Name": "D365_CSI_EMBED_CE", + "Service_Plan_Id": "1412cdc1-d593-4ad1-9050-40c30ad0b023", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Insights for CE Plan" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", + "String_Id": "DYN365_ENTERPRISE_PLAN1", + "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", + "Service_Plan_Name": "DYN365_ENTERPRISE_FIELD_SERVICE", + "Service_Plan_Id": "8c66ef8a-177f-4c0d-853c-d4f219331d09", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Field Service" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", + "String_Id": "DYN365_ENTERPRISE_PLAN1", + "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", + "Service_Plan_Name": "D365_ProjectOperationsCDS", + "Service_Plan_Id": "18fa3aba-b085-4105-87d7-55617b8585e6", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations CDS" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", + "String_Id": "DYN365_ENTERPRISE_PLAN1", + "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", + "Service_Plan_Name": "Forms_Pro_CE", + "Service_Plan_Id": "97f29a83-1a20-44ff-bf48-5e4ad11f3e51", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Engagement Plan" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", + "String_Id": "DYN365_ENTERPRISE_PLAN1", + "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", + "Service_Plan_Name": "Power_Pages_Internal_User", + "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", + "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", + "String_Id": "DYN365_ENTERPRISE_PLAN1", + "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", + "Service_Plan_Name": "NBENTERPRISE", + "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", + "Service_Plans_Included_Friendly_Names": "Retired - Microsoft Social Engagement" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", + "String_Id": "DYN365_ENTERPRISE_PLAN1", + "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", + "Service_Plan_Name": "D365_ProjectOperations", + "Service_Plan_Id": "69f07c66-bee4-4222-b051-195095efee5b", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", + "String_Id": "DYN365_ENTERPRISE_PLAN1", + "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", + "Service_Plan_Name": "DYN365_CDS_GUIDES", + "Service_Plan_Id": "1315ade1-0410-450d-b8e3-8050e6da320f", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", + "String_Id": "DYN365_ENTERPRISE_PLAN1", + "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", + "Service_Plan_Name": "GUIDES", + "Service_Plan_Id": "0b2c029c-dca0-454a-a336-887285d6ef07", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Guides" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", + "String_Id": "DYN365_ENTERPRISE_PLAN1", + "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", + "Service_Plan_Name": "MICROSOFT_REMOTE_ASSIST", + "Service_Plan_Id": "4f4c7800-298a-4e22-8867-96b17850d4dd", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Remote Assist" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", + "String_Id": "DYN365_ENTERPRISE_PLAN1", + "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", + "Service_Plan_Name": "POWERAPPS_GUIDES", + "Service_Plan_Id": "816971f4-37c5-424a-b12b-b56881f402e7", + "Service_Plans_Included_Friendly_Names": "Power Apps for Guides" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", + "String_Id": "DYN365_ENTERPRISE_PLAN1", + "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", + "String_Id": "DYN365_ENTERPRISE_PLAN1", + "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", + "String_Id": "DYN365_ENTERPRISE_PLAN1", + "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", + "String_Id": "DYN365_ENTERPRISE_PLAN1", + "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", + "Service_Plan_Name": "PROJECT_FOR_PROJECT_OPERATIONS", + "Service_Plan_Id": "0a05d977-a21a-45b2-91ce-61c240dbafa2", + "Service_Plans_Included_Friendly_Names": "Project for Project Operations" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", + "String_Id": "DYN365_ENTERPRISE_PLAN1", + "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", + "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", + "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", + "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", + "String_Id": "DYN365_ENTERPRISE_PLAN1", + "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", + "Service_Plan_Name": "SHAREPOINT_PROJECT", + "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", + "Service_Plans_Included_Friendly_Names": "Project Online Service" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", + "String_Id": "DYN365_ENTERPRISE_PLAN1", + "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", + "String_Id": "DYN365_ENTERPRISE_PLAN1", + "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", + "Service_Plan_Name": "POWERAPPS_DYN_P2", + "Service_Plan_Id": "0b03f40b-c404-40c3-8651-2aceb74365fa", + "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", + "String_Id": "DYN365_ENTERPRISE_PLAN1", + "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", + "Service_Plan_Name": "FLOW_DYN_APPS", + "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", + "String_Id": "DYN365_ENTERPRISE_PLAN1", + "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", + "Service_Plan_Name": "FLOW_DYN_P2", + "Service_Plan_Id": "b650d915-9886-424b-a08d-633cede56f57", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Insights Attach", + "String_Id": "DYN365_CUSTOMER_INSIGHTS_ATTACH", + "GUID": "a3d0cd86-8068-4071-ad40-4dc5b5908c4b", + "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS_BASE", + "Service_Plan_Id": "d04ca659-b119-4a92-b8fc-3ede584a9d65", + "Service_Plans_Included_Friendly_Names": "Dataverse for Customer Insights�BASE" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Insights Attach", + "String_Id": "DYN365_CUSTOMER_INSIGHTS_ATTACH", + "GUID": "a3d0cd86-8068-4071-ad40-4dc5b5908c4b", + "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS", + "Service_Plan_Id": "ca00cff5-2568-4d03-bb6c-a653a8f360ca", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Customer Insights" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Insights Attach", + "String_Id": "DYN365_CUSTOMER_INSIGHTS_ATTACH", + "GUID": "a3d0cd86-8068-4071-ad40-4dc5b5908c4b", + "Service_Plan_Name": "DYN365_CUSTOMER_INSIGHTS_BASE", + "Service_Plan_Id": "ee85d528-c4b4-4a99-9b07-fb9a1365dc93", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Insights" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Insights Attach", + "String_Id": "DYN365_CUSTOMER_INSIGHTS_ATTACH", + "GUID": "a3d0cd86-8068-4071-ad40-4dc5b5908c4b", + "Service_Plan_Name": "Customer_Voice_Customer_Insights", + "Service_Plan_Id": "46c5ea0a-2343-49d9-ae4f-1c268b232d53", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Insights App" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Insights Attach", + "String_Id": "DYN365_CUSTOMER_INSIGHTS_ATTACH", + "GUID": "a3d0cd86-8068-4071-ad40-4dc5b5908c4b", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Digital Messaging add-on for Government", + "String_Id": "DYN365_CS_MESSAGING_GOV", + "GUID": "336dfe1f-3b33-4ab4-b395-cba8f614976d", + "Service_Plan_Name": "DYN365_CS_MESSAGING_TPS_GOV", + "Service_Plan_Id": "9d37aa61-3cc3-457c-8b54-e6f3853aa6b6", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging add-on for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Digital Messaging add-on for Government", + "String_Id": "DYN365_CS_MESSAGING_GOV", + "GUID": "336dfe1f-3b33-4ab4-b395-cba8f614976d", + "Service_Plan_Name": "DYN365_CS_MESSAGING_GOV", + "Service_Plan_Id": "e304c3c3-f86c-4200-b174-1ade48805b22", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging application integration for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Digital Messaging add-on for Government", + "String_Id": "DYN365_CS_MESSAGING_GOV", + "GUID": "336dfe1f-3b33-4ab4-b395-cba8f614976d", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_MESSAGING_GOV", + "Service_Plan_Id": "e501d49b-1176-4816-aece-2563c0d995db", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Digital Messaging for Gov" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Digital Messaging add-on for Government", + "String_Id": "DYN365_CS_MESSAGING_GOV", + "GUID": "336dfe1f-3b33-4ab4-b395-cba8f614976d", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Digital Messaging and Voice Add-in for Government", + "String_Id": "DYN365_CS_OC_MESSAGING_VOICE_GOV", + "GUID": "6ec542c9-2a86-4d4a-8a52-d233eb58ef0a", + "Service_Plan_Name": "DYN365_CS_MESSAGING_TPS_GOV", + "Service_Plan_Id": "9d37aa61-3cc3-457c-8b54-e6f3853aa6b6", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging add-on for Government" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Digital Messaging and Voice Add-in for Government", + "String_Id": "DYN365_CS_OC_MESSAGING_VOICE_GOV", + "GUID": "6ec542c9-2a86-4d4a-8a52-d233eb58ef0a", + "Service_Plan_Name": "DYN365_CS_VOICE_GOV", + "Service_Plan_Id": "411b0c93-8f89-455e-a663-c0a3effd12c3", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Voice Add-in for Government" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Digital Messaging and Voice Add-in for Government", + "String_Id": "DYN365_CS_OC_MESSAGING_VOICE_GOV", + "GUID": "6ec542c9-2a86-4d4a-8a52-d233eb58ef0a", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_VOICE_GOV", + "Service_Plan_Id": "cad9c719-36e0-43c7-9506-6886f272d4f0", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Customer Service Voice for Government" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Digital Messaging and Voice Add-in for Government", + "String_Id": "DYN365_CS_OC_MESSAGING_VOICE_GOV", + "GUID": "6ec542c9-2a86-4d4a-8a52-d233eb58ef0a", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_MESSAGING_GOV", + "Service_Plan_Id": "e501d49b-1176-4816-aece-2563c0d995db", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Digital Messaging for Gov" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Digital Messaging and Voice Add-in for Government", + "String_Id": "DYN365_CS_OC_MESSAGING_VOICE_GOV", + "GUID": "6ec542c9-2a86-4d4a-8a52-d233eb58ef0a", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Digital Messaging and Voice Add-in for Government for Test", + "String_Id": "DYN365_CS_OC_MESSAGING_VOICE_GOV_TEST", + "GUID": "ea9ba490-50b8-474e-8671-9fec0f1268f3", + "Service_Plan_Name": "DYN365_CS_MESSAGING_TPS_GOV", + "Service_Plan_Id": "9d37aa61-3cc3-457c-8b54-e6f3853aa6b6", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging add-on for Government" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Digital Messaging and Voice Add-in for Government for Test", + "String_Id": "DYN365_CS_OC_MESSAGING_VOICE_GOV_TEST", + "GUID": "ea9ba490-50b8-474e-8671-9fec0f1268f3", + "Service_Plan_Name": "DYN365_CS_VOICE_GOV", + "Service_Plan_Id": "411b0c93-8f89-455e-a663-c0a3effd12c3", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Voice Add-in for Government" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Digital Messaging and Voice Add-in for Government for Test", + "String_Id": "DYN365_CS_OC_MESSAGING_VOICE_GOV_TEST", + "GUID": "ea9ba490-50b8-474e-8671-9fec0f1268f3", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_VOICE_GOV", + "Service_Plan_Id": "cad9c719-36e0-43c7-9506-6886f272d4f0", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Customer Service Voice for Government" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Digital Messaging and Voice Add-in for Government for Test", + "String_Id": "DYN365_CS_OC_MESSAGING_VOICE_GOV_TEST", + "GUID": "ea9ba490-50b8-474e-8671-9fec0f1268f3", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_MESSAGING_GOV", + "Service_Plan_Id": "e501d49b-1176-4816-aece-2563c0d995db", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Digital Messaging for Gov" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Digital Messaging and Voice Add-in for Government for Test", + "String_Id": "DYN365_CS_OC_MESSAGING_VOICE_GOV_TEST", + "GUID": "ea9ba490-50b8-474e-8671-9fec0f1268f3", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Chat for Government", + "String_Id": "DYN365_CS_CHAT_GOV", + "GUID": "1b399f66-be2a-479c-a79d-84a43a46f79e", + "Service_Plan_Name": "DYN365_CS_CHAT_FPA_GOV", + "Service_Plan_Id": "b9f7ce72-67ff-4695-a9d9-5ff620232024", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Chat Application Integration for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Chat for Government", + "String_Id": "DYN365_CS_CHAT_GOV", + "GUID": "1b399f66-be2a-479c-a79d-84a43a46f79e", + "Service_Plan_Name": "DYN365_CS_CHAT_GOV", + "Service_Plan_Id": "ffb878a5-3184-472b-800b-65eadc63d764", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Chat for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Chat for Government", + "String_Id": "DYN365_CS_CHAT_GOV", + "GUID": "1b399f66-be2a-479c-a79d-84a43a46f79e", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_CHAT_GOV", + "Service_Plan_Id": "9023fe69-f9e0-4c1e-bfde-654954469162", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Chat for Gov" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Chat for Government", + "String_Id": "DYN365_CS_CHAT_GOV", + "GUID": "1b399f66-be2a-479c-a79d-84a43a46f79e", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", + "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", + "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", + "Service_Plan_Name": "CUSTOMER_VOICE_DYN365_VIRAL_TRIAL", + "Service_Plan_Id": "dbe07046-af68-4861-a20d-1c8cbda9194f", + "Service_Plans_Included_Friendly_Names": "Customer Voice for Dynamics 365 vTrial" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", + "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", + "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", + "Service_Plan_Name": "DYN365_CS_MESSAGING_TPS", + "Service_Plan_Id": "47c2b191-a5fb-4129-b690-00c474d2f623", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging add-on" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", + "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", + "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", + "Service_Plan_Name": "D365_CSI_EMBED_CSEnterprise", + "Service_Plan_Id": "5b1e5982-0e88-47bb-a95e-ae6085eda612", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Insights for CS Enterprise" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", + "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", + "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", + "Service_Plan_Name": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", + "Service_Plan_Id": "99340b49-fb81-4b1e-976b-8f2ae8e9394f", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", + "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", + "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", + "Service_Plan_Name": "DYN365_CS_VOICE", + "Service_Plan_Id": "f6ec6dfa-2402-468d-a455-89be11116d43", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Voice Add-in" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", + "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", + "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_VOICE", + "Service_Plan_Id": "a3dce1be-e9ca-453a-9483-e69a5b46ce98", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Customer Service Voice" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", + "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", + "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_MESSAGING", + "Service_Plan_Id": "2d2f174c-c3cc-4abe-9ce8-4dd86f469ab1", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Digital Messaging" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", + "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", + "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", + "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", + "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", + "Service_Plan_Name": "POWERAPPS_DYN_APPS", + "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", + "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin", + "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial", + "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a", + "Service_Plan_Name": "FLOW_DYN_APPS", + "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Insights Standalone", + "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE", + "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2", + "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS_BASE", + "Service_Plan_Id": "d04ca659-b119-4a92-b8fc-3ede584a9d65", + "Service_Plans_Included_Friendly_Names": "Dataverse for Cust Insights�BASE" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Insights Standalone", + "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE", + "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2", + "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS", + "Service_Plan_Id": "ca00cff5-2568-4d03-bb6c-a653a8f360ca", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Customer Insights" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Insights Standalone", + "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE", + "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2", + "Service_Plan_Name": "DYN365_CUSTOMER_INSIGHTS_BASE", + "Service_Plan_Id": "ee85d528-c4b4-4a99-9b07-fb9a1365dc93", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Insights" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Insights Standalone", + "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE", + "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2", + "Service_Plan_Name": "DYN365_CUSTOMER_INSIGHTS_ENGAGEMENT_INSIGHTS_BASE", + "Service_Plan_Id": "b3c26516-3b8d-492f-a5a3-64d70ad3f8d0", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Insights Engagement Insights" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Insights Standalone", + "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE", + "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2", + "Service_Plan_Name": "Customer_Voice_Customer_Insights", + "Service_Plan_Id": "46c5ea0a-2343-49d9-ae4f-1c268b232d53", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Insights App" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Insights Standalone", + "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE", + "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Insights vTrial", + "String_Id": "DYN365_CUSTOMER_INSIGHTS_VIRAL", + "GUID": "036c2481-aa8a-47cd-ab43-324f0c157c2d", + "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS_TRIAL", + "Service_Plan_Id": "94e5cbf6-d843-4ee8-a2ec-8b15eb52019e", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Customer Insights Trial" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Insights vTrial", + "String_Id": "DYN365_CUSTOMER_INSIGHTS_VIRAL", + "GUID": "036c2481-aa8a-47cd-ab43-324f0c157c2d", + "Service_Plan_Name": "DYN365_CUSTOMER_INSIGHTS_ENGAGEMENT_INSIGHTS_BASE_TRIAL", + "Service_Plan_Id": "e2bdea63-235e-44c6-9f5e-5b0e783f07dd", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Insights Engagement Insights Viral" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Insights vTrial", + "String_Id": "DYN365_CUSTOMER_INSIGHTS_VIRAL", + "GUID": "036c2481-aa8a-47cd-ab43-324f0c157c2d", + "Service_Plan_Name": "DYN365_CUSTOMER_INSIGHTS_VIRAL", + "Service_Plan_Id": "ed8e8769-94c5-4132-a3e7-7543b713d51f", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Insights Viral Plan" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Insights vTrial", + "String_Id": "DYN365_CUSTOMER_INSIGHTS_VIRAL", + "GUID": "036c2481-aa8a-47cd-ab43-324f0c157c2d", + "Service_Plan_Name": "Forms_Pro_Customer_Insights", + "Service_Plan_Id": "fe581650-cf61-4a09-8814-4bd77eca9cb5", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Insights" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Attach to Qualifying Dynamics 365 Base Offer A", + "String_Id": "D365_CUSTOMER_SERVICE_ENT_ATTACH", + "GUID": "eb18b715-ea9d-4290-9994-2ebf4b5042d2", + "Service_Plan_Name": "D365_CUSTOMER_SERVICE_ENT_ATTACH", + "Service_Plan_Id": "61a2665f-1873-488c-9199-c3d0bc213fdf", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Enterprise Attach" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Attach to Qualifying Dynamics 365 Base Offer A", + "String_Id": "D365_CUSTOMER_SERVICE_ENT_ATTACH", + "GUID": "eb18b715-ea9d-4290-9994-2ebf4b5042d2", + "Service_Plan_Name": "Power_Pages_Internal_User", + "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", + "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Attach to Qualifying Dynamics 365 Base Offer A", + "String_Id": "D365_CUSTOMER_SERVICE_ENT_ATTACH", + "GUID": "eb18b715-ea9d-4290-9994-2ebf4b5042d2", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise for Government", + "String_Id": "D365_ENTERPRISE_CUSTOMER_SERVICE_GOV", + "GUID": "65758a5f-2e16-43b3-a8cb-296cd8f69e09", + "Service_Plan_Name": "DYN365_ENTERPRISE_CUSTOMER_SERVICE_GOV", + "Service_Plan_Id": "dc6643d9-1e72-4dce-9f64-1d6eac1f1c5a", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise for Government", + "String_Id": "D365_ENTERPRISE_CUSTOMER_SERVICE_GOV", + "GUID": "65758a5f-2e16-43b3-a8cb-296cd8f69e09", + "Service_Plan_Name": "Forms_Pro_Service_GCC", + "Service_Plan_Id": "bb681a9b-58f5-42ee-9926-674325be8aaa", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Service Enterprise for GCC" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise for Government", + "String_Id": "D365_ENTERPRISE_CUSTOMER_SERVICE_GOV", + "GUID": "65758a5f-2e16-43b3-a8cb-296cd8f69e09", + "Service_Plan_Name": "Power_Pages_Internal_User", + "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", + "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise for Government", + "String_Id": "D365_ENTERPRISE_CUSTOMER_SERVICE_GOV", + "GUID": "65758a5f-2e16-43b3-a8cb-296cd8f69e09", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise for Government", + "String_Id": "D365_ENTERPRISE_CUSTOMER_SERVICE_GOV", + "GUID": "65758a5f-2e16-43b3-a8cb-296cd8f69e09", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise for Government", + "String_Id": "D365_ENTERPRISE_CUSTOMER_SERVICE_GOV", + "GUID": "65758a5f-2e16-43b3-a8cb-296cd8f69e09", + "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", + "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise for Government", + "String_Id": "D365_ENTERPRISE_CUSTOMER_SERVICE_GOV", + "GUID": "65758a5f-2e16-43b3-a8cb-296cd8f69e09", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise for Government", + "String_Id": "D365_ENTERPRISE_CUSTOMER_SERVICE_GOV", + "GUID": "65758a5f-2e16-43b3-a8cb-296cd8f69e09", + "Service_Plan_Name": "FLOW_DYN_APPS_GOV", + "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise for Government", + "String_Id": "D365_ENTERPRISE_CUSTOMER_SERVICE_GOV", + "GUID": "65758a5f-2e16-43b3-a8cb-296cd8f69e09", + "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", + "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", + "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", + "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", + "GUID": "1e615a51-59db-4807-9957-aa83c3657351", + "Service_Plan_Name": "CUSTOMER_VOICE_DYN365_VIRAL_TRIAL", + "Service_Plan_Id": "dbe07046-af68-4861-a20d-1c8cbda9194f", + "Service_Plans_Included_Friendly_Names": "Customer Voice for Dynamics 365 vTrial" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", + "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", + "GUID": "1e615a51-59db-4807-9957-aa83c3657351", + "Service_Plan_Name": "CCIBOTS_PRIVPREV_VIRAL", + "Service_Plan_Id": "ce312d15-8fdf-44c0-9974-a25a177125ee", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Customer Service Virtual Agents Viral" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", + "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", + "GUID": "1e615a51-59db-4807-9957-aa83c3657351", + "Service_Plan_Name": "DYN365_CS_MESSAGING_VIRAL_TRIAL", + "Service_Plan_Id": "3bf52bdf-5226-4a97-829e-5cca9b3f3392", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging vTrial" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", + "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", + "GUID": "1e615a51-59db-4807-9957-aa83c3657351", + "Service_Plan_Name": "DYN365_CS_ENTERPRISE_VIRAL_TRIAL", + "Service_Plan_Id": "94fb67d3-465f-4d1f-a50a-952da079a564", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Enterprise vTrial" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", + "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", + "GUID": "1e615a51-59db-4807-9957-aa83c3657351", + "Service_Plan_Name": "DYNB365_CSI_VIRAL_TRIAL", + "Service_Plan_Id": "33f1466e-63a6-464c-bf6a-d1787928a56a", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Insights vTrial" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", + "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", + "GUID": "1e615a51-59db-4807-9957-aa83c3657351", + "Service_Plan_Name": "DYN365_CS_VOICE_VIRAL_TRIAL", + "Service_Plan_Id": "3de81e39-4ce1-47f7-a77f-8473d4eb6d7c", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Voice vTrial" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", + "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", + "GUID": "1e615a51-59db-4807-9957-aa83c3657351", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", + "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", + "GUID": "1e615a51-59db-4807-9957-aa83c3657351", + "Service_Plan_Name": "POWER_APPS_DYN365_VIRAL_TRIAL", + "Service_Plan_Id": "54b37829-818e-4e3c-a08a-3ea66ab9b45d", + "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365 vTrial" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial", + "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial", + "GUID": "1e615a51-59db-4807-9957-aa83c3657351", + "Service_Plan_Name": "POWER_AUTOMATE_DYN365_VIRAL_TRIAL", + "Service_Plan_Id": "81d4ecb8-0481-42fb-8868-51536c5aceeb", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 vTrial" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Insights Trial", + "String_Id": "DYN365_AI_SERVICE_INSIGHTS", + "GUID": "61e6bd70-fbdb-4deb-82ea-912842f39431", + "Service_Plan_Name": "DYN365_AI_SERVICE_INSIGHTS", + "Service_Plan_Id": "4ade5aa6-5959-4d2c-bf0a-f4c9e2cc00f2", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Customer Service Trial" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Voice Trial", + "String_Id": "FORMS_PRO", + "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", + "Service_Plan_Name": "DYN365_CDS_FORMS_PRO", + "Service_Plan_Id": "363430d1-e3f7-43bc-b07b-767b6bb95e4b", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Voice Trial", + "String_Id": "FORMS_PRO", + "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", + "Service_Plan_Name": "FORMS_PRO", + "Service_Plan_Id": "17efdd9f-c22c-4ad8-b48e-3b1f3ee1dc9a", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Voice" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Voice Trial", + "String_Id": "FORMS_PRO", + "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Voice Trial", + "String_Id": "FORMS_PRO", + "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", + "Service_Plan_Name": "FORMS_PLAN_E5", + "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Voice Trial", + "String_Id": "FORMS_PRO", + "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", + "Service_Plan_Name": "FLOW_FORMS_PRO", + "Service_Plan_Id": "57a0746c-87b8-4405-9397-df365a9db793", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 Customer Voice" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Professional", + "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", + "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", + "Service_Plan_Name": "DYN365_CUSTOMER_SERVICE_PRO", + "Service_Plan_Id": "6929f657-b31b-4947-b4ce-5066c3214f54", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Pro" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Professional", + "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", + "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Professional", + "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", + "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the web" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Professional", + "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", + "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", + "Service_Plan_Name": "POWERAPPS_CUSTOMER_SERVICE_PRO", + "Service_Plan_Id": "c507b04c-a905-4940-ada6-918891e6d3ad", + "Service_Plans_Included_Friendly_Names": "Power Apps for Customer Service Pro" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Professional", + "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", + "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", + "Service_Plan_Name": "FLOW_CUSTOMER_SERVICE_PRO", + "Service_Plan_Id": "0368fc9c-3721-437f-8b7d-3d0f888cdefc", + "Service_Plans_Included_Friendly_Names": "Power Automate for Customer Service Pro" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Professional", + "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", + "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", + "Service_Plan_Name": "PROJECT_ESSENTIALS", + "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Service Professional", + "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", + "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Voice", + "String_Id": "DYN365_CUSTOMER_VOICE_BASE", + "GUID": "359ea3e6-8130-4a57-9f8f-ad897a0342f1", + "Service_Plan_Name": "Customer_Voice_Base", + "Service_Plan_Id": "296820fe-dce5-40f4-a4f2-e14b8feef383", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Voice Base Plan" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Voice", + "String_Id": "DYN365_CUSTOMER_VOICE_BASE", + "GUID": "359ea3e6-8130-4a57-9f8f-ad897a0342f1", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses", + "String_Id": "Forms_Pro_AddOn", + "GUID": "446a86f8-a0cb-4095-83b3-d100eb050e3d", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses", + "String_Id": "Forms_Pro_AddOn", + "GUID": "446a86f8-a0cb-4095-83b3-d100eb050e3d", + "Service_Plan_Name": "Forms_Pro_AddOn", + "Service_Plan_Id": "90a816f6-de5f-49fd-963c-df490d73b7b5", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice Add-on" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses", + "String_Id": "DYN365_CUSTOMER_VOICE_ADDON", + "GUID": "65f71586-ade3-4ce1-afc0-1b452eaf3782", + "Service_Plan_Name": "CUSTOMER_VOICE_ADDON", + "Service_Plan_Id": "e6e35e2d-2e7f-4e71-bc6f-2f40ed062f5d", + "Service_Plans_Included_Friendly_Names": "Dynamics Customer Voice Add-On" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses", + "String_Id": "DYN365_CUSTOMER_VOICE_ADDON", + "GUID": "65f71586-ade3-4ce1-afc0-1b452eaf3782", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Voice USL", + "String_Id": "Forms_Pro_USL", + "GUID": "e2ae107b-a571-426f-9367-6d4c8f1390ba", + "Service_Plan_Name": "CDS_FORM_PRO_USL", + "Service_Plan_Id": "e9830cfd-e65d-49dc-84fb-7d56b9aa2c89", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Voice USL", + "String_Id": "Forms_Pro_USL", + "GUID": "e2ae107b-a571-426f-9367-6d4c8f1390ba", + "Service_Plan_Name": "Forms_Pro_USL", + "Service_Plan_Id": "3ca0766a-643e-4304-af20-37f02726339b", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice USL" + }, + { + "Product_Display_Name": "Dynamics 365 Customer Voice USL", + "String_Id": "Forms_Pro_USL", + "GUID": "e2ae107b-a571-426f-9367-6d4c8f1390ba", + "Service_Plan_Name": "FLOW_FORMS_PRO", + "Service_Plan_Id": "57a0746c-87b8-4405-9397-df365a9db793", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 Customer Voice" + }, + { + "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Database Storage for Government", + "String_Id": "CRMSTORAGE_GCC", + "GUID": "4aed5dd6-eb9c-4143-8f14-368d70287121", + "Service_Plan_Name": "CRMSTORAGE_GCC", + "Service_Plan_Id": "62edd427-6067-4274-93c4-29afdeb30707", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Storage Add-On" + }, + { + "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Database Storage for Government", + "String_Id": "CRMSTORAGE_GCC", + "GUID": "4aed5dd6-eb9c-4143-8f14-368d70287121", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Portal for Government", + "String_Id": "CRM_ONLINE_PORTAL_GCC", + "GUID": "cb9bc974-a47b-4123-998d-a383390168cc", + "Service_Plan_Name": "CRM_ONLINE_PORTAL_GCC", + "Service_Plan_Id": "eac6b45b-aa89-429f-a37b-c8ce00e8367e", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online - Portal Add-On" + }, + { + "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Portal for Government", + "String_Id": "CRM_ONLINE_PORTAL_GCC", + "GUID": "cb9bc974-a47b-4123-998d-a383390168cc", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Portal for Government", + "String_Id": "CRM_ONLINE_PORTAL_NOPREREQ", + "GUID": "67f58b51-af53-4344-9663-9a2beb1d8a8e", + "Service_Plan_Name": "CRM_ONLINE_PORTAL_GCC", + "Service_Plan_Id": "eac6b45b-aa89-429f-a37b-c8ce00e8367e", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online - Portal Add-On" + }, + { + "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Portal for Government", + "String_Id": "CRM_ONLINE_PORTAL_NOPREREQ", + "GUID": "67f58b51-af53-4344-9663-9a2beb1d8a8e", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Portal (Qualified Offer)", + "String_Id": "CRM_ONLINE_PORTAL", + "GUID": "a4bfb28e-becc-41b0-a454-ac680dc258d3", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Portal (Qualified Offer)", + "String_Id": "CRM_ONLINE_PORTAL", + "GUID": "a4bfb28e-becc-41b0-a454-ac680dc258d3", + "Service_Plan_Name": "CRM_ONLINE_PORTAL", + "Service_Plan_Id": "1d4e9cb1-708d-449c-9f71-943aa8ed1d6a", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online - Portal Add-On" + }, + { + "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Non-Production Instance for Government", + "String_Id": "CRMTESTINSTANCE_GCC", + "GUID": "1d2756cb-2147-4b05-b4d5-f013c022dcb9", + "Service_Plan_Name": "CRMTESTINSTANCE_GCC", + "Service_Plan_Id": "6d99eb83-7b5f-4947-8e99-cc12f1adb399", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Additional Non-production Instance" + }, + { + "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Non-Production Instance for Government", + "String_Id": "CRMTESTINSTANCE_GCC", + "GUID": "1d2756cb-2147-4b05-b4d5-f013c022dcb9", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 - Additional Non-Production Instance for Government", + "String_Id": "CRMTESTINSTANCE_NOPREREQ", + "GUID": "2cf302fe-62db-4e20-b573-e0998b1208b5", + "Service_Plan_Name": "CRMTESTINSTANCE_GCC", + "Service_Plan_Id": "6d99eb83-7b5f-4947-8e99-cc12f1adb399", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Additional Non-production Instance" + }, + { + "Product_Display_Name": "Dynamics 365 - Additional Non-Production Instance for Government", + "String_Id": "CRMTESTINSTANCE_NOPREREQ", + "GUID": "2cf302fe-62db-4e20-b573-e0998b1208b5", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Production Instance for Government", + "String_Id": "CRMINSTANCE_GCC", + "GUID": "2bd3cb20-1bb6-446b-b4d0-089af3a05c52", + "Service_Plan_Name": "CRMINSTANCE_GCC", + "Service_Plan_Id": "483cc331-f4df-4a3b-b8ca-fe1a247569f6", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Instance" + }, + { + "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Production Instance for Government", + "String_Id": "CRMINSTANCE_GCC", + "GUID": "2bd3cb20-1bb6-446b-b4d0-089af3a05c52", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Field Service, Enterprise Edition - Resource Scheduling Optimization", + "String_Id": "CRM_AUTO_ROUTING_ADDON", + "GUID": "977464c4-bfaf-4b67-b761-a9bb735a2196", + "Service_Plan_Name": "CRM_AUTO_ROUTING_ENGINE_ADDON", + "Service_Plan_Id": "24435e4b-87d0-4d7d-8beb-63a9b1573022", + "Service_Plans_Included_Friendly_Names": "Field Service � Automated Routing Engine Add-On" + }, + { + "Product_Display_Name": "Dynamics 365 Field Service, Enterprise Edition - Resource Scheduling Optimization", + "String_Id": "CRM_AUTO_ROUTING_ADDON", + "GUID": "977464c4-bfaf-4b67-b761-a9bb735a2196", + "Service_Plan_Name": "CRM_AUTO_ROUTING_ADDON", + "Service_Plan_Id": "2ba394e0-6f18-4b77-b45f-a5663bbab540", + "Service_Plans_Included_Friendly_Names": "RETIRED - Field Service � Automated Routing Engine Add-On" + }, + { + "Product_Display_Name": "Dynamics 365 Field Service, Enterprise Edition - Resource Scheduling Optimization", + "String_Id": "CRM_AUTO_ROUTING_ADDON", + "GUID": "977464c4-bfaf-4b67-b761-a9bb735a2196", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Field Service Contractor for Government", + "String_Id": "D365_FIELD_SERVICE_CONTRACTOR_GOV", + "GUID": "e7965e3a-1f49-4d67-a3de-ad1ce460bbcc", + "Service_Plan_Name": "CDS_FIELD_SERVICE_CONTRACTOR_GCC", + "Service_Plan_Id": "2457fe40-65be-48a1-935f-924ad6e62dba", + "Service_Plans_Included_Friendly_Names": "Common Data Service Field service Part Time Contractors for Government" + }, + { + "Product_Display_Name": "Dynamics 365 Field Service Contractor for Government", + "String_Id": "D365_FIELD_SERVICE_CONTRACTOR_GOV", + "GUID": "e7965e3a-1f49-4d67-a3de-ad1ce460bbcc", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Dynamics 365 Field Service Contractor for Government", + "String_Id": "D365_FIELD_SERVICE_CONTRACTOR_GOV", + "GUID": "e7965e3a-1f49-4d67-a3de-ad1ce460bbcc", + "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", + "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", + "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Dynamics 365 Field Service Viral Trial", + "String_Id": "Dynamics_365_Field_Service_Enterprise_viral_trial", + "GUID": "29fcd665-d8d1-4f34-8eed-3811e3fca7b3", + "Service_Plan_Name": "CUSTOMER_VOICE_DYN365_VIRAL_TRIAL", + "Service_Plan_Id": "dbe07046-af68-4861-a20d-1c8cbda9194f", + "Service_Plans_Included_Friendly_Names": "Customer Voice for Dynamics 365 vTrial" + }, + { + "Product_Display_Name": "Dynamics 365 Field Service Viral Trial", + "String_Id": "Dynamics_365_Field_Service_Enterprise_viral_trial", + "GUID": "29fcd665-d8d1-4f34-8eed-3811e3fca7b3", + "Service_Plan_Name": "DYN365_FS_ENTERPRISE_VIRAL_TRIAL", + "Service_Plan_Id": "20d1455b-72b2-4725-8354-a177845ab77d", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Field Service Enterprise vTrial" + }, + { + "Product_Display_Name": "Dynamics 365 Field Service Viral Trial", + "String_Id": "Dynamics_365_Field_Service_Enterprise_viral_trial", + "GUID": "29fcd665-d8d1-4f34-8eed-3811e3fca7b3", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Field Service Viral Trial", + "String_Id": "Dynamics_365_Field_Service_Enterprise_viral_trial", + "GUID": "29fcd665-d8d1-4f34-8eed-3811e3fca7b3", + "Service_Plan_Name": "POWER_APPS_DYN365_VIRAL_TRIAL", + "Service_Plan_Id": "54b37829-818e-4e3c-a08a-3ea66ab9b45d", + "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365 vTrial" + }, + { + "Product_Display_Name": "Dynamics 365 Field Service Viral Trial", + "String_Id": "Dynamics_365_Field_Service_Enterprise_viral_trial", + "GUID": "29fcd665-d8d1-4f34-8eed-3811e3fca7b3", + "Service_Plan_Name": "POWER_AUTOMATE_DYN365_VIRAL_TRIAL", + "Service_Plan_Id": "81d4ecb8-0481-42fb-8868-51536c5aceeb", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 vTrial" + }, + { + "Product_Display_Name": "Dynamics 365 Finance", + "String_Id": "DYN365_FINANCE", + "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", + "Service_Plan_Name": "DYN365_CDS_FINANCE", + "Service_Plan_Id": "e95d7060-d4d9-400a-a2bd-a244bf0b609e", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Dynamics 365 Finance" + }, + { + "Product_Display_Name": "Dynamics 365 Finance", + "String_Id": "DYN365_FINANCE", + "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", + "Service_Plan_Name": "DYN365_REGULATORY_SERVICE", + "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Finance and Operations Enterprise edition - Regulatory Service" + }, + { + "Product_Display_Name": "Dynamics 365 Finance", + "String_Id": "DYN365_FINANCE", + "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Finance", + "String_Id": "DYN365_FINANCE", + "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", + "Service_Plan_Name": "D365_Finance", + "Service_Plan_Id": "9f0e1b4e-9b33-4300-b451-b2c662cd4ff7", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 for Finance" + }, + { + "Product_Display_Name": "Dynamics 365 Finance", + "String_Id": "DYN365_FINANCE", + "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", + "Service_Plan_Name": "POWERAPPS_DYN_APPS", + "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", + "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Finance", + "String_Id": "DYN365_FINANCE", + "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", + "Service_Plan_Name": "FLOW_DYN_APPS", + "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", + "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", + "Service_Plan_Name": "DYN365_ENTERPRISE_CASE_MANAGEMENT", + "Service_Plan_Id": "2822a3a1-9b8f-4432-8989-e11669a60dc8", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Case Management" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", + "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", + "Service_Plan_Name": "NBENTERPRISE", + "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", + "Service_Plans_Included_Friendly_Names": "Retired - Microsoft Social Engagement" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", + "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", + "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", + "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", + "Service_Plan_Name": "PROJECT_ESSENTIALS", + "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", + "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", + "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", + "Service_Plan_Name": "POWERAPPS_DYN_APPS", + "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", + "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT", + "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0", + "Service_Plan_Name": "FLOW_DYN_APPS", + "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", + "String_Id": "D365_ENTERPRISE_CASE_MANAGEMENT_GOV", + "GUID": "5cd0b796-9ac8-4792-9f0b-796ca9044e4a", + "Service_Plan_Name": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV", + "Service_Plan_Id": "79bb0a8d-e686-4e16-ac59-2b3fd0014a61", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Case Management for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", + "String_Id": "D365_ENTERPRISE_CASE_MANAGEMENT_GOV", + "GUID": "5cd0b796-9ac8-4792-9f0b-796ca9044e4a", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", + "String_Id": "D365_ENTERPRISE_CASE_MANAGEMENT_GOV", + "GUID": "5cd0b796-9ac8-4792-9f0b-796ca9044e4a", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", + "String_Id": "D365_ENTERPRISE_CASE_MANAGEMENT_GOV", + "GUID": "5cd0b796-9ac8-4792-9f0b-796ca9044e4a", + "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", + "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", + "String_Id": "D365_ENTERPRISE_CASE_MANAGEMENT_GOV", + "GUID": "5cd0b796-9ac8-4792-9f0b-796ca9044e4a", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", + "String_Id": "D365_ENTERPRISE_CASE_MANAGEMENT_GOV", + "GUID": "5cd0b796-9ac8-4792-9f0b-796ca9044e4a", + "Service_Plan_Name": "FLOW_DYN_APPS_GOV", + "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", + "String_Id": "D365_ENTERPRISE_CASE_MANAGEMENT_GOV", + "GUID": "5cd0b796-9ac8-4792-9f0b-796ca9044e4a", + "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", + "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", + "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV", + "GUID": "ff5a82be-1edd-4d48-94e0-52527825b589", + "Service_Plan_Name": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV", + "Service_Plan_Id": "79bb0a8d-e686-4e16-ac59-2b3fd0014a61", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Case Management for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV", + "GUID": "ff5a82be-1edd-4d48-94e0-52527825b589", + "Service_Plan_Name": "Power_Pages_Internal_User", + "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", + "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV", + "GUID": "ff5a82be-1edd-4d48-94e0-52527825b589", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV", + "GUID": "ff5a82be-1edd-4d48-94e0-52527825b589", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV", + "GUID": "ff5a82be-1edd-4d48-94e0-52527825b589", + "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", + "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV", + "GUID": "ff5a82be-1edd-4d48-94e0-52527825b589", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV", + "GUID": "ff5a82be-1edd-4d48-94e0-52527825b589", + "Service_Plan_Name": "FLOW_DYN_APPS_GOV", + "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Case Management, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV", + "GUID": "ff5a82be-1edd-4d48-94e0-52527825b589", + "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", + "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", + "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Chat", + "String_Id": "DYN365_CS_CHAT", + "GUID": "7d7af6c2-0be6-46df-84d1-c181b0272909", + "Service_Plan_Name": "DYN365_CS_CHAT_FPA", + "Service_Plan_Id": "426ec19c-d5b1-4548-b894-6fe75028c30d", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Chat Application Integration" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Chat", + "String_Id": "DYN365_CS_CHAT", + "GUID": "7d7af6c2-0be6-46df-84d1-c181b0272909", + "Service_Plan_Name": "DYN365_CS_CHAT", + "Service_Plan_Id": "f69129db-6dc1-4107-855e-0aaebbcd9dd4", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Chat" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Chat", + "String_Id": "DYN365_CS_CHAT", + "GUID": "7d7af6c2-0be6-46df-84d1-c181b0272909", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_CHAT", + "Service_Plan_Id": "19e4c3a8-3ebe-455f-a294-4f3479873ae3", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Chat" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Chat", + "String_Id": "DYN365_CS_CHAT", + "GUID": "7d7af6c2-0be6-46df-84d1-c181b0272909", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", + "GUID": "749742bf-0d37-4158-a120-33567104deeb", + "Service_Plan_Name": "D365_CSI_EMBED_CSEnterprise", + "Service_Plan_Id": "5b1e5982-0e88-47bb-a95e-ae6085eda612", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Insights for CS Enterprise" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", + "GUID": "749742bf-0d37-4158-a120-33567104deeb", + "Service_Plan_Name": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", + "Service_Plan_Id": "99340b49-fb81-4b1e-976b-8f2ae8e9394f", + "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT - SERVICE DISCONTINUATION" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", + "GUID": "749742bf-0d37-4158-a120-33567104deeb", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", + "GUID": "749742bf-0d37-4158-a120-33567104deeb", + "Service_Plan_Name": "Forms_Pro_Service", + "Service_Plan_Id": "67bf4812-f90b-4db9-97e7-c0bbbf7b2d09", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Service Enterprise" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", + "GUID": "749742bf-0d37-4158-a120-33567104deeb", + "Service_Plan_Name": "FLOW_DYN_APPS", + "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", + "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", + "GUID": "749742bf-0d37-4158-a120-33567104deeb", + "Service_Plan_Name": "NBENTERPRISE", + "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", + "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", + "GUID": "749742bf-0d37-4158-a120-33567104deeb", + "Service_Plan_Name": "POWERAPPS_DYN_APPS", + "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", + "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", + "GUID": "749742bf-0d37-4158-a120-33567104deeb", + "Service_Plan_Name": "PROJECT_ESSENTIALS", + "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", + "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", + "GUID": "749742bf-0d37-4158-a120-33567104deeb", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR CUSTOMER SERVICE" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", + "GUID": "749742bf-0d37-4158-a120-33567104deeb", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE_GOV", + "GUID": "3c74d823-8f01-4fe8-82d5-f089a5504cec", + "Service_Plan_Name": "DYN365_ENTERPRISE_CUSTOMER_SERVICE_GOV", + "Service_Plan_Id": "dc6643d9-1e72-4dce-9f64-1d6eac1f1c5a", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE_GOV", + "GUID": "3c74d823-8f01-4fe8-82d5-f089a5504cec", + "Service_Plan_Name": "Forms_Pro_Service_GCC", + "Service_Plan_Id": "bb681a9b-58f5-42ee-9926-674325be8aaa", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Service Enterprise for GCC" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE_GOV", + "GUID": "3c74d823-8f01-4fe8-82d5-f089a5504cec", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE_GOV", + "GUID": "3c74d823-8f01-4fe8-82d5-f089a5504cec", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE_GOV", + "GUID": "3c74d823-8f01-4fe8-82d5-f089a5504cec", + "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", + "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE_GOV", + "GUID": "3c74d823-8f01-4fe8-82d5-f089a5504cec", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE_GOV", + "GUID": "3c74d823-8f01-4fe8-82d5-f089a5504cec", + "Service_Plan_Name": "FLOW_DYN_APPS_GOV", + "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Customer Service, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE_GOV", + "GUID": "3c74d823-8f01-4fe8-82d5-f089a5504cec", + "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", + "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", + "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service Attach to Qualifying Dynamics 365 Base Offer", + "String_Id": "D365_FIELD_SERVICE_ATTACH", + "GUID": "a36cdaa2-a806-4b6e-9ae0-28dbd993c20e", + "Service_Plan_Name": "D365_FIELD_SERVICE_ATTACH", + "Service_Plan_Id": "55c9148b-d5f0-4101-b5a0-b2727cfc0916", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Field Service Attach" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service Attach to Qualifying Dynamics 365 Base Offer", + "String_Id": "D365_FIELD_SERVICE_ATTACH", + "GUID": "a36cdaa2-a806-4b6e-9ae0-28dbd993c20e", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", + "GUID": "c7d15985-e746-4f01-b113-20b575898250", + "Service_Plan_Name": "DYN365_ENTERPRISE_FIELD_SERVICE", + "Service_Plan_Id": "8c66ef8a-177f-4c0d-853c-d4f219331d09", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Field Service" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", + "GUID": "c7d15985-e746-4f01-b113-20b575898250", + "Service_Plan_Name": "Forms_Pro_FS", + "Service_Plan_Id": "9c439259-63b0-46cc-a258-72be4313a42d", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Field Service" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", + "GUID": "c7d15985-e746-4f01-b113-20b575898250", + "Service_Plan_Name": "NBENTERPRISE", + "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", + "Service_Plans_Included_Friendly_Names": "Retired - Microsoft Social Engagement" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", + "GUID": "c7d15985-e746-4f01-b113-20b575898250", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", + "GUID": "c7d15985-e746-4f01-b113-20b575898250", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", + "GUID": "c7d15985-e746-4f01-b113-20b575898250", + "Service_Plan_Name": "PROJECT_ESSENTIALS", + "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", + "GUID": "c7d15985-e746-4f01-b113-20b575898250", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", + "GUID": "c7d15985-e746-4f01-b113-20b575898250", + "Service_Plan_Name": "POWERAPPS_DYN_APPS", + "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", + "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE", + "GUID": "c7d15985-e746-4f01-b113-20b575898250", + "Service_Plan_Name": "FLOW_DYN_APPS", + "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE_GOV", + "GUID": "c3d74ead-70b7-4513-8dce-797be3fbe07a", + "Service_Plan_Name": "DYN365_ENTERPRISE_FIELD_SERVICE_GOV", + "Service_Plan_Id": "a9a5be2d-17dd-4d43-ba78-9391e11d20a7", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Field Service for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE_GOV", + "GUID": "c3d74ead-70b7-4513-8dce-797be3fbe07a", + "Service_Plan_Name": "Forms_Pro_FS_GCC", + "Service_Plan_Id": "638862ef-afb3-46e4-b292-ed0aad759476", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Field Service for GCC" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE_GOV", + "GUID": "c3d74ead-70b7-4513-8dce-797be3fbe07a", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE_GOV", + "GUID": "c3d74ead-70b7-4513-8dce-797be3fbe07a", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE_GOV", + "GUID": "c3d74ead-70b7-4513-8dce-797be3fbe07a", + "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", + "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE_GOV", + "GUID": "c3d74ead-70b7-4513-8dce-797be3fbe07a", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE_GOV", + "GUID": "c3d74ead-70b7-4513-8dce-797be3fbe07a", + "Service_Plan_Name": "FLOW_DYN_APPS_GOV", + "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE_GOV", + "GUID": "c3d74ead-70b7-4513-8dce-797be3fbe07a", + "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", + "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", + "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service for Government", + "String_Id": "D365_ENTERPRISE_FIELD_SERVICE_GOV", + "GUID": "8eac9119-7e6b-4278-9dc4-e3458993b08a", + "Service_Plan_Name": "DYN365_ENTERPRISE_FIELD_SERVICE_GOV", + "Service_Plan_Id": "a9a5be2d-17dd-4d43-ba78-9391e11d20a7", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Field Service for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service for Government", + "String_Id": "D365_ENTERPRISE_FIELD_SERVICE_GOV", + "GUID": "8eac9119-7e6b-4278-9dc4-e3458993b08a", + "Service_Plan_Name": "Forms_Pro_FS_GCC", + "Service_Plan_Id": "638862ef-afb3-46e4-b292-ed0aad759476", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Field Service for GCC" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service for Government", + "String_Id": "D365_ENTERPRISE_FIELD_SERVICE_GOV", + "GUID": "8eac9119-7e6b-4278-9dc4-e3458993b08a", + "Service_Plan_Name": "Power_Pages_Internal_User", + "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", + "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service for Government", + "String_Id": "D365_ENTERPRISE_FIELD_SERVICE_GOV", + "GUID": "8eac9119-7e6b-4278-9dc4-e3458993b08a", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service for Government", + "String_Id": "D365_ENTERPRISE_FIELD_SERVICE_GOV", + "GUID": "8eac9119-7e6b-4278-9dc4-e3458993b08a", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service for Government", + "String_Id": "D365_ENTERPRISE_FIELD_SERVICE_GOV", + "GUID": "8eac9119-7e6b-4278-9dc4-e3458993b08a", + "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", + "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service for Government", + "String_Id": "D365_ENTERPRISE_FIELD_SERVICE_GOV", + "GUID": "8eac9119-7e6b-4278-9dc4-e3458993b08a", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service for Government", + "String_Id": "D365_ENTERPRISE_FIELD_SERVICE_GOV", + "GUID": "8eac9119-7e6b-4278-9dc4-e3458993b08a", + "Service_Plan_Name": "FLOW_DYN_APPS_GOV", + "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Field Service for Government", + "String_Id": "D365_ENTERPRISE_FIELD_SERVICE_GOV", + "GUID": "8eac9119-7e6b-4278-9dc4-e3458993b08a", + "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", + "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", + "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Financials Business Edition", + "String_Id": "DYN365_FINANCIALS_BUSINESS_SKU", + "GUID": "cc13a803-544e-4464-b4e4-6d6169a138fa", + "Service_Plan_Name": "DYN365_FINANCIALS_BUSINESS", + "Service_Plan_Id": "920656a2-7dd8-4c83-97b6-a356414dbd36", + "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" + }, + { + "Product_Display_Name": "Dynamics 365 for Financials Business Edition", + "String_Id": "DYN365_FINANCIALS_BUSINESS_SKU", + "GUID": "cc13a803-544e-4464-b4e4-6d6169a138fa", + "Service_Plan_Name": "FLOW_DYN_APPS", + "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", + "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" + }, + { + "Product_Display_Name": "Dynamics 365 for Financials Business Edition", + "String_Id": "DYN365_FINANCIALS_BUSINESS_SKU", + "GUID": "cc13a803-544e-4464-b4e4-6d6169a138fa", + "Service_Plan_Name": "POWERAPPS_DYN_APPS", + "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", + "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR FINANCIALS" + }, + { + "Product_Display_Name": "Dynamics 365 Hybrid Connector", + "String_Id": "CRM_HYBRIDCONNECTOR", + "GUID": "de176c31-616d-4eae-829a-718918d7ec23", + "Service_Plan_Name": "CRM_HYBRIDCONNECTOR", + "Service_Plan_Id": "0210d5c8-49d2-4dd1-a01b-a91c7c14e0bf", + "Service_Plans_Included_Friendly_Names": "CRM Hybrid Connector" + }, + { + "Product_Display_Name": "Dynamics 365 Hybrid Connector", + "String_Id": "CRM_HYBRIDCONNECTOR", + "GUID": "de176c31-616d-4eae-829a-718918d7ec23", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Marketing Additional Application", + "String_Id": "DYN365_MARKETING_APPLICATION_ADDON", + "GUID": "99c5688b-6c75-4496-876f-07f0fbd69add", + "Service_Plan_Name": "DYN365_MARKETING_APPLICATION_ADDON", + "Service_Plan_Id": "51cf0638-4861-40c0-8b20-1161ab2f80be", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing Additional Application" + }, + { + "Product_Display_Name": "Dynamics 365 for Marketing Additional Application", + "String_Id": "DYN365_MARKETING_APPLICATION_ADDON", + "GUID": "99c5688b-6c75-4496-876f-07f0fbd69add", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Marketing Addnl Contacts Tier 3", + "String_Id": "DYN365_MARKETING_CONTACT_ADDON_T3", + "GUID": "23053933-0fda-431f-9a5b-a00fd78444c1", + "Service_Plan_Name": "DYN365_MARKETING_50K_CONTACT_ADDON", + "Service_Plan_Id": "e626a4ec-1ba2-409e-bf75-9bc0bc30cca7", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing 50K Addnl Contacts" + }, + { + "Product_Display_Name": "Dynamics 365 for Marketing Addnl Contacts Tier 3", + "String_Id": "DYN365_MARKETING_CONTACT_ADDON_T3", + "GUID": "23053933-0fda-431f-9a5b-a00fd78444c1", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Marketing Addnl Contacts Tier 5", + "String_Id": "DYN365_MARKETING_CONTACT_ADDON_T5", + "GUID": "d8eec316-778c-4f14-a7d1-a0aca433b4e7", + "Service_Plan_Name": "DYN365_MARKETING_50K_CONTACT_ADDON", + "Service_Plan_Id": "e626a4ec-1ba2-409e-bf75-9bc0bc30cca7", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing 50K Addnl Contacts" + }, + { + "Product_Display_Name": "Dynamics 365 for Marketing Addnl Contacts Tier 5", + "String_Id": "DYN365_MARKETING_CONTACT_ADDON_T5", + "GUID": "d8eec316-778c-4f14-a7d1-a0aca433b4e7", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Marketing Additional Non-Prod Application", + "String_Id": "DYN365_MARKETING_SANDBOX_APPLICATION_ADDON", + "GUID": "c393e9bd-2335-4b46-8b88-9e2a86a85ec1", + "Service_Plan_Name": "DYN365_MARKETING_SANDBOX_APPLICATION_ADDON", + "Service_Plan_Id": "1599de10-5250-4c95-acf2-491f74edce48", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Marketing Sandbox Application AddOn" + }, + { + "Product_Display_Name": "Dynamics 365 for Marketing Attach", + "String_Id": "DYN365_MARKETING_APP_ATTACH", + "GUID": "85430fb9-02e8-48be-9d7e-328beb41fa29", + "Service_Plan_Name": "DYN365_MARKETING_APP", + "Service_Plan_Id": "a3a4fa10-5092-401a-af30-0462a95a7ac8", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing" + }, + { + "Product_Display_Name": "Dynamics 365 for Marketing Attach", + "String_Id": "DYN365_MARKETING_APP_ATTACH", + "GUID": "85430fb9-02e8-48be-9d7e-328beb41fa29", + "Service_Plan_Name": "Forms_Pro_Marketing_App", + "Service_Plan_Id": "22b657cf-0a9e-467b-8a91-5e31f21bc570", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Marketing Application" + }, + { + "Product_Display_Name": "Dynamics 365 for Marketing Attach", + "String_Id": "DYN365_MARKETING_APP_ATTACH", + "GUID": "85430fb9-02e8-48be-9d7e-328beb41fa29", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Marketing USL", + "String_Id": "D365_MARKETING_USER", + "GUID": "4b32a493-9a67-4649-8eb9-9fc5a5f75c12", + "Service_Plan_Name": "DYN365_MARKETING_MSE_USER", + "Service_Plan_Id": "2824c69a-1ac5-4397-8592-eae51cb8b581", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing MSE User" + }, + { + "Product_Display_Name": "Dynamics 365 for Marketing USL", + "String_Id": "D365_MARKETING_USER", + "GUID": "4b32a493-9a67-4649-8eb9-9fc5a5f75c12", + "Service_Plan_Name": "DYN365_MARKETING_USER", + "Service_Plan_Id": "5d7a6abc-eebd-46ab-96e1-e4a2f54a2248", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing USL" + }, + { + "Product_Display_Name": "Dynamics 365 for Marketing USL", + "String_Id": "D365_MARKETING_USER", + "GUID": "4b32a493-9a67-4649-8eb9-9fc5a5f75c12", + "Service_Plan_Name": "Forms_Pro_Marketing", + "Service_Plan_Id": "76366ba0-d230-47aa-8087-b6d55dae454f", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Marketing" + }, + { + "Product_Display_Name": "Dynamics 365 for Marketing USL", + "String_Id": "D365_MARKETING_USER", + "GUID": "4b32a493-9a67-4649-8eb9-9fc5a5f75c12", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Project Service Automation Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV", + "GUID": "1ec19b5f-7542-4b20-b01f-fb5d3f040e2d", + "Service_Plan_Name": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV", + "Service_Plan_Id": "1d8c8e0e-4308-4db5-8a41-b129dbdaea20", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Project Service Automation for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Project Service Automation Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV", + "GUID": "1ec19b5f-7542-4b20-b01f-fb5d3f040e2d", + "Service_Plan_Name": "Forms_Pro_PS_GCC", + "Service_Plan_Id": "e98256c5-17d0-4987-becc-e991c52d55c6", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Project Service Automation for GCC" + }, + { + "Product_Display_Name": "Dynamics 365 for Project Service Automation Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV", + "GUID": "1ec19b5f-7542-4b20-b01f-fb5d3f040e2d", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Project Service Automation Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV", + "GUID": "1ec19b5f-7542-4b20-b01f-fb5d3f040e2d", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Project Service Automation Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV", + "GUID": "1ec19b5f-7542-4b20-b01f-fb5d3f040e2d", + "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION_GOV", + "Service_Plan_Id": "45c6831b-ad74-4c7f-bd03-7c2b3fa39067", + "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" + }, + { + "Product_Display_Name": "Dynamics 365 for Project Service Automation Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV", + "GUID": "1ec19b5f-7542-4b20-b01f-fb5d3f040e2d", + "Service_Plan_Name": "SHAREPOINT_PROJECT_GOV", + "Service_Plan_Id": "e57afa78-1f19-4542-ba13-b32cd4d8f472", + "Service_Plans_Included_Friendly_Names": "Project Online Service for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Project Service Automation Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV", + "GUID": "1ec19b5f-7542-4b20-b01f-fb5d3f040e2d", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Dynamics 365 for Project Service Automation Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV", + "GUID": "1ec19b5f-7542-4b20-b01f-fb5d3f040e2d", + "Service_Plan_Name": "FLOW_DYN_APPS_GOV", + "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Project Service Automation Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV", + "GUID": "1ec19b5f-7542-4b20-b01f-fb5d3f040e2d", + "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", + "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", + "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales and Customer Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", + "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", + "Service_Plan_Name": "DYN365_ENTERPRISE_P1", + "Service_Plan_Id": "d56f3deb-50d8-465a-bedb-f079817ccac1", + "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 CUSTOMER ENGAGEMENT PLAN" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales and Customer Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", + "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", + "Service_Plan_Name": "FLOW_DYN_APPS", + "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", + "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales and Customer Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", + "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", + "Service_Plan_Name": "NBENTERPRISE", + "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", + "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT - SERVICE DISCONTINUATION" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales and Customer Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", + "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", + "Service_Plan_Name": "POWERAPPS_DYN_APPS", + "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", + "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales and Customer Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", + "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", + "Service_Plan_Name": "PROJECT_ESSENTIALS", + "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", + "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales and Customer Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", + "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales and Customer Service Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", + "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_SALES", + "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", + "Service_Plan_Name": "DYN365_ENTERPRISE_SALES", + "Service_Plan_Id": "2da8e897-7791-486b-b08f-cc63c8129df7", + "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR SALES" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_SALES", + "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", + "Service_Plan_Name": "FLOW_DYN_APPS", + "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", + "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_SALES", + "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", + "Service_Plan_Name": "NBENTERPRISE", + "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", + "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT - SERVICE DISCONTINUATION" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_SALES", + "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", + "Service_Plan_Name": "POWERAPPS_DYN_APPS", + "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", + "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_SALES", + "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", + "Service_Plan_Name": "PROJECT_ESSENTIALS", + "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", + "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_SALES", + "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_SALES", + "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_SALES_GOV", + "GUID": "28b275ce-aec7-4c26-82e2-1ffbc2746ad4", + "Service_Plan_Name": "DYN365_ENTERPRISE_SALES_GOV", + "Service_Plan_Id": "213be507-d547-4f79-bc2c-6196bc54c4a3", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_SALES_GOV", + "GUID": "28b275ce-aec7-4c26-82e2-1ffbc2746ad4", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_SALES_GOV", + "GUID": "28b275ce-aec7-4c26-82e2-1ffbc2746ad4", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_SALES_GOV", + "GUID": "28b275ce-aec7-4c26-82e2-1ffbc2746ad4", + "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", + "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_SALES_GOV", + "GUID": "28b275ce-aec7-4c26-82e2-1ffbc2746ad4", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_SALES_GOV", + "GUID": "28b275ce-aec7-4c26-82e2-1ffbc2746ad4", + "Service_Plan_Name": "FLOW_DYN_APPS_GOV", + "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales, Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_SALES_GOV", + "GUID": "28b275ce-aec7-4c26-82e2-1ffbc2746ad4", + "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", + "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", + "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", + "String_Id": "D365_ENTERPRISE_SALES_GOV", + "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", + "Service_Plan_Name": "DYN365_ENTERPRISE_SALES_GOV", + "Service_Plan_Id": "213be507-d547-4f79-bc2c-6196bc54c4a3", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", + "String_Id": "D365_ENTERPRISE_SALES_GOV", + "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", + "Service_Plan_Name": "Forms_Pro_SalesEnt_GCC", + "Service_Plan_Id": "33850b82-0a37-4ebb-a0b2-ee163facd716", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Sales Enterprise for GCC" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", + "String_Id": "D365_ENTERPRISE_SALES_GOV", + "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", + "Service_Plan_Name": "Power_Pages_Internal_User", + "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", + "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", + "String_Id": "D365_ENTERPRISE_SALES_GOV", + "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", + "String_Id": "D365_ENTERPRISE_SALES_GOV", + "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", + "Service_Plan_Name": "Microsoft_Viva_Sales_PremiumTrial", + "Service_Plan_Id": "8ba1ff15-7bf6-4620-b65c-ecedb6942766", + "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium \u0026 Trial" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", + "String_Id": "D365_ENTERPRISE_SALES_GOV", + "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", + "Service_Plan_Name": "Microsoft_Viva_Sales_PowerAutomate", + "Service_Plan_Id": "a933a62f-c3fb-48e5-a0b7-ac92b94b4420", + "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium with Power Automate" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", + "String_Id": "D365_ENTERPRISE_SALES_GOV", + "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", + "String_Id": "D365_ENTERPRISE_SALES_GOV", + "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", + "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", + "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", + "String_Id": "D365_ENTERPRISE_SALES_GOV", + "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", + "String_Id": "D365_ENTERPRISE_SALES_GOV", + "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", + "Service_Plan_Name": "FLOW_DYN_APPS_GOV", + "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", + "String_Id": "D365_ENTERPRISE_SALES_GOV", + "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", + "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", + "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", + "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox", + "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox", + "GUID": "494721b8-1f30-4315-aba6-70ca169358d9", + "Service_Plan_Name": "DYN365_ENTERPRISE_P1", + "Service_Plan_Id": "d56f3deb-50d8-465a-bedb-f079817ccac1", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Engagement Plan" + }, + { + "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox", + "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox", + "GUID": "494721b8-1f30-4315-aba6-70ca169358d9", + "Service_Plan_Name": "Forms_Pro_Service", + "Service_Plan_Id": "67bf4812-f90b-4db9-97e7-c0bbbf7b2d09", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Service Enterprise" + }, + { + "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox", + "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox", + "GUID": "494721b8-1f30-4315-aba6-70ca169358d9", + "Service_Plan_Name": "POWERAPPS_DYN_APPS", + "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", + "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox", + "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox", + "GUID": "494721b8-1f30-4315-aba6-70ca169358d9", + "Service_Plan_Name": "FLOW_DYN_APPS", + "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox", + "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox", + "GUID": "494721b8-1f30-4315-aba6-70ca169358d9", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox", + "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox", + "GUID": "494721b8-1f30-4315-aba6-70ca169358d9", + "Service_Plan_Name": "PROJECT_ESSENTIALS", + "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials" + }, + { + "Product_Display_Name": "Dynamics 365 Sales Premium", + "String_Id": "DYN365_SALES_PREMIUM", + "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", + "Service_Plan_Name": "DYN365_SALES_INSIGHTS", + "Service_Plan_Id": "fedc185f-0711-4cc0-80ed-0a92da1a8384", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Sales (Embedded)" + }, + { + "Product_Display_Name": "Dynamics 365 Sales Premium", + "String_Id": "DYN365_SALES_PREMIUM", + "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Dynamics 365 Sales Premium", + "String_Id": "DYN365_SALES_PREMIUM", + "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", + "Service_Plan_Name": "PROJECT_ESSENTIALS", + "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials" + }, + { + "Product_Display_Name": "Dynamics 365 Sales Premium", + "String_Id": "DYN365_SALES_PREMIUM", + "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Dynamics 365 Sales Premium", + "String_Id": "DYN365_SALES_PREMIUM", + "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", + "Service_Plan_Name": "Microsoft_Viva_Sales_PowerAutomate", + "Service_Plan_Id": "a933a62f-c3fb-48e5-a0b7-ac92b94b4420", + "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium with Power Automate" + }, + { + "Product_Display_Name": "Dynamics 365 Sales Premium", + "String_Id": "DYN365_SALES_PREMIUM", + "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", + "Service_Plan_Name": "Microsoft_Viva_Sales_PremiumTrial", + "Service_Plan_Id": "8ba1ff15-7bf6-4620-b65c-ecedb6942766", + "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium \u0026 Trial" + }, + { + "Product_Display_Name": "Dynamics 365 Sales Premium", + "String_Id": "DYN365_SALES_PREMIUM", + "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Sales Premium", + "String_Id": "DYN365_SALES_PREMIUM", + "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", + "Service_Plan_Name": "FLOW_DYN_APPS", + "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Sales Premium", + "String_Id": "DYN365_SALES_PREMIUM", + "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", + "Service_Plan_Name": "POWERAPPS_DYN_APPS", + "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", + "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Sales Premium", + "String_Id": "DYN365_SALES_PREMIUM", + "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", + "Service_Plan_Name": "Power_Pages_Internal_User", + "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", + "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" + }, + { + "Product_Display_Name": "Dynamics 365 Sales Premium", + "String_Id": "DYN365_SALES_PREMIUM", + "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", + "Service_Plan_Name": "Forms_Pro_SalesEnt", + "Service_Plan_Id": "8839ef0e-91f1-4085-b485-62e06e7c7987", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Sales Enterprise" + }, + { + "Product_Display_Name": "Dynamics 365 Sales Premium", + "String_Id": "DYN365_SALES_PREMIUM", + "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", + "Service_Plan_Name": "DYN365_ENTERPRISE_SALES", + "Service_Plan_Id": "2da8e897-7791-486b-b08f-cc63c8129df7", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales" + }, + { + "Product_Display_Name": "Dynamics 365 for Marketing Business Edition", + "String_Id": "DYN365_BUSINESS_MARKETING", + "GUID": "238e2f8d-e429-4035-94db-6926be4ffe7b", + "Service_Plan_Name": "DYN365_BUSINESS_Marketing", + "Service_Plan_Id": "393a0c96-9ba1-4af0-8975-fa2f853a25ac", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Marketing" + }, + { + "Product_Display_Name": "Dynamics 365 for Marketing Business Edition", + "String_Id": "DYN365_BUSINESS_MARKETING", + "GUID": "238e2f8d-e429-4035-94db-6926be4ffe7b", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Regulatory Service - Enterprise Edition Trial", + "String_Id": "DYN365_REGULATORY_SERVICE", + "GUID": "7ed4877c-0863-4f69-9187-245487128d4f", + "Service_Plan_Name": "DYN365_REGULATORY_SERVICE", + "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Finance and Operations Enterprise edition - Regulatory Service" + }, + { + "Product_Display_Name": "Dynamics 365 Regulatory Service - Enterprise Edition Trial", + "String_Id": "DYN365_REGULATORY_SERVICE", + "GUID": "7ed4877c-0863-4f69-9187-245487128d4f", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial", + "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial", + "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71", + "Service_Plan_Name": "CUSTOMER_VOICE_DYN365_VIRAL_TRIAL", + "Service_Plan_Id": "dbe07046-af68-4861-a20d-1c8cbda9194f", + "Service_Plans_Included_Friendly_Names": "Customer Voice for Dynamics 365 vTrial" + }, + { + "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial", + "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial", + "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71", + "Service_Plan_Name": "DYN365_SALES_ENTERPRISE_VIRAL_TRIAL", + "Service_Plan_Id": "7f636c80-0961-41b2-94da-9642ccf02de0", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Sales Enterprise vTrial" + }, + { + "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial", + "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial", + "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71", + "Service_Plan_Name": "DYN365_SALES_INSIGHTS_VIRAL_TRIAL", + "Service_Plan_Id": "456747c0-cf1e-4b0d-940f-703a01b964cc", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Sales Insights vTrial" + }, + { + "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial", + "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial", + "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial", + "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial", + "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71", + "Service_Plan_Name": "POWER_APPS_DYN365_VIRAL_TRIAL", + "Service_Plan_Id": "54b37829-818e-4e3c-a08a-3ea66ab9b45d", + "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365 vTrial" + }, + { + "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial", + "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial", + "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71", + "Service_Plan_Name": "POWER_AUTOMATE_DYN365_VIRAL_TRIAL", + "Service_Plan_Id": "81d4ecb8-0481-42fb-8868-51536c5aceeb", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 vTrial" + }, + { + "Product_Display_Name": "Dynamics 365 For Sales Professional", + "String_Id": "D365_SALES_PRO", + "GUID": "be9f9771-1c64-4618-9907-244325141096", + "Service_Plan_Name": "DYN365_SALES_PRO", + "Service_Plan_Id": "88d83950-ff78-4e85-aa66-abfc787f8090", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Professional" + }, + { + "Product_Display_Name": "Dynamics 365 For Sales Professional", + "String_Id": "D365_SALES_PRO", + "GUID": "be9f9771-1c64-4618-9907-244325141096", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 For Sales Professional", + "String_Id": "D365_SALES_PRO", + "GUID": "be9f9771-1c64-4618-9907-244325141096", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Dynamics 365 For Sales Professional", + "String_Id": "D365_SALES_PRO", + "GUID": "be9f9771-1c64-4618-9907-244325141096", + "Service_Plan_Name": "POWERAPPS_SALES_PRO", + "Service_Plan_Id": "6f9f70ce-138d-49f8-bb8b-2e701b7dde75", + "Service_Plans_Included_Friendly_Names": "Power Apps for Sales Pro" + }, + { + "Product_Display_Name": "Dynamics 365 For Sales Professional", + "String_Id": "D365_SALES_PRO", + "GUID": "be9f9771-1c64-4618-9907-244325141096", + "Service_Plan_Name": "PROJECT_ESSENTIALS", + "Service_Plan_Id": "f944d685-f762-4371-806d-a1f48e5bea13", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials" + }, + { + "Product_Display_Name": "Dynamics 365 For Sales Professional", + "String_Id": "D365_SALES_PRO", + "GUID": "be9f9771-1c64-4618-9907-244325141096", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)Dynamics 365 for Sales Pro Attach" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Professional for Government", + "String_Id": "D365_SALES_PRO_GOV", + "GUID": "229fa362-9d30-4dbc-8110-21b77a7f9b26", + "Service_Plan_Name": "DYN365_SALES_PRO_GOV", + "Service_Plan_Id": "dd89efa0-5a55-4892-ba30-82e3f8008339", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Professional for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Professional for Government", + "String_Id": "D365_SALES_PRO_GOV", + "GUID": "229fa362-9d30-4dbc-8110-21b77a7f9b26", + "Service_Plan_Name": "POWERAPPS_SALES_PRO_GOV", + "Service_Plan_Id": "12cf31f8-754f-4efe-87a8-167c19e30831", + "Service_Plans_Included_Friendly_Names": "Power Apps for Sales Pro for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Professional for Government", + "String_Id": "D365_SALES_PRO_GOV", + "GUID": "229fa362-9d30-4dbc-8110-21b77a7f9b26", + "Service_Plan_Name": "FLOW_SALES_PRO_GOV", + "Service_Plan_Id": "e62ffe5b-7612-441f-a72d-c11cf456d33a", + "Service_Plans_Included_Friendly_Names": "Power Automate for Sales Pro for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Professional for Government", + "String_Id": "D365_SALES_PRO_GOV", + "GUID": "229fa362-9d30-4dbc-8110-21b77a7f9b26", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Professional for Government", + "String_Id": "D365_SALES_PRO_GOV", + "GUID": "229fa362-9d30-4dbc-8110-21b77a7f9b26", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Professional for Government", + "String_Id": "D365_SALES_PRO_GOV", + "GUID": "229fa362-9d30-4dbc-8110-21b77a7f9b26", + "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", + "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Sales Professional for Government", + "String_Id": "D365_SALES_PRO_GOV", + "GUID": "229fa362-9d30-4dbc-8110-21b77a7f9b26", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Dynamics 365 For Sales Professional Trial", + "String_Id": "D365_SALES_PRO_IW", + "GUID": "9c7bff7a-3715-4da7-88d3-07f57f8d0fb6", + "Service_Plan_Name": "D365_SALES_PRO_IW", + "Service_Plan_Id": "73f205fc-6b15-47a5-967e-9e64fdf72d0a", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Professional Trial" + }, + { + "Product_Display_Name": "Dynamics 365 For Sales Professional Trial", + "String_Id": "D365_SALES_PRO_IW", + "GUID": "9c7bff7a-3715-4da7-88d3-07f57f8d0fb6", + "Service_Plan_Name": "D365_SALES_PRO_IW_Trial", + "Service_Plan_Id": "db39a47e-1f4f-462b-bf5b-2ec471fb7b88", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Professional Trial" + }, + { + "Product_Display_Name": "Dynamics 365 Sales Professional Attach to Qualifying Dynamics 365 Base Offer", + "String_Id": "D365_SALES_PRO_ATTACH", + "GUID": "245e6bf9-411e-481e-8611-5c08595e2988", + "Service_Plan_Name": "D365_SALES_PRO_ATTACH", + "Service_Plan_Id": "065f3c64-0649-4ec7-9f47-ef5cf134c751", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Pro Attach" + }, + { + "Product_Display_Name": "Dynamics 365 Sales Professional Attach to Qualifying Dynamics 365 Base Offer", + "String_Id": "D365_SALES_PRO_ATTACH", + "GUID": "245e6bf9-411e-481e-8611-5c08595e2988", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Supply Chain Management", + "String_Id": "DYN365_SCM", + "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", + "Service_Plan_Name": "DYN365_CDS_SUPPLYCHAINMANAGEMENT", + "Service_Plan_Id": "b6a8b974-2956-4e14-ae81-f0384c363528", + "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR DYNAMICS 365 SUPPLY CHAIN MANAGEMENT" + }, + { + "Product_Display_Name": "Dynamics 365 for Supply Chain Management", + "String_Id": "DYN365_SCM", + "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", + "Service_Plan_Name": "DYN365_REGULATORY_SERVICE", + "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65", + "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR FINANCE AND OPERATIONS ENTERPRISE EDITION - REGULATORY SERVICE" + }, + { + "Product_Display_Name": "Dynamics 365 for Supply Chain Management", + "String_Id": "DYN365_SCM", + "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", + "Service_Plan_Name": "D365_SCM", + "Service_Plan_Id": "1224eae4-0d91-474a-8a52-27ec96a63fe7", + "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT" + }, + { + "Product_Display_Name": "Dynamics 365 for Supply Chain Management", + "String_Id": "DYN365_SCM", + "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" + }, + { + "Product_Display_Name": "Dynamics 365 for Supply Chain Management", + "String_Id": "DYN365_SCM", + "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", + "Service_Plan_Name": "FLOW_DYN_APPS", + "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", + "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" + }, + { + "Product_Display_Name": "Dynamics 365 for Supply Chain Management", + "String_Id": "DYN365_SCM", + "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", + "Service_Plan_Name": "POWERAPPS_DYN_APPS", + "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", + "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" + }, + { + "Product_Display_Name": "Dynamics 365 for Talent", + "String_Id": "SKU_Dynamics_365_for_HCM_Trial", + "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", + "Service_Plan_Name": "DYN365_CDS_DYN_APPS", + "Service_Plan_Id": "2d925ad8-2479-4bd8-bb76-5b80f1d48935", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Dynamics 365 for Talent", + "String_Id": "SKU_Dynamics_365_for_HCM_Trial", + "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", + "Service_Plan_Name": "Dynamics_365_Hiring_Free_PLAN", + "Service_Plan_Id": "f815ac79-c5dd-4bcc-9b78-d97f7b817d0d", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent: Attract" + }, + { + "Product_Display_Name": "Dynamics 365 for Talent", + "String_Id": "SKU_Dynamics_365_for_HCM_Trial", + "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", + "Service_Plan_Name": "Dynamics_365_Onboarding_Free_PLAN", + "Service_Plan_Id": "300b8114-8555-4313-b861-0c115d820f50", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent: Onboard" + }, + { + "Product_Display_Name": "Dynamics 365 for Talent", + "String_Id": "SKU_Dynamics_365_for_HCM_Trial", + "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", + "Service_Plan_Name": "Dynamics_365_for_HCM_Trial", + "Service_Plan_Id": "5ed38b64-c3b7-4d9f-b1cd-0de18c9c4331", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for HCM Trial" + }, + { + "Product_Display_Name": "Dynamics 365 for Talent", + "String_Id": "SKU_Dynamics_365_for_HCM_Trial", + "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Talent", + "String_Id": "SKU_Dynamics_365_for_HCM_Trial", + "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", + "Service_Plan_Name": "FLOW_DYN_APPS", + "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", + "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 for Talent", + "String_Id": "SKU_Dynamics_365_for_HCM_Trial", + "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", + "Service_Plan_Name": "POWERAPPS_DYN_APPS", + "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", + "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Talent: Attract", + "String_Id": "Dynamics_365_Hiring_SKU", + "GUID": "e561871f-74fa-4f02-abee-5b0ef54dd36d", + "Service_Plan_Name": "DYN365_CDS_DYN_APPS", + "Service_Plan_Id": "2d925ad8-2479-4bd8-bb76-5b80f1d48935", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Dynamics 365 Talent: Attract", + "String_Id": "Dynamics_365_Hiring_SKU", + "GUID": "e561871f-74fa-4f02-abee-5b0ef54dd36d", + "Service_Plan_Name": "Dynamics_365_Hiring_Free_PLAN", + "Service_Plan_Id": "f815ac79-c5dd-4bcc-9b78-d97f7b817d0d", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent: Attract" + }, + { + "Product_Display_Name": "Dynamics 365 Talent: Attract", + "String_Id": "Dynamics_365_Hiring_SKU", + "GUID": "e561871f-74fa-4f02-abee-5b0ef54dd36d", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", + "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", + "Service_Plan_Name": "DYN365_ENTERPRISE_FIELD_SERVICE", + "Service_Plan_Id": "8c66ef8a-177f-4c0d-853c-d4f219331d09", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Field Service" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", + "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", + "Service_Plan_Name": "Dynamics_365_for_Retail_Team_members", + "Service_Plan_Id": "c0454a3d-32b5-4740-b090-78c32f48f0ad", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Retail Team members" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", + "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", + "Service_Plan_Name": "DYN365_Enterprise_Talent_Attract_TeamMember", + "Service_Plan_Id": "643d201a-9884-45be-962a-06ba97062e5e", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent - Attract Experience Team Member" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", + "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", + "Service_Plan_Name": "DYN365_Enterprise_Talent_Onboard_TeamMember", + "Service_Plan_Id": "f2f49eef-4b3f-4853-809a-a055c6103fe0", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent - Onboard Experience" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", + "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", + "Service_Plan_Name": "Dynamics_365_for_Talent_Team_members", + "Service_Plan_Id": "d5156635-0704-4f66-8803-93258f8b2678", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent Team members" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", + "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", + "Service_Plan_Name": "DYN365_ENTERPRISE_TEAM_MEMBERS", + "Service_Plan_Id": "6a54b05e-4fab-40e7-9828-428db3b336fa", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Team Members" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", + "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", + "Service_Plan_Name": "Power_Pages_Internal_User", + "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", + "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", + "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", + "Service_Plan_Name": "Dynamics_365_for_Operations_Team_members", + "Service_Plan_Id": "f5aa7b45-8a36-4cd1-bc37-5d06dea98645", + "Service_Plans_Included_Friendly_Names": "Dynamics_365_for_Operations_Team_members" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", + "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", + "Service_Plan_Name": "GUIDES", + "Service_Plan_Id": "0b2c029c-dca0-454a-a336-887285d6ef07", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Guides" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", + "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", + "Service_Plan_Name": "MICROSOFT_REMOTE_ASSIST", + "Service_Plan_Id": "4f4c7800-298a-4e22-8867-96b17850d4dd", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Remote Assist" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", + "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", + "Service_Plan_Name": "POWERAPPS_GUIDES", + "Service_Plan_Id": "816971f4-37c5-424a-b12b-b56881f402e7", + "Service_Plans_Included_Friendly_Names": "Power Apps for Guides" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", + "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", + "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", + "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", + "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", + "Service_Plan_Name": "PROJECT_ESSENTIALS", + "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", + "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", + "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", + "Service_Plan_Name": "POWERAPPS_DYN_APPS", + "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", + "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", + "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", + "Service_Plan_Name": "POWERAPPS_DYN_TEAM", + "Service_Plan_Id": "52e619e2-2730-439a-b0d3-d09ab7e8b705", + "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", + "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", + "Service_Plan_Name": "FLOW_DYN_APPS", + "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", + "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", + "Service_Plan_Name": "FLOW_DYN_TEAM", + "Service_Plan_Id": "1ec58c70-f69c-486a-8109-4b87ce86e449", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS_GOV", + "GUID": "ba05762f-32ff-4fac-a096-55309b3700a3", + "Service_Plan_Name": "DYN365_ENTERPRISE_TEAM_MEMBERS_GOV", + "Service_Plan_Id": "5a94d0aa-ee95-455a-bb38-326e5f134478", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Team Members for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS_GOV", + "GUID": "ba05762f-32ff-4fac-a096-55309b3700a3", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS_GOV", + "GUID": "ba05762f-32ff-4fac-a096-55309b3700a3", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS_GOV", + "GUID": "ba05762f-32ff-4fac-a096-55309b3700a3", + "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", + "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS_GOV", + "GUID": "ba05762f-32ff-4fac-a096-55309b3700a3", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS_GOV", + "GUID": "ba05762f-32ff-4fac-a096-55309b3700a3", + "Service_Plan_Name": "FLOW_DYN_TEAM_GOV", + "Service_Plan_Id": "47bdde6a-959f-4c7f-8d59-3243e34f1cb3", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 Team Members for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS_GOV", + "GUID": "ba05762f-32ff-4fac-a096-55309b3700a3", + "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", + "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", + "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition for Government", + "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS_GOV", + "GUID": "ba05762f-32ff-4fac-a096-55309b3700a3", + "Service_Plan_Name": "POWERAPPS_DYN_TEAM_GOV", + "Service_Plan_Id": "63efc247-5f28-43e3-a2f8-00c183e3f1db", + "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 Team Members for Government" + }, + { + "Product_Display_Name": "Dynamics 365 Guides", + "String_Id": "GUIDES_USER", + "GUID": "0a389a77-9850-4dc4-b600-bc66fdfefc60", + "Service_Plan_Name": "DYN365_CDS_GUIDES", + "Service_Plan_Id": "1315ade1-0410-450d-b8e3-8050e6da320f", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Dynamics 365 Guides", + "String_Id": "GUIDES_USER", + "GUID": "0a389a77-9850-4dc4-b600-bc66fdfefc60", + "Service_Plan_Name": "GUIDES", + "Service_Plan_Id": "0b2c029c-dca0-454a-a336-887285d6ef07", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Guides" + }, + { + "Product_Display_Name": "Dynamics 365 Guides", + "String_Id": "GUIDES_USER", + "GUID": "0a389a77-9850-4dc4-b600-bc66fdfefc60", + "Service_Plan_Name": "POWERAPPS_GUIDES", + "Service_Plan_Id": "816971f4-37c5-424a-b12b-b56881f402e7", + "Service_Plans_Included_Friendly_Names": "Power Apps for Guides" + }, + { + "Product_Display_Name": "Dynamics 365 Operations - Device", + "String_Id": "Dynamics_365_for_Operations_Devices", + "GUID": "3bbd44ed-8a70-4c07-9088-6232ddbd5ddd", + "Service_Plan_Name": "DYN365_RETAIL_DEVICE", + "Service_Plan_Id": "ceb28005-d758-4df7-bb97-87a617b93d6c", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Retail Device" + }, + { + "Product_Display_Name": "Dynamics 365 Operations - Device", + "String_Id": "Dynamics_365_for_Operations_Devices", + "GUID": "3bbd44ed-8a70-4c07-9088-6232ddbd5ddd", + "Service_Plan_Name": "Dynamics_365_for_OperationsDevices", + "Service_Plan_Id": "2c9fb43e-915a-4d61-b6ca-058ece89fd66", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Operations Devices" + }, + { + "Product_Display_Name": "Dynamics 365 Operations - Device", + "String_Id": "Dynamics_365_for_Operations_Devices", + "GUID": "3bbd44ed-8a70-4c07-9088-6232ddbd5ddd", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 2:Standard Acceptance Testing", + "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier2_SKU", + "GUID": "e485d696-4c87-4aac-bf4a-91b2fb6f0fa7", + "Service_Plan_Name": "Dynamics_365_for_Operations_Sandbox_Tier2", + "Service_Plan_Id": "d8ba6fb2-c6b1-4f07-b7c8-5f2745e36b54", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Operations non-production multi-box instance for standard acceptance testing (Tier 2)" + }, + { + "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 2:Standard Acceptance Testing", + "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier2_SKU", + "GUID": "e485d696-4c87-4aac-bf4a-91b2fb6f0fa7", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 4:Standard Performance Testing", + "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier4_SKU", + "GUID": "f7ad4bca-7221-452c-bdb6-3e6089f25e06", + "Service_Plan_Name": "Dynamics_365_for_Operations_Sandbox_Tier4", + "Service_Plan_Id": "f6b5efb1-1813-426f-96d0-9b4f7438714f", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Operations Enterprise Edition - Sandbox Tier 4:Standard Performance Testing" + }, + { + "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 4:Standard Performance Testing", + "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier4_SKU", + "GUID": "f7ad4bca-7221-452c-bdb6-3e6089f25e06", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 P1 Tria for Information Workers", + "String_Id": "DYN365_ENTERPRISE_P1_IW", + "GUID": "338148b6-1b11-4102-afb9-f92b6cdc0f8d", + "Service_Plan_Name": "DYN365_ENTERPRISE_P1_IW", + "Service_Plan_Id": "056a5f80-b4e0-4983-a8be-7ad254a113c9", + "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 P1 TRIAL FOR INFORMATION WORKERS" + }, + { + "Product_Display_Name": "Dynamics 365 P1 Tria for Information Workers", + "String_Id": "DYN365_ENTERPRISE_P1_IW", + "GUID": "338148b6-1b11-4102-afb9-f92b6cdc0f8d", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" + }, + { + "Product_Display_Name": "Dynamics 365 Project Operations", + "String_Id": "DYN365_PROJECT_OPERATIONS", + "GUID": "98619618-9dc8-48c6-8f0c-741890ba5f93", + "Service_Plan_Name": "D365CDSforProjectOperations", + "Service_Plan_Id": "7df1d500-ca5c-4229-8cea-815bc88798c9", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Dynamics 365 Project Operations" + }, + { + "Product_Display_Name": "Dynamics 365 Project Operations", + "String_Id": "DYN365_PROJECT_OPERATIONS", + "GUID": "98619618-9dc8-48c6-8f0c-741890ba5f93", + "Service_Plan_Name": "D365_ProjectOperationsCDS", + "Service_Plan_Id": "18fa3aba-b085-4105-87d7-55617b8585e6", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations CDS" + }, + { + "Product_Display_Name": "Dynamics 365 Project Operations", + "String_Id": "DYN365_PROJECT_OPERATIONS", + "GUID": "98619618-9dc8-48c6-8f0c-741890ba5f93", + "Service_Plan_Name": "Power_Pages_Internal_User", + "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", + "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" + }, + { + "Product_Display_Name": "Dynamics 365 Project Operations", + "String_Id": "DYN365_PROJECT_OPERATIONS", + "GUID": "98619618-9dc8-48c6-8f0c-741890ba5f93", + "Service_Plan_Name": "DYN365_REGULATORY_SERVICE", + "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Finance and Operations, Enterprise edition - Regulatory Service" + }, + { + "Product_Display_Name": "Dynamics 365 Project Operations", + "String_Id": "DYN365_PROJECT_OPERATIONS", + "GUID": "98619618-9dc8-48c6-8f0c-741890ba5f93", + "Service_Plan_Name": "D365_ProjectOperations", + "Service_Plan_Id": "69f07c66-bee4-4222-b051-195095efee5b", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations" + }, + { + "Product_Display_Name": "Dynamics 365 Project Operations", + "String_Id": "DYN365_PROJECT_OPERATIONS", + "GUID": "98619618-9dc8-48c6-8f0c-741890ba5f93", + "Service_Plan_Name": "POWERAPPS_DYN_APPS", + "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", + "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Project Operations", + "String_Id": "DYN365_PROJECT_OPERATIONS", + "GUID": "98619618-9dc8-48c6-8f0c-741890ba5f93", + "Service_Plan_Name": "FLOW_DYN_APPS", + "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Project Operations", + "String_Id": "DYN365_PROJECT_OPERATIONS", + "GUID": "98619618-9dc8-48c6-8f0c-741890ba5f93", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Project Operations", + "String_Id": "DYN365_PROJECT_OPERATIONS", + "GUID": "98619618-9dc8-48c6-8f0c-741890ba5f93", + "Service_Plan_Name": "PROJECT_FOR_PROJECT_OPERATIONS", + "Service_Plan_Id": "0a05d977-a21a-45b2-91ce-61c240dbafa2", + "Service_Plans_Included_Friendly_Names": "Project for Project Operations" + }, + { + "Product_Display_Name": "Dynamics 365 Project Operations", + "String_Id": "DYN365_PROJECT_OPERATIONS", + "GUID": "98619618-9dc8-48c6-8f0c-741890ba5f93", + "Service_Plan_Name": "SHAREPOINTSTANDARD", + "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" + }, + { + "Product_Display_Name": "Dynamics 365 Remote Assist", + "String_Id": "MICROSOFT_REMOTE_ASSIST", + "GUID": "7a551360-26c4-4f61-84e6-ef715673e083", + "Service_Plan_Name": "CDS_REMOTE_ASSIST", + "Service_Plan_Id": "0850ebb5-64ee-4d3a-a3e1-5a97213653b5", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Remote Assist" + }, + { + "Product_Display_Name": "Dynamics 365 Remote Assist", + "String_Id": "MICROSOFT_REMOTE_ASSIST", + "GUID": "7a551360-26c4-4f61-84e6-ef715673e083", + "Service_Plan_Name": "MICROSOFT_REMOTE_ASSIST", + "Service_Plan_Id": "4f4c7800-298a-4e22-8867-96b17850d4dd", + "Service_Plans_Included_Friendly_Names": "Microsoft Remote Assist" + }, + { + "Product_Display_Name": "Dynamics 365 Remote Assist", + "String_Id": "MICROSOFT_REMOTE_ASSIST", + "GUID": "7a551360-26c4-4f61-84e6-ef715673e083", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Dynamics 365 Remote Assist HoloLens", + "String_Id": "MICROSOFT_REMOTE_ASSIST_HOLOLENS", + "GUID": "e48328a2-8e98-4484-a70f-a99f8ac9ec89", + "Service_Plan_Name": "CDS_REMOTE_ASSIST", + "Service_Plan_Id": "0850ebb5-64ee-4d3a-a3e1-5a97213653b5", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Remote Assist" + }, + { + "Product_Display_Name": "Dynamics 365 Remote Assist HoloLens", + "String_Id": "MICROSOFT_REMOTE_ASSIST_HOLOLENS", + "GUID": "e48328a2-8e98-4484-a70f-a99f8ac9ec89", + "Service_Plan_Name": "MICROSOFT_REMOTE_ASSIST", + "Service_Plan_Id": "4f4c7800-298a-4e22-8867-96b17850d4dd", + "Service_Plans_Included_Friendly_Names": "Microsoft Remote Assist" + }, + { + "Product_Display_Name": "Dynamics 365 Remote Assist HoloLens", + "String_Id": "MICROSOFT_REMOTE_ASSIST_HOLOLENS", + "GUID": "e48328a2-8e98-4484-a70f-a99f8ac9ec89", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Dynamics 365 Sales Enterprise Attach to Qualifying Dynamics 365 Base Offer", + "String_Id": "D365_SALES_ENT_ATTACH", + "GUID": "5b22585d-1b71-4c6b-b6ec-160b1a9c2323", + "Service_Plan_Name": "D365_SALES_ENT_ATTACH", + "Service_Plan_Id": "3ae52229-572e-414f-937c-ff35a87d4f29", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Enterprise Attach" + }, + { + "Product_Display_Name": "Dynamics 365 Sales Enterprise Attach to Qualifying Dynamics 365 Base Offer", + "String_Id": "D365_SALES_ENT_ATTACH", + "GUID": "5b22585d-1b71-4c6b-b6ec-160b1a9c2323", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Talent: Onboard", + "String_Id": "DYNAMICS_365_ONBOARDING_SKU", + "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0", + "Service_Plan_Name": "DYN365_CDS_DYN_APPS", + "Service_Plan_Id": "2d925ad8-2479-4bd8-bb76-5b80f1d48935", + "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE" + }, + { + "Product_Display_Name": "Dynamics 365 Talent: Onboard", + "String_Id": "DYNAMICS_365_ONBOARDING_SKU", + "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0", + "Service_Plan_Name": "Dynamics_365_Onboarding_Free_PLAN", + "Service_Plan_Id": "300b8114-8555-4313-b861-0c115d820f50", + "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT: ONBOARD" + }, + { + "Product_Display_Name": "Dynamics 365 Talent: Onboard", + "String_Id": "DYNAMICS_365_ONBOARDING_SKU", + "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0", + "Service_Plan_Name": "Dynamics_365_Talent_Onboard", + "Service_Plan_Id": "048a552e-c849-4027-b54c-4c7ead26150a", + "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT: ONBOARD" + }, + { + "Product_Display_Name": "Dynamics 365 Talent: Onboard", + "String_Id": "DYNAMICS_365_ONBOARDING_SKU", + "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" + }, + { + "Product_Display_Name": "Dynamics 365 Team Members", + "String_Id": "DYN365_TEAM_MEMBERS", + "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", + "Service_Plan_Name": "DYN365_ENTERPRISE_FIELD_SERVICE", + "Service_Plan_Id": "8c66ef8a-177f-4c0d-853c-d4f219331d09", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Field Service" + }, + { + "Product_Display_Name": "Dynamics 365 Team Members", + "String_Id": "DYN365_TEAM_MEMBERS", + "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", + "Service_Plan_Name": "Dynamics_365_for_Retail_Team_members", + "Service_Plan_Id": "c0454a3d-32b5-4740-b090-78c32f48f0ad", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Retail Team members" + }, + { + "Product_Display_Name": "Dynamics 365 Team Members", + "String_Id": "DYN365_TEAM_MEMBERS", + "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", + "Service_Plan_Name": "DYN365_Enterprise_Talent_Attract_TeamMember", + "Service_Plan_Id": "643d201a-9884-45be-962a-06ba97062e5e", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent - Attract Experience Team Member" + }, + { + "Product_Display_Name": "Dynamics 365 Team Members", + "String_Id": "DYN365_TEAM_MEMBERS", + "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", + "Service_Plan_Name": "DYN365_Enterprise_Talent_Onboard_TeamMember", + "Service_Plan_Id": "f2f49eef-4b3f-4853-809a-a055c6103fe0", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent - Onboard Experience" + }, + { + "Product_Display_Name": "Dynamics 365 Team Members", + "String_Id": "DYN365_TEAM_MEMBERS", + "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", + "Service_Plan_Name": "Dynamics_365_for_Talent_Team_members", + "Service_Plan_Id": "d5156635-0704-4f66-8803-93258f8b2678", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent Team members" + }, + { + "Product_Display_Name": "Dynamics 365 Team Members", + "String_Id": "DYN365_TEAM_MEMBERS", + "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", + "Service_Plan_Name": "DYN365_TEAM_MEMBERS", + "Service_Plan_Id": "4092fdb5-8d81-41d3-be76-aaba4074530b", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Team Members" + }, + { + "Product_Display_Name": "Dynamics 365 Team Members", + "String_Id": "DYN365_TEAM_MEMBERS", + "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", + "Service_Plan_Name": "Power_Pages_Internal_User", + "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941", + "Service_Plans_Included_Friendly_Names": "Power Pages Internal User" + }, + { + "Product_Display_Name": "Dynamics 365 Team Members", + "String_Id": "DYN365_TEAM_MEMBERS", + "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", + "Service_Plan_Name": "Dynamics_365_for_Operations_Team_members", + "Service_Plan_Id": "f5aa7b45-8a36-4cd1-bc37-5d06dea98645", + "Service_Plans_Included_Friendly_Names": "Dynamics_365_for_Operations_Team_members" + }, + { + "Product_Display_Name": "Dynamics 365 Team Members", + "String_Id": "DYN365_TEAM_MEMBERS", + "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", + "Service_Plan_Name": "GUIDES", + "Service_Plan_Id": "0b2c029c-dca0-454a-a336-887285d6ef07", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Guides" + }, + { + "Product_Display_Name": "Dynamics 365 Team Members", + "String_Id": "DYN365_TEAM_MEMBERS", + "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", + "Service_Plan_Name": "MICROSOFT_REMOTE_ASSIST", + "Service_Plan_Id": "4f4c7800-298a-4e22-8867-96b17850d4dd", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Remote Assist" + }, + { + "Product_Display_Name": "Dynamics 365 Team Members", + "String_Id": "DYN365_TEAM_MEMBERS", + "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", + "Service_Plan_Name": "POWERAPPS_GUIDES", + "Service_Plan_Id": "816971f4-37c5-424a-b12b-b56881f402e7", + "Service_Plans_Included_Friendly_Names": "Power Apps for Guides" + }, + { + "Product_Display_Name": "Dynamics 365 Team Members", + "String_Id": "DYN365_TEAM_MEMBERS", + "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Dynamics 365 Team Members", + "String_Id": "DYN365_TEAM_MEMBERS", + "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Dynamics 365 Team Members", + "String_Id": "DYN365_TEAM_MEMBERS", + "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Dynamics 365 Team Members", + "String_Id": "DYN365_TEAM_MEMBERS", + "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", + "Service_Plan_Name": "PROJECT_ESSENTIALS", + "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials" + }, + { + "Product_Display_Name": "Dynamics 365 Team Members", + "String_Id": "DYN365_TEAM_MEMBERS", + "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Dynamics 365 Team Members", + "String_Id": "DYN365_TEAM_MEMBERS", + "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", + "Service_Plan_Name": "POWERAPPS_DYN_TEAM", + "Service_Plan_Id": "52e619e2-2730-439a-b0d3-d09ab7e8b705", + "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Team Members", + "String_Id": "DYN365_TEAM_MEMBERS", + "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", + "Service_Plan_Name": "FLOW_DYN_APPS", + "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 Team Members", + "String_Id": "DYN365_TEAM_MEMBERS", + "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", + "Service_Plan_Name": "FLOW_DYN_TEAM", + "Service_Plan_Id": "1ec58c70-f69c-486a-8109-4b87ce86e449", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" + }, + { + "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition", + "String_Id": "Dynamics_365_for_Operations", + "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", + "Service_Plan_Name": "DDYN365_CDS_DYN_P2", + "Service_Plan_Id": "d1142cfd-872e-4e77-b6ff-d98ec5a51f66", + "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE" + }, + { + "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition", + "String_Id": "Dynamics_365_for_Operations", + "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", + "Service_Plan_Name": "DYN365_TALENT_ENTERPRISE", + "Service_Plan_Id": "65a1ebf4-6732-4f00-9dcb-3d115ffdeecd", + "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT" + }, + { + "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition", + "String_Id": "Dynamics_365_for_Operations", + "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", + "Service_Plan_Name": "Dynamics_365_for_Operations", + "Service_Plan_Id": "95d2cd7b-1007-484b-8595-5e97e63fe189", + "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR_OPERATIONS" + }, + { + "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition", + "String_Id": "Dynamics_365_for_Operations", + "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", + "Service_Plan_Name": "Dynamics_365_for_Retail", + "Service_Plan_Id": "a9e39199-8369-444b-89c1-5fe65ec45665", + "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR RETAIL" + }, + { + "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition", + "String_Id": "Dynamics_365_for_Operations", + "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", + "Service_Plan_Name": "DYNAMICS_365_HIRING_FREE_PLAN", + "Service_Plan_Id": "f815ac79-c5dd-4bcc-9b78-d97f7b817d0d", + "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 HIRING FREE PLAN" + }, + { + "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition", + "String_Id": "Dynamics_365_for_Operations", + "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", + "Service_Plan_Name": "Dynamics_365_Onboarding_Free_PLAN", + "Service_Plan_Id": "300b8114-8555-4313-b861-0c115d820f50", + "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT: ONBOARD" + }, + { + "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition", + "String_Id": "Dynamics_365_for_Operations", + "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", + "Service_Plan_Name": "FLOW_DYN_P2", + "Service_Plan_Id": "b650d915-9886-424b-a08d-633cede56f57", + "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 36" + }, + { + "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition", + "String_Id": "Dynamics_365_for_Operations", + "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", + "Service_Plan_Name": "POWERAPPS_DYN_P2", + "Service_Plan_Id": "0b03f40b-c404-40c3-8651-2aceb74365fa", + "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", + "String_Id": "EMS_EDU_FACULTY", + "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", + "String_Id": "EMS_EDU_FACULTY", + "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", + "Service_Plan_Name": "AAD_EDU", + "Service_Plan_Id": "3a3976ce-de18-4a87-a78e-5e9245e252df", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID for Education" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", + "String_Id": "EMS_EDU_FACULTY", + "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", + "String_Id": "EMS_EDU_FACULTY", + "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", + "String_Id": "EMS_EDU_FACULTY", + "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", + "String_Id": "EMS_EDU_FACULTY", + "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", + "String_Id": "EMS_EDU_FACULTY", + "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", + "String_Id": "EMS_EDU_FACULTY", + "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", + "String_Id": "EMS_EDU_FACULTY", + "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", + "Service_Plan_Name": "INTUNE_EDU", + "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty", + "String_Id": "EMS_EDU_FACULTY", + "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952", + "Service_Plan_Name": "WINDOWS_STORE", + "Service_Plan_Id": "a420f25f-a7b3-4ff5-a9d0-5d58f73b537d", + "Service_Plans_Included_Friendly_Names": "Windows Store Service" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E3", + "String_Id": "EMS", + "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E3", + "String_Id": "EMS", + "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E3", + "String_Id": "EMS", + "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "CLOUD APP SECURITY DISCOVERY" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E3", + "String_Id": "EMS", + "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E3", + "String_Id": "EMS", + "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra RIGHTS" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E3", + "String_Id": "EMS", + "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E3", + "String_Id": "EMS", + "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E5", + "String_Id": "EMSPREMIUM", + "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E5", + "String_Id": "EMSPREMIUM", + "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E5", + "String_Id": "EMSPREMIUM", + "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E5", + "String_Id": "EMSPREMIUM", + "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", + "Service_Plan_Name": "RMS_S_PREMIUM2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P2" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E5", + "String_Id": "EMSPREMIUM", + "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E5", + "String_Id": "EMSPREMIUM", + "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra RIGHTS" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E5", + "String_Id": "EMSPREMIUM", + "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E5", + "String_Id": "EMSPREMIUM", + "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "MICROSOFT CLOUD APP SECURITY" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E5", + "String_Id": "EMSPREMIUM", + "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR IDENTITY" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E5", + "String_Id": "EMSPREMIUM", + "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E5_USGOV_GCCHIGH", + "String_Id": "EMSPREMIUM_USGOV_GCCHIGH", + "GUID": "a461b89c-10e3-471c-82b8-aae4d820fccb", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E5_USGOV_GCCHIGH", + "String_Id": "EMSPREMIUM_USGOV_GCCHIGH", + "GUID": "a461b89c-10e3-471c-82b8-aae4d820fccb", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E5_USGOV_GCCHIGH", + "String_Id": "EMSPREMIUM_USGOV_GCCHIGH", + "GUID": "a461b89c-10e3-471c-82b8-aae4d820fccb", + "Service_Plan_Name": "RMS_S_PREMIUM2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E5_USGOV_GCCHIGH", + "String_Id": "EMSPREMIUM_USGOV_GCCHIGH", + "GUID": "a461b89c-10e3-471c-82b8-aae4d820fccb", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E5_USGOV_GCCHIGH", + "String_Id": "EMSPREMIUM_USGOV_GCCHIGH", + "GUID": "a461b89c-10e3-471c-82b8-aae4d820fccb", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E5_USGOV_GCCHIGH", + "String_Id": "EMSPREMIUM_USGOV_GCCHIGH", + "GUID": "a461b89c-10e3-471c-82b8-aae4d820fccb", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E5_USGOV_GCCHIGH", + "String_Id": "EMSPREMIUM_USGOV_GCCHIGH", + "GUID": "a461b89c-10e3-471c-82b8-aae4d820fccb", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E5_USGOV_GCCHIGH", + "String_Id": "EMSPREMIUM_USGOV_GCCHIGH", + "GUID": "a461b89c-10e3-471c-82b8-aae4d820fccb", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E5_USGOV_GCCHIGH", + "String_Id": "EMSPREMIUM_USGOV_GCCHIGH", + "GUID": "a461b89c-10e3-471c-82b8-aae4d820fccb", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security E5_USGOV_GCCHIGH", + "String_Id": "EMSPREMIUM_USGOV_GCCHIGH", + "GUID": "a461b89c-10e3-471c-82b8-aae4d820fccb", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", + "String_Id": "EMS_GOV", + "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", + "String_Id": "EMS_GOV", + "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", + "String_Id": "EMS_GOV", + "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", + "String_Id": "EMS_GOV", + "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", + "String_Id": "EMS_GOV", + "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra Rights" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", + "String_Id": "EMS_GOV", + "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", + "String_Id": "EMS_GOV", + "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", + "String_Id": "EMSPREMIUM_GOV", + "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", + "String_Id": "EMSPREMIUM_GOV", + "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", + "String_Id": "EMSPREMIUM_GOV", + "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", + "String_Id": "EMSPREMIUM_GOV", + "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", + "Service_Plan_Name": "RMS_S_PREMIUM2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", + "String_Id": "EMSPREMIUM_GOV", + "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", + "String_Id": "EMSPREMIUM_GOV", + "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", + "Service_Plan_Name": "RMS_S_ENTERPRISE)", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra Rights" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", + "String_Id": "EMSPREMIUM_GOV", + "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", + "String_Id": "EMSPREMIUM_GOV", + "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", + "String_Id": "EMSPREMIUM_GOV", + "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" + }, + { + "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", + "String_Id": "EMSPREMIUM_GOV", + "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Exchange Enterprise CAL Services (EOP DLP)", + "String_Id": "EOP_ENTERPRISE_PREMIUM", + "GUID": "e8ecdf70-47a8-4d39-9d15-093624b7f640", + "Service_Plan_Name": "EOP_ENTERPRISE_PREMIUM", + "Service_Plan_Id": "75badc48-628e-4446-8460-41344d73abd6", + "Service_Plans_Included_Friendly_Names": "Exchange Enterprise CAL Services (EOP DLP)" + }, + { + "Product_Display_Name": "Exchange Enterprise CAL Services (EOP DLP)", + "String_Id": "EOP_ENTERPRISE_PREMIUM", + "GUID": "e8ecdf70-47a8-4d39-9d15-093624b7f640", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra Rights" + }, + { + "Product_Display_Name": "Exchange Online (Plan 1)", + "String_Id": "EXCHANGESTANDARD", + "GUID": "4b9405b0-7788-4568-add1-99614e613b69", + "Service_Plan_Name": "EXCHANGE_S_STANDARD", + "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" + }, + { + "Product_Display_Name": "Exchange Online (Plan 1)", + "String_Id": "EXCHANGESTANDARD", + "GUID": "4b9405b0-7788-4568-add1-99614e613b69", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Exchange Online (Plan 1)", + "String_Id": "EXCHANGESTANDARD", + "GUID": "4b9405b0-7788-4568-add1-99614e613b69", + "Service_Plan_Name": "BPOS_S_TODO_1", + "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" + }, + { + "Product_Display_Name": "Exchange Online (Plan 1) for Alumni with Yammer", + "String_Id": "EXCHANGESTANDARD_ALUMNI", + "GUID": "aa0f9eb7-eff2-4943-8424-226fb137fcad", + "Service_Plan_Name": "EXCHANGE_S_STANDARD", + "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" + }, + { + "Product_Display_Name": "Exchange Online (Plan 1) for Alumni with Yammer", + "String_Id": "EXCHANGESTANDARD_ALUMNI", + "GUID": "aa0f9eb7-eff2-4943-8424-226fb137fcad", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Exchange Online (Plan 1) for Alumni with Yammer", + "String_Id": "EXCHANGESTANDARD_ALUMNI", + "GUID": "aa0f9eb7-eff2-4943-8424-226fb137fcad", + "Service_Plan_Name": "YAMMER_EDU", + "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", + "Service_Plans_Included_Friendly_Names": "Yammer for Academic" + }, + { + "Product_Display_Name": "Exchange Online (Plan 1) for Students", + "String_Id": "EXCHANGESTANDARD_STUDENT", + "GUID": "ad2fe44a-915d-4e2b-ade1-6766d50a9d9c", + "Service_Plan_Name": "EXCHANGE_S_STANDARD", + "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" + }, + { + "Product_Display_Name": "Exchange Online (Plan 1) for Students", + "String_Id": "EXCHANGESTANDARD_STUDENT", + "GUID": "ad2fe44a-915d-4e2b-ade1-6766d50a9d9c", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Exchange Online (Plan 1) for Students", + "String_Id": "EXCHANGESTANDARD_STUDENT", + "GUID": "ad2fe44a-915d-4e2b-ade1-6766d50a9d9c", + "Service_Plan_Name": "BPOS_S_TODO_1", + "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" + }, + { + "Product_Display_Name": "Exchange Online (Plan 1) for Students", + "String_Id": "EXCHANGESTANDARD_STUDENT", + "GUID": "ad2fe44a-915d-4e2b-ade1-6766d50a9d9c", + "Service_Plan_Name": "RMS_S_BASIC", + "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" + }, + { + "Product_Display_Name": "Exchange Online (Plan 1) for GCC", + "String_Id": "EXCHANGESTANDARD_GOV", + "GUID": "f37d5ebf-4bf1-4aa2-8fa3-50c51059e983", + "Service_Plan_Name": "EXCHANGE_S_STANDARD_GOV", + "Service_Plan_Id": "e9b4930a-925f-45e2-ac2a-3f7788ca6fdd", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1) for Government" + }, + { + "Product_Display_Name": "Exchange Online (Plan 1) for GCC", + "String_Id": "EXCHANGESTANDARD_GOV", + "GUID": "f37d5ebf-4bf1-4aa2-8fa3-50c51059e983", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Exchange Online (Plan 2)", + "String_Id": "EXCHANGEENTERPRISE", + "GUID": "19ec0d23-8335-4cbd-94ac-6050e30712fa", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)" + }, + { + "Product_Display_Name": "Exchange Online (Plan 2) for Faculty", + "String_Id": "EXCHANGEENTERPRISE_FACULTY", + "GUID": "0b7b15a8-7fd2-4964-bb96-5a566d4e3c15", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Exchange Online (Plan 2) for Faculty", + "String_Id": "EXCHANGEENTERPRISE_FACULTY", + "GUID": "0b7b15a8-7fd2-4964-bb96-5a566d4e3c15", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Exchange Online (Plan 2) for Faculty", + "String_Id": "EXCHANGEENTERPRISE_FACULTY", + "GUID": "0b7b15a8-7fd2-4964-bb96-5a566d4e3c15", + "Service_Plan_Name": "BPOS_S_TODO_1", + "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" + }, + { + "Product_Display_Name": "Exchange Online (Plan 2) for Faculty", + "String_Id": "EXCHANGEENTERPRISE_FACULTY", + "GUID": "0b7b15a8-7fd2-4964-bb96-5a566d4e3c15", + "Service_Plan_Name": "RMS_S_BASIC", + "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" + }, + { + "Product_Display_Name": "Exchange Online Archiving for Exchange Online", + "String_Id": "EXCHANGEARCHIVE_ADDON", + "GUID": "ee02fd1b-340e-4a4b-b355-4a514e4c8943", + "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", + "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", + "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE ONLINE" + }, + { + "Product_Display_Name": "Exchange Online Archiving for Exchange Server", + "String_Id": "EXCHANGEARCHIVE", + "GUID": "90b5e015-709a-4b8b-b08e-3200f994494c", + "Service_Plan_Name": "EXCHANGE_S_ARCHIVE", + "Service_Plan_Id": "da040e0a-b393-4bea-bb76-928b3fa1cf5a", + "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE SERVER" + }, + { + "Product_Display_Name": "Exchange Online Essentials (ExO P1 Based)", + "String_Id": "EXCHANGEESSENTIALS", + "GUID": "7fc0182e-d107-4556-8329-7caaa511197b", + "Service_Plan_Name": "EXCHANGE_S_STANDARD", + "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", + "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" + }, + { + "Product_Display_Name": "Exchange Online Essentials", + "String_Id": "EXCHANGE_S_ESSENTIALS", + "GUID": "e8f81a67-bd96-4074-b108-cf193eb9433b", + "Service_Plan_Name": "EXCHANGE_S_ESSENTIALS", + "Service_Plan_Id": "1126bef5-da20-4f07-b45e-ad25d2581aa8", + "Service_Plans_Included_Friendly_Names": "EXCHANGE ESSENTIALS" + }, + { + "Product_Display_Name": "Exchange Online Essentials", + "String_Id": "EXCHANGE_S_ESSENTIALS", + "GUID": "e8f81a67-bd96-4074-b108-cf193eb9433b", + "Service_Plan_Name": "BPOS_S_TODO_1", + "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", + "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)" + }, + { + "Product_Display_Name": "Exchange Online Kiosk", + "String_Id": "EXCHANGEDESKLESS", + "GUID": "80b2d799-d2ba-4d2a-8842-fb0d0f3a4b82", + "Service_Plan_Name": "EXCHANGE_S_DESKLESS", + "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", + "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE KIOSK" + }, + { + "Product_Display_Name": "Exchange Online POP", + "String_Id": "EXCHANGETELCO", + "GUID": "cb0a98a8-11bc-494c-83d9-c1b1ac65327e", + "Service_Plan_Name": "EXCHANGE_B_STANDARD", + "Service_Plan_Id": "90927877-dcff-4af6-b346-2332c0b15bb7", + "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE POP" + }, + { + "Product_Display_Name": "Exchange Online Protection", + "String_Id": "EOP_ENTERPRISE", + "GUID": "45a2423b-e884-448d-a831-d9e139c52d2f", + "Service_Plan_Name": "EOP_ENTERPRISE", + "Service_Plan_Id": "326e2b78-9d27-42c9-8509-46c827743a17", + "Service_Plans_Included_Friendly_Names": "Exchange Online Protection" + }, + { + "Product_Display_Name": "Intune", + "String_Id": "INTUNE_A", + "GUID": "061f9ace-7d42-4136-88ac-31dc755f143f", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" + }, + { + "Product_Display_Name": "Intune for Education", + "String_Id": "INTUNE_EDU", + "GUID": "d9d89b70-a645-4c24-b041-8d3cb1884ec7", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Intune for Education", + "String_Id": "INTUNE_EDU", + "GUID": "d9d89b70-a645-4c24-b041-8d3cb1884ec7", + "Service_Plan_Name": "AAD_EDU", + "Service_Plan_Id": "3a3976ce-de18-4a87-a78e-5e9245e252df", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID for Education" + }, + { + "Product_Display_Name": "Intune for Education", + "String_Id": "INTUNE_EDU", + "GUID": "d9d89b70-a645-4c24-b041-8d3cb1884ec7", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Intune for Education", + "String_Id": "INTUNE_EDU", + "GUID": "d9d89b70-a645-4c24-b041-8d3cb1884ec7", + "Service_Plan_Name": "INTUNE_EDU", + "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" + }, + { + "Product_Display_Name": "Intune for Education", + "String_Id": "INTUNE_EDU", + "GUID": "d9d89b70-a645-4c24-b041-8d3cb1884ec7", + "Service_Plan_Name": "WINDOWS_STORE", + "Service_Plan_Id": "a420f25f-a7b3-4ff5-a9d0-5d58f73b537d", + "Service_Plans_Included_Friendly_Names": "Windows Store Service" + }, + { + "Product_Display_Name": "Microsoft Dynamics AX7 User Trial", + "String_Id": "AX7_USER_TRIAL", + "GUID": "fcecd1f9-a91e-488d-a918-a96cdb6ce2b0", + "Service_Plan_Name": "ERP_TRIAL_INSTANCE", + "Service_Plan_Id": "e2f705fd-2468-4090-8c58-fad6e6b1e724", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 Operations Trial Environment" + }, + { + "Product_Display_Name": "Microsoft Dynamics AX7 User Trial", + "String_Id": "AX7_USER_TRIAL", + "GUID": "fcecd1f9-a91e-488d-a918-a96cdb6ce2b0", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Dynamics CRM Online Basic for Government", + "String_Id": "CRMPLAN2_GCC", + "GUID": "3856cd1b-8033-458e-8d0f-9909ec6e6e6d", + "Service_Plan_Name": "CRMPLAN2_GCC", + "Service_Plan_Id": "3d53f6d9-d6e0-45c1-9575-6acd77692584", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Government Basic" + }, + { + "Product_Display_Name": "Microsoft Dynamics CRM Online Basic for Government", + "String_Id": "CRMPLAN2_GCC", + "GUID": "3856cd1b-8033-458e-8d0f-9909ec6e6e6d", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Dynamics CRM Online Basic for Government", + "String_Id": "CRMPLAN2_GCC", + "GUID": "3856cd1b-8033-458e-8d0f-9909ec6e6e6d", + "Service_Plan_Name": "FLOW_DYN_APPS_GOV", + "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Microsoft Dynamics CRM Online Basic for Government", + "String_Id": "CRMPLAN2_GCC", + "GUID": "3856cd1b-8033-458e-8d0f-9909ec6e6e6d", + "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", + "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", + "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Microsoft Dynamics CRM Online for Government", + "String_Id": "CRMSTANDARD_GCC", + "GUID": "ba051a1a-4c3d-4ccd-9890-6fa6a4e696e7", + "Service_Plan_Name": "CRMSTANDARD_GCC", + "Service_Plan_Id": "2b8c7c8c-9db5-44a5-a1dd-f4aa5b97b372", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Professional for Government" + }, + { + "Product_Display_Name": "Microsoft Dynamics CRM Online for Government", + "String_Id": "CRMSTANDARD_GCC", + "GUID": "ba051a1a-4c3d-4ccd-9890-6fa6a4e696e7", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Dynamics CRM Online for Government", + "String_Id": "CRMSTANDARD_GCC", + "GUID": "ba051a1a-4c3d-4ccd-9890-6fa6a4e696e7", + "Service_Plan_Name": "FLOW_DYN_APPS_GOV", + "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Microsoft Dynamics CRM Online for Government", + "String_Id": "CRMSTANDARD_GCC", + "GUID": "ba051a1a-4c3d-4ccd-9890-6fa6a4e696e7", + "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", + "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", + "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Microsoft Azure Multi-Factor Authentication", + "String_Id": "MFA_STANDALONE", + "GUID": "cb2020b1-d8f6-41c0-9acd-8ff3d6d7831b", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Azure Multi-Factor Authentication", + "String_Id": "MFA_STANDALONE", + "GUID": "cb2020b1-d8f6-41c0-9acd-8ff3d6d7831b", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2)", + "String_Id": "THREAT_INTELLIGENCE", + "GUID": "3dd6cf57-d688-4eed-ba52-9e40b5468c3e", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2)", + "String_Id": "THREAT_INTELLIGENCE", + "GUID": "3dd6cf57-d688-4eed-ba52-9e40b5468c3e", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2)", + "String_Id": "THREAT_INTELLIGENCE", + "GUID": "3dd6cf57-d688-4eed-ba52-9e40b5468c3e", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A1", + "String_Id": "M365EDU_A1", + "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb", + "Service_Plan_Name": "AAD_EDU", + "Service_Plan_Id": "3a3976ce-de18-4a87-a78e-5e9245e252df", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A1", + "String_Id": "M365EDU_A1", + "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb", + "Service_Plan_Name": "INTUNE_EDU", + "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", + "Service_Plans_Included_Friendly_Names": "Intune for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A1", + "String_Id": "M365EDU_A1", + "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft 365 A1", + "String_Id": "M365EDU_A1", + "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb", + "Service_Plan_Name": "WINDOWS_STORE", + "Service_Plan_Id": "a420f25f-a7b3-4ff5-a9d0-5d58f73b537d", + "Service_Plans_Included_Friendly_Names": "Windows Store Service" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "AAD_BASIC_EDU", + "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "CDS_O365_P2", + "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "EducationAnalyticsP1", + "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", + "Service_Plans_Included_Friendly_Names": "Education Analytics" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "MDE_LITE", + "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", + "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "KAIZALA_O365_P3", + "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", + "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", + "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "PROJECT_O365_P2", + "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", + "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", + "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", + "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "BPOS_S_TODO_2", + "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "WHITEBOARD_PLAN2", + "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "YAMMER_EDU", + "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", + "Service_Plans_Included_Friendly_Names": "Yammer for Academic" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", + "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "DYN365_CDS_O365_P2", + "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "INTUNE_EDU", + "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "POWERAPPS_O365_P2", + "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "FLOW_O365_P2", + "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Faculty", + "String_Id": "M365EDU_A3_FACULTY", + "GUID": "4b590615-0888-425a-a965-b3bf7789848d", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", + "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "AAD_BASIC_EDU", + "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "CDS_O365_P2", + "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "EducationAnalyticsP1", + "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", + "Service_Plans_Included_Friendly_Names": "Education Analytics" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "MDE_LITE", + "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", + "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "KAIZALA_O365_P3", + "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", + "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", + "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "PROJECT_O365_P2", + "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", + "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", + "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", + "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "BPOS_S_TODO_2", + "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "WHITEBOARD_PLAN2", + "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "YAMMER_EDU", + "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", + "Service_Plans_Included_Friendly_Names": "Yammer for Academic" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", + "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "DYN365_CDS_O365_P2", + "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "INTUNE_EDU", + "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "POWERAPPS_O365_P2", + "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "FLOW_O365_P2", + "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for Students", + "String_Id": "M365EDU_A3_STUDENT", + "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", + "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "AAD_BASIC_EDU", + "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "EducationAnalyticsP1", + "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", + "Service_Plans_Included_Friendly_Names": "Education Analytics" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", + "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "KAIZALA_O365_P3", + "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", + "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", + "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "PROJECT_O365_P2", + "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", + "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", + "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", + "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "BPOS_S_TODO_2", + "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "WHITEBOARD_PLAN2", + "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "YAMMER_EDU", + "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", + "Service_Plans_Included_Friendly_Names": "Yammer for Academic" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING", + "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086", + "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", + "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "DYN365_CDS_O365_P2", + "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "INTUNE_EDU", + "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "POWERAPPS_O365_P2", + "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A3 for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT", + "GUID": "18250162-5d87-4436-a834-d795c15c80f3", + "Service_Plan_Name": "FLOW_O365_P2", + "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A3 Suite features for faculty", + "String_Id": "Microsoft 365 A3 Suite features for faculty", + "GUID": "32a0e471-8a27-4167-b24f-941559912425", + "Service_Plan_Name": "MDE_LITE", + "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 A3 Suite features for faculty", + "String_Id": "Microsoft 365 A3 Suite features for faculty", + "GUID": "32a0e471-8a27-4167-b24f-941559912425", + "Service_Plan_Name": "INTUNE_EDU", + "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1 for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A3 Suite features for faculty", + "String_Id": "Microsoft 365 A3 Suite features for faculty", + "GUID": "32a0e471-8a27-4167-b24f-941559912425", + "Service_Plan_Name": "REMOTE_HELP", + "Service_Plan_Id": "a4c6cf29-1168-4076-ba5c-e8fe0e62b17e", + "Service_Plans_Included_Friendly_Names": "Remote help" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "AAD_BASIC_EDU", + "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "EducationAnalyticsP1", + "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", + "Service_Plans_Included_Friendly_Names": "Education Analytics" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "OFFICESUBSCRIPTION_unattended", + "Service_Plan_Id": "8d77e2d9-9e28-4450-8431-0def64078fc5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise (Unattended)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", + "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "KAIZALA_O365_P3", + "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", + "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", + "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "PROJECT_O365_P2", + "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", + "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", + "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", + "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "BPOS_S_TODO_2", + "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "WHITEBOARD_PLAN2", + "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "YAMMER_EDU", + "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", + "Service_Plans_Included_Friendly_Names": "Yammer for Academic" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING", + "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086", + "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", + "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "DYN365_CDS_O365_P2", + "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "INTUNE_EDU", + "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "POWERAPPS_O365_P2", + "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", + "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", + "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", + "Service_Plan_Name": "FLOW_O365_P2", + "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "AAD_BASIC_EDU", + "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "CDS_O365_P3", + "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "EducationAnalyticsP1", + "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", + "Service_Plans_Included_Friendly_Names": "Education Analytics" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "MCOMEETADV", + "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "DATA_INVESTIGATIONS", + "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "EXCEL_PREMIUM", + "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", + "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "OFFICE_FORMS_PLAN_3", + "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "KAIZALA_STANDALONE", + "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "EXCHANGE_ANALYTICS", + "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "STREAM_O365_E5", + "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", + "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", + "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "PAM_ENTERPRISE", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "SAFEDOCS", + "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", + "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "POWERAPPS_O365_P3", + "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "PROJECT_O365_P3", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", + "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", + "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", + "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", + "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", + "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "YAMMER_EDU", + "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", + "Service_Plans_Included_Friendly_Names": "Yammer for Academic" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "MICROSOFTENDPOINTDLP", + "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", + "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "RMS_S_PREMIUM2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "INTUNE_EDU", + "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "FLOW_O365_P3", + "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Faculty", + "String_Id": "M365EDU_A5_FACULTY", + "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", + "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "AAD_BASIC_EDU", + "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "CDS_O365_P3", + "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "EducationAnalyticsP1", + "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", + "Service_Plans_Included_Friendly_Names": "Education Analytics" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "MCOMEETADV", + "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "DATA_INVESTIGATIONS", + "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "EXCEL_PREMIUM", + "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", + "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "OFFICE_FORMS_PLAN_3", + "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "KAIZALA_STANDALONE", + "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "EXCHANGE_ANALYTICS", + "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "STREAM_O365_E5", + "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", + "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", + "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "PAM_ENTERPRISE", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "SAFEDOCS", + "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", + "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "POWERAPPS_O365_P3", + "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "PROJECT_O365_P3", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", + "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", + "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", + "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", + "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", + "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "YAMMER_EDU", + "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", + "Service_Plans_Included_Friendly_Names": "Yammer for Academic" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "MICROSOFTENDPOINTDLP", + "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", + "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "RMS_S_PREMIUM2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "INTUNE_EDU", + "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "FLOW_O365_P3", + "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for Students", + "String_Id": "M365EDU_A5_STUDENT", + "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", + "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "AAD_BASIC_EDU", + "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "EducationAnalyticsP1", + "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", + "Service_Plans_Included_Friendly_Names": "Education Analytics" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", + "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "KAIZALA_STANDALONE", + "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", + "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", + "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "SAFEDOCS", + "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", + "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "PROJECT_O365_P3", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", + "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", + "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", + "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "BPOS_S_TODO_2", + "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "YAMMER_EDU", + "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", + "Service_Plans_Included_Friendly_Names": "Yammer for Academic" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING", + "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086", + "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", + "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "INTUNE_EDU", + "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "POWERAPPS_O365_P2", + "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A5 for students use benefit", + "String_Id": "M365EDU_A5_STUUSEBNFT", + "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", + "Service_Plan_Name": "FLOW_O365_P2", + "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty", + "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY", + "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Premium" + }, + { + "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty", + "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY", + "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty", + "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY", + "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty", + "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY", + "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278", + "Service_Plan_Name": "SAFEDOCS", + "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", + "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" + }, + { + "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty", + "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY", + "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278", + "Service_Plan_Name": "MICROSOFTENDPOINTDLP", + "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" + }, + { + "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty", + "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY", + "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278", + "Service_Plan_Name": "INTUNE_EDU", + "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1 for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "AAD_BASIC_EDU", + "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for EDU" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P3" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "EducationAnalyticsP1", + "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", + "Service_Plans_Included_Friendly_Names": "Education Analytics" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "INTUNE_EDU", + "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", + "Service_Plans_Included_Friendly_Names": "Intune for Education" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", + "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "KAIZALA_STANDALONE", + "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", + "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", + "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "SAFEDOCS", + "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", + "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office for the web (Education)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "POWERAPPS_O365_P2", + "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "FLOW_O365_P2", + "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "PROJECT_O365_P3", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", + "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", + "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", + "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "BPOS_S_TODO_2", + "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING", + "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086", + "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", + "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", + "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" + }, + { + "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", + "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", + "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", + "Service_Plan_Name": "YAMMER_EDU", + "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", + "Service_Plans_Included_Friendly_Names": "Yammer for Academic" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Business", + "String_Id": "O365_BUSINESS", + "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3", + "Service_Plan_Name": "FORMS_PLAN_E1", + "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", + "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Business", + "String_Id": "O365_BUSINESS", + "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3", + "Service_Plan_Name": "OFFICE_BUSINESS", + "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", + "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Business", + "String_Id": "O365_BUSINESS", + "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3", + "Service_Plan_Name": "ONEDRIVESTANDARD", + "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", + "Service_Plans_Included_Friendly_Names": "ONEDRIVESTANDARD" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Business", + "String_Id": "O365_BUSINESS", + "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Business", + "String_Id": "O365_BUSINESS", + "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "SWAY" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Business", + "String_Id": "SMB_BUSINESS", + "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc", + "Service_Plan_Name": "FORMS_PLAN_E1", + "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", + "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Business", + "String_Id": "SMB_BUSINESS", + "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc", + "Service_Plan_Name": "OFFICE_BUSINESS", + "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", + "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Business", + "String_Id": "SMB_BUSINESS", + "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc", + "Service_Plan_Name": "ONEDRIVESTANDARD", + "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", + "Service_Plans_Included_Friendly_Names": "ONEDRIVESTANDARD" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Business", + "String_Id": "SMB_BUSINESS", + "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Business", + "String_Id": "SMB_BUSINESS", + "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "SWAY" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Enterprise", + "String_Id": "OFFICESUBSCRIPTION", + "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Enterprise", + "String_Id": "OFFICESUBSCRIPTION", + "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Enterprise", + "String_Id": "OFFICESUBSCRIPTION", + "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", + "Service_Plan_Name": "FORMS_PLAN_E1", + "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Enterprise", + "String_Id": "OFFICESUBSCRIPTION", + "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Enterprise", + "String_Id": "OFFICESUBSCRIPTION", + "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Enterprise", + "String_Id": "OFFICESUBSCRIPTION", + "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Enterprise", + "String_Id": "OFFICESUBSCRIPTION", + "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", + "Service_Plan_Name": "ONEDRIVESTANDARD", + "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", + "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Enterprise", + "String_Id": "OFFICESUBSCRIPTION", + "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Enterprise", + "String_Id": "OFFICESUBSCRIPTION", + "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", + "Service_Plan_Name": "WHITEBOARD_PLAN2", + "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for enterprise (device)", + "String_Id": "OFFICE_PROPLUS_DEVICE1", + "GUID": "ea4c5ec8-50e3-4193-89b9-50da5bd4cdc7", + "Service_Plan_Name": "OFFICE_PROPLUS_DEVICE", + "Service_Plan_Id": "3c994f28-87d5-4273-b07a-eb6190852599", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise (Device)" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Students", + "String_Id": "OFFICESUBSCRIPTION_STUDENT", + "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Students", + "String_Id": "OFFICESUBSCRIPTION_STUDENT", + "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Students", + "String_Id": "OFFICESUBSCRIPTION_STUDENT", + "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", + "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", + "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Students", + "String_Id": "OFFICESUBSCRIPTION_STUDENT", + "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Students", + "String_Id": "OFFICESUBSCRIPTION_STUDENT", + "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Students", + "String_Id": "OFFICESUBSCRIPTION_STUDENT", + "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Students", + "String_Id": "OFFICESUBSCRIPTION_STUDENT", + "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", + "Service_Plan_Name": "ONEDRIVESTANDARD", + "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", + "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Students", + "String_Id": "OFFICESUBSCRIPTION_STUDENT", + "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Students", + "String_Id": "OFFICESUBSCRIPTION_STUDENT", + "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", + "Service_Plan_Name": "WHITEBOARD_PLAN2", + "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Students", + "String_Id": "OFFICESUBSCRIPTION_STUDENT", + "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac", + "Service_Plan_Name": "RMS_S_BASIC", + "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Faculty", + "String_Id": "OFFICESUBSCRIPTION_FACULTY", + "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Faculty", + "String_Id": "OFFICESUBSCRIPTION_FACULTY", + "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Faculty", + "String_Id": "OFFICESUBSCRIPTION_FACULTY", + "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", + "Service_Plan_Name": "RMS_S_BASIC", + "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Faculty", + "String_Id": "OFFICESUBSCRIPTION_FACULTY", + "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", + "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", + "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Faculty", + "String_Id": "OFFICESUBSCRIPTION_FACULTY", + "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Faculty", + "String_Id": "OFFICESUBSCRIPTION_FACULTY", + "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Faculty", + "String_Id": "OFFICESUBSCRIPTION_FACULTY", + "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Faculty", + "String_Id": "OFFICESUBSCRIPTION_FACULTY", + "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", + "Service_Plan_Name": "ONEDRIVESTANDARD", + "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", + "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Faculty", + "String_Id": "OFFICESUBSCRIPTION_FACULTY", + "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 Apps for Faculty", + "String_Id": "OFFICESUBSCRIPTION_FACULTY", + "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171", + "Service_Plan_Name": "WHITEBOARD_PLAN2", + "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 Audio Conferencing for faculty", + "String_Id": "MCOMEETADV_FACULTY", + "GUID": "c2cda955-3359-44e5-989f-852ca0cfa02f", + "Service_Plan_Name": "MCOMEETADV", + "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" + }, + { + "Product_Display_Name": "Microsoft 365 Audio Conferencing for GCC", + "String_Id": "MCOMEETADV_GOV", + "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5", + "Service_Plan_Name": "EXCHANGE_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT" + }, + { + "Product_Display_Name": "Microsoft 365 Audio Conferencing for GCC", + "String_Id": "MCOMEETADV_GOV", + "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5", + "Service_Plan_Name": "MCOMEETADV_GOV", + "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", + "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 AUDIO CONFERENCING FOR GOVERNMENT" + }, + { + "Product_Display_Name": "Microsoft 365 Audio Conferencing_USGOV_GCCHIGH", + "String_Id": "MCOMEETADV_USGOV_GCCHIGH", + "GUID": "4dee1f32-0808-4fd2-a2ed-fdd575e3a45f", + "Service_Plan_Name": "MCOMEETADV_AR_GCCHigh", + "Service_Plan_Id": "f1e3613f-3818-4254-9b5e-f02d803384e0", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing for GCCHigh" + }, + { + "Product_Display_Name": "Microsoft 365 Audio Conferencing - GCCHigh Tenant (AR)_USGOV_GCCHIGH", + "String_Id": "MCOACBYOT_AR_GCCHIGH_USGOV_GCCHIGH", + "GUID": "170ba00c-38b2-468c-a756-24c05037160a", + "Service_Plan_Name": "MCOACBYOT_GCCHigh", + "Service_Plan_Id": "c85e4b03-254a-453b-af72-167a53f38530", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing - GCCHigh Tenant" + }, + { + "Product_Display_Name": "Microsoft 365 Audio Conferencing Pay-Per-Minute - EA", + "String_Id": "MCOMEETACPEA", + "GUID": "df9561a4-4969-4e6a-8e73-c601b68ec077", + "Service_Plan_Name": "MCOMEETACPEA", + "Service_Plan_Id": "bb038288-76ab-49d6-afc1-eaa6c222c65a", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing Pay-Per-Minute" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "O365_BUSINESS_ESSENTIALS", + "GUID": "3b555118-da6a-4418-894f-7df1e2096870", + "Service_Plan_Name": "BPOS_S_TODO_1", + "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "O365_BUSINESS_ESSENTIALS", + "GUID": "3b555118-da6a-4418-894f-7df1e2096870", + "Service_Plan_Name": "EXCHANGE_S_STANDARD", + "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", + "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "O365_BUSINESS_ESSENTIALS", + "GUID": "3b555118-da6a-4418-894f-7df1e2096870", + "Service_Plan_Name": "FLOW_O365_P1", + "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", + "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "O365_BUSINESS_ESSENTIALS", + "GUID": "3b555118-da6a-4418-894f-7df1e2096870", + "Service_Plan_Name": "FORMS_PLAN_E1", + "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", + "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "O365_BUSINESS_ESSENTIALS", + "GUID": "3b555118-da6a-4418-894f-7df1e2096870", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "O365_BUSINESS_ESSENTIALS", + "GUID": "3b555118-da6a-4418-894f-7df1e2096870", + "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", + "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", + "Service_Plans_Included_Friendly_Names": "OFFICEMOBILE_SUBSCRIPTION" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "O365_BUSINESS_ESSENTIALS", + "GUID": "3b555118-da6a-4418-894f-7df1e2096870", + "Service_Plan_Name": "POWERAPPS_O365_P1", + "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", + "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "O365_BUSINESS_ESSENTIALS", + "GUID": "3b555118-da6a-4418-894f-7df1e2096870", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "O365_BUSINESS_ESSENTIALS", + "GUID": "3b555118-da6a-4418-894f-7df1e2096870", + "Service_Plan_Name": "SHAREPOINTSTANDARD", + "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", + "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "O365_BUSINESS_ESSENTIALS", + "GUID": "3b555118-da6a-4418-894f-7df1e2096870", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "O365_BUSINESS_ESSENTIALS", + "GUID": "3b555118-da6a-4418-894f-7df1e2096870", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "SWAY" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "O365_BUSINESS_ESSENTIALS", + "GUID": "3b555118-da6a-4418-894f-7df1e2096870", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "TEAMS1" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "O365_BUSINESS_ESSENTIALS", + "GUID": "3b555118-da6a-4418-894f-7df1e2096870", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "SMB_BUSINESS_ESSENTIALS", + "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", + "Service_Plan_Name": "BPOS_S_TODO_1", + "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", + "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "SMB_BUSINESS_ESSENTIALS", + "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", + "Service_Plan_Name": "EXCHANGE_S_STANDARD", + "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", + "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "SMB_BUSINESS_ESSENTIALS", + "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", + "Service_Plan_Name": "FLOW_O365_P1", + "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", + "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "SMB_BUSINESS_ESSENTIALS", + "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", + "Service_Plan_Name": "FORMS_PLAN_E1", + "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", + "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "SMB_BUSINESS_ESSENTIALS", + "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "SMB_BUSINESS_ESSENTIALS", + "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", + "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", + "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", + "Service_Plans_Included_Friendly_Names": "OFFICEMOBILE_SUBSCRIPTION" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "SMB_BUSINESS_ESSENTIALS", + "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", + "Service_Plan_Name": "POWERAPPS_O365_P1", + "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", + "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "SMB_BUSINESS_ESSENTIALS", + "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "SMB_BUSINESS_ESSENTIALS", + "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", + "Service_Plan_Name": "SHAREPOINTSTANDARD", + "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", + "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "SMB_BUSINESS_ESSENTIALS", + "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "SMB_BUSINESS_ESSENTIALS", + "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "SWAY" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "SMB_BUSINESS_ESSENTIALS", + "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "TEAMS1" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "SMB_BUSINESS_ESSENTIALS", + "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic", + "String_Id": "SMB_BUSINESS_ESSENTIALS", + "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", + "Service_Plan_Name": "YAMMER_MIDSIZE", + "Service_Plan_Id": "41bf139a-4e60-409f-9346-a1361efc6dfb", + "Service_Plans_Included_Friendly_Names": "YAMMER MIDSIZE" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "CDS_O365_P1", + "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "EXCHANGE_S_STANDARD", + "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "FORMS_PLAN_E1", + "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "KAIZALA_O365_P2", + "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", + "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", + "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "PROJECT_O365_P1", + "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "SHAREPOINTSTANDARD", + "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "STREAM_O365_SMB", + "Service_Plan_Id": "3c53ea51-d578-46fa-a4c0-fd0a92809a60", + "Service_Plans_Included_Friendly_Names": "Stream for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "BPOS_S_TODO_1", + "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "WHITEBOARD_PLAN1", + "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "DYN365_CDS_O365_P1", + "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "RMS_S_BASIC", + "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "POWERAPPS_O365_P1", + "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "FLOW_O365_P1", + "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Basic EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)", + "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1", + "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "DYN365BC_MS_INVOICING", + "Service_Plan_Id": "39b5c996-467e-4e60-bd62-46066f572726", + "Service_Plans_Included_Friendly_Names": "Microsoft Invoicing" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", + "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", + "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "CDS_O365_P2", + "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "Bing_Chat_Enterprise", + "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", + "Service_Plans_Included_Friendly_Names": "Copilot" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "EXCHANGE_S_STANDARD", + "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "OFFICE_BUSINESS", + "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for business" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "FORMS_PLAN_E1", + "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "KAIZALA_O365_P2", + "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "MICROSOFT_LOOP", + "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", + "Service_Plans_Included_Friendly_Names": "Microsoft Loop" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "PROJECT_O365_P2", + "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "O365_SB_Relationship_Management", + "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79", + "Service_Plans_Included_Friendly_Names": "RETIRED - Outlook Customer Manager" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "SHAREPOINTSTANDARD", + "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "STREAM_O365_SMB", + "Service_Plan_Id": "3c53ea51-d578-46fa-a4c0-fd0a92809a60", + "Service_Plans_Included_Friendly_Names": "Stream for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "BPOS_S_TODO_1", + "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "WHITEBOARD_PLAN1", + "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "DYN365_CDS_O365_P2", + "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "RMS_S_BASIC", + "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "POWERAPPS_O365_P1", + "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "FLOW_O365_P1", + "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard", + "String_Id": "O365_BUSINESS_PREMIUM", + "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", + "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "DYN365BC_MS_INVOICING", + "Service_Plan_Id": "39b5c996-467e-4e60-bd62-46066f572726", + "Service_Plans_Included_Friendly_Names": "Microsoft Invoicing" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "Bing_Chat_Enterprise", + "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", + "Service_Plans_Included_Friendly_Names": "Bing Chat Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "CDS_O365_P2", + "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "EXCHANGE_S_STANDARD", + "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "OFFICE_BUSINESS", + "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for business" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "FORMS_PLAN_E1", + "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "KAIZALA_O365_P2", + "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "PROJECT_O365_P2", + "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "O365_SB_Relationship_Management", + "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79", + "Service_Plans_Included_Friendly_Names": "RETIRED - Outlook Customer Manager" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "SHAREPOINTSTANDARD", + "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "STREAM_O365_SMB", + "Service_Plan_Id": "3c53ea51-d578-46fa-a4c0-fd0a92809a60", + "Service_Plans_Included_Friendly_Names": "Stream for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "BPOS_S_TODO_1", + "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "WHITEBOARD_PLAN1", + "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "DYN365_CDS_O365_P2", + "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "RMS_S_BASIC", + "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "POWERAPPS_O365_P1", + "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "FLOW_O365_P1", + "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard", + "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", + "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "DYN365BC_MS_INVOICING", + "Service_Plan_Id": "39b5c996-467e-4e60-bd62-46066f572726", + "Service_Plans_Included_Friendly_Names": "Microsoft Invoicing" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "CDS_O365_P2", + "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "EXCHANGE_S_STANDARD", + "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "OFFICE_BUSINESS", + "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for business" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "FORMS_PLAN_E1", + "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "KAIZALA_O365_P2", + "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "PROJECT_O365_P2", + "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "O365_SB_Relationship_Management", + "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79", + "Service_Plans_Included_Friendly_Names": "RETIRED - Outlook Customer Manager" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "SHAREPOINTSTANDARD", + "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "STREAM_O365_SMB", + "Service_Plan_Id": "3c53ea51-d578-46fa-a4c0-fd0a92809a60", + "Service_Plans_Included_Friendly_Names": "Stream for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "BPOS_S_TODO_1", + "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "WHITEBOARD_PLAN1", + "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "DYN365_CDS_O365_P2", + "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "RMS_S_BASIC", + "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "POWERAPPS_O365_P1", + "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "FLOW_O365_P1", + "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard EEA (no Teams)", + "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)", + "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", + "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", + "String_Id": "SMB_BUSINESS_PREMIUM", + "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", + "Service_Plan_Name": "BPOS_S_TODO_1", + "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", + "String_Id": "SMB_BUSINESS_PREMIUM", + "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", + "String_Id": "SMB_BUSINESS_PREMIUM", + "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", + "Service_Plan_Name": "EXCHANGE_S_STANDARD", + "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", + "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", + "String_Id": "SMB_BUSINESS_PREMIUM", + "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", + "Service_Plan_Name": "FLOW_O365_P1", + "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", + "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", + "String_Id": "SMB_BUSINESS_PREMIUM", + "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", + "Service_Plan_Name": "FORMS_PLAN_E1", + "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", + "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", + "String_Id": "SMB_BUSINESS_PREMIUM", + "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", + "String_Id": "SMB_BUSINESS_PREMIUM", + "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "MICROSOFTBOOKINGS" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", + "String_Id": "SMB_BUSINESS_PREMIUM", + "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", + "Service_Plan_Name": "O365_SB_Relationship_Management", + "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79", + "Service_Plans_Included_Friendly_Names": "OUTLOOK CUSTOMER MANAGER" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", + "String_Id": "SMB_BUSINESS_PREMIUM", + "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", + "Service_Plan_Name": "OFFICE_BUSINESS", + "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", + "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", + "String_Id": "SMB_BUSINESS_PREMIUM", + "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", + "Service_Plan_Name": "POWERAPPS_O365_P1", + "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", + "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", + "String_Id": "SMB_BUSINESS_PREMIUM", + "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", + "String_Id": "SMB_BUSINESS_PREMIUM", + "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", + "Service_Plan_Name": "SHAREPOINTSTANDARD", + "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", + "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", + "String_Id": "SMB_BUSINESS_PREMIUM", + "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", + "String_Id": "SMB_BUSINESS_PREMIUM", + "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "SWAY" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", + "String_Id": "SMB_BUSINESS_PREMIUM", + "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "TEAMS1" + }, + { + "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy", + "String_Id": "SMB_BUSINESS_PREMIUM", + "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", + "Service_Plan_Name": "YAMMER_MIDSIZE", + "Service_Plan_Id": "41bf139a-4e60-409f-9346-a1361efc6dfb", + "Service_Plans_Included_Friendly_Names": "YAMMER_MIDSIZE" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "DYN365BC_MS_INVOICING", + "Service_Plan_Id": "39b5c996-467e-4e60-bd62-46066f572726", + "Service_Plans_Included_Friendly_Names": "Microsoft Invoicing" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", + "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", + "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "CDS_O365_P3", + "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "Bing_Chat_Enterprise", + "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", + "Service_Plans_Included_Friendly_Names": "Copilot" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "BPOS_S_DlpAddOn", + "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed", + "Service_Plans_Included_Friendly_Names": "Data Loss Prevention" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "EXCHANGE_S_STANDARD", + "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", + "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", + "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "OFFICE_BUSINESS", + "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for business" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", + "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "MDE_SMB", + "Service_Plan_Id": "bfc1bbd9-981b-4f71-9b82-17c35fd0e2a4", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Business" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "FORMS_PLAN_E1", + "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "KAIZALA_O365_P2", + "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "MICROSOFT_LOOP", + "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", + "Service_Plans_Included_Friendly_Names": "Microsoft Loop" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "OFFICE_SHARED_COMPUTER_ACTIVATION", + "Service_Plan_Id": "276d6e8a-f056-4f70-b7e8-4fc27f79f809", + "Service_Plans_Included_Friendly_Names": "Office Shared Computer Activation" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "PROJECT_O365_P3", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "PURVIEW_DISCOVERY", + "Service_Plan_Id": "c948ea65-2053-4a5a-8a62-9eaaaf11b522", + "Service_Plans_Included_Friendly_Names": "Purview Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "O365_SB_Relationship_Management", + "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79", + "Service_Plans_Included_Friendly_Names": "RETIRED - Outlook Customer Manager" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "SHAREPOINTSTANDARD", + "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "BPOS_S_TODO_1", + "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "WHITEBOARD_PLAN1", + "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "WINBIZ", + "Service_Plan_Id": "8e229017-d77b-43d5-9305-903395523b99", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Business" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "AAD_SMB", + "Service_Plan_Id": "de377cbc-0019-4ec2-b77c-3f223947e102", + "Service_Plans_Included_Friendly_Names": "Azure Active Directory" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "INTUNE_SMBIZ", + "Service_Plan_Id": "8e9ff0ff-aa7a-4b20-83c1-2f636b600ac2", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "STREAM_O365_E1", + "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E1" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "POWERAPPS_O365_P1", + "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "FLOW_O365_P1", + "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium", + "String_Id": "SPB", + "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", + "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "DYN365BC_MS_INVOICING", + "Service_Plan_Id": "39b5c996-467e-4e60-bd62-46066f572726", + "Service_Plans_Included_Friendly_Names": "Microsoft Invoicing" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "Bing_Chat_Enterprise", + "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", + "Service_Plans_Included_Friendly_Names": "Bing Chat Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "CDS_O365_P3", + "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "BPOS_S_DlpAddOn", + "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed", + "Service_Plans_Included_Friendly_Names": "Data Loss Prevention" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "EXCHANGE_S_STANDARD", + "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", + "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", + "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "OFFICE_BUSINESS", + "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for business" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", + "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "MDE_SMB", + "Service_Plan_Id": "bfc1bbd9-981b-4f71-9b82-17c35fd0e2a4", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Business" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "FORMS_PLAN_E1", + "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "KAIZALA_O365_P2", + "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "OFFICE_SHARED_COMPUTER_ACTIVATION", + "Service_Plan_Id": "276d6e8a-f056-4f70-b7e8-4fc27f79f809", + "Service_Plans_Included_Friendly_Names": "Office Shared Computer Activation" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "PROJECT_O365_P3", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "O365_SB_Relationship_Management", + "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79", + "Service_Plans_Included_Friendly_Names": "RETIRED - Outlook Customer Manager" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "SHAREPOINTSTANDARD", + "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "BPOS_S_TODO_1", + "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "WHITEBOARD_PLAN1", + "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "WINBIZ", + "Service_Plan_Id": "8e229017-d77b-43d5-9305-903395523b99", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Business" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "AAD_SMB", + "Service_Plan_Id": "de377cbc-0019-4ec2-b77c-3f223947e102", + "Service_Plans_Included_Friendly_Names": "Azure Active Directory" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "INTUNE_SMBIZ", + "Service_Plan_Id": "8e9ff0ff-aa7a-4b20-83c1-2f636b600ac2", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "STREAM_O365_E1", + "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E1" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "POWERAPPS_O365_P1", + "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "FLOW_O365_P1", + "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium", + "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", + "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 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": "MESH_AVATARS_FOR_TEAMS", + "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", + "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "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": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "CDS_O365_P2", + "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "Bing_Chat_Enterprise", + "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", + "Service_Plans_Included_Friendly_Names": "Copilot" + }, + { + "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": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "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", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "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", + "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": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", + "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "MDE_LITE", + "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "FORMS_PLAN_E3", + "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "KAIZALA_O365_P3", + "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "MICROSOFT_LOOP", + "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", + "Service_Plans_Included_Friendly_Names": "Microsoft Loop" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "PROJECT_O365_P2", + "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "BPOS_S_TODO_2", + "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "WHITEBOARD_PLAN2", + "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "WIN10_PRO_ENT_SUB", + "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "Windows_Autopatch", + "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", + "Service_Plans_Included_Friendly_Names": "Windows Autopatch" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "DYN365_CDS_O365_P2", + "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "POWERAPPS_O365_P2", + "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "FLOW_O365_P2", + "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E3", + "String_Id": "SPE_E3", + "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", + "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Azure Rights Management", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "RMS_S_ENTERPRISE" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Common Data Service for Teams", + "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", + "Service_Plans_Included_Friendly_Names": "CDS_O365_P2" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Copilot", + "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", + "Service_Plans_Included_Friendly_Names": "Bing_Chat_Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Exchange Online (Plan 2)", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_ENTERPRISE" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Information Protection and Governance Analytics � Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "ContentExplorer_Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Information Protection for Office 365 - Standard", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "MIP_S_CLP1" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Insights by MyAnalytics", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "MYANALYTICS_P2" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Microsoft 365 Apps for enterprise", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Microsoft 365 Lighthouse (Plan 1)", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "M365_LIGHTHOUSE_CUSTOMER_PLAN1" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Microsoft 365 Lighthouse (Plan 2)", + "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", + "Service_Plans_Included_Friendly_Names": "M365_LIGHTHOUSE_PARTNER_PLAN1" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Microsoft Bookings", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "MICROSOFTBOOKINGS" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Microsoft Clipchamp", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "CLIPCHAMP" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Microsoft Defender for Endpoint Plan 1", + "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", + "Service_Plans_Included_Friendly_Names": "MDE_LITE" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Microsoft Forms (Plan E3)", + "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", + "Service_Plans_Included_Friendly_Names": "FORMS_PLAN_E3" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Microsoft Kaizala Pro", + "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", + "Service_Plans_Included_Friendly_Names": "KAIZALA_O365_P3" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Microsoft Planner", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "PROJECTWORKMANAGEMENT" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Microsoft Search", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "MICROSOFT_SEARCH" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Microsoft StaffHub", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Deskless" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Microsoft Stream for Office 365 E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "STREAM_O365_E3" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Mobile Device Management for Office 365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "INTUNE_O365" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Office for the Web", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "SHAREPOINTWAC" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Project for Office (Plan E3)", + "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", + "Service_Plans_Included_Friendly_Names": "PROJECT_O365_P2" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "SharePoint (Plan 2)", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SHAREPOINTENTERPRISE" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Skype for Business Online (Plan 2)", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "MCOSTANDARD" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Sway", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "SWAY" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "To-Do (Plan 2)", + "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", + "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_2" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Viva Engage Core", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "VIVAENGAGE_CORE" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Viva Learning Seeded", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "VIVA_LEARNING_SEEDED" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Whiteboard (Plan 2)", + "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", + "Service_Plans_Included_Friendly_Names": "WHITEBOARD_PLAN2" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Yammer Enterprise", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Universal Print", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "UNIVERSAL_PRINT_01" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Windows 10/11 Enterprise (Original)", + "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", + "Service_Plans_Included_Friendly_Names": "WIN10_PRO_ENT_SUB" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Windows Autopatch", + "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", + "Service_Plans_Included_Friendly_Names": "Windows_Autopatch" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Windows Update for Business Deployment Service", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Azure Information Protection Premium P1", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "RMS_S_PREMIUM" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Common Data Service", + "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", + "Service_Plans_Included_Friendly_Names": "DYN365_CDS_O365_P2" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Microsoft Azure Multi-Factor Authentication", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "MFA_PREMIUM" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Microsoft Defender for Cloud Apps Discovery", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "ADALLOM_S_DISCOVERY" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Microsoft Entra ID P1", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "AAD_PREMIUM" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Microsoft Intune Plan 1", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "INTUNE_A" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Power Apps for Office 365", + "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", + "Service_Plans_Included_Friendly_Names": "POWERAPPS_O365_P2" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Power Automate for Office 365", + "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", + "Service_Plans_Included_Friendly_Names": "FLOW_O365_P2" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o�Teams�Bundle_M3", + "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3", + "Service_Plan_Name": "Power Virtual Agents for Office 365", + "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", + "Service_Plans_Included_Friendly_Names": "POWER_VIRTUAL_AGENTS_O365_P2" + }, + { + "Product_Display_Name": "Microsoft 365 E3 Extra Features", + "String_Id": "Microsoft_365_E3_Extra_Features", + "GUID": "f5b15d67-b99e-406b-90f1-308452f94de6", + "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", + "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E3 Extra Features", + "String_Id": "Microsoft_365_E3_Extra_Features", + "GUID": "f5b15d67-b99e-406b-90f1-308452f94de6", + "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", + "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 Extra Features", + "String_Id": "Microsoft_365_E3_Extra_Features", + "GUID": "f5b15d67-b99e-406b-90f1-308452f94de6", + "Service_Plan_Name": "Bing_Chat_Enterprise", + "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", + "Service_Plans_Included_Friendly_Names": "Copilot" + }, + { + "Product_Display_Name": "Microsoft 365 E3 Extra Features", + "String_Id": "Microsoft_365_E3_Extra_Features", + "GUID": "f5b15d67-b99e-406b-90f1-308452f94de6", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Microsoft 365 E3 Extra Features", + "String_Id": "Microsoft_365_E3_Extra_Features", + "GUID": "f5b15d67-b99e-406b-90f1-308452f94de6", + "Service_Plan_Name": "MICROSOFT_LOOP", + "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", + "Service_Plans_Included_Friendly_Names": "Microsoft Loop" + }, + { + "Product_Display_Name": "Microsoft 365 E3 Extra Features", + "String_Id": "Microsoft_365_E3_Extra_Features", + "GUID": "f5b15d67-b99e-406b-90f1-308452f94de6", + "Service_Plan_Name": "Windows_Autopatch", + "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", + "Service_Plans_Included_Friendly_Names": "Windows Autopatch" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "Bing_Chat_Enterprise", + "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", + "Service_Plans_Included_Friendly_Names": "Bing Chat Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "CDS_O365_P2", + "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "OFFICESUBSCRIPTION_unattended", + "Service_Plan_Id": "8d77e2d9-9e28-4450-8431-0def64078fc5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise (Unattended)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", + "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "MDE_LITE", + "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "FORMS_PLAN_E3", + "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "KAIZALA_O365_P3", + "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "PROJECT_O365_P2", + "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "BPOS_S_TODO_2", + "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "WHITEBOARD_PLAN2", + "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "WIN10_PRO_ENT_SUB", + "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "Windows_Autopatch", + "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", + "Service_Plans_Included_Friendly_Names": "Windows Autopatch" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "DYN365_CDS_O365_P2", + "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "POWERAPPS_O365_P2", + "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "FLOW_O365_P2", + "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License", + "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License", + "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", + "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", + "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", + "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "CDS_O365_P2", + "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "Bing_Chat_Enterprise", + "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", + "Service_Plans_Included_Friendly_Names": "Copilot" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "OFFICESUBSCRIPTION_unattended", + "Service_Plan_Id": "8d77e2d9-9e28-4450-8431-0def64078fc5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise (Unattended)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", + "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "MDE_LITE", + "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "FORMS_PLAN_E3", + "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "KAIZALA_O365_P3", + "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "MICROSOFT_LOOP", + "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", + "Service_Plans_Included_Friendly_Names": "Microsoft Loop" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "PROJECT_O365_P2", + "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "BPOS_S_TODO_2", + "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "WHITEBOARD_PLAN2", + "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "WIN10_PRO_ENT_SUB", + "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "Windows_Autopatch", + "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", + "Service_Plans_Included_Friendly_Names": "Windows Autopatch" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "DYN365_CDS_O365_P2", + "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "POWERAPPS_O365_P2", + "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "FLOW_O365_P2", + "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E3 - Unattended License", + "String_Id": "SPE_E3_RPA1", + "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", + "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", + "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", + "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "CDS_O365_P2", + "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "Bing_Chat_Enterprise", + "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", + "Service_Plans_Included_Friendly_Names": "Copilot" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", + "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "MDE_LITE", + "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "FORMS_PLAN_E3", + "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "KAIZALA_O365_P3", + "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "MICROSOFT_LOOP", + "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", + "Service_Plans_Included_Friendly_Names": "Microsoft Loop" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "PROJECT_O365_P2", + "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "BPOS_S_TODO_2", + "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "WHITEBOARD_PLAN2", + "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "WIN10_PRO_ENT_SUB", + "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "Windows_Autopatch", + "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", + "Service_Plans_Included_Friendly_Names": "Windows Autopatch" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "DYN365_CDS_O365_P2", + "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "POWERAPPS_O365_P2", + "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "FLOW_O365_P2", + "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E3", + "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", + "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "CDS_O365_P2", + "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "Bing_Chat_Enterprise", + "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", + "Service_Plans_Included_Friendly_Names": "Copilot" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", + "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "MDE_LITE", + "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "FORMS_PLAN_E3", + "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "KAIZALA_O365_P3", + "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "MICROSOFT_LOOP", + "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", + "Service_Plans_Included_Friendly_Names": "Microsoft Loop" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "PROJECT_O365_P2", + "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "BPOS_S_TODO_2", + "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "WHITEBOARD_PLAN2", + "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "WIN10_PRO_ENT_SUB", + "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "Windows_Autopatch", + "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", + "Service_Plans_Included_Friendly_Names": "Windows Autopatch" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "DYN365_CDS_O365_P2", + "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "POWERAPPS_O365_P2", + "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "FLOW_O365_P2", + "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o Teams Bundle_M3_(500_seats_min)_HUB", + "GUID": "602e6573-55a3-46b1-a1a0-cc267991501a", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", + "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", + "String_Id": "SPE_E3_USGOV_DOD", + "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", + "String_Id": "SPE_E3_USGOV_DOD", + "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", + "String_Id": "SPE_E3_USGOV_DOD", + "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", + "String_Id": "SPE_E3_USGOV_DOD", + "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", + "String_Id": "SPE_E3_USGOV_DOD", + "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", + "String_Id": "SPE_E3_USGOV_DOD", + "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", + "String_Id": "SPE_E3_USGOV_DOD", + "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", + "String_Id": "SPE_E3_USGOV_DOD", + "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", + "Service_Plan_Name": "TEAMS_AR_DOD", + "Service_Plan_Id": "fd500458-c24c-478e-856c-a6067a8376cd", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams for DOD (AR)" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", + "String_Id": "SPE_E3_USGOV_DOD", + "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", + "String_Id": "SPE_E3_USGOV_DOD", + "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office Online" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", + "String_Id": "SPE_E3_USGOV_DOD", + "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", + "String_Id": "SPE_E3_USGOV_DOD", + "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", + "String_Id": "SPE_E3_USGOV_GCCHIGH", + "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", + "String_Id": "SPE_E3_USGOV_GCCHIGH", + "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", + "String_Id": "SPE_E3_USGOV_GCCHIGH", + "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", + "String_Id": "SPE_E3_USGOV_GCCHIGH", + "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", + "String_Id": "SPE_E3_USGOV_GCCHIGH", + "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", + "String_Id": "SPE_E3_USGOV_GCCHIGH", + "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", + "String_Id": "SPE_E3_USGOV_GCCHIGH", + "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", + "String_Id": "SPE_E3_USGOV_GCCHIGH", + "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", + "String_Id": "SPE_E3_USGOV_GCCHIGH", + "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", + "String_Id": "SPE_E3_USGOV_GCCHIGH", + "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", + "Service_Plan_Name": "TEAMS_AR_GCCHIGH", + "Service_Plan_Id": "9953b155-8aef-4c56-92f3-72b0487fce41", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams for GCCHigh (AR)" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", + "String_Id": "SPE_E3_USGOV_GCCHIGH", + "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", + "String_Id": "SPE_E3_USGOV_GCCHIGH", + "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office Online" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", + "String_Id": "SPE_E3_USGOV_GCCHIGH", + "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", + "String_Id": "SPE_E3_USGOV_GCCHIGH", + "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", + "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", + "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "CDS_O365_P3", + "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "Bing_Chat_Enterprise", + "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", + "Service_Plans_Included_Friendly_Names": "Copilot" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "CustomerLockboxA_Enterprise", + "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", + "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "MCOMEETADV", + "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "M365_AUDIT_PLATFORM", + "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "DATA_INVESTIGATIONS", + "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "EXCEL_PREMIUM", + "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", + "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "FORMS_PLAN_E5", + "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "KAIZALA_STANDALONE", + "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "MICROSOFT_LOOP", + "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", + "Service_Plans_Included_Friendly_Names": "Microsoft Loop" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "EXCHANGE_ANALYTICS", + "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "STREAM_O365_E5", + "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "PAM_ENTERPRISE", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "SAFEDOCS", + "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", + "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "POWERAPPS_O365_P3", + "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "PROJECT_O365_P3", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "PURVIEW_DISCOVERY", + "Service_Plan_Id": "c948ea65-2053-4a5a-8a62-9eaaaf11b522", + "Service_Plans_Included_Friendly_Names": "Purview Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", + "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", + "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "MICROSOFTENDPOINTDLP", + "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "WIN10_PRO_ENT_SUB", + "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "Windows_Autopatch", + "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", + "Service_Plans_Included_Friendly_Names": "Windows Autopatch" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "RMS_S_PREMIUM2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "Defender_for_Iot_Enterprise", + "Service_Plan_Id": "99cd49a9-0e54-4e07-aea1-d8d9f5f704f5", + "Service_Plans_Included_Friendly_Names": "Defender for IoT - Enterprise IoT Security" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "FLOW_O365_P3", + "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5", + "String_Id": "SPE_E5", + "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", + "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "CDS_O365_P3", + "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", + "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "MCOMEETADV", + "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "M365_AUDIT_PLATFORM", + "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "MCOPSTN8", + "Service_Plan_Id": "16935b20-87c0-4908-934a-22aa267d0d26", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan (120 min) at User Level" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "DATA_INVESTIGATIONS", + "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "EXCEL_PREMIUM", + "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", + "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "FORMS_PLAN_E5", + "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "KAIZALA_STANDALONE", + "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "EXCHANGE_ANALYTICS", + "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "STREAM_O365_E5", + "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "PAM_ENTERPRISE", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "SAFEDOCS", + "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", + "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "POWERAPPS_O365_P3", + "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "PROJECT_O365_P3", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", + "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", + "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_MIDMARKET", + "Service_Plan_Id": "6b5b6a67-fc72-4a1f-a2b5-beecf05de761", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "WIN10_PRO_ENT_SUB", + "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "Windows_Autopatch", + "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", + "Service_Plans_Included_Friendly_Names": "Windows Autopatch" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "RMS_S_PREMIUM2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "FLOW_O365_P1", + "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) with Calling Minutes", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes", + "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", + "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "Bing_Chat_Enterprise", + "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", + "Service_Plans_Included_Friendly_Names": "Bing Chat Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "CDS_O365_P3", + "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "CustomerLockboxA_Enterprise", + "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", + "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "M365_AUDIT_PLATFORM", + "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "DATA_INVESTIGATIONS", + "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "EXCEL_PREMIUM", + "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", + "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "FORMS_PLAN_E5", + "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "KAIZALA_STANDALONE", + "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "EXCHANGE_ANALYTICS", + "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "STREAM_O365_E5", + "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "PAM_ENTERPRISE", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "SAFEDOCS", + "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", + "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "POWERAPPS_O365_P3", + "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "PROJECT_O365_P3", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", + "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", + "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "MICROSOFTENDPOINTDLP", + "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "WIN10_PRO_ENT_SUB", + "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "Windows_Autopatch", + "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", + "Service_Plans_Included_Friendly_Names": "Windows Autopatch" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "RMS_S_PREMIUM2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "FLOW_O365_P3", + "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", + "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", + "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", + "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "CDS_O365_P3", + "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "Bing_Chat_Enterprise", + "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", + "Service_Plans_Included_Friendly_Names": "Copilot" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "CustomerLockboxA_Enterprise", + "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", + "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "MCOMEETADV", + "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "M365_AUDIT_PLATFORM", + "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "DATA_INVESTIGATIONS", + "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "EXCEL_PREMIUM", + "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", + "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "FORMS_PLAN_E5", + "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "KAIZALA_STANDALONE", + "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "MICROSOFT_LOOP", + "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", + "Service_Plans_Included_Friendly_Names": "Microsoft Loop" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "EXCHANGE_ANALYTICS", + "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "STREAM_O365_E5", + "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "PAM_ENTERPRISE", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "SAFEDOCS", + "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", + "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "POWERAPPS_O365_P3", + "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "PROJECT_O365_P3", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "PURVIEW_DISCOVERY", + "Service_Plan_Id": "c948ea65-2053-4a5a-8a62-9eaaaf11b522", + "Service_Plans_Included_Friendly_Names": "Purview Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "MICROSOFTENDPOINTDLP", + "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "WIN10_PRO_ENT_SUB", + "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "Windows_Autopatch", + "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", + "Service_Plans_Included_Friendly_Names": "Windows Autopatch" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "RMS_S_PREMIUM2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "Defender_for_Iot_Enterprise", + "Service_Plan_Id": "99cd49a9-0e54-4e07-aea1-d8d9f5f704f5", + "Service_Plans_Included_Friendly_Names": "Defender for IoT - Enterprise IoT Security" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "FLOW_O365_P3", + "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5", + "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", + "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", + "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", + "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "CDS_O365_P3", + "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "Bing_Chat_Enterprise", + "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", + "Service_Plans_Included_Friendly_Names": "Copilot" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "CustomerLockboxA_Enterprise", + "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", + "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "M365_AUDIT_PLATFORM", + "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "DATA_INVESTIGATIONS", + "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "EXCEL_PREMIUM", + "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", + "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "FORMS_PLAN_E5", + "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "MICROSOFT_LOOP", + "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", + "Service_Plans_Included_Friendly_Names": "Microsoft Loop" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "EXCHANGE_ANALYTICS", + "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "STREAM_O365_E5", + "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "PAM_ENTERPRISE", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "SAFEDOCS", + "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", + "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "POWERAPPS_O365_P3", + "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "PROJECT_O365_P3", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "PURVIEW_DISCOVERY", + "Service_Plan_Id": "c948ea65-2053-4a5a-8a62-9eaaaf11b522", + "Service_Plans_Included_Friendly_Names": "Purview Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", + "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", + "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "RMS_S_PREMIUM2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "FLOW_O365_P3", + "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)", + "String_Id": "DEVELOPERPACK_E5", + "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", + "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "DATA_INVESTIGATIONS", + "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "PAM_ENTERPRISE", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", + "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", + "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "MICROSOFTENDPOINTDLP", + "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "RMS_S_PREMIUM2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Compliance", + "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", + "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "SharePoint Online (Plan 2)", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SHAREPOINTENTERPRISE" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Bing Chat Enterprise", + "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", + "Service_Plans_Included_Friendly_Names": "Bing_Chat_Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Common Data Service for Teams", + "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", + "Service_Plans_Included_Friendly_Names": "CDS_O365_P3" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Customer Lockbox", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "LOCKBOX_ENTERPRISE" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Customer Lockbox (A)", + "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", + "Service_Plans_Included_Friendly_Names": "CustomerLockboxA_Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Data Classification in Microsoft 365", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "MIP_S_Exchange" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Exchange Online (Plan 2)", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_ENTERPRISE" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Graph Connectors Search with Index", + "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", + "Service_Plans_Included_Friendly_Names": "GRAPH_CONNECTORS_SEARCH_INDEX" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Information Barriers", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "INFORMATION_BARRIERS" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Information Protection and Governance Analytics - Premium", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Content_Explorer" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Information Protection and Governance Analytics � Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "ContentExplorer_Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Information Protection for Office 365 - Premium", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "MIP_S_CLP2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Information Protection for Office 365 - Standard", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "MIP_S_CLP1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Insights by MyAnalytics", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "MYANALYTICS_P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft 365 Advanced Auditing", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "M365_ADVANCED_AUDITING" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft 365 Apps for enterprise", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft 365 Audio Conferencing", + "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", + "Service_Plans_Included_Friendly_Names": "MCOMEETADV" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft 365 Audit Platform", + "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", + "Service_Plans_Included_Friendly_Names": "M365_AUDIT_PLATFORM" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft 365 Communication Compliance", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "MICROSOFT_COMMUNICATION_COMPLIANCE" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft 365 Defender", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "MTP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft 365 Lighthouse (Plan 1)", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "M365_LIGHTHOUSE_CUSTOMER_PLAN1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft 365 Phone System", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "MCOEV" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Bookings", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "MICROSOFTBOOKINGS" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Clipchamp", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "CLIPCHAMP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Communications DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "COMMUNICATIONS_DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Customer Key", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "CUSTOMER_KEY" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Data Investigations", + "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", + "Service_Plans_Included_Friendly_Names": "DATA_INVESTIGATIONS" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Defender for Office 365 (Plan 1)", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "ATP_ENTERPRISE" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Defender for Office 365 (Plan 2)", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "THREAT_INTELLIGENCE" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Excel Advanced Analytics", + "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", + "Service_Plans_Included_Friendly_Names": "EXCEL_PREMIUM" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Forms (Plan E5)", + "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", + "Service_Plans_Included_Friendly_Names": "FORMS_PLAN_E5" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Information Governance", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "INFO_GOVERNANCE" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Insider Risk Management", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "INSIDER_RISK" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Kaizala Pro", + "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", + "Service_Plans_Included_Friendly_Names": "KAIZALA_STANDALONE" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft ML-Based Classification", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "ML_CLASSIFICATION" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft MyAnalytics (Full)", + "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", + "Service_Plans_Included_Friendly_Names": "EXCHANGE_ANALYTICS" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Planner", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "PROJECTWORKMANAGEMENT" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Records Management", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "RECORDS_MANAGEMENT" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Search", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "MICROSOFT_SEARCH" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft StaffHub", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Deskless" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Stream for Office 365 E5", + "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", + "Service_Plans_Included_Friendly_Names": "STREAM_O365_E5" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Mobile Device Management for Office 365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "INTUNE_O365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Office 365 Advanced eDiscovery", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "EQUIVIO_ANALYTICS" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Office 365 Cloud App Security", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "ADALLOM_S_O365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Office 365 Privileged Access Management", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "PAM_ENTERPRISE" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Office 365 SafeDocs", + "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", + "Service_Plans_Included_Friendly_Names": "SAFEDOCS" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Office for the Web", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "SHAREPOINTWAC" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Power Apps for Office 365 (Plan 3)", + "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", + "Service_Plans_Included_Friendly_Names": "POWERAPPS_O365_P3" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Premium Encryption in Office 365", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "PREMIUM_ENCRYPTION" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Project for Office (Plan E5)", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "PROJECT_O365_P3" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "RETIRED - Microsoft Communications Compliance", + "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", + "Service_Plans_Included_Friendly_Names": "COMMUNICATIONS_COMPLIANCE" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "RETIRED - Microsoft Insider Risk Management", + "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", + "Service_Plans_Included_Friendly_Names": "INSIDER_RISK_MANAGEMENT" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Skype for Business Online (Plan 2)", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "MCOSTANDARD" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Sway", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "SWAY" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "To-Do (Plan 3)", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_3" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Viva Engage Core", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "VIVAENGAGE_CORE" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Viva Learning Seeded", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "VIVA_LEARNING_SEEDED" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Whiteboard (Plan 3)", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "WHITEBOARD_PLAN3" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Yammer Enterprise", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Defender for Endpoint", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "WINDEFATP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Endpoint DLP", + "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", + "Service_Plans_Included_Friendly_Names": "MICROSOFTENDPOINTDLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Universal Print", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "UNIVERSAL_PRINT_01" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Windows 10/11 Enterprise (Original)", + "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", + "Service_Plans_Included_Friendly_Names": "WIN10_PRO_ENT_SUB" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Windows Autopatch", + "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", + "Service_Plans_Included_Friendly_Names": "Windows_Autopatch" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Windows Update for Business Deployment Service", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Azure Information Protection Premium P1", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "RMS_S_PREMIUM" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Azure Information Protection Premium P2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "RMS_S_PREMIUM2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Azure Rights Management", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "RMS_S_ENTERPRISE" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Common Data Service", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "DYN365_CDS_O365_P3" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Azure Multi-Factor Authentication", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "MFA_PREMIUM" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Defender for Cloud Apps", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "ADALLOM_S_STANDALONE" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Defender for Identity", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "ATA" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Entra ID P1", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "AAD_PREMIUM" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Entra ID P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "AAD_PREMIUM_P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Microsoft Intune Plan 1", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "INTUNE_A" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Power Automate for Office 365", + "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", + "Service_Plans_Included_Friendly_Names": "FLOW_O365_P3" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Power BI Pro", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "BI_AZURE_P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_M5", + "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17", + "Service_Plan_Name": "Power Virtual Agents for Office 365", + "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", + "Service_Plans_Included_Friendly_Names": "POWER_VIRTUAL_AGENTS_O365_P3" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Security", + "String_Id": "IDENTITY_THREAT_PROTECTION", + "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Security", + "String_Id": "IDENTITY_THREAT_PROTECTION", + "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Security", + "String_Id": "IDENTITY_THREAT_PROTECTION", + "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Security", + "String_Id": "IDENTITY_THREAT_PROTECTION", + "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", + "Service_Plan_Name": "SAFEDOCS", + "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", + "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Security", + "String_Id": "IDENTITY_THREAT_PROTECTION", + "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Security", + "String_Id": "IDENTITY_THREAT_PROTECTION", + "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Security", + "String_Id": "IDENTITY_THREAT_PROTECTION", + "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Security", + "String_Id": "IDENTITY_THREAT_PROTECTION", + "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", + "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", + "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", + "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", + "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", + "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", + "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", + "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", + "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", + "Service_Plan_Name": "SAFEDOCS", + "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", + "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", + "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", + "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", + "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", + "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "CDS_O365_P3", + "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "Bing_Chat_Enterprise", + "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", + "Service_Plans_Included_Friendly_Names": "Copilot" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "CustomerLockboxA_Enterprise", + "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", + "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "MCOMEETADV", + "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "M365_AUDIT_PLATFORM", + "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "MCOPSTN8", + "Service_Plan_Id": "16935b20-87c0-4908-934a-22aa267d0d26", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan (120 min) at User Level" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "DATA_INVESTIGATIONS", + "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "EXCEL_PREMIUM", + "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", + "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "FORMS_PLAN_E5", + "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "KAIZALA_STANDALONE", + "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "MICROSOFT_LOOP", + "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", + "Service_Plans_Included_Friendly_Names": "Microsoft Loop" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "EXCHANGE_ANALYTICS", + "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "STREAM_O365_E5", + "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "PAM_ENTERPRISE", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "SAFEDOCS", + "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", + "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "POWERAPPS_O365_P3", + "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "PROJECT_O365_P3", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "PURVIEW_DISCOVERY", + "Service_Plan_Id": "c948ea65-2053-4a5a-8a62-9eaaaf11b522", + "Service_Plans_Included_Friendly_Names": "Purview Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", + "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", + "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "WIN10_PRO_ENT_SUB", + "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "Windows_Autopatch", + "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", + "Service_Plans_Included_Friendly_Names": "Windows Autopatch" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "RMS_S_PREMIUM2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "Defender_for_Iot_Enterprise", + "Service_Plan_Id": "99cd49a9-0e54-4e07-aea1-d8d9f5f704f5", + "Service_Plans_Included_Friendly_Names": "Defender for IoT - Enterprise IoT Security" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "FLOW_O365_P1", + "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes", + "String_Id": "SPE_E5_CALLINGMINUTES", + "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", + "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", + "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", + "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "CDS_O365_P3", + "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "Bing_Chat_Enterprise", + "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", + "Service_Plans_Included_Friendly_Names": "Copilot" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "CustomerLockboxA_Enterprise", + "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", + "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "M365_AUDIT_PLATFORM", + "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "DATA_INVESTIGATIONS", + "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "EXCEL_PREMIUM", + "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", + "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "FORMS_PLAN_E5", + "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "KAIZALA_STANDALONE", + "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "MICROSOFT_LOOP", + "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", + "Service_Plans_Included_Friendly_Names": "Microsoft Loop" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "EXCHANGE_ANALYTICS", + "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "STREAM_O365_E5", + "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "PAM_ENTERPRISE", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "SAFEDOCS", + "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", + "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "POWERAPPS_O365_P3", + "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "PROJECT_O365_P3", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "PURVIEW_DISCOVERY", + "Service_Plan_Id": "c948ea65-2053-4a5a-8a62-9eaaaf11b522", + "Service_Plans_Included_Friendly_Names": "Purview Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", + "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", + "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "MICROSOFTENDPOINTDLP", + "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "WIN10_PRO_ENT_SUB", + "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "Windows_Autopatch", + "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", + "Service_Plans_Included_Friendly_Names": "Windows Autopatch" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "RMS_S_PREMIUM2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "Defender_for_Iot_Enterprise", + "Service_Plan_Id": "99cd49a9-0e54-4e07-aea1-d8d9f5f704f5", + "Service_Plans_Included_Friendly_Names": "Defender for IoT - Enterprise IoT Security" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "FLOW_O365_P3", + "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing", + "String_Id": "SPE_E5_NOPSTNCONF", + "GUID": "cd2925a3-5076-4233-8931-638a8c94f773", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", + "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", + "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", + "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "CDS_O365_P3", + "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "Bing_Chat_Enterprise", + "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", + "Service_Plans_Included_Friendly_Names": "Copilot" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "CustomerLockboxA_Enterprise", + "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", + "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "M365_AUDIT_PLATFORM", + "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "DATA_INVESTIGATIONS", + "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "EXCEL_PREMIUM", + "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", + "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "FORMS_PLAN_E5", + "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "KAIZALA_STANDALONE", + "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "MICROSOFT_LOOP", + "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", + "Service_Plans_Included_Friendly_Names": "Microsoft Loop" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "EXCHANGE_ANALYTICS", + "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "STREAM_O365_E5", + "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "PAM_ENTERPRISE", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "SAFEDOCS", + "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", + "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "POWERAPPS_O365_P3", + "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "PROJECT_O365_P3", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "PURVIEW_DISCOVERY", + "Service_Plan_Id": "c948ea65-2053-4a5a-8a62-9eaaaf11b522", + "Service_Plans_Included_Friendly_Names": "Purview Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "MICROSOFTENDPOINTDLP", + "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "WIN10_PRO_ENT_SUB", + "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "Windows_Autopatch", + "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", + "Service_Plans_Included_Friendly_Names": "Windows Autopatch" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "RMS_S_PREMIUM2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "Defender_for_Iot_Enterprise", + "Service_Plan_Id": "99cd49a9-0e54-4e07-aea1-d8d9f5f704f5", + "Service_Plans_Included_Friendly_Names": "Defender for IoT - Enterprise IoT Security" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "FLOW_O365_P3", + "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_without_Audio_Conferencing", + "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", + "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "CDS_O365_P3", + "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "Bing_Chat_Enterprise", + "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", + "Service_Plans_Included_Friendly_Names": "Copilot" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "CustomerLockboxA_Enterprise", + "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", + "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "MCOMEETADV", + "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "M365_AUDIT_PLATFORM", + "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "DATA_INVESTIGATIONS", + "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "EXCEL_PREMIUM", + "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", + "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "FORMS_PLAN_E5", + "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "KAIZALA_STANDALONE", + "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "MICROSOFT_LOOP", + "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", + "Service_Plans_Included_Friendly_Names": "Microsoft Loop" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "EXCHANGE_ANALYTICS", + "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "STREAM_O365_E5", + "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "PAM_ENTERPRISE", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "SAFEDOCS", + "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", + "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "PROJECT_O365_P3", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "PURVIEW_DISCOVERY", + "Service_Plan_Id": "c948ea65-2053-4a5a-8a62-9eaaaf11b522", + "Service_Plans_Included_Friendly_Names": "Purview Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", + "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", + "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "MICROSOFTENDPOINTDLP", + "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "WIN10_PRO_ENT_SUB", + "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "Windows_Autopatch", + "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", + "Service_Plans_Included_Friendly_Names": "Windows Autopatch" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "RMS_S_PREMIUM2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "POWERAPPS_O365_P3", + "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "FLOW_O365_P3", + "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) (500 seats min)_HUB", + "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB", + "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", + "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "CDS_O365_P3", + "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "Bing_Chat_Enterprise", + "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", + "Service_Plans_Included_Friendly_Names": "Copilot" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", + "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "M365_AUDIT_PLATFORM", + "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "DATA_INVESTIGATIONS", + "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "EXCEL_PREMIUM", + "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", + "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "FORMS_PLAN_E5", + "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "KAIZALA_STANDALONE", + "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "EXCHANGE_ANALYTICS", + "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "PAM_ENTERPRISE", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "SAFEDOCS", + "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", + "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "POWERAPPS_O365_P3", + "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "PROJECT_O365_P3", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "MICROSOFTENDPOINTDLP", + "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "WIN10_PRO_ENT_SUB", + "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "Windows_Autopatch", + "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", + "Service_Plans_Included_Friendly_Names": "Windows Autopatch" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "RMS_S_PREMIUM2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "STREAM_O365_E5", + "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "FLOW_O365_P3", + "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB", + "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB", + "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", + "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "CDS_O365_P3", + "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", + "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "MCOMEETADV_AR_GCCHigh", + "Service_Plan_Id": "f1e3613f-3818-4254-9b5e-f02d803384e0", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing for GCCHigh" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "FORMS_PLAN_E5_AR_GCCHIGH", + "Service_Plan_Id": "cf1b2895-e3fd-4b33-9594-2ab924104547", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5) for GCCHigh" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "MICROSOFT_SEARCH_GCCH", + "Service_Plan_Id": "fc9f7921-4ca5-42c6-8533-1b84c4ee496b", + "Service_Plans_Included_Friendly_Names": "Microsoft Search for Arlington" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "STREAM_O365_E5", + "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "TEAMS_AR_GCCHIGH", + "Service_Plan_Id": "9953b155-8aef-4c56-92f3-72b0487fce41", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams for GCCHigh" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "SAFEDOCS", + "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", + "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "MICROSOFTENDPOINTDLP", + "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "RMS_S_PREMIUM2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "POWERAPPS_O365_P3_GCCHIGH", + "Service_Plan_Id": "b50a9096-5b07-4ded-a5e4-a492fb94b6ee", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for GCCHigh" + }, + { + "Product_Display_Name": "Microsoft 365 E5_USGOV_GCCHIGH", + "String_Id": "SPE_E5_USGOV_GCCHIGH", + "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20", + "Service_Plan_Name": "FLOW_O365_P3_GCCHIGH", + "Service_Plan_Id": "ee939cf0-7cd1-4262-9f72-9eaa45dbba69", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for GCCHigh" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1", + "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1", + "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1", + "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", + "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", + "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1", + "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1", + "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1", + "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1", + "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1", + "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1", + "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", + "Service_Plan_Name": "STREAM_O365_K", + "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 K SKU" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1", + "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1", + "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1", + "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", + "Service_Plan_Name": "SHAREPOINTDESKLESS", + "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", + "Service_Plans_Included_Friendly_Names": "SharePoint Online Kiosk" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1", + "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", + "Service_Plan_Name": "MCOIMP", + "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1", + "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", + "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", + "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", + "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", + "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", + "Service_Plan_Name": "EXCHANGE_S_DESKLESS", + "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", + "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk" + }, + { + "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", + "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", + "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", + "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", + "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", + "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", + "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", + "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", + "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", + "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", + "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", + "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", + "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", + "Service_Plan_Name": "SHAREPOINTDESKLESS", + "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", + "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" + }, + { + "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", + "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", + "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", + "Service_Plan_Name": "MCOIMP", + "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", + "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", + "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", + "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", + "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", + "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", + "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", + "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", + "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", + "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", + "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", + "Service_Plan_Name": "DYN365_CDS_O365_F1", + "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", + "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", + "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", + "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", + "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", + "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", + "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", + "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", + "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 F1 EEA (no Teams)", + "String_Id": "Microsoft_365_F1_EEA_(no_Teams)", + "GUID": "0666269f-b167-4c5b-a76f-fc574f2b1118", + "Service_Plan_Name": "STREAM_O365_K", + "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 F3" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "CDS_O365_F1", + "Service_Plan_Id": "90db65a7-bf11-4904-a79f-ef657605145b", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "EXCHANGE_S_DESKLESS", + "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", + "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "FORMS_PLAN_K", + "Service_Plan_Id": "f07046bd-2a3c-4b96-b0be-dea79d7cbfb8", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1)" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "KAIZALA_O365_P1", + "Service_Plan_Id": "73b2a583-6a59-42e3-8e83-54db46bc3278", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", + "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", + "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "PROJECT_O365_F3", + "Service_Plan_Id": "7f6f28c2-34bb-4d4b-be36-48ca2e77e1ec", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan F)" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "SHAREPOINTDESKLESS", + "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", + "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "MCOIMP", + "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "BPOS_S_TODO_FIRSTLINE", + "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5", + "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1", + "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "WIN10_ENT_LOC_F1", + "Service_Plan_Id": "e041597c-9c7f-4ed9-99b0-2663301576f7", + "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise E3 (Local Only)" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "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": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "DYN365_CDS_O365_F1", + "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "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": "STREAM_O365_K", + "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 F3" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "POWERAPPS_O365_S1", + "Service_Plan_Id": "e0287f9f-e222-4f98-9a83-f379e249159a", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "FLOW_O365_S1", + "Service_Plan_Id": "bd91b1a4-9f94-4ecf-b45b-3a65e5c8128a", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_F1", + "Service_Plan_Id": "ba2fdb48-290b-4632-b46a-e4ecc58ac11a", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 F3", + "String_Id": "SPE_F1", + "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "CDS_O365_F1", + "Service_Plan_Id": "90db65a7-bf11-4904-a79f-ef657605145b", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "EXCHANGE_S_DESKLESS", + "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", + "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "FORMS_PLAN_K", + "Service_Plan_Id": "f07046bd-2a3c-4b96-b0be-dea79d7cbfb8", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1)" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "KAIZALA_O365_P1", + "Service_Plan_Id": "73b2a583-6a59-42e3-8e83-54db46bc3278", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "TEAMS_DESKLESS", + "Service_Plan_Id": "a42de799-58ae-4e6a-aa1d-948e7abec726", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams Kiosk" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", + "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", + "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "PROJECT_O365_F3", + "Service_Plan_Id": "7f6f28c2-34bb-4d4b-be36-48ca2e77e1ec", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan F)" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "SHAREPOINTDESKLESS", + "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", + "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "MCOIMP", + "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "BPOS_S_TODO_FIRSTLINE", + "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5", + "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1", + "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "WIN10_ENT_LOC_F1", + "Service_Plan_Id": "e041597c-9c7f-4ed9-99b0-2663301576f7", + "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise E3 (Local Only)" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "DYN365_CDS_O365_F1", + "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "STREAM_O365_K", + "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 F3" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "POWERAPPS_O365_S1", + "Service_Plan_Id": "e0287f9f-e222-4f98-9a83-f379e249159a", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "FLOW_O365_S1", + "Service_Plan_Id": "bd91b1a4-9f94-4ecf-b45b-3a65e5c8128a", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3" + }, + { + "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)", + "String_Id": "Microsoft_365_F3_EEA_(no_Teams)", + "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_F1", + "Service_Plan_Id": "ba2fdb48-290b-4632-b46a-e4ecc58ac11a", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 F3 GCC", + "String_Id": "M365_F1_GOV", + "GUID": "2a914830-d700-444a-b73c-e3f31980d833", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 F3 GCC", + "String_Id": "M365_F1_GOV", + "GUID": "2a914830-d700-444a-b73c-e3f31980d833", + "Service_Plan_Name": "RMS_S_PREMIUM_GOV", + "Service_Plan_Id": "1b66aedf-8ca1-4f73-af76-ec76c6180f98", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1 for GCC" + }, + { + "Product_Display_Name": "Microsoft 365 F3 GCC", + "String_Id": "M365_F1_GOV", + "GUID": "2a914830-d700-444a-b73c-e3f31980d833", + "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", + "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 F3 GCC", + "String_Id": "M365_F1_GOV", + "GUID": "2a914830-d700-444a-b73c-e3f31980d833", + "Service_Plan_Name": "DYN365_CDS_O365_F1_GCC", + "Service_Plan_Id": "29007dd3-36c0-4cc2-935d-f5bca2c2c473", + "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 F1" + }, + { + "Product_Display_Name": "Microsoft 365 F3 GCC", + "String_Id": "M365_F1_GOV", + "GUID": "2a914830-d700-444a-b73c-e3f31980d833", + "Service_Plan_Name": "CDS_O365_F1_GCC", + "Service_Plan_Id": "5e05331a-0aec-437e-87db-9ef5934b5771", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_F1 GCC" + }, + { + "Product_Display_Name": "Microsoft 365 F3 GCC", + "String_Id": "M365_F1_GOV", + "GUID": "2a914830-d700-444a-b73c-e3f31980d833", + "Service_Plan_Name": "EXCHANGE_S_DESKLESS_GOV", + "Service_Plan_Id": "88f4d7ef-a73b-4246-8047-516022144c9f", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Kiosk) for Government" + }, + { + "Product_Display_Name": "Microsoft 365 F3 GCC", + "String_Id": "M365_F1_GOV", + "GUID": "2a914830-d700-444a-b73c-e3f31980d833", + "Service_Plan_Name": "FORMS_GOV_F1", + "Service_Plan_Id": "bfd4133a-bbf3-4212-972b-60412137c428", + "Service_Plans_Included_Friendly_Names": "Forms for Government (Plan F1)" + }, + { + "Product_Display_Name": "Microsoft 365 F3 GCC", + "String_Id": "M365_F1_GOV", + "GUID": "2a914830-d700-444a-b73c-e3f31980d833", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 F3 GCC", + "String_Id": "M365_F1_GOV", + "GUID": "2a914830-d700-444a-b73c-e3f31980d833", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft 365 F3 GCC", + "String_Id": "M365_F1_GOV", + "GUID": "2a914830-d700-444a-b73c-e3f31980d833", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 F3 GCC", + "String_Id": "M365_F1_GOV", + "GUID": "2a914830-d700-444a-b73c-e3f31980d833", + "Service_Plan_Name": "STREAM_O365_K_GOV", + "Service_Plan_Id": "d65648f1-9504-46e4-8611-2658763f28b8", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 for Government (F1)" + }, + { + "Product_Display_Name": "Microsoft 365 F3 GCC", + "String_Id": "M365_F1_GOV", + "GUID": "2a914830-d700-444a-b73c-e3f31980d833", + "Service_Plan_Name": "TEAMS_GOV", + "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" + }, + { + "Product_Display_Name": "Microsoft 365 F3 GCC", + "String_Id": "M365_F1_GOV", + "GUID": "2a914830-d700-444a-b73c-e3f31980d833", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 F3 GCC", + "String_Id": "M365_F1_GOV", + "GUID": "2a914830-d700-444a-b73c-e3f31980d833", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", + "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", + "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" + }, + { + "Product_Display_Name": "Microsoft 365 F3 GCC", + "String_Id": "M365_F1_GOV", + "GUID": "2a914830-d700-444a-b73c-e3f31980d833", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Microsoft 365 F3 GCC", + "String_Id": "M365_F1_GOV", + "GUID": "2a914830-d700-444a-b73c-e3f31980d833", + "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION_GOV", + "Service_Plan_Id": "4ccb60ee-9523-48fd-8f63-4b090f1ad77a", + "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365 for GCC" + }, + { + "Product_Display_Name": "Microsoft 365 F3 GCC", + "String_Id": "M365_F1_GOV", + "GUID": "2a914830-d700-444a-b73c-e3f31980d833", + "Service_Plan_Name": "POWERAPPS_O365_S1_GOV", + "Service_Plan_Id": "49f06c3d-da7d-4fa0-bcce-1458fdd18a59", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3 for Government" + }, + { + "Product_Display_Name": "Microsoft 365 F3 GCC", + "String_Id": "M365_F1_GOV", + "GUID": "2a914830-d700-444a-b73c-e3f31980d833", + "Service_Plan_Name": "FLOW_O365_S1_GOV", + "Service_Plan_Id": "5d32692e-5b24-4a59-a77e-b2a8650e25c1", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3 for Government" + }, + { + "Product_Display_Name": "Microsoft 365 F3 GCC", + "String_Id": "M365_F1_GOV", + "GUID": "2a914830-d700-444a-b73c-e3f31980d833", + "Service_Plan_Name": "SHAREPOINTDESKLESS_GOV", + "Service_Plan_Id": "b1aeb897-3a19-46e2-8c27-a609413cf193", + "Service_Plans_Included_Friendly_Names": "SharePoint KioskG" + }, + { + "Product_Display_Name": "Microsoft 365 F3 GCC", + "String_Id": "M365_F1_GOV", + "GUID": "2a914830-d700-444a-b73c-e3f31980d833", + "Service_Plan_Name": "MCOIMP_GOV", + "Service_Plan_Id": "8a9f17f1-5872-44e8-9b11-3caade9dc90f", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1) for Government" + }, + { + "Product_Display_Name": "Microsoft 365 F3 GCC", + "String_Id": "M365_F1_GOV", + "GUID": "2a914830-d700-444a-b73c-e3f31980d833", + "Service_Plan_Name": "BPOS_S_TODO_FIRSTLINE", + "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5", + "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)" + }, + { + "Product_Display_Name": "Microsoft 365 F3 GCC", + "String_Id": "M365_F1_GOV", + "GUID": "2a914830-d700-444a-b73c-e3f31980d833", + "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1", + "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", + "String_Id": "SPE_F5_COMP", + "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", + "String_Id": "SPE_F5_COMP", + "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", + "Service_Plan_Name": "BPOS_S_DlpAddOn", + "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed", + "Service_Plans_Included_Friendly_Names": "Data Loss Prevention" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", + "String_Id": "SPE_F5_COMP", + "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", + "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", + "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", + "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", + "String_Id": "SPE_F5_COMP", + "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", + "String_Id": "SPE_F5_COMP", + "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", + "String_Id": "SPE_F5_COMP", + "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", + "String_Id": "SPE_F5_COMP", + "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", + "String_Id": "SPE_F5_COMP", + "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", + "String_Id": "SPE_F5_COMP", + "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", + "String_Id": "SPE_F5_COMP", + "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", + "String_Id": "SPE_F5_COMP", + "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", + "Service_Plan_Name": "DATA_INVESTIGATIONS", + "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", + "String_Id": "SPE_F5_COMP", + "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", + "String_Id": "SPE_F5_COMP", + "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", + "String_Id": "SPE_F5_COMP", + "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", + "String_Id": "SPE_F5_COMP", + "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", + "String_Id": "SPE_F5_COMP", + "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", + "String_Id": "SPE_F5_COMP", + "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", + "Service_Plan_Name": "PAM_ENTERPRISE", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", + "String_Id": "SPE_F5_COMP", + "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", + "String_Id": "SPE_F5_COMP", + "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", + "Service_Plan_Name": "MICROSOFTENDPOINTDLP", + "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", + "String_Id": "SPE_F5_COMP", + "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", + "Service_Plan_Name": "RMS_S_PREMIUM2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on", + "String_Id": "SPE_F5_COMP", + "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", + "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", + "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", + "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", + "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", + "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", + "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", + "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", + "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", + "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", + "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", + "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", + "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", + "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", + "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", + "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", + "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", + "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", + "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", + "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", + "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", + "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", + "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", + "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", + "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", + "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", + "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", + "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", + "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", + "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", + "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", + "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", + "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", + "Service_Plan_Name": "MICROSOFTENDPOINTDLP", + "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", + "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", + "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", + "Service_Plan_Name": "RMS_S_PREMIUM2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD", + "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD", + "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350", + "Service_Plan_Name": "ADALLOM_S_STANDALONE_DOD", + "Service_Plan_Id": "6ebdddb7-8e55-4af2-952b-69e77262f96c", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps for DOD" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", + "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", + "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", + "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", + "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", + "Service_Plan_Name": "BPOS_S_DlpAddOn", + "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed", + "Service_Plans_Included_Friendly_Names": "Data Loss Prevention" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", + "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", + "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", + "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", + "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", + "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", + "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", + "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", + "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", + "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", + "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", + "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", + "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", + "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", + "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", + "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", + "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", + "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", + "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", + "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", + "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", + "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", + "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", + "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", + "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", + "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", + "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", + "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", + "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", + "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", + "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", + "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", + "Service_Plan_Name": "MICROSOFTENDPOINTDLP", + "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", + "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", + "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", + "Service_Plan_Name": "RMS_S_PREMIUM2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH", + "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH", + "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", + "String_Id": "SPE_F5_COMP_GCC", + "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV", + "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", + "String_Id": "SPE_F5_COMP_GCC", + "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", + "Service_Plan_Name": "BPOS_S_DlpAddOn", + "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed", + "Service_Plans_Included_Friendly_Names": "Data Loss Prevention" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", + "String_Id": "SPE_F5_COMP_GCC", + "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", + "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", + "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", + "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", + "String_Id": "SPE_F5_COMP_GCC", + "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", + "String_Id": "SPE_F5_COMP_GCC", + "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", + "String_Id": "SPE_F5_COMP_GCC", + "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", + "String_Id": "SPE_F5_COMP_GCC", + "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", + "String_Id": "SPE_F5_COMP_GCC", + "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", + "String_Id": "SPE_F5_COMP_GCC", + "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", + "String_Id": "SPE_F5_COMP_GCC", + "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", + "String_Id": "SPE_F5_COMP_GCC", + "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", + "String_Id": "SPE_F5_COMP_GCC", + "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", + "String_Id": "SPE_F5_COMP_GCC", + "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", + "String_Id": "SPE_F5_COMP_GCC", + "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", + "String_Id": "SPE_F5_COMP_GCC", + "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", + "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV", + "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", + "String_Id": "SPE_F5_COMP_GCC", + "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", + "String_Id": "SPE_F5_COMP_GCC", + "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", + "Service_Plan_Name": "MICROSOFTENDPOINTDLP", + "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", + "String_Id": "SPE_F5_COMP_GCC", + "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", + "Service_Plan_Name": "RMS_S_PREMIUM2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC", + "String_Id": "SPE_F5_COMP_GCC", + "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security Add-on", + "String_Id": "SPE_F5_SEC", + "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security Add-on", + "String_Id": "SPE_F5_SEC", + "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security Add-on", + "String_Id": "SPE_F5_SEC", + "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security Add-on", + "String_Id": "SPE_F5_SEC", + "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security Add-on", + "String_Id": "SPE_F5_SEC", + "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security Add-on", + "String_Id": "SPE_F5_SEC", + "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security Add-on", + "String_Id": "SPE_F5_SEC", + "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "BPOS_S_DlpAddOn", + "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed", + "Service_Plans_Included_Friendly_Names": "Data Loss Prevention" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", + "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", + "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "DATA_INVESTIGATIONS", + "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "PAM_ENTERPRISE", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "SAFEDOCS", + "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", + "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "MICROSOFTENDPOINTDLP", + "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "RMS_S_PREMIUM2", + "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on", + "String_Id": "SPE_F5_SECCOMP", + "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "CDS_O365_P3_GCC", + "Service_Plan_Id": "bce5e5ca-c2fd-4d53-8ee2-58dfffed4c10", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV", + "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", + "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", + "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX_TOPICEXP", + "Service_Plan_Id": "b74d57b2-58e9-484a-9731-aeccbba954f0", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index (Microsoft Viva Topics)" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV", + "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise G" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "MCOMEETADV_GOV", + "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "MCOEV_GOV", + "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "ATP_ENTERPRISE_GOV", + "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV", + "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2) for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "FORMS_GOV_E5", + "Service_Plan_Id": "843da3a8-d2cc-4e7a-9e90-dc46019f964c", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "EXCHANGE_ANALYTICS_GOV", + "Service_Plan_Id": "208120d1-9adb-4daf-8c22-816bd5d237e7", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics for Government (Full)" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "TEAMS_GOV", + "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV", + "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", + "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", + "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "SAFEDOCS", + "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", + "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "BI_AZURE_P_2_GOV", + "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76", + "Service_Plans_Included_Friendly_Names": "Power BI Pro for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "PROJECT_O365_P3_GOV", + "Service_Plan_Id": "9b7c50ec-cd50-44f2-bf48-d72de6f90717", + "Service_Plans_Included_Friendly_Names": "Project for Government (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "MCOSTANDARD_GOV", + "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "STREAM_O365_E5_GOV", + "Service_Plan_Id": "92c2089d-9a53-49fe-b1a6-9e6bdf959547", + "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E5)" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "MICROSOFTENDPOINTDLP", + "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "RMS_S_PREMIUM_GOV", + "Service_Plan_Id": "1b66aedf-8ca1-4f73-af76-ec76c6180f98", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1 for GCC" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "RMS_S_PREMIUM2_GOV", + "Service_Plan_Id": "5400a66d-eaa5-427d-80f2-0f26d59d8fce", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2 for GCC" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", + "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "DYN365_CDS_O365_P3_GCC", + "Service_Plan_Id": "a7d3fb37-b6df-4085-b509-50810d991a39", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "POWERAPPS_O365_P3_GOV", + "Service_Plan_Id": "0eacfc38-458a-40d3-9eab-9671258f1a3e", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5", + "String_Id": "M365_G5_GCC", + "GUID": "e2be619b-b125-455f-8660-fb503e431a5d", + "Service_Plan_Name": "FLOW_O365_P3_GOV", + "Service_Plan_Id": "8055d84a-c172-42eb-b997-6c2ae4628246", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "CDS_O365_P3_GCC", + "Service_Plan_Id": "bce5e5ca-c2fd-4d53-8ee2-58dfffed4c10", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV", + "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", + "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", + "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV", + "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise G" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "MCOMEETADV_GOV", + "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "MCOEV_GOV", + "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "ATP_ENTERPRISE_GOV", + "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV", + "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2) for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "FORMS_GOV_E5", + "Service_Plan_Id": "843da3a8-d2cc-4e7a-9e90-dc46019f964c", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "EXCHANGE_ANALYTICS_GOV", + "Service_Plan_Id": "208120d1-9adb-4daf-8c22-816bd5d237e7", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics for Government (Full)" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "TEAMS_GOV", + "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV", + "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", + "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", + "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "BI_AZURE_P_2_GOV", + "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76", + "Service_Plans_Included_Friendly_Names": "Power BI Pro for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "PROJECT_O365_P3_GOV", + "Service_Plan_Id": "9b7c50ec-cd50-44f2-bf48-d72de6f90717", + "Service_Plans_Included_Friendly_Names": "Project for Government (Plan E5)" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "MCOSTANDARD_GOV", + "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "STREAM_O365_E5_GOV", + "Service_Plan_Id": "92c2089d-9a53-49fe-b1a6-9e6bdf959547", + "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E5)" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "MICROSOFTENDPOINTDLP", + "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "AAD_PREMIUM_P2", + "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", + "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "RMS_S_PREMIUM_GOV", + "Service_Plan_Id": "1b66aedf-8ca1-4f73-af76-ec76c6180f98", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1 for GCC" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "RMS_S_PREMIUM2_GOV", + "Service_Plan_Id": "5400a66d-eaa5-427d-80f2-0f26d59d8fce", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2 for GCC" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", + "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "DYN365_CDS_O365_P3_GCC", + "Service_Plan_Id": "a7d3fb37-b6df-4085-b509-50810d991a39", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "POWERAPPS_O365_P3_GOV", + "Service_Plan_Id": "0eacfc38-458a-40d3-9eab-9671258f1a3e", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" + }, + { + "Product_Display_Name": "Microsoft 365 GCC G5 w/o WDATP/CAS Unified", + "String_Id": "M365_G5_GOV", + "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d", + "Service_Plan_Name": "FLOW_O365_P3_GOV", + "Service_Plan_Id": "8055d84a-c172-42eb-b997-6c2ae4628246", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" + }, + { + "Product_Display_Name": "Microsoft 365 Audio Conferencing for GCC", + "String_Id": "MCOMEETADV_GOV", + "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT" + }, + { + "Product_Display_Name": "Microsoft 365 Audio Conferencing for GCC", + "String_Id": "MCOMEETADV_GOV", + "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5", + "Service_Plan_Name": "MCOMEETADV_GOV", + "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", + "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 AUDIO CONFERENCING FOR GOVERNMENT" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Suite features", + "String_Id": "M365_E5_SUITE_COMPONENTS", + "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", + "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS", + "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Suite features", + "String_Id": "M365_E5_SUITE_COMPONENTS", + "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", + "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS", + "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8", + "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Suite features", + "String_Id": "M365_E5_SUITE_COMPONENTS", + "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", + "Service_Plan_Name": "Bing_Chat_Enterprise", + "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba", + "Service_Plans_Included_Friendly_Names": "Copilot" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Suite features", + "String_Id": "M365_E5_SUITE_COMPONENTS", + "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", + "Service_Plan_Name": "CustomerLockboxA_Enterprise", + "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Suite features", + "String_Id": "M365_E5_SUITE_COMPONENTS", + "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Suite features", + "String_Id": "M365_E5_SUITE_COMPONENTS", + "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", + "Service_Plan_Name": "CLIPCHAMP", + "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472", + "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Suite features", + "String_Id": "M365_E5_SUITE_COMPONENTS", + "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", + "Service_Plan_Name": "INSIDER_RISK", + "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", + "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Suite features", + "String_Id": "M365_E5_SUITE_COMPONENTS", + "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", + "Service_Plan_Name": "MICROSOFT_LOOP", + "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda", + "Service_Plans_Included_Friendly_Names": "Microsoft Loop" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Suite features", + "String_Id": "M365_E5_SUITE_COMPONENTS", + "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", + "Service_Plan_Name": "ML_CLASSIFICATION", + "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", + "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Suite features", + "String_Id": "M365_E5_SUITE_COMPONENTS", + "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", + "Service_Plan_Name": "SAFEDOCS", + "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", + "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Suite features", + "String_Id": "M365_E5_SUITE_COMPONENTS", + "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", + "Service_Plan_Name": "PURVIEW_DISCOVERY", + "Service_Plan_Id": "c948ea65-2053-4a5a-8a62-9eaaaf11b522", + "Service_Plans_Included_Friendly_Names": "Purview Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Suite features", + "String_Id": "M365_E5_SUITE_COMPONENTS", + "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", + "Service_Plan_Name": "MICROSOFTENDPOINTDLP", + "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Suite features", + "String_Id": "M365_E5_SUITE_COMPONENTS", + "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", + "Service_Plan_Name": "Windows_Autopatch", + "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", + "Service_Plans_Included_Friendly_Names": "Windows Autopatch" + }, + { + "Product_Display_Name": "Microsoft 365 E5 Suite features", + "String_Id": "M365_E5_SUITE_COMPONENTS", + "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", + "Service_Plan_Name": "Defender_for_Iot_Enterprise", + "Service_Plan_Id": "99cd49a9-0e54-4e07-aea1-d8d9f5f704f5", + "Service_Plans_Included_Friendly_Names": "Defender for IoT - Enterprise IoT Security" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1_COMM", + "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "AAD_PREMIUM" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1_COMM", + "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", + "Service_Plan_Name": "RMS_S_PREMIUM", + "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", + "Service_Plans_Included_Friendly_Names": "RMS_S_PREMIUM" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1_COMM", + "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "ADALLOM_S_DISCOVERY" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1_COMM", + "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", + "Service_Plan_Name": "DYN365_CDS_O365_F1", + "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f", + "Service_Plans_Included_Friendly_Names": "DYN365_CDS_O365_F1" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1_COMM", + "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", + "Service_Plan_Name": "EXCHANGE_S_DESKLESS", + "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", + "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_DESKLESS" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1_COMM", + "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "RMS_S_ENTERPRISE" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1_COMM", + "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "MFA_PREMIUM" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1_COMM", + "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "MICROSOFTBOOKINGS" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1_COMM", + "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "INTUNE_A" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1_COMM", + "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "PROJECTWORKMANAGEMENT" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1_COMM", + "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "MICROSOFT_SEARCH" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1_COMM", + "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", + "Service_Plan_Name": "STREAM_O365_K", + "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", + "Service_Plans_Included_Friendly_Names": "STREAM_O365_K" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1_COMM", + "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "TEAMS1" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1_COMM", + "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "INTUNE_O365" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1_COMM", + "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", + "Service_Plan_Name": "SHAREPOINTDESKLESS", + "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", + "Service_Plans_Included_Friendly_Names": "SHAREPOINTDESKLESS" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1_COMM", + "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", + "Service_Plan_Name": "MCOIMP", + "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", + "Service_Plans_Included_Friendly_Names": "MCOIMP" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1_COMM", + "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Microsoft 365 F1", + "String_Id": "M365_F1_COMM", + "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "CDS_O365_P2_GCC", + "Service_Plan_Id": "a70bbf38-cdda-470d-adb8-5804b8770f41", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", + "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "MYANALYTICS_P2_GOV", + "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics for Government" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV", + "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise G" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "FORMS_GOV_E3", + "Service_Plan_Id": "24af5f65-d0f3-467b-9f78-ea798c4aeffc", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E3)" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "TEAMS_GOV", + "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", + "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", + "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "PROJECT_O365_P2_GOV", + "Service_Plan_Id": "e7d09ae4-099a-4c34-a2a2-3e166e95c44a", + "Service_Plans_Included_Friendly_Names": "Project for Government (Plan E3)" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "MCOSTANDARD_GOV", + "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "STREAM_O365_E3_GOV", + "Service_Plan_Id": "2c1ada27-dbaa-46f9-bda6-ecb94445f758", + "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E3)" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "BPOS_S_TODO_2", + "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "WHITEBOARD_PLAN2", + "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "RMS_S_PREMIUM_GOV", + "Service_Plan_Id": "1b66aedf-8ca1-4f73-af76-ec76c6180f98", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1 for GCC" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", + "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "DYN365_CDS_O365_P2_GCC", + "Service_Plan_Id": "06162da2-ebf9-4954-99a0-00fee96f95cc", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "ADALLOM_S_DISCOVERY", + "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "POWERAPPS_O365_P2_GOV", + "Service_Plan_Id": "0a20c815-5e81-4727-9bdc-2b5a117850c3", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" + }, + { + "Product_Display_Name": "Microsoft 365 G3 GCC", + "String_Id": "M365_G3_GOV", + "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", + "Service_Plan_Name": "FLOW_O365_P2_GOV", + "Service_Plan_Id": "c537f360-6a00-4ace-a7f5-9128d0ac1e4b", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "CDS_O365_P2_GCC", + "Service_Plan_Id": "a70bbf38-cdda-470d-adb8-5804b8770f41", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", + "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "MYANALYTICS_P2_GOV", + "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics for Government" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "OFFICESUBSCRIPTION_unattended_GOV", + "Service_Plan_Id": "18dfd9bd-5214-4184-8123-c9822d81a9bc", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise (unattended) for GCC" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "MDE_LITE", + "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "FORMS_GOV_E3", + "Service_Plan_Id": "24af5f65-d0f3-467b-9f78-ea798c4aeffc", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E3)" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "TEAMS_GOV", + "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", + "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", + "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "PROJECT_O365_P2_GOV", + "Service_Plan_Id": "e7d09ae4-099a-4c34-a2a2-3e166e95c44a", + "Service_Plans_Included_Friendly_Names": "Project for Government (Plan E3)" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "MCOSTANDARD_GOV", + "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "STREAM_O365_E3_GOV", + "Service_Plan_Id": "2c1ada27-dbaa-46f9-bda6-ecb94445f758", + "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E3)" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "RMS_S_PREMIUM_GOV", + "Service_Plan_Id": "1b66aedf-8ca1-4f73-af76-ec76c6180f98", + "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1 for GCC" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", + "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "DYN365_CDS_O365_P2_GCC", + "Service_Plan_Id": "06162da2-ebf9-4954-99a0-00fee96f95cc", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "MFA_PREMIUM", + "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "POWERAPPS_O365_P2_GOV", + "Service_Plan_Id": "0a20c815-5e81-4727-9bdc-2b5a117850c3", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" + }, + { + "Product_Display_Name": "Microsoft 365 G3 - Unattended License for GCC", + "String_Id": "M365_G3_RPA1_GOV", + "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0", + "Service_Plan_Name": "FLOW_O365_P2_GOV", + "Service_Plan_Id": "c537f360-6a00-4ace-a7f5-9128d0ac1e4b", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" + }, + { + "Product_Display_Name": "Microsoft 365 Lighthouse", + "String_Id": "Microsoft365_Lighthouse", + "GUID": "9c0587f3-8665-4252-a8ad-b7a5ade57312", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft 365 Lighthouse", + "String_Id": "Microsoft365_Lighthouse", + "GUID": "9c0587f3-8665-4252-a8ad-b7a5ade57312", + "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", + "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft 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": "Microsoft Entra ID 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 Copilot for Microsoft 365", + "String_Id": "Microsoft_365_Copilot", + "GUID": "639dec6b-bb19-468b-871c-c5c441c4b0cb", + "Service_Plan_Name": "GRAPH_CONNECTORS_COPILOT", + "Service_Plan_Id": "82d30987-df9b-4486-b146-198b21d164c7", + "Service_Plans_Included_Friendly_Names": "Graph Connectors in Microsoft 365 Copilot" + }, + { + "Product_Display_Name": "Microsoft Copilot for Microsoft 365", + "String_Id": "Microsoft_365_Copilot", + "GUID": "639dec6b-bb19-468b-871c-c5c441c4b0cb", + "Service_Plan_Name": "M365_COPILOT_INTELLIGENT_SEARCH", + "Service_Plan_Id": "931e4a88-a67f-48b5-814f-16a5f1e6028d", + "Service_Plans_Included_Friendly_Names": "Intelligent Search" + }, + { + "Product_Display_Name": "Microsoft Copilot for Microsoft 365", + "String_Id": "Microsoft_365_Copilot", + "GUID": "639dec6b-bb19-468b-871c-c5c441c4b0cb", + "Service_Plan_Name": "M365_COPILOT_BUSINESS_CHAT", + "Service_Plan_Id": "3f30311c-6b1e-48a4-ab79-725b469da960", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Chat" + }, + { + "Product_Display_Name": "Microsoft Copilot for Microsoft 365", + "String_Id": "Microsoft_365_Copilot", + "GUID": "639dec6b-bb19-468b-871c-c5c441c4b0cb", + "Service_Plan_Name": "M365_COPILOT_TEAMS", + "Service_Plan_Id": "b95945de-b3bd-46db-8437-f2beb6ea2347", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Copilot in Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft Copilot for Microsoft 365", + "String_Id": "Microsoft_365_Copilot", + "GUID": "639dec6b-bb19-468b-871c-c5c441c4b0cb", + "Service_Plan_Name": "M365_COPILOT_APPS", + "Service_Plan_Id": "a62f8878-de10-42f3-b68f-6149a25ceb97", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Copilot in Productivity Apps" + }, + { + "Product_Display_Name": "Microsoft Copilot for Microsoft 365", + "String_Id": "Microsoft_365_Copilot", + "GUID": "639dec6b-bb19-468b-871c-c5c441c4b0cb", + "Service_Plan_Name": "M365_COPILOT_CONNECTORS", + "Service_Plan_Id": "89f1c4c8-0878-40f7-804d-869c9128ab5d", + "Service_Plans_Included_Friendly_Names": "Power Platform Connectors in Microsoft 365 Copilot" + }, + { + "Product_Display_Name": "Microsoft Cloud App Security", + "String_Id": "ADALLOM_STANDALONE", + "GUID": "df845ce7-05f9-4894-b5f2-11bbfbcfd2b6", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Cloud App Security", + "String_Id": "ADALLOM_STANDALONE", + "GUID": "df845ce7-05f9-4894-b5f2-11bbfbcfd2b6", + "Service_Plan_Name": "ADALLOM_S_STANDALONE", + "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", + "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" + }, + { + "Product_Display_Name": "Microsoft Cloud for Sustainability vTrial", + "String_Id": "Microsoft_Cloud_for_Sustainability_vTrial", + "GUID": "556640c0-53ea-4773-907d-29c55332983f", + "Service_Plan_Name": "MCS_BizApps_Cloud_for_Sustainability_vTrial", + "Service_Plan_Id": "c1c902e3-a956-4273-abdb-c92afcd027ef", + "Service_Plans_Included_Friendly_Names": "MCS - BizApps_Cloud for Sustainability_vTrial" + }, + { + "Product_Display_Name": "Microsoft Cloud for Sustainability vTrial", + "String_Id": "Microsoft_Cloud_for_Sustainability_vTrial", + "GUID": "556640c0-53ea-4773-907d-29c55332983f", + "Service_Plan_Name": "POWER_APPS_DYN365_VIRAL_TRIAL", + "Service_Plan_Id": "54b37829-818e-4e3c-a08a-3ea66ab9b45d", + "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365 vTrial" + }, + { + "Product_Display_Name": "Microsoft Cloud for Sustainability vTrial", + "String_Id": "Microsoft_Cloud_for_Sustainability_vTrial", + "GUID": "556640c0-53ea-4773-907d-29c55332983f", + "Service_Plan_Name": "POWER_AUTOMATE_DYN365_VIRAL_TRIAL", + "Service_Plan_Id": "81d4ecb8-0481-42fb-8868-51536c5aceeb", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 vTrial" + }, + { + "Product_Display_Name": "Microsoft Cloud for Sustainability vTrial", + "String_Id": "Microsoft_Cloud_for_Sustainability_vTrial", + "GUID": "556640c0-53ea-4773-907d-29c55332983f", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Cloud for Sustainability vTrial", + "String_Id": "Microsoft_Cloud_for_Sustainability_vTrial", + "GUID": "556640c0-53ea-4773-907d-29c55332983f", + "Service_Plan_Name": "DYN365_CDS_VIRAL", + "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Microsoft Defender for Endpoint", + "String_Id": "WIN_DEF_ATP", + "GUID": "111046dd-295b-4d6d-9724-d52ac90bd1f2", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Defender for Endpoint", + "String_Id": "WIN_DEF_ATP", + "GUID": "111046dd-295b-4d6d-9724-d52ac90bd1f2", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR ENDPOINT" + }, + { + "Product_Display_Name": "Microsoft Defender for Endpoint P1", + "String_Id": "DEFENDER_ENDPOINT_P1", + "GUID": "16a55f2f-ff35-4cd5-9146-fb784e3761a5", + "Service_Plan_Name": "Intune_Defender", + "Service_Plan_Id": "1689aade-3d6a-4bfc-b017-46d2672df5ad", + "Service_Plans_Included_Friendly_Names": "MDE_SecurityManagement" + }, + { + "Product_Display_Name": "Microsoft Defender for Endpoint P1", + "String_Id": "DEFENDER_ENDPOINT_P1", + "GUID": "16a55f2f-ff35-4cd5-9146-fb784e3761a5", + "Service_Plan_Name": "MDE_LITE", + "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" + }, + { + "Product_Display_Name": "Microsoft Defender for Endpoint P1 for EDU", + "String_Id": "DEFENDER_ENDPOINT_P1_EDU", + "GUID": "bba890d4-7881-4584-8102-0c3fdfb739a7", + "Service_Plan_Name": "MDE_LITE", + "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1" + }, + { + "Product_Display_Name": "Microsoft Defender for Endpoint P2_XPLAT", + "String_Id": "MDATP_XPLAT", + "GUID": "b126b073-72db-4a9d-87a4-b17afe41d4ab", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Defender for Endpoint P2_XPLAT", + "String_Id": "MDATP_XPLAT", + "GUID": "b126b073-72db-4a9d-87a4-b17afe41d4ab", + "Service_Plan_Name": "Intune_Defender", + "Service_Plan_Id": "1689aade-3d6a-4bfc-b017-46d2672df5ad", + "Service_Plans_Included_Friendly_Names": "MDE_SecurityManagement" + }, + { + "Product_Display_Name": "Microsoft Defender for Endpoint P2_XPLAT", + "String_Id": "MDATP_XPLAT", + "GUID": "b126b073-72db-4a9d-87a4-b17afe41d4ab", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Microsoft Defender for Endpoint Server", + "String_Id": "MDATP_Server", + "GUID": "509e8ab6-0274-4cda-bcbd-bd164fd562c4", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Defender for Endpoint Server", + "String_Id": "MDATP_Server", + "GUID": "509e8ab6-0274-4cda-bcbd-bd164fd562c4", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Microsoft Dynamics CRM Online Basic", + "String_Id": "CRMPLAN2", + "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" + }, + { + "Product_Display_Name": "Microsoft Dynamics CRM Online Basic", + "String_Id": "CRMPLAN2", + "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657", + "Service_Plan_Name": "FLOW_DYN_APPS", + "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", + "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" + }, + { + "Product_Display_Name": "Microsoft Dynamics CRM Online Basic", + "String_Id": "CRMPLAN2", + "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657", + "Service_Plan_Name": "CRMPLAN2", + "Service_Plan_Id": "bf36ca64-95c6-4918-9275-eb9f4ce2c04f", + "Service_Plans_Included_Friendly_Names": "MICROSOFT DYNAMICS CRM ONLINE BASIC" + }, + { + "Product_Display_Name": "Microsoft Dynamics CRM Online Basic", + "String_Id": "CRMPLAN2", + "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657", + "Service_Plan_Name": "POWERAPPS_DYN_APPS", + "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", + "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" + }, + { + "Product_Display_Name": "Microsoft Defender for Identity", + "String_Id": "ATA", + "GUID": "98defdf7-f6c1-44f5-a1f6-943b6764e7a5", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Defender for Identity", + "String_Id": "ATA", + "GUID": "98defdf7-f6c1-44f5-a1f6-943b6764e7a5", + "Service_Plan_Name": "ATA", + "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" + }, + { + "Product_Display_Name": "Microsoft Defender for Identity", + "String_Id": "ATA", + "GUID": "98defdf7-f6c1-44f5-a1f6-943b6764e7a5", + "Service_Plan_Name": "ADALLOM_FOR_AATP", + "Service_Plan_Id": "61d18b02-6889-479f-8f36-56e6e0fe5792", + "Service_Plans_Included_Friendly_Names": "SecOps Investigation for MDI" + }, + { + "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 1) Faculty", + "String_Id": "ATP_ENTERPRISE_FACULTY", + "GUID": "26ad4b5c-b686-462e-84b9-d7c22b46837f", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 1) GCC", + "String_Id": "ATP_ENTERPRISE_GOV", + "GUID": "d0d1ca43-b81a-4f51-81e5-a5b1ad7bb005", + "Service_Plan_Name": "ATP_ENTERPRISE_GOV", + "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government" + }, + { + "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 1)_USGOV_GCCHIGH", + "String_Id": "ATP_ENTERPRISE_USGOV_GCCHIGH ", + "GUID": "550f19ba-f323-4a7d-a8d2-8971b0d9ea85", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2) GCC", + "String_Id": "THREAT_INTELLIGENCE_GOV", + "GUID": "56a59ffb-9df1-421b-9e61-8b568583474d", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2) GCC", + "String_Id": "THREAT_INTELLIGENCE_GOV", + "GUID": "56a59ffb-9df1-421b-9e61-8b568583474d", + "Service_Plan_Name": "ATP_ENTERPRISE_GOV", + "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government" + }, + { + "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2) GCC", + "String_Id": "THREAT_INTELLIGENCE_GOV", + "GUID": "56a59ffb-9df1-421b-9e61-8b568583474d", + "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV", + "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2) for Government" + }, + { + "Product_Display_Name": "Microsoft Defender Vulnerability Management", + "String_Id": "TVM_Premium_Standalone", + "GUID": "1925967e-8013-495f-9644-c99f8b463748", + "Service_Plan_Name": "TVM_PREMIUM_1", + "Service_Plan_Id": "36810a13-b903-490a-aa45-afbeb7540832", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender Vulnerability Management" + }, + { + "Product_Display_Name": "Microsoft Defender Vulnerability Management Add-on", + "String_Id": "TVM_Premium_Add_on", + "GUID": "ad7a56e0-6903-4d13-94f3-5ad491e78960", + "Service_Plan_Name": "TVM_PREMIUM_1", + "Service_Plan_Id": "36810a13-b903-490a-aa45-afbeb7540832", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender Vulnerability Management" + }, + { + "Product_Display_Name": "Microsoft Dynamics CRM Online", + "String_Id": "CRMSTANDARD", + "GUID": "d17b27af-3f49-4822-99f9-56a661538792", + "Service_Plan_Name": "CRMSTANDARD", + "Service_Plan_Id": "f9646fb2-e3b2-4309-95de-dc4833737456", + "Service_Plans_Included_Friendly_Names": "MICROSOFT DYNAMICS CRM ONLINE PROFESSIONA" + }, + { + "Product_Display_Name": "Microsoft Dynamics CRM Online", + "String_Id": "CRMSTANDARD", + "GUID": "d17b27af-3f49-4822-99f9-56a661538792", + "Service_Plan_Name": "FLOW_DYN_APPS", + "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", + "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" + }, + { + "Product_Display_Name": "Microsoft Dynamics CRM Online", + "String_Id": "CRMSTANDARD", + "GUID": "d17b27af-3f49-4822-99f9-56a661538792", + "Service_Plan_Name": "MDM_SALES_COLLABORATION", + "Service_Plan_Id": "3413916e-ee66-4071-be30-6f94d4adfeda", + "Service_Plans_Included_Friendly_Names": "MICROSOFT DYNAMICS MARKETING SALES COLLABORATION - ELIGIBILITY CRITERIA APPLY" + }, + { + "Product_Display_Name": "Microsoft Dynamics CRM Online", + "String_Id": "CRMSTANDARD", + "GUID": "d17b27af-3f49-4822-99f9-56a661538792", + "Service_Plan_Name": "NBPROFESSIONALFORCRM", + "Service_Plan_Id": "3e58e97c-9abe-ebab-cd5f-d543d1529634", + "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT PROFESSIONAL - ELIGIBILITY CRITERIA APPLY" + }, + { + "Product_Display_Name": "Microsoft Dynamics CRM Online", + "String_Id": "CRMSTANDARD", + "GUID": "d17b27af-3f49-4822-99f9-56a661538792", + "Service_Plan_Name": "POWERAPPS_DYN_APPS", + "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", + "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" + }, + { + "Product_Display_Name": "Microsoft Fabric (Free)", + "String_Id": "POWER_BI_STANDARD", + "GUID": "a403ebcc-fae0-4ca2-8c8c-7a907fd6c235", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Fabric (Free)", + "String_Id": "POWER_BI_STANDARD", + "GUID": "a403ebcc-fae0-4ca2-8c8c-7a907fd6c235", + "Service_Plan_Name": "BI_AZURE_P0", + "Service_Plan_Id": "2049e525-b859-401b-b2a0-e0a31c4b1fe4", + "Service_Plans_Included_Friendly_Names": "Power BI (free)" + }, + { + "Product_Display_Name": "Microsoft Fabric (Free) for faculty", + "String_Id": "POWER_BI_STANDARD_FACULTY", + "GUID": "ade29b5f-397e-4eb9-a287-0344bd46c68d", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_FOUNDATION" + }, + { + "Product_Display_Name": "Microsoft Fabric (Free) for faculty", + "String_Id": "POWER_BI_STANDARD_FACULTY", + "GUID": "ade29b5f-397e-4eb9-a287-0344bd46c68d", + "Service_Plan_Name": "BI_AZURE_P0", + "Service_Plan_Id": "2049e525-b859-401b-b2a0-e0a31c4b1fe4", + "Service_Plans_Included_Friendly_Names": "BI_AZURE_P0" + }, + { + "Product_Display_Name": "Microsoft Fabric (Free) for student", + "String_Id": "POWER_BI_STANDARD_STUDENT", + "GUID": "bdcaf6aa-04c1-4b8f-b64e-6e3bd505ac64", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_FOUNDATION" + }, + { + "Product_Display_Name": "Microsoft Fabric (Free) for student", + "String_Id": "POWER_BI_STANDARD_STUDENT", + "GUID": "bdcaf6aa-04c1-4b8f-b64e-6e3bd505ac64", + "Service_Plan_Name": "BI_AZURE_P0", + "Service_Plan_Id": "2049e525-b859-401b-b2a0-e0a31c4b1fe4", + "Service_Plans_Included_Friendly_Names": "BI_AZURE_P0" + }, + { + "Product_Display_Name": "Microsoft Imagine Academy", + "String_Id": "IT_ACADEMY_AD", + "GUID": "ba9a34de-4489-469d-879c-0f0f145321cd", + "Service_Plan_Name": "IT_ACADEMY_AD", + "Service_Plan_Id": "d736def0-1fde-43f0-a5be-e3f8b2de6e41", + "Service_Plans_Included_Friendly_Names": "MS IMAGINE ACADEMY" + }, + { + "Product_Display_Name": "Microsoft Intune Device", + "String_Id": "INTUNE_A_D", + "GUID": "2b317a4a-77a6-4188-9437-b68a77b4e2c6", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Intune Device", + "String_Id": "INTUNE_A_D", + "GUID": "2b317a4a-77a6-4188-9437-b68a77b4e2c6", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft Intune Device for Government", + "String_Id": "INTUNE_A_D_GOV", + "GUID": "2c21e77a-e0d6-4570-b38a-7ff2dc17d2ca", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Microsoft Intune Device for Government", + "String_Id": "INTUNE_A_D_GOV", + "GUID": "2c21e77a-e0d6-4570-b38a-7ff2dc17d2ca", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft Intune Government", + "String_Id": "INTUNE_A_GOV", + "GUID": "2b26f637-35a0-4dbc-b69e-ff674782be9d", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Microsoft Intune Government", + "String_Id": "INTUNE_A_GOV", + "GUID": "2b26f637-35a0-4dbc-b69e-ff674782be9d", + "Service_Plan_Name": "INTUNE_A_GOV", + "Service_Plan_Id": "d216f254-796f-4dab-bbfa-710686e646b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune G" + }, + { + "Product_Display_Name": "Microsoft Intune Plan 1 A VL_USGOV_GCCHIGH", + "String_Id": "INTUNE_A_VL_USGOV_GCCHIGH", + "GUID": "b4288abe-01be-47d9-ad20-311d6e83fc24", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Intune Plan 1 A VL_USGOV_GCCHIGH", + "String_Id": "INTUNE_A_VL_USGOV_GCCHIGH", + "GUID": "b4288abe-01be-47d9-ad20-311d6e83fc24", + "Service_Plan_Name": "INTUNE_A_VL", + "Service_Plan_Id": "3e170737-c728-4eae-bbb9-3f3360f7184c", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft Power Apps for Developer", + "String_Id": "POWERAPPS_DEV", + "GUID": "5b631642-bd26-49fe-bd20-1daaa972ef80", + "Service_Plan_Name": "DYN365_CDS_DEV_VIRAL", + "Service_Plan_Id": "d8c638e2-9508-40e3-9877-feb87603837b", + "Service_Plans_Included_Friendly_Names": "Common Data Service - DEV VIRAL" + }, + { + "Product_Display_Name": "Microsoft Power Apps for Developer", + "String_Id": "POWERAPPS_DEV", + "GUID": "5b631642-bd26-49fe-bd20-1daaa972ef80", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Power Apps for Developer", + "String_Id": "POWERAPPS_DEV", + "GUID": "5b631642-bd26-49fe-bd20-1daaa972ef80", + "Service_Plan_Name": "FLOW_DEV_VIRAL", + "Service_Plan_Id": "c7ce3f26-564d-4d3a-878d-d8ab868c85fe", + "Service_Plans_Included_Friendly_Names": "Flow for Developer" + }, + { + "Product_Display_Name": "Microsoft Power Apps for Developer", + "String_Id": "POWERAPPS_DEV", + "GUID": "5b631642-bd26-49fe-bd20-1daaa972ef80", + "Service_Plan_Name": "POWERAPPS_DEV_VIRAL", + "Service_Plan_Id": "a2729df7-25f8-4e63-984b-8a8484121554", + "Service_Plans_Included_Friendly_Names": "PowerApps for Developer" + }, + { + "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", + "String_Id": "POWERAPPS_VIRAL", + "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", + "Service_Plan_Name": "DYN365_CDS_VIRAL", + "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0", + "Service_Plans_Included_Friendly_Names": "Common Data Service - VIRAL" + }, + { + "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", + "String_Id": "POWERAPPS_VIRAL", + "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", + "String_Id": "POWERAPPS_VIRAL", + "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", + "Service_Plan_Name": "FLOW_P2_VIRAL", + "Service_Plan_Id": "50e68c76-46c6-4674-81f9-75456511b170", + "Service_Plans_Included_Friendly_Names": "Flow Free" + }, + { + "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", + "String_Id": "POWERAPPS_VIRAL", + "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", + "Service_Plan_Name": "FLOW_P2_VIRAL_REAL", + "Service_Plan_Id": "d20bfa21-e9ae-43fc-93c2-20783f0840c3", + "Service_Plans_Included_Friendly_Names": "Flow P2 Viral" + }, + { + "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", + "String_Id": "POWERAPPS_VIRAL", + "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", + "Service_Plan_Name": "POWERAPPS_P2_VIRAL", + "Service_Plan_Id": "d5368ca3-357e-4acb-9c21-8495fb025d1f", + "Service_Plans_Included_Friendly_Names": "PowerApps Trial" + }, + { + "Product_Display_Name": "Microsoft Power Automate Free", + "String_Id": "FLOW_FREE", + "GUID": "f30db892-07e9-47e9-837c-80727f46fd3d", + "Service_Plan_Name": "DYN365_CDS_VIRAL", + "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0", + "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE" + }, + { + "Product_Display_Name": "Microsoft Power Automate Free", + "String_Id": "FLOW_FREE", + "GUID": "f30db892-07e9-47e9-837c-80727f46fd3d", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" + }, + { + "Product_Display_Name": "Microsoft Power Automate Free", + "String_Id": "FLOW_FREE", + "GUID": "f30db892-07e9-47e9-837c-80727f46fd3d", + "Service_Plan_Name": "FLOW_P2_VIRAL", + "Service_Plan_Id": "50e68c76-46c6-4674-81f9-75456511b170", + "Service_Plans_Included_Friendly_Names": "FLOW FREE" + }, + { + "Product_Display_Name": "Microsoft Power Automate Plan 2", + "String_Id": "FLOW_P2", + "GUID": "4755df59-3f73-41ab-a249-596ad72b5504", + "Service_Plan_Name": "DYN365_CDS_P2", + "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", + "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" + }, + { + "Product_Display_Name": "Microsoft Power Automate Plan 2", + "String_Id": "FLOW_P2", + "GUID": "4755df59-3f73-41ab-a249-596ad72b5504", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Power Automate Plan 2", + "String_Id": "FLOW_P2", + "GUID": "4755df59-3f73-41ab-a249-596ad72b5504", + "Service_Plan_Name": "FLOW_P2", + "Service_Plan_Id": "56be9436-e4b2-446c-bb7f-cc15d16cca4d", + "Service_Plans_Included_Friendly_Names": "Power Automate (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft Intune SMB", + "String_Id": "INTUNE_SMB", + "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958", + "Service_Plan_Name": "AAD_SMB", + "Service_Plan_Id": "de377cbc-0019-4ec2-b77c-3f223947e102", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID" + }, + { + "Product_Display_Name": "Microsoft Intune SMB", + "String_Id": "INTUNE_SMB", + "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" + }, + { + "Product_Display_Name": "Microsoft Intune SMB", + "String_Id": "INTUNE_SMB", + "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958", + "Service_Plan_Name": "INTUNE_SMBIZ", + "Service_Plan_Id": "8e9ff0ff-aa7a-4b20-83c1-2f636b600ac2", + "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" + }, + { + "Product_Display_Name": "Microsoft Intune SMB", + "String_Id": "INTUNE_SMB", + "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" + }, + { + "Product_Display_Name": "Microsoft Intune Suite", + "String_Id": "Microsoft_Intune_Suite", + "GUID": "a929cd4d-8672-47c9-8664-159c1f322ba8", + "Service_Plan_Name": "Intune_AdvancedEA", + "Service_Plan_Id": "2a4baa0e-5e99-4c38-b1f2-6864960f1bd1", + "Service_Plans_Included_Friendly_Names": "Intune Advanced endpoint analytics" + }, + { + "Product_Display_Name": "Microsoft Intune Suite", + "String_Id": "Microsoft_Intune_Suite", + "GUID": "a929cd4d-8672-47c9-8664-159c1f322ba8", + "Service_Plan_Name": "Intune-EPM", + "Service_Plan_Id": "bb73f429-78ef-4ff2-83c8-722b04c3e7d1", + "Service_Plans_Included_Friendly_Names": "Intune Endpoint Privilege Management" + }, + { + "Product_Display_Name": "Microsoft Intune Suite", + "String_Id": "Microsoft_Intune_Suite", + "GUID": "a929cd4d-8672-47c9-8664-159c1f322ba8", + "Service_Plan_Name": "INTUNE_P2", + "Service_Plan_Id": "d9923fe3-a2de-4d29-a5be-e3e83bb786be", + "Service_Plans_Included_Friendly_Names": "Intune Plan 2" + }, + { + "Product_Display_Name": "Microsoft Intune Suite", + "String_Id": "Microsoft_Intune_Suite", + "GUID": "a929cd4d-8672-47c9-8664-159c1f322ba8", + "Service_Plan_Name": "Intune-MAMTunnel", + "Service_Plan_Id": "a6e407da-7411-4397-8a2e-d9b52780849e", + "Service_Plans_Included_Friendly_Names": "Microsoft Tunnel for Mobile Application Management" + }, + { + "Product_Display_Name": "Microsoft Intune Suite", + "String_Id": "Microsoft_Intune_Suite", + "GUID": "a929cd4d-8672-47c9-8664-159c1f322ba8", + "Service_Plan_Name": "REMOTE_HELP", + "Service_Plan_Id": "a4c6cf29-1168-4076-ba5c-e8fe0e62b17e", + "Service_Plans_Included_Friendly_Names": "Remote help" + }, + { + "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)", + "String_Id": "POWERFLOW_P2", + "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b", + "Service_Plan_Name": "DYN365_CDS_P2", + "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", + "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" + }, + { + "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)", + "String_Id": "POWERFLOW_P2", + "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)", + "String_Id": "POWERFLOW_P2", + "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b", + "Service_Plan_Name": "POWERAPPS_P2", + "Service_Plan_Id": "00527d7f-d5bc-4c2a-8d1e-6c0de2410c81", + "Service_Plans_Included_Friendly_Names": "Power Apps (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)", + "String_Id": "POWERFLOW_P2", + "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b", + "Service_Plan_Name": "FLOW_P2", + "Service_Plan_Id": "56be9436-e4b2-446c-bb7f-cc15d16cca4d", + "Service_Plans_Included_Friendly_Names": "Power Automate (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft Relationship Sales solution", + "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", + "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", + "Service_Plan_Name": "Forms_Pro_Relationship_Sales", + "Service_Plan_Id": "507172c0-6001-4f4f-80e7-f350507af3e5", + "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Relationship Sales" + }, + { + "Product_Display_Name": "Microsoft Relationship Sales solution", + "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", + "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", + "Service_Plan_Name": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", + "Service_Plan_Id": "56e3d4ca-2e31-4c3f-8d57-89c1d363503b", + "Service_Plans_Included_Friendly_Names": "Microsoft Relationship Sales solution" + }, + { + "Product_Display_Name": "Microsoft Relationship Sales solution", + "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", + "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", + "Service_Plan_Name": "NBENTERPRISE", + "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", + "Service_Plans_Included_Friendly_Names": "Retired - Microsoft Social Engagement" + }, + { + "Product_Display_Name": "Microsoft Relationship Sales solution", + "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", + "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Relationship Sales solution", + "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", + "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", + "Service_Plan_Name": "Microsoft_Viva_Sales_PremiumTrial", + "Service_Plan_Id": "8ba1ff15-7bf6-4620-b65c-ecedb6942766", + "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium \u0026 Trial" + }, + { + "Product_Display_Name": "Microsoft Relationship Sales solution", + "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", + "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", + "Service_Plan_Name": "Microsoft_Viva_Sales_PowerAutomate", + "Service_Plan_Id": "a933a62f-c3fb-48e5-a0b7-ac92b94b4420", + "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium with Power Automate" + }, + { + "Product_Display_Name": "Microsoft Relationship Sales solution", + "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", + "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft Relationship Sales solution", + "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", + "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", + "Service_Plan_Name": "PROJECT_ESSENTIALS", + "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials" + }, + { + "Product_Display_Name": "Microsoft Relationship Sales solution", + "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", + "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft Relationship Sales solution", + "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", + "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", + "Service_Plan_Name": "POWERAPPS_DYN_APPS", + "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", + "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" + }, + { + "Product_Display_Name": "Microsoft Relationship Sales solution", + "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES", + "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", + "Service_Plan_Name": "FLOW_DYN_APPS", + "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" + }, + { + "Product_Display_Name": "Microsoft Stream", + "String_Id": "STREAM", + "GUID": "1f2f344a-700d-42c9-9427-5cea1d5d7ba6", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" + }, + { + "Product_Display_Name": "Microsoft Stream", + "String_Id": "STREAM", + "GUID": "1f2f344a-700d-42c9-9427-5cea1d5d7ba6", + "Service_Plan_Name": "MICROSOFTSTREAM", + "Service_Plan_Id": "acffdce6-c30f-4dc2-81c0-372e33c515ec", + "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM" + }, + { + "Product_Display_Name": "Microsoft Stream Plan 2", + "String_Id": "STREAM_P2", + "GUID": "ec156933-b85b-4c50-84ec-c9e5603709ef", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Stream Plan 2", + "String_Id": "STREAM_P2", + "GUID": "ec156933-b85b-4c50-84ec-c9e5603709ef", + "Service_Plan_Name": "STREAM_P2", + "Service_Plan_Id": "d3a458d0-f10d-48c2-9e44-86f3f684029e", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream Plan 2" + }, + { + "Product_Display_Name": "Microsoft Stream Storage Add-On (500 GB)", + "String_Id": "STREAM_STORAGE", + "GUID": "9bd7c846-9556-4453-a542-191d527209e8", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Stream Storage Add-On (500 GB)", + "String_Id": "STREAM_STORAGE", + "GUID": "9bd7c846-9556-4453-a542-191d527209e8", + "Service_Plan_Name": "STREAM_STORAGE", + "Service_Plan_Id": "83bced11-77ce-4071-95bd-240133796768", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream Storage Add-On" + }, + { + "Product_Display_Name": "Microsoft Teams Audio Conferencing with dial-out to USA/CAN", + "String_Id": "Microsoft_Teams_Audio_Conferencing_select_dial_out", + "GUID": "1c27243e-fb4d-42b1-ae8c-fe25c9616588", + "Service_Plan_Name": "MCOMEETBASIC", + "Service_Plan_Id": "9974d6cf-cd24-4ba2-921c-e2aa687da846", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams Audio Conferencing with dial-out to select geographies" + }, + { + "Product_Display_Name": "Microsoft Teams (Free)", + "String_Id": "TEAMS_FREE", + "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" + }, + { + "Product_Display_Name": "Microsoft Teams (Free)", + "String_Id": "TEAMS_FREE", + "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", + "Service_Plan_Name": "MCOFREE", + "Service_Plan_Id": "617d9209-3b90-4879-96e6-838c42b2701d", + "Service_Plans_Included_Friendly_Names": "MCO FREE FOR MICROSOFT TEAMS (FREE)" + }, + { + "Product_Display_Name": "Microsoft Teams (Free)", + "String_Id": "TEAMS_FREE", + "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", + "Service_Plan_Name": "TEAMS_FREE", + "Service_Plan_Id": "4fa4026d-ce74-4962-a151-8e96d57ea8e4", + "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS (FREE)" + }, + { + "Product_Display_Name": "Microsoft Teams (Free)", + "String_Id": "TEAMS_FREE", + "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", + "Service_Plan_Name": "SHAREPOINTDESKLESS", + "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", + "Service_Plans_Included_Friendly_Names": "SHAREPOINT KIOSK" + }, + { + "Product_Display_Name": "Microsoft Teams (Free)", + "String_Id": "TEAMS_FREE", + "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", + "Service_Plan_Name": "TEAMS_FREE_SERVICE", + "Service_Plan_Id": "bd6f2ac2-991a-49f9-b23c-18c96a02c228", + "Service_Plans_Included_Friendly_Names": "TEAMS FREE SERVICE" + }, + { + "Product_Display_Name": "Microsoft Teams (Free)", + "String_Id": "TEAMS_FREE", + "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", + "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1", + "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3", + "Service_Plans_Included_Friendly_Names": "WHITEBOARD (FIRSTLINE)" + }, + { + "Product_Display_Name": "Microsoft Teams Essentials", + "String_Id": "Teams_Ess", + "GUID": "fde42873-30b6-436b-b361-21af5a6b84ae", + "Service_Plan_Name": "TeamsEss", + "Service_Plan_Id": "f4f2f6de-6830-442b-a433-e92249faebe2", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams Essentials" + }, + { + "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", + "String_Id": "TEAMS_ESSENTIALS_AAD", + "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", + "Service_Plan_Name": "EXCHANGE_S_DESKLESS", + "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", + "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk" + }, + { + "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", + "String_Id": "TEAMS_ESSENTIALS_AAD", + "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", + "Service_Plan_Name": "FORMS_PLAN_E1", + "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" + }, + { + "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", + "String_Id": "TEAMS_ESSENTIALS_AAD", + "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", + "String_Id": "TEAMS_ESSENTIALS_AAD", + "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", + "String_Id": "TEAMS_ESSENTIALS_AAD", + "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", + "String_Id": "TEAMS_ESSENTIALS_AAD", + "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", + "String_Id": "TEAMS_ESSENTIALS_AAD", + "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", + "Service_Plan_Name": "ONEDRIVE_BASIC_P2", + "Service_Plan_Id": "4495894f-534f-41ca-9d3b-0ebf1220a423", + "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Basic 2)" + }, + { + "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)", + "String_Id": "TEAMS_ESSENTIALS_AAD", + "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc", + "Service_Plan_Name": "MCOIMP", + "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft Teams Exploratory", + "String_Id": "TEAMS_EXPLORATORY", + "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", + "Service_Plan_Name": "CDS_O365_P1", + "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25", + "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR TEAMS_P1" + }, + { + "Product_Display_Name": "Microsoft Teams Exploratory", + "String_Id": "TEAMS_EXPLORATORY", + "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", + "Service_Plan_Name": "EXCHANGE_S_STANDARD", + "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", + "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" + }, + { + "Product_Display_Name": "Microsoft Teams Exploratory", + "String_Id": "TEAMS_EXPLORATORY", + "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "INSIGHTS BY MYANALYTICS" + }, + { + "Product_Display_Name": "Microsoft Teams Exploratory", + "String_Id": "TEAMS_EXPLORATORY", + "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", + "Service_Plan_Name": "FORMS_PLAN_E1", + "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", + "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" + }, + { + "Product_Display_Name": "Microsoft Teams Exploratory", + "String_Id": "TEAMS_EXPLORATORY", + "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNER" + }, + { + "Product_Display_Name": "Microsoft Teams Exploratory", + "String_Id": "TEAMS_EXPLORATORY", + "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "MICROSOFT SEARCH" + }, + { + "Product_Display_Name": "Microsoft Teams Exploratory", + "String_Id": "TEAMS_EXPLORATORY", + "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", + "Service_Plan_Name": "DESKLESS", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" + }, + { + "Product_Display_Name": "Microsoft Teams Exploratory", + "String_Id": "TEAMS_EXPLORATORY", + "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", + "Service_Plan_Name": "STREAM_O365_E1", + "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", + "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E1 SKU" + }, + { + "Product_Display_Name": "Microsoft Teams Exploratory", + "String_Id": "TEAMS_EXPLORATORY", + "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS" + }, + { + "Product_Display_Name": "Microsoft Teams Exploratory", + "String_Id": "TEAMS_EXPLORATORY", + "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", + "Service_Plan_Name": "MCO_TEAMS_IW", + "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b", + "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS" + }, + { + "Product_Display_Name": "Microsoft Teams Exploratory", + "String_Id": "TEAMS_EXPLORATORY", + "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "MOBILE DEVICE MANAGEMENT FOR OFFICE 365" + }, + { + "Product_Display_Name": "Microsoft Teams Exploratory", + "String_Id": "TEAMS_EXPLORATORY", + "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "OFFICE FOR THE WEB" + }, + { + "Product_Display_Name": "Microsoft Teams Exploratory", + "String_Id": "TEAMS_EXPLORATORY", + "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", + "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", + "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", + "Service_Plans_Included_Friendly_Names": "OFFICE MOBILE APPS FOR OFFICE 365" + }, + { + "Product_Display_Name": "Microsoft Teams Exploratory", + "String_Id": "TEAMS_EXPLORATORY", + "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", + "Service_Plan_Name": "POWERAPPS_O365_P1", + "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", + "Service_Plans_Included_Friendly_Names": "POWER APPS FOR OFFICE 365" + }, + { + "Product_Display_Name": "Microsoft Teams Exploratory", + "String_Id": "TEAMS_EXPLORATORY", + "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", + "Service_Plan_Name": "FLOW_O365_P1", + "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", + "Service_Plans_Included_Friendly_Names": "POWER AUTOMATE FOR OFFICE 365" + }, + { + "Product_Display_Name": "Microsoft Teams Exploratory", + "String_Id": "TEAMS_EXPLORATORY", + "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1", + "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813", + "Service_Plans_Included_Friendly_Names": "POWER VIRTUAL AGENTS FOR OFFICE 365 P1" + }, + { + "Product_Display_Name": "Microsoft Teams Exploratory", + "String_Id": "TEAMS_EXPLORATORY", + "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", + "Service_Plan_Name": "SHAREPOINTSTANDARD", + "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", + "Service_Plans_Included_Friendly_Names": "SHAREPOINT STANDARD" + }, + { + "Product_Display_Name": "Microsoft Teams Exploratory", + "String_Id": "TEAMS_EXPLORATORY", + "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "SWAY" + }, + { + "Product_Display_Name": "Microsoft Teams Exploratory", + "String_Id": "TEAMS_EXPLORATORY", + "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", + "Service_Plan_Name": "BPOS_S_TODO_1", + "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", + "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)" + }, + { + "Product_Display_Name": "Microsoft Teams Exploratory", + "String_Id": "TEAMS_EXPLORATORY", + "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", + "Service_Plan_Name": "WHITEBOARD_PLAN1", + "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", + "Service_Plans_Included_Friendly_Names": "WHITEBOARD (PLAN 1)" + }, + { + "Product_Display_Name": "Microsoft Teams Exploratory", + "String_Id": "TEAMS_EXPLORATORY", + "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "YAMMER ENTERPRIS" + }, + { + "Product_Display_Name": "Microsoft Teams Phone Standard", + "String_Id": "MCOEV", + "GUID": "e43b5b99-8dfb-405f-9987-dc307f34bcbd", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" + }, + { + "Product_Display_Name": "Microsoft Teams Phone Standard for DOD", + "String_Id": "MCOEV_DOD", + "GUID": "d01d9287-694b-44f3-bcc5-ada78c8d953e", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" + }, + { + "Product_Display_Name": "Microsoft Teams Phone Standard for Faculty", + "String_Id": "MCOEV_FACULTY", + "GUID": "d979703c-028d-4de5-acbf-7955566b69b9", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTE" + }, + { + "Product_Display_Name": "Microsoft Teams Phone Standard for GCC", + "String_Id": "MCOEV_GOV", + "GUID": "a460366a-ade7-4791-b581-9fbff1bdaa85", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT" + }, + { + "Product_Display_Name": "Microsoft Teams Phone Standard for GCC", + "String_Id": "MCOEV_GOV", + "GUID": "a460366a-ade7-4791-b581-9fbff1bdaa85", + "Service_Plan_Name": "MCOEV_GOV", + "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", + "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM FOR GOVERNMENT" + }, + { + "Product_Display_Name": "Microsoft Teams Phone Standard for GCCHIGH", + "String_Id": "MCOEV_GCCHIGH", + "GUID": "7035277a-5e49-4abc-a24f-0ec49c501bb5", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" + }, + { + "Product_Display_Name": "Microsoft Teams Phone Standard for Small and Medium Business", + "String_Id": "MCOEVSMB_1", + "GUID": "aa6791d3-bb09-4bc2-afed-c30c3fe26032", + "Service_Plan_Name": "MCOEVSMB", + "Service_Plan_Id": "ed777b71-af04-42ca-9798-84344c66f7c6", + "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS CLOUD PBX FOR SMALL AND MEDIUM BUSINESS" + }, + { + "Product_Display_Name": "Microsoft Teams Phone Standard for Students", + "String_Id": "MCOEV_STUDENT", + "GUID": "1f338bbc-767e-4a1e-a2d4-b73207cc5b93", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" + }, + { + "Product_Display_Name": "Microsoft Teams Phone Standard for TELSTRA", + "String_Id": "MCOEV_TELSTRA", + "GUID": "ffaf2d68-1c95-4eb3-9ddd-59b81fba0f61", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" + }, + { + "Product_Display_Name": "Microsoft Teams Phone Standard_USGOV_DOD", + "String_Id": "MCOEV_USGOV_DOD", + "GUID": "b0e7de67-e503-4934-b729-53d595ba5cd1", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" + }, + { + "Product_Display_Name": "Microsoft Teams Phone Standard_USGOV_GCCHIGH", + "String_Id": "MCOEV_USGOV_GCCHIGH", + "GUID": "985fcb26-7b94-475b-b512-89356697be71", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" + }, + { + "Product_Display_Name": "Microsoft Teams Phone Resource Account", + "String_Id": "PHONESYSTEM_VIRTUALUSER", + "GUID": "440eaaa8-b3e0-484b-a8be-62870b9ba70a", + "Service_Plan_Name": "MCOEV_VIRTUALUSER", + "Service_Plan_Id": "f47330e9-c134-43b3-9993-e7f004506889", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone Standard Resource Account" + }, + { + "Product_Display_Name": "Microsoft Teams Phone Resource Account for GCC", + "String_Id": "PHONESYSTEM_VIRTUALUSER_GOV", + "GUID": "2cf22bcb-0c9e-4bc6-8daf-7e7654c0f285", + "Service_Plan_Name": "MCOEV_VIRTUALUSER_GOV", + "Service_Plan_Id": "0628a73f-3b4a-4989-bd7b-0f8823144313", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone Standard Resource Account for Government" + }, + { + "Product_Display_Name": "Microsoft Teams Phone Resource Account_USGOV_GCCHIGH", + "String_Id": "PHONESYSTEM_VIRTUALUSER_USGOV_GCCHIGH ", + "GUID": "e3f0522e-ebb7-4561-9f90-b44516d65b77", + "Service_Plan_Name": "MCOEV_VIRTUALUSER", + "Service_Plan_Id": "f47330e9-c134-43b3-9993-e7f004506889", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone Standard Resource Account" + }, + { + "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing", + "String_Id": "Microsoft_Teams_Premium", + "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a", + "Service_Plan_Name": "MICROSOFT_ECDN", + "Service_Plan_Id": "85704d55-2e73-47ee-93b4-4b8ea14db92b", + "Service_Plans_Included_Friendly_Names": "Microsoft eCDN" + }, + { + "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing", + "String_Id": "Microsoft_Teams_Premium", + "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a", + "Service_Plan_Name": "TEAMSPRO_MGMT", + "Service_Plan_Id": "0504111f-feb8-4a3c-992a-70280f9a2869", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Intelligent" + }, + { + "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing", + "String_Id": "Microsoft_Teams_Premium", + "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a", + "Service_Plan_Name": "TEAMSPRO_CUST", + "Service_Plan_Id": "cc8c0802-a325-43df-8cba-995d0c6cb373", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Personalized" + }, + { + "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing", + "String_Id": "Microsoft_Teams_Premium", + "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a", + "Service_Plan_Name": "TEAMSPRO_PROTECTION", + "Service_Plan_Id": "f8b44f54-18bb-46a3-9658-44ab58712968", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Secure" + }, + { + "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing", + "String_Id": "Microsoft_Teams_Premium", + "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a", + "Service_Plan_Name": "TEAMSPRO_VIRTUALAPPT", + "Service_Plan_Id": "9104f592-f2a7-4f77-904c-ca5a5715883f", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Virtual Appointment" + }, + { + "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing", + "String_Id": "Microsoft_Teams_Premium", + "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a", + "Service_Plan_Name": "MCO_VIRTUAL_APPT", + "Service_Plan_Id": "711413d0-b36e-4cd4-93db-0a50a4ab7ea3", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Virtual Appointments" + }, + { + "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing", + "String_Id": "Microsoft_Teams_Premium", + "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a", + "Service_Plan_Name": "TEAMSPRO_WEBINAR", + "Service_Plan_Id": "78b58230-ec7e-4309-913c-93a45cc4735b", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Webinar" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Basic", + "String_Id": "Microsoft_Teams_Rooms_Basic", + "GUID": "6af4b3d6-14bb-4a2a-960c-6c902aad34f3", + "Service_Plan_Name": "MCOMEETADV", + "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Basic", + "String_Id": "Microsoft_Teams_Rooms_Basic", + "GUID": "6af4b3d6-14bb-4a2a-960c-6c902aad34f3", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Basic", + "String_Id": "Microsoft_Teams_Rooms_Basic", + "GUID": "6af4b3d6-14bb-4a2a-960c-6c902aad34f3", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Basic for EDU", + "String_Id": "Microsoft_Teams_Rooms_Basic_FAC", + "GUID": "a4e376bd-c61e-4618-9901-3fc0cb1b88bb", + "Service_Plan_Name": "MCOMEETADV", + "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Basic for EDU", + "String_Id": "Microsoft_Teams_Rooms_Basic_FAC", + "GUID": "a4e376bd-c61e-4618-9901-3fc0cb1b88bb", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Basic for EDU", + "String_Id": "Microsoft_Teams_Rooms_Basic_FAC", + "GUID": "a4e376bd-c61e-4618-9901-3fc0cb1b88bb", + "Service_Plan_Name": "Teams_Room_Basic", + "Service_Plan_Id": "8081ca9c-188c-4b49-a8e5-c23b5e9463a8", + "Service_Plans_Included_Friendly_Names": "Teams Room Basic" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Basic for EDU", + "String_Id": "Microsoft_Teams_Rooms_Basic_FAC", + "GUID": "a4e376bd-c61e-4618-9901-3fc0cb1b88bb", + "Service_Plan_Name": "Teams_Room_Pro", + "Service_Plan_Id": "ec17f317-f4bc-451e-b2da-0167e5c260f9", + "Service_Plans_Included_Friendly_Names": "Teams Room Pro" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Basic for EDU", + "String_Id": "Microsoft_Teams_Rooms_Basic_FAC", + "GUID": "a4e376bd-c61e-4618-9901-3fc0cb1b88bb", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Basic without Audio Conferencing", + "String_Id": "Microsoft_Teams_Rooms_Basic_without_Audio_Conferencing", + "GUID": "50509a35-f0bd-4c5e-89ac-22f0e16a00f8", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Basic without Audio Conferencing", + "String_Id": "Microsoft_Teams_Rooms_Basic_without_Audio_Conferencing", + "GUID": "50509a35-f0bd-4c5e-89ac-22f0e16a00f8", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro", + "String_Id": "Microsoft_Teams_Rooms_Pro", + "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro", + "String_Id": "Microsoft_Teams_Rooms_Pro", + "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6", + "Service_Plan_Name": "MCOMEETADV", + "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro", + "String_Id": "Microsoft_Teams_Rooms_Pro", + "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro", + "String_Id": "Microsoft_Teams_Rooms_Pro", + "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro", + "String_Id": "Microsoft_Teams_Rooms_Pro", + "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro", + "String_Id": "Microsoft_Teams_Rooms_Pro", + "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro", + "String_Id": "Microsoft_Teams_Rooms_Pro", + "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", + "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", + "GUID": "c25e2b36-e161-4946-bef2-69239729f690", + "Service_Plan_Name": "AAD_BASIC_EDU", + "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", + "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", + "GUID": "c25e2b36-e161-4946-bef2-69239729f690", + "Service_Plan_Name": "MCOMEETADV", + "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", + "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", + "GUID": "c25e2b36-e161-4946-bef2-69239729f690", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", + "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", + "GUID": "c25e2b36-e161-4946-bef2-69239729f690", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", + "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", + "GUID": "c25e2b36-e161-4946-bef2-69239729f690", + "Service_Plan_Name": "MTRProManagement", + "Service_Plan_Id": "ecc74eae-eeb7-4ad5-9c88-e8b2bfca75b8", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams Rooms Pro Management" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", + "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", + "GUID": "c25e2b36-e161-4946-bef2-69239729f690", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", + "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", + "GUID": "c25e2b36-e161-4946-bef2-69239729f690", + "Service_Plan_Name": "Teams_Room_Basic", + "Service_Plan_Id": "8081ca9c-188c-4b49-a8e5-c23b5e9463a8", + "Service_Plans_Included_Friendly_Names": "Teams Rooms Test 1" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", + "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", + "GUID": "c25e2b36-e161-4946-bef2-69239729f690", + "Service_Plan_Name": "Teams_Room_Pro", + "Service_Plan_Id": "ec17f317-f4bc-451e-b2da-0167e5c260f9", + "Service_Plans_Included_Friendly_Names": "Teams Rooms Test 2" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", + "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", + "GUID": "c25e2b36-e161-4946-bef2-69239729f690", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", + "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", + "GUID": "c25e2b36-e161-4946-bef2-69239729f690", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", + "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", + "GUID": "c25e2b36-e161-4946-bef2-69239729f690", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro for EDU", + "String_Id": "Microsoft_Teams_Rooms_Pro_FAC", + "GUID": "c25e2b36-e161-4946-bef2-69239729f690", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro for GCC", + "String_Id": "Microsoft_Teams_Rooms_Pro_GCC", + "GUID": "31ecb341-2a17-483e-9140-c473006d1e1a", + "Service_Plan_Name": "MCOMEETADV_GOV", + "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing for Government" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro for GCC", + "String_Id": "Microsoft_Teams_Rooms_Pro_GCC", + "GUID": "31ecb341-2a17-483e-9140-c473006d1e1a", + "Service_Plan_Name": "MCOEV_GOV", + "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro for GCC", + "String_Id": "Microsoft_Teams_Rooms_Pro_GCC", + "GUID": "31ecb341-2a17-483e-9140-c473006d1e1a", + "Service_Plan_Name": "TEAMS_GOV", + "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro for GCC", + "String_Id": "Microsoft_Teams_Rooms_Pro_GCC", + "GUID": "31ecb341-2a17-483e-9140-c473006d1e1a", + "Service_Plan_Name": "MCOSTANDARD_GOV", + "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro for GCC", + "String_Id": "Microsoft_Teams_Rooms_Pro_GCC", + "GUID": "31ecb341-2a17-483e-9140-c473006d1e1a", + "Service_Plan_Name": "Teams_Room_Basic", + "Service_Plan_Id": "8081ca9c-188c-4b49-a8e5-c23b5e9463a8", + "Service_Plans_Included_Friendly_Names": "Teams Rooms Test 1" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro for GCC", + "String_Id": "Microsoft_Teams_Rooms_Pro_GCC", + "GUID": "31ecb341-2a17-483e-9140-c473006d1e1a", + "Service_Plan_Name": "Teams_Room_Pro", + "Service_Plan_Id": "ec17f317-f4bc-451e-b2da-0167e5c260f9", + "Service_Plans_Included_Friendly_Names": "Teams Rooms Test 2" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro for GCC", + "String_Id": "Microsoft_Teams_Rooms_Pro_GCC", + "GUID": "31ecb341-2a17-483e-9140-c473006d1e1a", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro for GCC", + "String_Id": "Microsoft_Teams_Rooms_Pro_GCC", + "GUID": "31ecb341-2a17-483e-9140-c473006d1e1a", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro for GCC", + "String_Id": "Microsoft_Teams_Rooms_Pro_GCC", + "GUID": "31ecb341-2a17-483e-9140-c473006d1e1a", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro for GCC", + "String_Id": "Microsoft_Teams_Rooms_Pro_GCC", + "GUID": "31ecb341-2a17-483e-9140-c473006d1e1a", + "Service_Plan_Name": "INTUNE_A_GOV", + "Service_Plan_Id": "d216f254-796f-4dab-bbfa-710686e646b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune G" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing", + "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing", + "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing", + "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing", + "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing", + "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing", + "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing", + "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing", + "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing", + "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing", + "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing", + "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing", + "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft Teams Shared Devices", + "String_Id": "MCOCAP", + "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" + }, + { + "Product_Display_Name": "Microsoft Teams Shared Devices", + "String_Id": "MCOCAP", + "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS" + }, + { + "Product_Display_Name": "Microsoft Teams Shared Devices", + "String_Id": "MCOCAP", + "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" + }, + { + "Product_Display_Name": "Microsoft Teams Shared Devices", + "String_Id": "MCOCAP", + "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft Teams Shared Devices", + "String_Id": "MCOCAP", + "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft Teams Shared Devices", + "String_Id": "MCOCAP", + "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft Teams Shared Devices for GCC", + "String_Id": "MCOCAP_GOV", + "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", + "Service_Plan_Name": "MCOEV_GOV", + "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government" + }, + { + "Product_Display_Name": "Microsoft Teams Shared Devices for GCC", + "String_Id": "MCOCAP_GOV", + "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", + "Service_Plan_Name": "TEAMS_GOV", + "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" + }, + { + "Product_Display_Name": "Microsoft Teams Shared Devices for GCC", + "String_Id": "MCOCAP_GOV", + "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", + "Service_Plan_Name": "MCOSTANDARD_GOV", + "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Microsoft Teams Shared Devices for GCC", + "String_Id": "MCOCAP_GOV", + "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft Teams Shared Devices for GCC", + "String_Id": "MCOCAP_GOV", + "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft Teams Shared Devices for GCC", + "String_Id": "MCOCAP_GOV", + "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", + "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard", + "String_Id": "MEETING_ROOM", + "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Plan 1" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard", + "String_Id": "MEETING_ROOM", + "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", + "Service_Plan_Name": "MCOMEETADV", + "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard", + "String_Id": "MEETING_ROOM", + "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard", + "String_Id": "MEETING_ROOM", + "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard", + "String_Id": "MEETING_ROOM", + "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard", + "String_Id": "MEETING_ROOM", + "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", + "Service_Plan_Name": "Teams_Room_Standard", + "Service_Plan_Id": "92c6b761-01de-457a-9dd9-793a975238f7", + "Service_Plans_Included_Friendly_Names": "Teams Room Standard" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard", + "String_Id": "MEETING_ROOM", + "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard", + "String_Id": "MEETING_ROOM", + "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard without Audio Conferencing", + "String_Id": "MEETING_ROOM_NOAUDIOCONF", + "GUID": "61bec411-e46a-4dab-8f46-8b58ec845ffe", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard without Audio Conferencing", + "String_Id": "MEETING_ROOM_NOAUDIOCONF", + "GUID": "61bec411-e46a-4dab-8f46-8b58ec845ffe", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard without Audio Conferencing", + "String_Id": "MEETING_ROOM_NOAUDIOCONF", + "GUID": "61bec411-e46a-4dab-8f46-8b58ec845ffe", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard without Audio Conferencing", + "String_Id": "MEETING_ROOM_NOAUDIOCONF", + "GUID": "61bec411-e46a-4dab-8f46-8b58ec845ffe", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard without Audio Conferencing", + "String_Id": "MEETING_ROOM_NOAUDIOCONF", + "GUID": "61bec411-e46a-4dab-8f46-8b58ec845ffe", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC", + "String_Id": "MEETING_ROOM_GOV", + "GUID": "9571e9ac-2741-4b63-95fd-a79696f0d0ac", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium Plan 1" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC", + "String_Id": "MEETING_ROOM_GOV", + "GUID": "9571e9ac-2741-4b63-95fd-a79696f0d0ac", + "Service_Plan_Name": "MCOMEETADV_GOV", + "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing for Government" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC", + "String_Id": "MEETING_ROOM_GOV", + "GUID": "9571e9ac-2741-4b63-95fd-a79696f0d0ac", + "Service_Plan_Name": "MCOEV_GOV", + "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC", + "String_Id": "MEETING_ROOM_GOV", + "GUID": "9571e9ac-2741-4b63-95fd-a79696f0d0ac", + "Service_Plan_Name": "TEAMS_GOV", + "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC", + "String_Id": "MEETING_ROOM_GOV", + "GUID": "9571e9ac-2741-4b63-95fd-a79696f0d0ac", + "Service_Plan_Name": "MCOSTANDARD_GOV", + "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC", + "String_Id": "MEETING_ROOM_GOV", + "GUID": "9571e9ac-2741-4b63-95fd-a79696f0d0ac", + "Service_Plan_Name": "Teams_Room_Standard", + "Service_Plan_Id": "92c6b761-01de-457a-9dd9-793a975238f7", + "Service_Plans_Included_Friendly_Names": "Teams Room Standard" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC", + "String_Id": "MEETING_ROOM_GOV", + "GUID": "9571e9ac-2741-4b63-95fd-a79696f0d0ac", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC", + "String_Id": "MEETING_ROOM_GOV", + "GUID": "9571e9ac-2741-4b63-95fd-a79696f0d0ac", + "Service_Plan_Name": "INTUNE_A_GOV", + "Service_Plan_Id": "d216f254-796f-4dab-bbfa-710686e646b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune G" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC without Audio Conferencing", + "String_Id": "MEETING_ROOM_GOV_NOAUDIOCONF", + "GUID": "b4348f75-a776-4061-ac6c-36b9016b01d1", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium Plan 1" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC without Audio Conferencing", + "String_Id": "MEETING_ROOM_GOV_NOAUDIOCONF", + "GUID": "b4348f75-a776-4061-ac6c-36b9016b01d1", + "Service_Plan_Name": "MCOEV_GOV", + "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC without Audio Conferencing", + "String_Id": "MEETING_ROOM_GOV_NOAUDIOCONF", + "GUID": "b4348f75-a776-4061-ac6c-36b9016b01d1", + "Service_Plan_Name": "TEAMS_GOV", + "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC without Audio Conferencing", + "String_Id": "MEETING_ROOM_GOV_NOAUDIOCONF", + "GUID": "b4348f75-a776-4061-ac6c-36b9016b01d1", + "Service_Plan_Name": "MCOSTANDARD_GOV", + "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC without Audio Conferencing", + "String_Id": "MEETING_ROOM_GOV_NOAUDIOCONF", + "GUID": "b4348f75-a776-4061-ac6c-36b9016b01d1", + "Service_Plan_Name": "Teams_Room_Standard", + "Service_Plan_Id": "92c6b761-01de-457a-9dd9-793a975238f7", + "Service_Plans_Included_Friendly_Names": "Teams Room Standard" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC without Audio Conferencing", + "String_Id": "MEETING_ROOM_GOV_NOAUDIOCONF", + "GUID": "b4348f75-a776-4061-ac6c-36b9016b01d1", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Microsoft Teams Rooms Standard for GCC without Audio Conferencing", + "String_Id": "MEETING_ROOM_GOV_NOAUDIOCONF", + "GUID": "b4348f75-a776-4061-ac6c-36b9016b01d1", + "Service_Plan_Name": "INTUNE_A_GOV", + "Service_Plan_Id": "d216f254-796f-4dab-bbfa-710686e646b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune G" + }, + { + "Product_Display_Name": "Microsoft Teams Trial", + "String_Id": "MS_TEAMS_IW", + "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Teams Trial", + "String_Id": "MS_TEAMS_IW", + "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft Teams Trial", + "String_Id": "MS_TEAMS_IW", + "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", + "Service_Plan_Name": "MCO_TEAMS_IW", + "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft Teams Trial", + "String_Id": "MS_TEAMS_IW", + "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft Teams Trial", + "String_Id": "MS_TEAMS_IW", + "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Microsoft Teams Trial", + "String_Id": "MS_TEAMS_IW", + "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", + "Service_Plan_Name": "POWERAPPS_O365_P1", + "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Microsoft Teams Trial", + "String_Id": "MS_TEAMS_IW", + "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", + "Service_Plan_Name": "FLOW_O365_P1", + "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft Teams Trial", + "String_Id": "MS_TEAMS_IW", + "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", + "Service_Plan_Name": "SHAREPOINTDESKLESS", + "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", + "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" + }, + { + "Product_Display_Name": "Microsoft Teams Trial", + "String_Id": "MS_TEAMS_IW", + "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft Teams Trial", + "String_Id": "MS_TEAMS_IW", + "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Microsoft Threat Experts - Experts on Demand", + "String_Id": "EXPERTS_ON_DEMAND", + "GUID": "9fa2f157-c8e4-4351-a3f2-ffa506da1406", + "Service_Plan_Name": "EXPERTS_ON_DEMAND", + "Service_Plan_Id": "b83a66d4-f05f-414d-ac0f-ea1c5239c42b", + "Service_Plans_Included_Friendly_Names": "Microsoft Threat Experts - Experts on Demand" + }, + { + "Product_Display_Name": "Microsoft Viva Goals", + "String_Id": "Microsoft_Viva_Goals", + "GUID": "ba929637-f158-4dee-927c-eb7cdefcd955", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Viva Goals", + "String_Id": "Microsoft_Viva_Goals", + "GUID": "ba929637-f158-4dee-927c-eb7cdefcd955", + "Service_Plan_Name": "Viva_Goals_Premium", + "Service_Plan_Id": "b44c6eaf-5c9f-478c-8f16-8cea26353bfb", + "Service_Plans_Included_Friendly_Names": "Viva Goals" + }, + { + "Product_Display_Name": "Microsoft Viva Glint", + "String_Id": "Viva_Glint_Standalone", + "GUID": "3dc7332d-f0fa-40a3-81d3-dd6b84469b78", + "Service_Plan_Name": "Viva_Glint", + "Service_Plan_Id": "6b270342-093e-4015-8c5c-224561532fbf", + "Service_Plans_Included_Friendly_Names": "Viva Glint" + }, + { + "Product_Display_Name": "Microsoft Viva Suite", + "String_Id": "VIVA", + "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX_TOPICEXP", + "Service_Plan_Id": "b74d57b2-58e9-484a-9731-aeccbba954f0", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index (Microsoft Viva Topics)" + }, + { + "Product_Display_Name": "Microsoft Viva Suite", + "String_Id": "VIVA", + "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", + "Service_Plan_Name": "WORKPLACE_ANALYTICS_INSIGHTS_USER", + "Service_Plan_Id": "b622badb-1b45-48d5-920f-4b27a2c0996c", + "Service_Plans_Included_Friendly_Names": "Microsoft Viva Insights" + }, + { + "Product_Display_Name": "Microsoft Viva Suite", + "String_Id": "VIVA", + "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", + "Service_Plan_Name": "WORKPLACE_ANALYTICS_INSIGHTS_BACKEND", + "Service_Plan_Id": "ff7b261f-d98b-415b-827c-42a3fdf015af", + "Service_Plans_Included_Friendly_Names": "Microsoft Viva Insights Backend" + }, + { + "Product_Display_Name": "Microsoft Viva Suite", + "String_Id": "VIVA", + "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", + "Service_Plan_Name": "CORTEX", + "Service_Plan_Id": "c815c93d-0759-4bb8-b857-bc921a71be83", + "Service_Plans_Included_Friendly_Names": "Microsoft Viva Topics" + }, + { + "Product_Display_Name": "Microsoft Viva Suite", + "String_Id": "VIVA", + "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", + "Service_Plan_Name": "VIVAENGAGE_COMMUNITIES_AND_COMMUNICATIONS", + "Service_Plan_Id": "43304c6a-1d4e-4e0b-9b06-5b2a2ff58a90", + "Service_Plans_Included_Friendly_Names": "Viva Engage Communities and Communications" + }, + { + "Product_Display_Name": "Microsoft Viva Suite", + "String_Id": "VIVA", + "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", + "Service_Plan_Name": "VIVAENGAGE_KNOWLEDGE", + "Service_Plan_Id": "c244cc9e-622f-4576-92ea-82e233e44e36", + "Service_Plans_Included_Friendly_Names": "Viva Engage Knowledge" + }, + { + "Product_Display_Name": "Microsoft Viva Suite", + "String_Id": "VIVA", + "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", + "Service_Plan_Name": "Viva_Goals_Premium", + "Service_Plan_Id": "b44c6eaf-5c9f-478c-8f16-8cea26353bfb", + "Service_Plans_Included_Friendly_Names": "Viva Goals" + }, + { + "Product_Display_Name": "Microsoft Viva Suite", + "String_Id": "VIVA", + "GUID": "61902246-d7cb-453e-85cd-53ee28eec138", + "Service_Plan_Name": "VIVA_LEARNING_PREMIUM", + "Service_Plan_Id": "7162bd38-edae-4022-83a7-c5837f951759", + "Service_Plans_Included_Friendly_Names": "Viva Learning" + }, + { + "Product_Display_Name": "Minecraft Education Student", + "String_Id": "MEE_STUDENT", + "GUID": "533b8f26-f74b-4e9c-9c59-50fc4b393b63", + "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", + "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", + "Service_Plans_Included_Friendly_Names": "Minecraft Education" + }, + { + "Product_Display_Name": "Minecraft Education Student", + "String_Id": "MEE_STUDENT", + "GUID": "533b8f26-f74b-4e9c-9c59-50fc4b393b63", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Minecraft Education Faculty", + "String_Id": "MEE_FACULTY", + "GUID": "984df360-9a74-4647-8cf8-696749f6247a", + "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", + "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", + "Service_Plans_Included_Friendly_Names": "Minecraft Education" + }, + { + "Product_Display_Name": "Minecraft Education Faculty", + "String_Id": "MEE_FACULTY", + "GUID": "984df360-9a74-4647-8cf8-696749f6247a", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Multi-Geo Capabilities in Office 365", + "String_Id": "OFFICE365_MULTIGEO", + "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607", + "Service_Plan_Name": "EXCHANGEONLINE_MULTIGEO", + "Service_Plan_Id": "897d51f1-2cfa-4848-9b30-469149f5e68e", + "Service_Plans_Included_Friendly_Names": "Exchange Online Multi-Geo" + }, + { + "Product_Display_Name": "Multi-Geo Capabilities in Office 365", + "String_Id": "OFFICE365_MULTIGEO", + "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607", + "Service_Plan_Name": "SHAREPOINTONLINE_MULTIGEO", + "Service_Plan_Id": "735c1d98-dd3f-4818-b4ed-c8052e18e62d", + "Service_Plans_Included_Friendly_Names": "SharePoint Multi-Geo" + }, + { + "Product_Display_Name": "Multi-Geo Capabilities in Office 365", + "String_Id": "OFFICE365_MULTIGEO", + "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607", + "Service_Plan_Name": "TEAMSMULTIGEO", + "Service_Plan_Id": "41eda15d-6b52-453b-906f-bc4a5b25a26b", + "Service_Plans_Included_Friendly_Names": "Teams Multi-Geo" + }, + { + "Product_Display_Name": "Nonprofit Portal", + "String_Id": "NONPROFIT_PORTAL", + "GUID": "aa2695c9-8d59-4800-9dc8-12e01f1735af", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Nonprofit Portal", + "String_Id": "NONPROFIT_PORTAL", + "GUID": "aa2695c9-8d59-4800-9dc8-12e01f1735af", + "Service_Plan_Name": "NONPROFIT_PORTAL", + "Service_Plan_Id": "7dbc2d88-20e2-4eb6-b065-4510b38d6eb2", + "Service_Plans_Included_Friendly_Names": "Nonprofit Portal" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "AAD_BASIC_EDU", + "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "DYN365_CDS_O365_P1", + "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4", + "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P1" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "EducationAnalyticsP1", + "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", + "Service_Plans_Included_Friendly_Names": "Education Analytics" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "EXCHANGE_S_STANDARD", + "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", + "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "KAIZALA_O365_P2", + "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 2" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", + "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", + "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "POWERAPPS_O365_P2", + "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "FLOW_O365_P2", + "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "PROJECT_O365_P1", + "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "SCHOOL_DATA_SYNC_P1", + "Service_Plan_Id": "c33802dd-1b50-4b9a-8bb9-f13d2cdeadac", + "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "SHAREPOINTSTANDARD_EDU", + "Service_Plan_Id": "0a4983bb-d3e5-4a09-95d8-b2d0127b3df5", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1) for Education" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "BPOS_S_TODO_2", + "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "WHITEBOARD_PLAN1", + "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 A1 for faculty", + "String_Id": "STANDARDWOFFPACK_FACULTY", + "GUID": "94763226-9b3c-4e75-a931-5c89701abe66", + "Service_Plan_Name": "YAMMER_EDU", + "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", + "Service_Plans_Included_Friendly_Names": "Yammer for Academic" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "AAD_BASIC_EDU", + "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "DYN365_CDS_O365_P1", + "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4", + "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P1" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "EducationAnalyticsP1", + "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", + "Service_Plans_Included_Friendly_Names": "Education Analytics" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "EXCHANGE_S_STANDARD", + "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", + "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "KAIZALA_O365_P2", + "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 2" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "POWERAPPS_O365_P2", + "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "FLOW_O365_P2", + "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "PROJECT_O365_P1", + "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "SCHOOL_DATA_SYNC_P1", + "Service_Plan_Id": "c33802dd-1b50-4b9a-8bb9-f13d2cdeadac", + "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "SHAREPOINTSTANDARD_EDU", + "Service_Plan_Id": "0a4983bb-d3e5-4a09-95d8-b2d0127b3df5", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1) for Education" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "BPOS_S_TODO_2", + "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "WHITEBOARD_PLAN1", + "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for faculty", + "String_Id": "STANDARDWOFFPACK_IW_FACULTY", + "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56", + "Service_Plan_Name": "YAMMER_EDU", + "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", + "Service_Plans_Included_Friendly_Names": "Yammer for Academic" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "AAD_BASIC_EDU", + "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "DYN365_CDS_O365_P1", + "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4", + "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P1" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "EducationAnalyticsP1", + "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", + "Service_Plans_Included_Friendly_Names": "Education Analytics" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "EXCHANGE_S_STANDARD", + "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", + "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "KAIZALA_O365_P2", + "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 2" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", + "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", + "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "POWERAPPS_O365_P2", + "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "FLOW_O365_P2", + "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "PROJECT_O365_P1", + "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "SCHOOL_DATA_SYNC_P1", + "Service_Plan_Id": "c33802dd-1b50-4b9a-8bb9-f13d2cdeadac", + "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "SHAREPOINTSTANDARD_EDU", + "Service_Plan_Id": "0a4983bb-d3e5-4a09-95d8-b2d0127b3df5", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1) for Education" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "BPOS_S_TODO_2", + "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "WHITEBOARD_PLAN1", + "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 A1 for students", + "String_Id": "STANDARDWOFFPACK_STUDENT", + "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91", + "Service_Plan_Name": "YAMMER_EDU", + "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", + "Service_Plans_Included_Friendly_Names": "Yammer for Academic" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "AAD_BASIC_EDU", + "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "DYN365_CDS_O365_P1", + "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4", + "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P1" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "EducationAnalyticsP1", + "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", + "Service_Plans_Included_Friendly_Names": "Education Analytics" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "EXCHANGE_S_STANDARD", + "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", + "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "KAIZALA_O365_P2", + "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 2" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "POWERAPPS_O365_P2", + "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "FLOW_O365_P2", + "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "PROJECT_O365_P1", + "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "SCHOOL_DATA_SYNC_P1", + "Service_Plan_Id": "c33802dd-1b50-4b9a-8bb9-f13d2cdeadac", + "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "SHAREPOINTSTANDARD_EDU", + "Service_Plan_Id": "0a4983bb-d3e5-4a09-95d8-b2d0127b3df5", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1) for Education" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "BPOS_S_TODO_2", + "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "WHITEBOARD_PLAN1", + "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 A1 Plus for students", + "String_Id": "STANDARDWOFFPACK_IW_STUDENT", + "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e", + "Service_Plan_Name": "YAMMER_EDU", + "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", + "Service_Plans_Included_Friendly_Names": "Yammer for Academic" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "AAD_BASIC_EDU", + "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for EDU" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "DYN365_CDS_O365_P2", + "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", + "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "CDS_O365_P2", + "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "EducationAnalyticsP1", + "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", + "Service_Plans_Included_Friendly_Names": "Education Analytics" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", + "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "KAIZALA_O365_P3", + "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office for the web (Education)" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "POWERAPPS_O365_P2", + "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "FLOW_O365_P2", + "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", + "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P2" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "PROJECT_O365_P2", + "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", + "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", + "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", + "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "BPOS_S_TODO_2", + "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "WHITEBOARD_PLAN2", + "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A3 for faculty", + "String_Id": "ENTERPRISEPACKPLUS_FACULTY", + "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", + "Service_Plan_Name": "YAMMER_EDU", + "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", + "Service_Plans_Included_Friendly_Names": "Yammer for Academic" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "AAD_BASIC_EDU", + "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "DYN365_CDS_O365_P2", + "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", + "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "CDS_O365_P2", + "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "EducationAnalyticsP1", + "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", + "Service_Plans_Included_Friendly_Names": "Education Analytics" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", + "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "KAIZALA_O365_P3", + "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "POWERAPPS_O365_P2", + "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "FLOW_O365_P2", + "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", + "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P2" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "PROJECT_O365_P2", + "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", + "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", + "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", + "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "BPOS_S_TODO_2", + "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "WHITEBOARD_PLAN2", + "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A3 for students", + "String_Id": "ENTERPRISEPACKPLUS_STUDENT", + "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", + "Service_Plan_Name": "YAMMER_EDU", + "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", + "Service_Plans_Included_Friendly_Names": "Yammer for Academic" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "AAD_BASIC_EDU", + "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "CDS_O365_P3", + "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "EducationAnalyticsP1", + "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", + "Service_Plans_Included_Friendly_Names": "Education Analytics" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "MCOMEETADV", + "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "DATA_INVESTIGATIONS", + "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "EXCEL_PREMIUM", + "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", + "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "OFFICE_FORMS_PLAN_3", + "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "KAIZALA_STANDALONE", + "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "EXCHANGE_ANALYTICS", + "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "STREAM_O365_E5", + "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "PAM_ENTERPRISE", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "POWERAPPS_O365_P3", + "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "PROJECT_O365_P3", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", + "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", + "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", + "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", + "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "YAMMER_EDU", + "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", + "Service_Plans_Included_Friendly_Names": "Yammer for Academic" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "FLOW_O365_P3", + "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Office 365 A5 for faculty", + "String_Id": "ENTERPRISEPREMIUM_FACULTY", + "GUID": "a4585165-0533-458a-97e3-c400570268c4", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", + "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "AAD_BASIC_EDU", + "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "CDS_O365_P3", + "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "EducationAnalyticsP1", + "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", + "Service_Plans_Included_Friendly_Names": "Education Analytics" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "MCOMEETADV", + "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "DATA_INVESTIGATIONS", + "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "EXCEL_PREMIUM", + "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", + "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "OFFICE_FORMS_PLAN_3", + "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "KAIZALA_STANDALONE", + "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "EXCHANGE_ANALYTICS", + "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "STREAM_O365_E5", + "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "PAM_ENTERPRISE", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "POWERAPPS_O365_P3", + "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "PROJECT_O365_P3", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", + "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", + "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", + "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", + "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "YAMMER_EDU", + "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", + "Service_Plans_Included_Friendly_Names": "Yammer for Academic" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "FLOW_O365_P3", + "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Office 365 A5 for students", + "String_Id": "ENTERPRISEPREMIUM_STUDENT", + "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", + "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Office 365 Advanced Compliance", + "String_Id": "EQUIVIO_ANALYTICS", + "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Office 365 Advanced Compliance", + "String_Id": "EQUIVIO_ANALYTICS", + "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Office 365 Advanced Compliance", + "String_Id": "EQUIVIO_ANALYTICS", + "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Office 365 Advanced Compliance", + "String_Id": "EQUIVIO_ANALYTICS", + "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Office 365 Advanced Compliance", + "String_Id": "EQUIVIO_ANALYTICS", + "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", + "Service_Plan_Name": "PAM_ENTERPRISE", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" + }, + { + "Product_Display_Name": "Office 365 Advanced Compliance", + "String_Id": "EQUIVIO_ANALYTICS", + "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Office 365 Advanced Compliance for GCC", + "String_Id": "EQUIVIO_ANALYTICS_GOV", + "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV", + "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government" + }, + { + "Product_Display_Name": "Office 365 Advanced Compliance for GCC", + "String_Id": "EQUIVIO_ANALYTICS_GOV", + "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Office 365 Advanced Compliance for GCC", + "String_Id": "EQUIVIO_ANALYTICS_GOV", + "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics -Premium" + }, + { + "Product_Display_Name": "Office 365 Advanced Compliance for GCC", + "String_Id": "EQUIVIO_ANALYTICS_GOV", + "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Standard" + }, + { + "Product_Display_Name": "Office 365 Advanced Compliance for GCC", + "String_Id": "EQUIVIO_ANALYTICS_GOV", + "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Office 365 Advanced Compliance for GCC", + "String_Id": "EQUIVIO_ANALYTICS_GOV", + "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Office 365 Advanced Compliance for GCC", + "String_Id": "EQUIVIO_ANALYTICS_GOV", + "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Office 365 Advanced Compliance for GCC", + "String_Id": "EQUIVIO_ANALYTICS_GOV", + "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Office 365 Advanced Compliance for GCC", + "String_Id": "EQUIVIO_ANALYTICS_GOV", + "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Office 365 Advanced Compliance for GCC", + "String_Id": "EQUIVIO_ANALYTICS_GOV", + "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Office 365 Advanced Compliance for GCC", + "String_Id": "EQUIVIO_ANALYTICS_GOV", + "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Office 365 Advanced Compliance for GCC", + "String_Id": "EQUIVIO_ANALYTICS_GOV", + "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Office 365 Advanced Compliance for GCC", + "String_Id": "EQUIVIO_ANALYTICS_GOV", + "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", + "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV", + "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government" + }, + { + "Product_Display_Name": "Office 365 Advanced Compliance for GCC", + "String_Id": "EQUIVIO_ANALYTICS_GOV", + "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 1)", + "String_Id": "ATP_ENTERPRISE", + "GUID": "4ef96642-f096-40de-a3e9-d83fb2f90211", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 Extra File Storage for GCC", + "String_Id": "SHAREPOINTSTORAGE_GOV", + "GUID": "e5788282-6381-469f-84f0-3d7d4021d34d", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_FOUNDATION_GOV" + }, + { + "Product_Display_Name": "Office 365 Extra File Storage for GCC", + "String_Id": "SHAREPOINTSTORAGE_GOV", + "GUID": "e5788282-6381-469f-84f0-3d7d4021d34d", + "Service_Plan_Name": "SHAREPOINTSTORAGE_GOV", + "Service_Plan_Id": "e5bb877f-6ac9-4461-9e43-ca581543ab16", + "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTORAGE_GOV" + }, + { + "Product_Display_Name": "Microsoft Teams Commercial Cloud", + "String_Id": "TEAMS_COMMERCIAL_TRIAL", + "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", + "Service_Plan_Name": "CDS_O365_P1", + "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P1" + }, + { + "Product_Display_Name": "Microsoft Teams Commercial Cloud", + "String_Id": "TEAMS_COMMERCIAL_TRIAL", + "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Microsoft Teams Commercial Cloud", + "String_Id": "TEAMS_COMMERCIAL_TRIAL", + "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", + "Service_Plan_Name": "FORMS_PLAN_E1", + "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" + }, + { + "Product_Display_Name": "Microsoft Teams Commercial Cloud", + "String_Id": "TEAMS_COMMERCIAL_TRIAL", + "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Microsoft Teams Commercial Cloud", + "String_Id": "TEAMS_COMMERCIAL_TRIAL", + "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", + "Service_Plan_Name": "STREAM_O365_E1", + "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E1 SKU" + }, + { + "Product_Display_Name": "Microsoft Teams Commercial Cloud", + "String_Id": "TEAMS_COMMERCIAL_TRIAL", + "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", + "Service_Plan_Name": "MCO_TEAMS_IW", + "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft Teams Commercial Cloud", + "String_Id": "TEAMS_COMMERCIAL_TRIAL", + "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft Teams Commercial Cloud", + "String_Id": "TEAMS_COMMERCIAL_TRIAL", + "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the web" + }, + { + "Product_Display_Name": "Microsoft Teams Commercial Cloud", + "String_Id": "TEAMS_COMMERCIAL_TRIAL", + "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", + "Service_Plan_Name": "POWERAPPS_O365_P1", + "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Microsoft Teams Commercial Cloud", + "String_Id": "TEAMS_COMMERCIAL_TRIAL", + "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", + "Service_Plan_Name": "FLOW_O365_P1", + "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Microsoft Teams Commercial Cloud", + "String_Id": "TEAMS_COMMERCIAL_TRIAL", + "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1", + "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P1" + }, + { + "Product_Display_Name": "Microsoft Teams Commercial Cloud", + "String_Id": "TEAMS_COMMERCIAL_TRIAL", + "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", + "Service_Plan_Name": "SHAREPOINTDESKLESS", + "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", + "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" + }, + { + "Product_Display_Name": "Microsoft Teams Commercial Cloud", + "String_Id": "TEAMS_COMMERCIAL_TRIAL", + "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Microsoft Teams Commercial Cloud", + "String_Id": "TEAMS_COMMERCIAL_TRIAL", + "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", + "Service_Plan_Name": "WHITEBOARD_PLAN1", + "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" + }, + { + "Product_Display_Name": "Microsoft Teams Commercial Cloud", + "String_Id": "TEAMS_COMMERCIAL_TRIAL", + "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Office 365 Cloud App Security", + "String_Id": "ADALLOM_O365", + "GUID": "84d5f90f-cd0d-4864-b90b-1c7ba63b4808", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Office 365 Cloud App Security", + "String_Id": "ADALLOM_O365", + "GUID": "84d5f90f-cd0d-4864-b90b-1c7ba63b4808", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" + }, + { + "Product_Display_Name": "Office 365 Extra File Storage", + "String_Id": "SHAREPOINTSTORAGE", + "GUID": "99049c9c-6011-4908-bf17-15f496e6519d", + "Service_Plan_Name": "SHAREPOINTSTORAGE", + "Service_Plan_Id": "be5a7ed5-c598-4fcd-a061-5e6724c68a58", + "Service_Plans_Included_Friendly_Names": "Office 365 Extra File Storage" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "CDS_O365_P1", + "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "EXCHANGE_S_STANDARD", + "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "FORMS_PLAN_E1", + "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "KAIZALA_O365_P2", + "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", + "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", + "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "PROJECT_O365_P1", + "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "SHAREPOINTSTANDARD", + "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "BPOS_S_TODO_1", + "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "WHITEBOARD_PLAN1", + "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "DYN365_CDS_O365_P1", + "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "RMS_S_BASIC", + "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "STREAM_O365_E1", + "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E1" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "POWERAPPS_O365_P1", + "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "FLOW_O365_P1", + "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1", + "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Office 365 E1", + "String_Id": "STANDARDPACK", + "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "CDS_O365_P1", + "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "EXCHANGE_S_STANDARD", + "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "FORMS_PLAN_E1", + "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "KAIZALA_O365_P2", + "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", + "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", + "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "PROJECT_O365_P1", + "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "SHAREPOINTSTANDARD", + "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "BPOS_S_TODO_1", + "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "WHITEBOARD_PLAN1", + "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "DYN365_CDS_O365_P1", + "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "RMS_S_BASIC", + "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "STREAM_O365_E1", + "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E1" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "POWERAPPS_O365_P1", + "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "FLOW_O365_P1", + "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Office 365 E1 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E1", + "GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1", + "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Office 365 E2", + "String_Id": "STANDARDWOFFPACK", + "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", + "Service_Plan_Name": "BPOS_S_TODO_1", + "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", + "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_1" + }, + { + "Product_Display_Name": "Office 365 E2", + "String_Id": "STANDARDWOFFPACK", + "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" + }, + { + "Product_Display_Name": "Office 365 E2", + "String_Id": "STANDARDWOFFPACK", + "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", + "Service_Plan_Name": "EXCHANGE_S_STANDARD", + "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", + "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" + }, + { + "Product_Display_Name": "Office 365 E2", + "String_Id": "STANDARDWOFFPACK", + "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", + "Service_Plan_Name": "FLOW_O365_P1", + "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", + "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" + }, + { + "Product_Display_Name": "Office 365 E2", + "String_Id": "STANDARDWOFFPACK", + "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", + "Service_Plan_Name": "FORMS_PLAN_E1", + "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", + "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" + }, + { + "Product_Display_Name": "Office 365 E2", + "String_Id": "STANDARDWOFFPACK", + "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" + }, + { + "Product_Display_Name": "Office 365 E2", + "String_Id": "STANDARDWOFFPACK", + "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", + "Service_Plan_Name": "POWERAPPS_O365_P1", + "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", + "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" + }, + { + "Product_Display_Name": "Office 365 E2", + "String_Id": "STANDARDWOFFPACK", + "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" + }, + { + "Product_Display_Name": "Office 365 E2", + "String_Id": "STANDARDWOFFPACK", + "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", + "Service_Plan_Name": "SHAREPOINTSTANDARD", + "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", + "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" + }, + { + "Product_Display_Name": "Office 365 E2", + "String_Id": "STANDARDWOFFPACK", + "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" + }, + { + "Product_Display_Name": "Office 365 E2", + "String_Id": "STANDARDWOFFPACK", + "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", + "Service_Plan_Name": "STREAM_O365_E1", + "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", + "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E1 SKU" + }, + { + "Product_Display_Name": "Office 365 E2", + "String_Id": "STANDARDWOFFPACK", + "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "SWAY" + }, + { + "Product_Display_Name": "Office 365 E2", + "String_Id": "STANDARDWOFFPACK", + "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "TEAMS1" + }, + { + "Product_Display_Name": "Office 365 E2", + "String_Id": "STANDARDWOFFPACK", + "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" + }, + { + "Product_Display_Name": "Office 365 E3", + "String_Id": "ENTERPRISEPACK", + "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", + "Service_Plan_Name": "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 Microsoft Entra 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": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Office 365 E3", + "String_Id": "ENTERPRISEPACK", + "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Office 365 E3", + "String_Id": "ENTERPRISEPACK", + "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", + "Service_Plan_Name": "WHITEBOARD_PLAN2", + "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E3", + "String_Id": "ENTERPRISEPACK", + "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "CDS_O365_P2", + "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "FORMS_PLAN_E3", + "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "KAIZALA_O365_P3", + "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "PROJECT_O365_P2", + "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "BPOS_S_TODO_2", + "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "WHITEBOARD_PLAN2", + "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "DYN365_CDS_O365_P2", + "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "POWERAPPS_O365_P2", + "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "FLOW_O365_P2", + "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Office 365 E3 EEA (no Teams)", + "String_Id": "O365_w/o_Teams_Bundle_E3", + "GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", + "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Office 365 E3 Developer", + "String_Id": "DEVELOPERPACK", + "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_3" + }, + { + "Product_Display_Name": "Office 365 E3 Developer", + "String_Id": "DEVELOPERPACK", + "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)" + }, + { + "Product_Display_Name": "Office 365 E3 Developer", + "String_Id": "DEVELOPERPACK", + "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", + "Service_Plan_Name": "FLOW_O365_P2", + "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", + "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" + }, + { + "Product_Display_Name": "Office 365 E3 Developer", + "String_Id": "DEVELOPERPACK", + "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", + "Service_Plan_Name": "FORMS_PLAN_E5", + "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", + "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E5)" + }, + { + "Product_Display_Name": "Office 365 E3 Developer", + "String_Id": "DEVELOPERPACK", + "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" + }, + { + "Product_Display_Name": "Office 365 E3 Developer", + "String_Id": "DEVELOPERPACK", + "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION" + }, + { + "Product_Display_Name": "Office 365 E3 Developer", + "String_Id": "DEVELOPERPACK", + "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", + "Service_Plan_Name": "POWERAPPS_O365_P2", + "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", + "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 36" + }, + { + "Product_Display_Name": "Office 365 E3 Developer", + "String_Id": "DEVELOPERPACK", + "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" + }, + { + "Product_Display_Name": "Office 365 E3 Developer", + "String_Id": "DEVELOPERPACK", + "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", + "Service_Plan_Name": "SHAREPOINT_S_DEVELOPER", + "Service_Plan_Id": "a361d6e2-509e-4e25-a8ad-950060064ef4", + "Service_Plans_Included_Friendly_Names": "SHAREPOINT FOR DEVELOPER" + }, + { + "Product_Display_Name": "Office 365 E3 Developer", + "String_Id": "DEVELOPERPACK", + "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", + "Service_Plan_Name": "SHAREPOINTWAC_DEVELOPER", + "Service_Plan_Id": "527f7cdd-0e86-4c47-b879-f5fd357a3ac6", + "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE FOR DEVELOPER" + }, + { + "Product_Display_Name": "Office 365 E3 Developer", + "String_Id": "DEVELOPERPACK", + "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", + "Service_Plan_Name": "STREAM_O365_E5", + "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", + "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E5 SKU" + }, + { + "Product_Display_Name": "Office 365 E3 Developer", + "String_Id": "DEVELOPERPACK", + "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "SWAY" + }, + { + "Product_Display_Name": "Office 365 E3 Developer", + "String_Id": "DEVELOPERPACK", + "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "TEAMS1" + }, + { + "Product_Display_Name": "Office 365 E3_USGOV_DOD", + "String_Id": "ENTERPRISEPACK_USGOV_DOD", + "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E3_USGOV_DOD", + "String_Id": "ENTERPRISEPACK_USGOV_DOD", + "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" + }, + { + "Product_Display_Name": "Office 365 E3_USGOV_DOD", + "String_Id": "ENTERPRISEPACK_USGOV_DOD", + "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" + }, + { + "Product_Display_Name": "Office 365 E3_USGOV_DOD", + "String_Id": "ENTERPRISEPACK_USGOV_DOD", + "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", + "Service_Plan_Name": "TEAMS_AR_DOD", + "Service_Plan_Id": "fd500458-c24c-478e-856c-a6067a8376cd", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams for DOD (AR)" + }, + { + "Product_Display_Name": "Office 365 E3_USGOV_DOD", + "String_Id": "ENTERPRISEPACK_USGOV_DOD", + "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" + }, + { + "Product_Display_Name": "Office 365 E3_USGOV_DOD", + "String_Id": "ENTERPRISEPACK_USGOV_DOD", + "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office Online" + }, + { + "Product_Display_Name": "Office 365 E3_USGOV_DOD", + "String_Id": "ENTERPRISEPACK_USGOV_DOD", + "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E3_USGOV_DOD", + "String_Id": "ENTERPRISEPACK_USGOV_DOD", + "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", + "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", + "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", + "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", + "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" + }, + { + "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", + "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", + "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", + "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", + "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" + }, + { + "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", + "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", + "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", + "Service_Plan_Name": "TEAMS_AR_GCCHIGH", + "Service_Plan_Id": "9953b155-8aef-4c56-92f3-72b0487fce41", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams for GCCHigh (AR)" + }, + { + "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", + "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", + "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" + }, + { + "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", + "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", + "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office Online" + }, + { + "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", + "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", + "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", + "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", + "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E4", + "String_Id": "ENTERPRISEWITHSCAL", + "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", + "Service_Plan_Name": "BPOS_S_TODO_2", + "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", + "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_2" + }, + { + "Product_Display_Name": "Office 365 E4", + "String_Id": "ENTERPRISEWITHSCAL", + "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" + }, + { + "Product_Display_Name": "Office 365 E4", + "String_Id": "ENTERPRISEWITHSCAL", + "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)" + }, + { + "Product_Display_Name": "Office 365 E4", + "String_Id": "ENTERPRISEWITHSCAL", + "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", + "Service_Plan_Name": "FLOW_O365_P2", + "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", + "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" + }, + { + "Product_Display_Name": "Office 365 E4", + "String_Id": "ENTERPRISEWITHSCAL", + "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", + "Service_Plan_Name": "FORMS_PLAN_E3", + "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", + "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E3)" + }, + { + "Product_Display_Name": "Office 365 E4", + "String_Id": "ENTERPRISEWITHSCAL", + "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" + }, + { + "Product_Display_Name": "Office 365 E4", + "String_Id": "ENTERPRISEWITHSCAL", + "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", + "Service_Plan_Name": "MCOVOICECONF", + "Service_Plan_Id": "27216c54-caf8-4d0d-97e2-517afb5c08f6", + "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 3)" + }, + { + "Product_Display_Name": "Office 365 E4", + "String_Id": "ENTERPRISEWITHSCAL", + "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION" + }, + { + "Product_Display_Name": "Office 365 E4", + "String_Id": "ENTERPRISEWITHSCAL", + "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", + "Service_Plan_Name": "POWERAPPS_O365_P2", + "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", + "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 36" + }, + { + "Product_Display_Name": "Office 365 E4", + "String_Id": "ENTERPRISEWITHSCAL", + "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" + }, + { + "Product_Display_Name": "Office 365 E4", + "String_Id": "ENTERPRISEWITHSCAL", + "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "MICROSOFT Microsoft Entra RIGHTS" + }, + { + "Product_Display_Name": "Office 365 E4", + "String_Id": "ENTERPRISEWITHSCAL", + "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" + }, + { + "Product_Display_Name": "Office 365 E4", + "String_Id": "ENTERPRISEWITHSCAL", + "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" + }, + { + "Product_Display_Name": "Office 365 E4", + "String_Id": "ENTERPRISEWITHSCAL", + "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", + "Service_Plan_Name": "STREAM_O365_E3", + "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", + "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E3 SKU" + }, + { + "Product_Display_Name": "Office 365 E4", + "String_Id": "ENTERPRISEWITHSCAL", + "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "SWAY" + }, + { + "Product_Display_Name": "Office 365 E4", + "String_Id": "ENTERPRISEWITHSCAL", + "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "TEAMS1" + }, + { + "Product_Display_Name": "Office 365 E4", + "String_Id": "ENTERPRISEWITHSCAL", + "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P3" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "CDS_O365_P3", + "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P3" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", + "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Standard" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "M365 Communication Compliance" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "MCOMEETADV", + "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "DATA_INVESTIGATIONS", + "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "EXCEL_PREMIUM", + "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", + "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "FORMS_PLAN_E5", + "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "KAIZALA_STANDALONE", + "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "EXCHANGE_ANALYTICS", + "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "STREAM_O365_E5", + "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E5 SKU" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "PAM_ENTERPRISE", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the web" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "FLOW_O365_P3", + "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", + "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P3" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "POWERAPPS_O365_P3", + "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", + "Service_Plans_Included_Friendly_Names": "PowerApps for Office 365 Plan 3" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "PROJECT_O365_P3", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", + "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications Compliance" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 E5", + "String_Id": "ENTERPRISEPREMIUM", + "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "CDS_O365_P3", + "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "CustomerLockboxA_Enterprise", + "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", + "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "MCOMEETADV", + "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "DATA_INVESTIGATIONS", + "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "EXCEL_PREMIUM", + "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", + "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "FORMS_PLAN_E5", + "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "KAIZALA_STANDALONE", + "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "EXCHANGE_ANALYTICS", + "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "PAM_ENTERPRISE", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "POWERAPPS_O365_P3", + "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "PROJECT_O365_P3", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", + "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "STREAM_O365_E5", + "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "FLOW_O365_P3", + "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams)", + "String_Id": "Office_365_w/o_Teams_Bundle_E5", + "GUID": "cf50bae9-29e8-4775-b07c-56ee10e3776d", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", + "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "CDS_O365_P3", + "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "CustomerLockboxA_Enterprise", + "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", + "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "DATA_INVESTIGATIONS", + "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "EXCEL_PREMIUM", + "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", + "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "FORMS_PLAN_E5", + "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "KAIZALA_STANDALONE", + "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "EXCHANGE_ANALYTICS", + "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "STREAM_O365_E5", + "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "PAM_ENTERPRISE", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "POWERAPPS_O365_P3", + "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "PROJECT_O365_P3", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", + "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "FLOW_O365_P3", + "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Office 365 E5 EEA (no Teams) without Audio Conferencing", + "String_Id": "Office_365_E5_EEA_(no_Teams)_without_Audio_Conferencing", + "GUID": "71772aeb-4bb8-4f74-9dd4-36c7a9b5ca74", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", + "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "RMS_S_ENTERPRISE", + "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "CDS_O365_P3", + "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE", + "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", + "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "MYANALYTICS_P2", + "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "DATA_INVESTIGATIONS", + "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "ATP_ENTERPRISE", + "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "THREAT_INTELLIGENCE", + "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "EXCEL_PREMIUM", + "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", + "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "FORMS_PLAN_E5", + "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "KAIZALA_STANDALONE", + "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "EXCHANGE_ANALYTICS", + "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "STREAM_O365_E5", + "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "EQUIVIO_ANALYTICS", + "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "PAM_ENTERPRISE", + "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", + "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "POWERAPPS_O365_P3", + "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "PROJECT_O365_P3", + "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", + "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", + "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "DYN365_CDS_O365_P3", + "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "FLOW_O365_P3", + "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" + }, + { + "Product_Display_Name": "Office 365 E5 Without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", + "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", + "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "DYN365_CDS_O365_F1", + "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f", + "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 F1" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "CDS_O365_F1", + "Service_Plan_Id": "90db65a7-bf11-4904-a79f-ef657605145b", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_F1" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "EXCHANGE_S_DESKLESS", + "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", + "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "RMS_S_BASIC", + "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "FORMS_PLAN_K", + "Service_Plan_Id": "f07046bd-2a3c-4b96-b0be-dea79d7cbfb8", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1)" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "KAIZALA_O365_P1", + "Service_Plan_Id": "73b2a583-6a59-42e3-8e83-54db46bc3278", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 1" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "STREAM_O365_K", + "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 F3" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", + "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", + "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "POWERAPPS_O365_S1", + "Service_Plan_Id": "e0287f9f-e222-4f98-9a83-f379e249159a", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "FLOW_O365_S1", + "Service_Plan_Id": "bd91b1a4-9f94-4ecf-b45b-3a65e5c8128a", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_F1", + "Service_Plan_Id": "ba2fdb48-290b-4632-b46a-e4ecc58ac11a", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 F1" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "PROJECT_O365_F3", + "Service_Plan_Id": "7f6f28c2-34bb-4d4b-be36-48ca2e77e1ec", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan F)" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "SHAREPOINTDESKLESS", + "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", + "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "MCOIMP", + "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "BPOS_S_TODO_FIRSTLINE", + "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5", + "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1", + "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)" + }, + { + "Product_Display_Name": "Office 365 F3", + "String_Id": "DESKLESSPACK", + "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "CDS_O365_F1", + "Service_Plan_Id": "90db65a7-bf11-4904-a79f-ef657605145b", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "EXCHANGE_S_DESKLESS", + "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", + "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "FORMS_PLAN_K", + "Service_Plan_Id": "f07046bd-2a3c-4b96-b0be-dea79d7cbfb8", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1)" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "KAIZALA_O365_P1", + "Service_Plan_Id": "73b2a583-6a59-42e3-8e83-54db46bc3278", + "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "Deskless", + "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", + "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", + "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", + "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "PROJECT_O365_F3", + "Service_Plan_Id": "7f6f28c2-34bb-4d4b-be36-48ca2e77e1ec", + "Service_Plans_Included_Friendly_Names": "Project for Office (Plan F)" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "SHAREPOINTDESKLESS", + "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", + "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "MCOIMP", + "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "BPOS_S_TODO_FIRSTLINE", + "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5", + "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "VIVAENGAGE_CORE", + "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4", + "Service_Plans_Included_Friendly_Names": "Viva Engage Core" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "VIVA_LEARNING_SEEDED", + "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86", + "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1", + "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "YAMMER_ENTERPRISE", + "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", + "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "DYN365_CDS_O365_F1", + "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "RMS_S_BASIC", + "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "STREAM_O365_K", + "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 F3" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "POWERAPPS_O365_S1", + "Service_Plan_Id": "e0287f9f-e222-4f98-9a83-f379e249159a", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "FLOW_O365_S1", + "Service_Plan_Id": "bd91b1a4-9f94-4ecf-b45b-3a65e5c8128a", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3" + }, + { + "Product_Display_Name": "Office 365 F3 EEA (no Teams)", + "String_Id": "Office_365_F3_EEA_(no_Teams)", + "GUID": "d1f0495b-cb7b-4e11-8b85-daee7e7e5664", + "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_F1", + "Service_Plan_Id": "ba2fdb48-290b-4632-b46a-e4ecc58ac11a", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365" + }, + { + "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", + "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", + "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", + "Service_Plan_Name": "CDS_O365_F1", + "Service_Plan_Id": "90db65a7-bf11-4904-a79f-ef657605145b", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", + "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", + "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", + "Service_Plan_Name": "EXCHANGE_S_DESKLESS", + "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", + "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk" + }, + { + "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", + "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", + "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", + "Service_Plan_Name": "FORMS_PLAN_K_AR_GCCHIGH", + "Service_Plan_Id": "59fb5884-fdec-40bf-aa7f-89e2bae79a7a", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1) for GCCHigh" + }, + { + "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", + "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", + "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT", + "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", + "Service_Plans_Included_Friendly_Names": "Microsoft Planner" + }, + { + "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", + "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", + "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", + "Service_Plan_Name": "MICROSOFT_SEARCH_GCCH", + "Service_Plan_Id": "fc9f7921-4ca5-42c6-8533-1b84c4ee496b", + "Service_Plans_Included_Friendly_Names": "Microsoft Search for Arlington" + }, + { + "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", + "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", + "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", + "Service_Plan_Name": "TEAMS_AR_GCCHIGH", + "Service_Plan_Id": "9953b155-8aef-4c56-92f3-72b0487fce41", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams for GCCHigh" + }, + { + "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", + "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", + "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", + "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", + "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", + "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", + "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", + "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" + }, + { + "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", + "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", + "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", + "Service_Plan_Name": "SHAREPOINTDESKLESS", + "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", + "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" + }, + { + "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", + "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", + "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", + "Service_Plan_Name": "MCOIMP", + "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", + "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", + "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", + "Service_Plan_Name": "DYN365_CDS_O365_F1", + "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", + "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", + "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", + "Service_Plan_Name": "STREAM_O365_K", + "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 F3" + }, + { + "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", + "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", + "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", + "Service_Plan_Name": "POWERAPPS_O365_S1_GCCHIGH", + "Service_Plan_Id": "b9f1a92f-d4c7-477b-b64c-e23d7b4e8cf9", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3 for GCCHigh" + }, + { + "Product_Display_Name": "Office 365 F3_USGOV_GCCHIGH", + "String_Id": "DESKLESSPACK_USGOV_GCCHIGH", + "GUID": "74039b88-bd62-4b5c-9d9c-7a92bbc0bfdf", + "Service_Plan_Name": "FLOW_O365_S1_GCCHIGH", + "Service_Plan_Id": "1db85bca-cd60-4bf5-ae54-641e0778a532", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3 for GCCHigh" + }, + { + "Product_Display_Name": "Office 365 G1 GCC", + "String_Id": "STANDARDPACK_GOV", + "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", + "Service_Plan_Name": "DYN365_CDS_O365_P1_GCC", + "Service_Plan_Id": "8eb5e9bc-783f-4425-921a-c65f45dd72c6", + "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P1 GCC" + }, + { + "Product_Display_Name": "Office 365 G1 GCC", + "String_Id": "STANDARDPACK_GOV", + "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", + "Service_Plan_Name": "CDS_O365_P1_GCC", + "Service_Plan_Id": "959e5dec-6522-4d44-8349-132c27c3795a", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P1 GCC" + }, + { + "Product_Display_Name": "Office 365 G1 GCC", + "String_Id": "STANDARDPACK_GOV", + "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", + "Service_Plan_Name": "EXCHANGE_S_STANDARD_GOV", + "Service_Plan_Id": "e9b4930a-925f-45e2-ac2a-3f7788ca6fdd", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1) for Government" + }, + { + "Product_Display_Name": "Office 365 G1 GCC", + "String_Id": "STANDARDPACK_GOV", + "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", + "Service_Plan_Name": "FORMS_GOV_E1", + "Service_Plan_Id": "f4cba850-4f34-4fd2-a341-0fddfdce1e8f", + "Service_Plans_Included_Friendly_Names": "Forms for Government (Plan E1)" + }, + { + "Product_Display_Name": "Office 365 G1 GCC", + "String_Id": "STANDARDPACK_GOV", + "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", + "Service_Plan_Name": "MYANALYTICS_P2_GOV", + "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics for Government" + }, + { + "Product_Display_Name": "Office 365 G1 GCC", + "String_Id": "STANDARDPACK_GOV", + "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 G1 GCC", + "String_Id": "STANDARDPACK_GOV", + "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", + "Service_Plan_Name": "STREAM_O365_E1_GOV", + "Service_Plan_Id": "15267263-5986-449d-ac5c-124f3b49b2d6", + "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 for Government (E1)" + }, + { + "Product_Display_Name": "Office 365 G1 GCC", + "String_Id": "STANDARDPACK_GOV", + "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", + "Service_Plan_Name": "TEAMS_GOV", + "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" + }, + { + "Product_Display_Name": "Office 365 G1 GCC", + "String_Id": "STANDARDPACK_GOV", + "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 G1 GCC", + "String_Id": "STANDARDPACK_GOV", + "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", + "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", + "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" + }, + { + "Product_Display_Name": "Office 365 G1 GCC", + "String_Id": "STANDARDPACK_GOV", + "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Office 365 G1 GCC", + "String_Id": "STANDARDPACK_GOV", + "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", + "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION_GOV", + "Service_Plan_Id": "4ccb60ee-9523-48fd-8f63-4b090f1ad77a", + "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365 for GCC" + }, + { + "Product_Display_Name": "Office 365 G1 GCC", + "String_Id": "STANDARDPACK_GOV", + "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", + "Service_Plan_Name": "POWERAPPS_O365_P1_GOV", + "Service_Plan_Id": "c42aa49a-f357-45d5-9972-bc29df885fee", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" + }, + { + "Product_Display_Name": "Office 365 G1 GCC", + "String_Id": "STANDARDPACK_GOV", + "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", + "Service_Plan_Name": "FLOW_O365_P1_GOV", + "Service_Plan_Id": "ad6c8870-6356-474c-901c-64d7da8cea48", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" + }, + { + "Product_Display_Name": "Office 365 G1 GCC", + "String_Id": "STANDARDPACK_GOV", + "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", + "Service_Plan_Name": "SharePoint Plan 1G", + "Service_Plan_Id": "f9c43823-deb4-46a8-aa65-8b551f0c4f8a", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 1G" + }, + { + "Product_Display_Name": "Office 365 G1 GCC", + "String_Id": "STANDARDPACK_GOV", + "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", + "Service_Plan_Name": "MCOSTANDARD_GOV", + "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Office 365 G1 GCC", + "String_Id": "STANDARDPACK_GOV", + "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", + "Service_Plan_Name": "BPOS_S_TODO_1", + "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 G1 GCC", + "String_Id": "STANDARDPACK_GOV", + "GUID": "3f4babde-90ec-47c6-995d-d223749065d1", + "Service_Plan_Name": "WHITEBOARD_PLAN1", + "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "CDS_O365_P2_GCC", + "Service_Plan_Id": "a70bbf38-cdda-470d-adb8-5804b8770f41", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", + "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "MYANALYTICS_P2_GOV", + "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics for Government" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV", + "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise G" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "FORMS_GOV_E3", + "Service_Plan_Id": "24af5f65-d0f3-467b-9f78-ea798c4aeffc", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E3)" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "TEAMS_GOV", + "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", + "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", + "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "PROJECT_O365_P2_GOV", + "Service_Plan_Id": "e7d09ae4-099a-4c34-a2a2-3e166e95c44a", + "Service_Plans_Included_Friendly_Names": "Project for Government (Plan E3)" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "MCOSTANDARD_GOV", + "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "STREAM_O365_E3_GOV", + "Service_Plan_Id": "2c1ada27-dbaa-46f9-bda6-ecb94445f758", + "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E3)" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "BPOS_S_TODO_2", + "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "WHITEBOARD_PLAN2", + "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", + "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "DYN365_CDS_O365_P2_GCC", + "Service_Plan_Id": "06162da2-ebf9-4954-99a0-00fee96f95cc", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "POWERAPPS_O365_P2_GOV", + "Service_Plan_Id": "0a20c815-5e81-4727-9bdc-2b5a117850c3", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" + }, + { + "Product_Display_Name": "Office 365 G3 GCC", + "String_Id": "ENTERPRISEPACK_GOV", + "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", + "Service_Plan_Name": "FLOW_O365_P2_GOV", + "Service_Plan_Id": "c537f360-6a00-4ace-a7f5-9128d0ac1e4b", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "CDS_O365_P2_GCC", + "Service_Plan_Id": "a70bbf38-cdda-470d-adb8-5804b8770f41", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", + "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "MYANALYTICS_P2_GOV", + "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0", + "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics for Government" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "FORMS_GOV_E3", + "Service_Plan_Id": "24af5f65-d0f3-467b-9f78-ea798c4aeffc", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E3)" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "TEAMS_GOV", + "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "Nucleus", + "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de", + "Service_Plans_Included_Friendly_Names": "Nucleus" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", + "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", + "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION_GOV", + "Service_Plan_Id": "4ccb60ee-9523-48fd-8f63-4b090f1ad77a", + "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365 for GCC" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "PROJECT_O365_P2_GOV", + "Service_Plan_Id": "e7d09ae4-099a-4c34-a2a2-3e166e95c44a", + "Service_Plans_Included_Friendly_Names": "Project for Government (Plan E3)" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "MCOSTANDARD_GOV", + "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "STREAM_O365_E3_GOV", + "Service_Plan_Id": "2c1ada27-dbaa-46f9-bda6-ecb94445f758", + "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E3)" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", + "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "DYN365_CDS_O365_P2_GCC", + "Service_Plan_Id": "06162da2-ebf9-4954-99a0-00fee96f95cc", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "POWERAPPS_O365_P2_GOV", + "Service_Plan_Id": "0a20c815-5e81-4727-9bdc-2b5a117850c3", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" + }, + { + "Product_Display_Name": "Office 365 G3 without Microsoft 365 Apps GCC", + "String_Id": "ENTERPRISEPACKWITHOUTPROPLUS_GOV", + "GUID": "24aebea8-7fac-48d0-8750-de4ee1fde205", + "Service_Plan_Name": "FLOW_O365_P2_GOV", + "Service_Plan_Id": "c537f360-6a00-4ace-a7f5-9128d0ac1e4b", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "CDS_O365_P3_GCC", + "Service_Plan_Id": "bce5e5ca-c2fd-4d53-8ee2-58dfffed4c10", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV", + "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", + "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", + "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV", + "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise G" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "MCOMEETADV_GOV", + "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing for Government" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "MCOEV_GOV", + "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "ATP_ENTERPRISE_GOV", + "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV", + "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2) for Government" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "FORMS_GOV_E5", + "Service_Plan_Id": "843da3a8-d2cc-4e7a-9e90-dc46019f964c", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E5)" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "EXCHANGE_ANALYTICS_GOV", + "Service_Plan_Id": "208120d1-9adb-4daf-8c22-816bd5d237e7", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics for Government (Full)" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "TEAMS_GOV", + "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV", + "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", + "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", + "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "BI_AZURE_P_2_GOV", + "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76", + "Service_Plans_Included_Friendly_Names": "Power BI Pro for Government" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "PROJECT_O365_P3_GOV", + "Service_Plan_Id": "9b7c50ec-cd50-44f2-bf48-d72de6f90717", + "Service_Plans_Included_Friendly_Names": "Project for Government (Plan E5)" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "MCOSTANDARD_GOV", + "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "STREAM_O365_E5_GOV", + "Service_Plan_Id": "92c2089d-9a53-49fe-b1a6-9e6bdf959547", + "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E5)" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", + "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "DYN365_CDS_O365_P3_GCC", + "Service_Plan_Id": "a7d3fb37-b6df-4085-b509-50810d991a39", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "POWERAPPS_O365_P3_GOV", + "Service_Plan_Id": "0eacfc38-458a-40d3-9eab-9671258f1a3e", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" + }, + { + "Product_Display_Name": "Office 365 G5 GCC", + "String_Id": "ENTERPRISEPREMIUM_GOV", + "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", + "Service_Plan_Name": "FLOW_O365_P3_GOV", + "Service_Plan_Id": "8055d84a-c172-42eb-b997-6c2ae4628246", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "CDS_O365_P3_GCC", + "Service_Plan_Id": "bce5e5ca-c2fd-4d53-8ee2-58dfffed4c10", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV", + "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", + "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", + "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV", + "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise G" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "MCOEV_GOV", + "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "ATP_ENTERPRISE_GOV", + "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV", + "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2) for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "FORMS_GOV_E5", + "Service_Plan_Id": "843da3a8-d2cc-4e7a-9e90-dc46019f964c", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E5)" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "EXCHANGE_ANALYTICS_GOV", + "Service_Plan_Id": "208120d1-9adb-4daf-8c22-816bd5d237e7", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics for Government (Full)" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "TEAMS_GOV", + "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV", + "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", + "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", + "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "BI_AZURE_P_2_GOV", + "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76", + "Service_Plans_Included_Friendly_Names": "Power BI Pro for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "PROJECT_O365_P3_GOV", + "Service_Plan_Id": "9b7c50ec-cd50-44f2-bf48-d72de6f90717", + "Service_Plans_Included_Friendly_Names": "Project for Government (Plan E5)" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "MCOSTANDARD_GOV", + "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "STREAM_O365_E5_GOV", + "Service_Plan_Id": "92c2089d-9a53-49fe-b1a6-9e6bdf959547", + "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E5)" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", + "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "DYN365_CDS_O365_P3_GCC", + "Service_Plan_Id": "a7d3fb37-b6df-4085-b509-50810d991a39", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "POWERAPPS_O365_P3_GOV", + "Service_Plan_Id": "0eacfc38-458a-40d3-9eab-9671258f1a3e", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Audio Conferencing", + "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF_NOPBI_GOV", + "GUID": "1341559b-49df-443c-8e79-fa604fed2d82", + "Service_Plan_Name": "FLOW_O365_P3_GOV", + "Service_Plan_Id": "8055d84a-c172-42eb-b997-6c2ae4628246", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "CDS_O365_P3_GCC", + "Service_Plan_Id": "bce5e5ca-c2fd-4d53-8ee2-58dfffed4c10", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV", + "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526", + "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", + "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", + "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "INFORMATION_BARRIERS", + "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", + "Service_Plans_Included_Friendly_Names": "Information Barriers" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "Content_Explorer", + "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "ContentExplorer_Standard", + "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", + "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics � Standard" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "MIP_S_CLP2", + "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "MIP_S_CLP1", + "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", + "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "M365_ADVANCED_AUDITING", + "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV", + "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise G" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "MCOMEETADV_GOV", + "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", + "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "MTP", + "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "MICROSOFTBOOKINGS", + "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", + "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "COMMUNICATIONS_DLP", + "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", + "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "CUSTOMER_KEY", + "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", + "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "ATP_ENTERPRISE_GOV", + "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV", + "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2) for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "FORMS_GOV_E5", + "Service_Plan_Id": "843da3a8-d2cc-4e7a-9e90-dc46019f964c", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E5)" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "INFO_GOVERNANCE", + "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", + "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "EXCHANGE_ANALYTICS_GOV", + "Service_Plan_Id": "208120d1-9adb-4daf-8c22-816bd5d237e7", + "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics for Government (Full)" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "RECORDS_MANAGEMENT", + "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", + "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "TEAMS_GOV", + "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "INTUNE_O365", + "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", + "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV", + "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1", + "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "ADALLOM_S_O365", + "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", + "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", + "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", + "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "PREMIUM_ENCRYPTION", + "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", + "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "PROJECT_O365_P3_GOV", + "Service_Plan_Id": "9b7c50ec-cd50-44f2-bf48-d72de6f90717", + "Service_Plans_Included_Friendly_Names": "Project for Government (Plan E5)" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "MCOSTANDARD_GOV", + "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "STREAM_O365_E5_GOV", + "Service_Plan_Id": "92c2089d-9a53-49fe-b1a6-9e6bdf959547", + "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E5)" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "BPOS_S_TODO_3", + "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", + "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", + "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", + "Service_Plans_Included_Friendly_Names": "Azure Rights Management" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "DYN365_CDS_O365_P3_GCC", + "Service_Plan_Id": "a7d3fb37-b6df-4085-b509-50810d991a39", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "POWERAPPS_O365_P3_GOV", + "Service_Plan_Id": "0eacfc38-458a-40d3-9eab-9671258f1a3e", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" + }, + { + "Product_Display_Name": "Office 365 GCC G5 without Power BI and Phone System", + "String_Id": "ENTERPRISEPREMIUM_NOPBIPBX_GOV", + "GUID": "2f105cc2-c2c1-435b-a955-c5e82156c05d", + "Service_Plan_Name": "FLOW_O365_P3_GOV", + "Service_Plan_Id": "8055d84a-c172-42eb-b997-6c2ae4628246", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" + }, + { + "Product_Display_Name": "Office 365 Midsize Business", + "String_Id": "MIDSIZEPACK", + "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", + "Service_Plan_Name": "EXCHANGE_S_STANDARD_MIDMARKET", + "Service_Plan_Id": "fc52cc4b-ed7d-472d-bbe7-b081c23ecc56", + "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE PLAN" + }, + { + "Product_Display_Name": "Office 365 Midsize Business", + "String_Id": "MIDSIZEPACK", + "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", + "Service_Plan_Name": "MCOSTANDARD_MIDMARKET", + "Service_Plan_Id": "b2669e95-76ef-4e7e-a367-002f60a39f3e", + "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2) FOR MIDSIZ" + }, + { + "Product_Display_Name": "Office 365 Midsize Business", + "String_Id": "MIDSIZEPACK", + "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", + "Service_Plan_Name": "OFFICESUBSCRIPTION", + "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", + "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION" + }, + { + "Product_Display_Name": "Office 365 Midsize Business", + "String_Id": "MIDSIZEPACK", + "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_MIDMARKET", + "Service_Plan_Id": "6b5b6a67-fc72-4a1f-a2b5-beecf05de761", + "Service_Plans_Included_Friendly_Names": "SHAREPOINT PLAN 1" + }, + { + "Product_Display_Name": "Office 365 Midsize Business", + "String_Id": "MIDSIZEPACK", + "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" + }, + { + "Product_Display_Name": "Office 365 Midsize Business", + "String_Id": "MIDSIZEPACK", + "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "SWAY" + }, + { + "Product_Display_Name": "Office 365 Midsize Business", + "String_Id": "MIDSIZEPACK", + "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", + "Service_Plan_Name": "YAMMER_MIDSIZE", + "Service_Plan_Id": "41bf139a-4e60-409f-9346-a1361efc6dfb", + "Service_Plans_Included_Friendly_Names": "YAMMER_MIDSIZE" + }, + { + "Product_Display_Name": "Office 365 Small Business", + "String_Id": "LITEPACK", + "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b", + "Service_Plan_Name": "EXCHANGE_L_STANDARD", + "Service_Plan_Id": "d42bdbd6-c335-4231-ab3d-c8f348d5aff5", + "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (P1)" + }, + { + "Product_Display_Name": "Office 365 Small Business", + "String_Id": "LITEPACK", + "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b", + "Service_Plan_Name": "MCOLITE", + "Service_Plan_Id": "70710b6b-3ab4-4a38-9f6d-9f169461650a", + "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN P1)" + }, + { + "Product_Display_Name": "Office 365 Small Business", + "String_Id": "LITEPACK", + "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b", + "Service_Plan_Name": "SHAREPOINTLITE", + "Service_Plan_Id": "a1f3d0a8-84c0-4ae0-bae4-685917b8ab48", + "Service_Plans_Included_Friendly_Names": "SHAREPOINTLITE" + }, + { + "Product_Display_Name": "Office 365 Small Business", + "String_Id": "LITEPACK", + "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "SWAY" + }, + { + "Product_Display_Name": "Office 365 Small Business Premium", + "String_Id": "LITEPACK_P2", + "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b", + "Service_Plan_Name": "EXCHANGE_L_STANDARD", + "Service_Plan_Id": "d42bdbd6-c335-4231-ab3d-c8f348d5aff5", + "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (P1)" + }, + { + "Product_Display_Name": "Office 365 Small Business Premium", + "String_Id": "LITEPACK_P2", + "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b", + "Service_Plan_Name": "MCOLITE", + "Service_Plan_Id": "70710b6b-3ab4-4a38-9f6d-9f169461650a", + "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN P1)" + }, + { + "Product_Display_Name": "Office 365 Small Business Premium", + "String_Id": "LITEPACK_P2", + "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b", + "Service_Plan_Name": "OFFICE_PRO_PLUS_SUBSCRIPTION_SMBIZ", + "Service_Plan_Id": "8ca59559-e2ca-470b-b7dd-afd8c0dee963", + "Service_Plans_Included_Friendly_Names": "OFFICE 365 SMALL BUSINESS SUBSCRIPTION" + }, + { + "Product_Display_Name": "Office 365 Small Business Premium", + "String_Id": "LITEPACK_P2", + "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b", + "Service_Plan_Name": "SHAREPOINTLITE", + "Service_Plan_Id": "a1f3d0a8-84c0-4ae0-bae4-685917b8ab48", + "Service_Plans_Included_Friendly_Names": "SHAREPOINTLITE" + }, + { + "Product_Display_Name": "Office 365 Small Business Premium", + "String_Id": "LITEPACK_P2", + "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "SWAY" + }, + { + "Product_Display_Name": "Office Mobile Apps for Office 365 for GCC", + "String_Id": "OFFICEMOBILE_SUBSCRIPTION_GOV_TEST", + "GUID": "64fca79f-c471-4e13-a335-9069cddf8aeb", + "Service_Plan_Name": "DYN365_CDS_PROJECT_GCC", + "Service_Plan_Id": "83837d9c-c21a-46a0-873e-d834c94015d6", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Project for GCC" + }, + { + "Product_Display_Name": "Office Mobile Apps for Office 365 for GCC", + "String_Id": "OFFICEMOBILE_SUBSCRIPTION_GOV_TEST", + "GUID": "64fca79f-c471-4e13-a335-9069cddf8aeb", + "Service_Plan_Name": "FLOW_FOR_PROJECT_GCC", + "Service_Plan_Id": "7251de8f-ecfb-481e-bcff-4af4f1a4573c", + "Service_Plans_Included_Friendly_Names": "Data integration for Project with Power Automate for GCC" + }, + { + "Product_Display_Name": "Office Mobile Apps for Office 365 for GCC", + "String_Id": "OFFICEMOBILE_SUBSCRIPTION_GOV_TEST", + "GUID": "64fca79f-c471-4e13-a335-9069cddf8aeb", + "Service_Plan_Name": "MICROSOFT_SEARCH", + "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", + "Service_Plans_Included_Friendly_Names": "Microsoft Search" + }, + { + "Product_Display_Name": "Office Mobile Apps for Office 365 for GCC", + "String_Id": "OFFICEMOBILE_SUBSCRIPTION_GOV_TEST", + "GUID": "64fca79f-c471-4e13-a335-9069cddf8aeb", + "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION_GOV", + "Service_Plan_Id": "4ccb60ee-9523-48fd-8f63-4b090f1ad77a", + "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365 for GCC" + }, + { + "Product_Display_Name": "Office Mobile Apps for Office 365 for GCC", + "String_Id": "OFFICEMOBILE_SUBSCRIPTION_GOV_TEST", + "GUID": "64fca79f-c471-4e13-a335-9069cddf8aeb", + "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION_GOV", + "Service_Plan_Id": "45c6831b-ad74-4c7f-bd03-7c2b3fa39067", + "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" + }, + { + "Product_Display_Name": "Office Mobile Apps for Office 365 for GCC", + "String_Id": "OFFICEMOBILE_SUBSCRIPTION_GOV_TEST", + "GUID": "64fca79f-c471-4e13-a335-9069cddf8aeb", + "Service_Plan_Name": "PROJECT_PROFESSIONAL_FOR_GOV", + "Service_Plan_Id": "49c7bc16-7004-4df6-8cd5-4ec48b7e9ea0", + "Service_Plans_Included_Friendly_Names": "Project P3 for GOV" + }, + { + "Product_Display_Name": "Office Mobile Apps for Office 365 for GCC", + "String_Id": "OFFICEMOBILE_SUBSCRIPTION_GOV_TEST", + "GUID": "64fca79f-c471-4e13-a335-9069cddf8aeb", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Office Mobile Apps for Office 365 for GCC", + "String_Id": "OFFICEMOBILE_SUBSCRIPTION_GOV_TEST", + "GUID": "64fca79f-c471-4e13-a335-9069cddf8aeb", + "Service_Plan_Name": "FLOW_FOR_PROJECT_GOV", + "Service_Plan_Id": "16687e20-06f9-4577-9cc0-34a2704260fc", + "Service_Plans_Included_Friendly_Names": "Data integration for Project with Power Automate for GCC" + }, + { + "Product_Display_Name": "OneDrive for Business (Plan 1)", + "String_Id": "WACONEDRIVESTANDARD", + "GUID": "e6778190-713e-4e4f-9119-8b8238de25df", + "Service_Plan_Name": "FORMS_PLAN_E1", + "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", + "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" + }, + { + "Product_Display_Name": "OneDrive for Business (Plan 1)", + "String_Id": "WACONEDRIVESTANDARD", + "GUID": "e6778190-713e-4e4f-9119-8b8238de25df", + "Service_Plan_Name": "ONEDRIVESTANDARD", + "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", + "Service_Plans_Included_Friendly_Names": "ONEDRIVESTANDARD" + }, + { + "Product_Display_Name": "OneDrive for Business (Plan 1)", + "String_Id": "WACONEDRIVESTANDARD", + "GUID": "e6778190-713e-4e4f-9119-8b8238de25df", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" + }, + { + "Product_Display_Name": "OneDrive for Business (Plan 1)", + "String_Id": "WACONEDRIVESTANDARD", + "GUID": "e6778190-713e-4e4f-9119-8b8238de25df", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "SWAY" + }, + { + "Product_Display_Name": "OneDrive for Business (Plan 2)", + "String_Id": "WACONEDRIVEENTERPRISE", + "GUID": "ed01faf2-1d88-4947-ae91-45ca18703a96", + "Service_Plan_Name": "ONEDRIVEENTERPRISE", + "Service_Plan_Id": "afcafa6a-d966-4462-918c-ec0b4e0fe642", + "Service_Plans_Included_Friendly_Names": "ONEDRIVEENTERPRISE" + }, + { + "Product_Display_Name": "OneDrive for Business (Plan 2)", + "String_Id": "WACONEDRIVEENTERPRISE", + "GUID": "ed01faf2-1d88-4947-ae91-45ca18703a96", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" + }, + { + "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "String_Id": "POWERFLOWGCC_TEST", + "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", + "Service_Plan_Name": "DYN365_CDS_PROJECT_GCC", + "Service_Plan_Id": "83837d9c-c21a-46a0-873e-d834c94015d6", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Project for GCC" + }, + { + "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "String_Id": "POWERFLOWGCC_TEST", + "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", + "Service_Plan_Name": "CDSAICAPACITY_PERAPP", + "Service_Plan_Id": "5d7a2e9a-4ee5-4f1c-bc9f-abc481bf39d8", + "Service_Plans_Included_Friendly_Names": "AI Builder capacity Per App add-on" + }, + { + "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "String_Id": "POWERFLOWGCC_TEST", + "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", + "Service_Plan_Name": "DYN365_CDS_P1_GOV", + "Service_Plan_Id": "ce361df2-f2a5-4713-953f-4050ba09aad8", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Government" + }, + { + "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "String_Id": "POWERFLOWGCC_TEST", + "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", + "Service_Plan_Name": "DYN365_CDS_P2_GOV", + "Service_Plan_Id": "37396c73-2203-48e6-8be1-d882dae53275", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Government" + }, + { + "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "String_Id": "POWERFLOWGCC_TEST", + "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", + "Service_Plan_Name": "DYN365_CDS_FOR_PROJECT_GCC_P5", + "Service_Plan_Id": "684a2229-5c57-43ab-b69f-f86fe8997358", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Project P5 for GCC" + }, + { + "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "String_Id": "POWERFLOWGCC_TEST", + "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", + "Service_Plan_Name": "FLOW_FOR_PROJECT_GOV", + "Service_Plan_Id": "16687e20-06f9-4577-9cc0-34a2704260fc", + "Service_Plans_Included_Friendly_Names": "Data integration for Project with Power Automate for GCC" + }, + { + "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "String_Id": "POWERFLOWGCC_TEST", + "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", + "Service_Plan_Name": "CDSAICAPACITY_PERUSER", + "Service_Plan_Id": "91f50f7b-2204-4803-acac-5cf5668b8b39", + "Service_Plans_Included_Friendly_Names": "DO NOT USE - AI Builder capacity Per User add-on" + }, + { + "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "String_Id": "POWERFLOWGCC_TEST", + "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", + "Service_Plan_Name": "POWERAPPS_O365_S1_GOV", + "Service_Plan_Id": "49f06c3d-da7d-4fa0-bcce-1458fdd18a59", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3 for Government" + }, + { + "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "String_Id": "POWERFLOWGCC_TEST", + "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", + "Service_Plan_Name": "POWERAPPS_O365_P1_GOV", + "Service_Plan_Id": "c42aa49a-f357-45d5-9972-bc29df885fee", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" + }, + { + "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "String_Id": "POWERFLOWGCC_TEST", + "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", + "Service_Plan_Name": "POWERAPPS_O365_P2_GOV", + "Service_Plan_Id": "0a20c815-5e81-4727-9bdc-2b5a117850c3", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" + }, + { + "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "String_Id": "POWERFLOWGCC_TEST", + "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", + "Service_Plan_Name": "POWERAPPS_O365_P3_GOV", + "Service_Plan_Id": "0eacfc38-458a-40d3-9eab-9671258f1a3e", + "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" + }, + { + "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "String_Id": "POWERFLOWGCC_TEST", + "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", + "Service_Plan_Name": "FLOW_DYN_APPS_GOV", + "Service_Plan_Id": "2c6af4f1-e7b6-4d59-bbc8-eaa884f42d69", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "String_Id": "POWERFLOWGCC_TEST", + "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", + "Service_Plan_Name": "FLOW_DYN_TEAM_GOV", + "Service_Plan_Id": "47bdde6a-959f-4c7f-8d59-3243e34f1cb3", + "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 Team Members for Government" + }, + { + "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "String_Id": "POWERFLOWGCC_TEST", + "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", + "Service_Plan_Name": "FLOW_O365_S1_GOV", + "Service_Plan_Id": "5d32692e-5b24-4a59-a77e-b2a8650e25c1", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3 for Government" + }, + { + "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "String_Id": "POWERFLOWGCC_TEST", + "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", + "Service_Plan_Name": "FLOW_O365_P1_GOV", + "Service_Plan_Id": "ad6c8870-6356-474c-901c-64d7da8cea48", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" + }, + { + "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "String_Id": "POWERFLOWGCC_TEST", + "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", + "Service_Plan_Name": "FLOW_O365_P2_GOV", + "Service_Plan_Id": "c537f360-6a00-4ace-a7f5-9128d0ac1e4b", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" + }, + { + "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "String_Id": "POWERFLOWGCC_TEST", + "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", + "Service_Plan_Name": "FLOW_O365_P3_GOV", + "Service_Plan_Id": "8055d84a-c172-42eb-b997-6c2ae4628246", + "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" + }, + { + "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "String_Id": "POWERFLOWGCC_TEST", + "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", + "Service_Plan_Name": "FLOW_DYN_P2_GOV", + "Service_Plan_Id": "06879193-37cc-4976-8991-f8165c994ce7", + "Service_Plans_Included_Friendly_Names": "Power Automate P2 for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "String_Id": "POWERFLOWGCC_TEST", + "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", + "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", + "Service_Plan_Id": "3089c02b-e533-4b73-96a5-01fa648c3c3c", + "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "String_Id": "POWERFLOWGCC_TEST", + "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", + "Service_Plan_Name": "POWERAPPS_DYN_TEAM_GOV", + "Service_Plan_Id": "63efc247-5f28-43e3-a2f8-00c183e3f1db", + "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 Team Members for Government" + }, + { + "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "String_Id": "POWERFLOWGCC_TEST", + "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", + "Service_Plan_Name": "POWERAPPS_DYN_P2_GOV", + "Service_Plan_Id": "51729bb5-7564-4927-8df8-9f5b12279cf3", + "Service_Plans_Included_Friendly_Names": "PowerApps Plan 2 for Dynamics 365 for Government" + }, + { + "Product_Display_Name": "Power Apps and Logic Flows", + "String_Id": "POWERAPPS_INDIVIDUAL_USER", + "GUID": "87bbbc60-4754-4998-8c88-227dca264858", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" + }, + { + "Product_Display_Name": "Power Apps and Logic Flows", + "String_Id": "POWERAPPS_INDIVIDUAL_USER", + "GUID": "87bbbc60-4754-4998-8c88-227dca264858", + "Service_Plan_Name": "POWERFLOWSFREE", + "Service_Plan_Id": "0b4346bb-8dc3-4079-9dfc-513696f56039", + "Service_Plans_Included_Friendly_Names": "LOGIC FLOWS" + }, + { + "Product_Display_Name": "Power Apps and Logic Flows", + "String_Id": "POWERAPPS_INDIVIDUAL_USER", + "GUID": "87bbbc60-4754-4998-8c88-227dca264858", + "Service_Plan_Name": "POWERVIDEOSFREE", + "Service_Plan_Id": "2c4ec2dc-c62d-4167-a966-52a3e6374015", + "Service_Plans_Included_Friendly_Names": "MICROSOFT POWER VIDEOS BASIC" + }, + { + "Product_Display_Name": "Power Apps and Logic Flows", + "String_Id": "POWERAPPS_INDIVIDUAL_USER", + "GUID": "87bbbc60-4754-4998-8c88-227dca264858", + "Service_Plan_Name": "POWERAPPSFREE", + "Service_Plan_Id": "e61a2945-1d4e-4523-b6e7-30ba39d20f32", + "Service_Plans_Included_Friendly_Names": "MICROSOFT POWERAPPS" + }, + { + "Product_Display_Name": "PowerApps per app baseline access", + "String_Id": "POWERAPPS_PER_APP_IW", + "GUID": "bf666882-9c9b-4b2e-aa2f-4789b0a52ba2", + "Service_Plan_Name": "CDS_PER_APP_IWTRIAL", + "Service_Plan_Id": "94a669d1-84d5-4e54-8462-53b0ae2c8be5", + "Service_Plans_Included_Friendly_Names": "CDS Per app baseline access" + }, + { + "Product_Display_Name": "PowerApps per app baseline access", + "String_Id": "POWERAPPS_PER_APP_IW", + "GUID": "bf666882-9c9b-4b2e-aa2f-4789b0a52ba2", + "Service_Plan_Name": "Flow_Per_APP_IWTRIAL", + "Service_Plan_Id": "dd14867e-8d31-4779-a595-304405f5ad39", + "Service_Plans_Included_Friendly_Names": "Flow per app baseline access" + }, + { + "Product_Display_Name": "PowerApps per app baseline access", + "String_Id": "POWERAPPS_PER_APP_IW", + "GUID": "bf666882-9c9b-4b2e-aa2f-4789b0a52ba2", + "Service_Plan_Name": "POWERAPPS_PER_APP_IWTRIAL", + "Service_Plan_Id": "35122886-cef5-44a3-ab36-97134eabd9ba", + "Service_Plans_Included_Friendly_Names": "PowerApps per app baseline access" + }, + { + "Product_Display_Name": "Power Apps Per App BD Only for GCC", + "String_Id": "POWERAPPS_PER_APP_BD_ONLY_GCC", + "GUID": "cdc8d0fc-fd16-4954-aae6-ed89a99f5620", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Power Apps Per App BD Only for GCC", + "String_Id": "POWERAPPS_PER_APP_BD_ONLY_GCC", + "GUID": "cdc8d0fc-fd16-4954-aae6-ed89a99f5620", + "Service_Plan_Name": "CDS_ POWERAPPS_PER_APP_CUSTOM_GCC", + "Service_Plan_Id": "ee493f70-a3b3-4204-9511-e3f6083b8df3", + "Service_Plans_Included_Friendly_Names": "CDS Power Apps Per App Custom GCC" + }, + { + "Product_Display_Name": "Power Apps Per App BD Only for GCC", + "String_Id": "POWERAPPS_PER_APP_BD_ONLY_GCC", + "GUID": "cdc8d0fc-fd16-4954-aae6-ed89a99f5620", + "Service_Plan_Name": "POWERAPPS_PER_APP_GCC", + "Service_Plan_Id": "be6e5cba-3661-424c-b79a-6d95fa1d849a", + "Service_Plans_Included_Friendly_Names": "Power Apps per App Plan for Government" + }, + { + "Product_Display_Name": "Power Apps Per App BD Only for GCC", + "String_Id": "POWERAPPS_PER_APP_BD_ONLY_GCC", + "GUID": "cdc8d0fc-fd16-4954-aae6-ed89a99f5620", + "Service_Plan_Name": "Flow_Per_APP_GCC", + "Service_Plan_Id": "8e2c2c3d-07f6-4da7-86a9-e78cc8c2c8b9", + "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per App Plan for Government" + }, + { + "Product_Display_Name": "Power Apps per app plan", + "String_Id": "POWERAPPS_PER_APP", + "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206", + "Service_Plan_Name": "CDS_PER_APP", + "Service_Plan_Id": "9f2f00ad-21ae-4ceb-994b-d8bc7be90999", + "Service_Plans_Included_Friendly_Names": "CDS PowerApps per app plan" + }, + { + "Product_Display_Name": "Power Apps per app plan", + "String_Id": "POWERAPPS_PER_APP", + "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Power Apps per app plan", + "String_Id": "POWERAPPS_PER_APP", + "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206", + "Service_Plan_Name": "POWERAPPS_PER_APP", + "Service_Plan_Id": "b4f657ff-d83e-4053-909d-baa2b595ec97", + "Service_Plans_Included_Friendly_Names": "Power Apps per App Plan" + }, + { + "Product_Display_Name": "Power Apps per app plan", + "String_Id": "POWERAPPS_PER_APP", + "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206", + "Service_Plan_Name": "Flow_Per_APP", + "Service_Plan_Id": "c539fa36-a64e-479a-82e1-e40ff2aa83ee", + "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per App Plan" + }, + { + "Product_Display_Name": "Power Apps per app plan (1 app or portal)", + "String_Id": "POWERAPPS_PER_APP_NEW", + "GUID": "b4d7b828-e8dc-4518-91f9-e123ae48440d", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Power Apps per app plan (1 app or portal)", + "String_Id": "POWERAPPS_PER_APP_NEW", + "GUID": "b4d7b828-e8dc-4518-91f9-e123ae48440d", + "Service_Plan_Name": "CDSAICAPACITY_PERAPP", + "Service_Plan_Id": "5d7a2e9a-4ee5-4f1c-bc9f-abc481bf39d8", + "Service_Plans_Included_Friendly_Names": "AI Builder capacity Per App add-on" + }, + { + "Product_Display_Name": "Power Apps per app plan (1 app or portal)", + "String_Id": "POWERAPPS_PER_APP_NEW", + "GUID": "b4d7b828-e8dc-4518-91f9-e123ae48440d", + "Service_Plan_Name": "DATAVERSE_POWERAPPS_PER_APP_NEW", + "Service_Plan_Id": "6f0e9100-ff66-41ce-96fc-3d8b7ad26887", + "Service_Plans_Included_Friendly_Names": "Dataverse for Power Apps per app" + }, + { + "Product_Display_Name": "Power Apps per app plan (1 app or portal)", + "String_Id": "POWERAPPS_PER_APP_NEW", + "GUID": "b4d7b828-e8dc-4518-91f9-e123ae48440d", + "Service_Plan_Name": "POWERAPPS_PER_APP_NEW", + "Service_Plan_Id": "14f8dac2-0784-4daa-9cb2-6d670b088d64", + "Service_Plans_Included_Friendly_Names": "Power Apps per app" + }, + { + "Product_Display_Name": "Power Apps per app plan (1 app or portal)", + "String_Id": "POWERAPPS_PER_APP_NEW", + "GUID": "b4d7b828-e8dc-4518-91f9-e123ae48440d", + "Service_Plan_Name": "Flow_Per_APP", + "Service_Plan_Id": "c539fa36-a64e-479a-82e1-e40ff2aa83ee", + "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per App Plan" + }, + { + "Product_Display_Name": "Power Apps per app plan (1 app or website) BD Only - GCC", + "String_Id": "Power_Apps_per_app_plan_(1_app_or_portal)_BD_Only_GCC", + "GUID": "816ee058-f70c-42ad-b433-d6171984ea20", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Power Apps per app plan (1 app or website) BD Only - GCC", + "String_Id": "Power_Apps_per_app_plan_(1_app_or_portal)_BD_Only_GCC", + "GUID": "816ee058-f70c-42ad-b433-d6171984ea20", + "Service_Plan_Name": "CDS_ POWERAPPS_PER_APP_CUSTOM_NEW", + "Service_Plan_Id": "c2da6658-f89d-49f2-9508-40431dee115b", + "Service_Plans_Included_Friendly_Names": "CDS Power Apps Per App Custom New" + }, + { + "Product_Display_Name": "Power Apps per app plan (1 app or website) BD Only - GCC", + "String_Id": "Power_Apps_per_app_plan_(1_app_or_portal)_BD_Only_GCC", + "GUID": "816ee058-f70c-42ad-b433-d6171984ea20", + "Service_Plan_Name": "POWERAPPS_PER_APP_GCC_NEW", + "Service_Plan_Id": "70091fc8-1836-470f-a386-f4e6639cb04e", + "Service_Plans_Included_Friendly_Names": "Power Apps per app for GCC" + }, + { + "Product_Display_Name": "Power Apps per app plan (1 app or website) BD Only - GCC", + "String_Id": "Power_Apps_per_app_plan_(1_app_or_portal)_BD_Only_GCC", + "GUID": "816ee058-f70c-42ad-b433-d6171984ea20", + "Service_Plan_Name": "Flow_Per_APP_GCC", + "Service_Plan_Id": "8e2c2c3d-07f6-4da7-86a9-e78cc8c2c8b9", + "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per App Plan for Government" + }, + { + "Product_Display_Name": "Power Apps per app plan (1 app or website) for Government", + "String_Id": "POWERAPPS_PER_APP_GCC_NEW", + "GUID": "c14d7f00-457c-4e3e-8960-48f35459b3c9", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Power Apps per app plan (1 app or website) for Government", + "String_Id": "POWERAPPS_PER_APP_GCC_NEW", + "GUID": "c14d7f00-457c-4e3e-8960-48f35459b3c9", + "Service_Plan_Name": "CDSAICAPACITY_PERAPP", + "Service_Plan_Id": "5d7a2e9a-4ee5-4f1c-bc9f-abc481bf39d8", + "Service_Plans_Included_Friendly_Names": "AI Builder capacity Per App add-on" + }, + { + "Product_Display_Name": "Power Apps per app plan (1 app or website) for Government", + "String_Id": "POWERAPPS_PER_APP_GCC_NEW", + "GUID": "c14d7f00-457c-4e3e-8960-48f35459b3c9", + "Service_Plan_Name": "DATAVERSE_POWERAPPS_PER_APP_NEW", + "Service_Plan_Id": "6f0e9100-ff66-41ce-96fc-3d8b7ad26887", + "Service_Plans_Included_Friendly_Names": "Dataverse for Power Apps per app" + }, + { + "Product_Display_Name": "Power Apps per app plan (1 app or website) for Government", + "String_Id": "POWERAPPS_PER_APP_GCC_NEW", + "GUID": "c14d7f00-457c-4e3e-8960-48f35459b3c9", + "Service_Plan_Name": "POWERAPPS_PER_APP_GCC_NEW", + "Service_Plan_Id": "70091fc8-1836-470f-a386-f4e6639cb04e", + "Service_Plans_Included_Friendly_Names": "Power Apps per app for GCC" + }, + { + "Product_Display_Name": "Power Apps per app plan (1 app or website) for Government", + "String_Id": "POWERAPPS_PER_APP_GCC_NEW", + "GUID": "c14d7f00-457c-4e3e-8960-48f35459b3c9", + "Service_Plan_Name": "Flow_Per_APP_GCC", + "Service_Plan_Id": "8e2c2c3d-07f6-4da7-86a9-e78cc8c2c8b9", + "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per App Plan for Government" + }, + { + "Product_Display_Name": "Power Apps per app plan for Government", + "String_Id": "POWERAPPS_PER_APP_GCC", + "GUID": "8623b2d7-5e24-4281-b6b7-086a5f3b0b1c", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Power Apps per app plan for Government", + "String_Id": "POWERAPPS_PER_APP_GCC", + "GUID": "8623b2d7-5e24-4281-b6b7-086a5f3b0b1c", + "Service_Plan_Name": "CDS_PER_APP_GCC", + "Service_Plan_Id": "d7f9c9bc-0a28-4da4-b5f1-731acb27a3e4", + "Service_Plans_Included_Friendly_Names": "CDS PowerApps per app plan for GCC" + }, + { + "Product_Display_Name": "Power Apps per app plan for Government", + "String_Id": "POWERAPPS_PER_APP_GCC", + "GUID": "8623b2d7-5e24-4281-b6b7-086a5f3b0b1c", + "Service_Plan_Name": "POWERAPPS_PER_APP_GCC", + "Service_Plan_Id": "be6e5cba-3661-424c-b79a-6d95fa1d849a", + "Service_Plans_Included_Friendly_Names": "Power Apps per App Plan for Government" + }, + { + "Product_Display_Name": "Power Apps per app plan for Government", + "String_Id": "POWERAPPS_PER_APP_GCC", + "GUID": "8623b2d7-5e24-4281-b6b7-086a5f3b0b1c", + "Service_Plan_Name": "Flow_Per_APP_GCC", + "Service_Plan_Id": "8e2c2c3d-07f6-4da7-86a9-e78cc8c2c8b9", + "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per App Plan for Government" + }, + { + "Product_Display_Name": "Power Apps per user plan", + "String_Id": "POWERAPPS_PER_USER", + "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579", + "Service_Plan_Name": "DYN365_CDS_P2", + "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", + "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" + }, + { + "Product_Display_Name": "Power Apps per user plan", + "String_Id": "POWERAPPS_PER_USER", + "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Power Apps per user plan", + "String_Id": "POWERAPPS_PER_USER", + "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579", + "Service_Plan_Name": "POWERAPPS_PER_USER", + "Service_Plan_Id": "ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86", + "Service_Plans_Included_Friendly_Names": "Power Apps per User Plan" + }, + { + "Product_Display_Name": "Power Apps per user plan", + "String_Id": "POWERAPPS_PER_USER", + "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579", + "Service_Plan_Name": "Flow_PowerApps_PerUser", + "Service_Plan_Id": "dc789ed8-0170-4b65-a415-eb77d5bb350a", + "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per User Plan" + }, + { + "Product_Display_Name": "Power Apps per user plan for Government", + "String_Id": "POWERAPPS_PER_USER_GCC", + "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1", + "Service_Plan_Name": "CDSAICAPACITY_PERUSER", + "Service_Plan_Id": "91f50f7b-2204-4803-acac-5cf5668b8b39", + "Service_Plans_Included_Friendly_Names": "AI Builder capacity Per User add-on" + }, + { + "Product_Display_Name": "Power Apps per user plan for Government", + "String_Id": "POWERAPPS_PER_USER_GCC", + "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1", + "Service_Plan_Name": "CDSAICAPACITY_PERUSER_NEW", + "Service_Plan_Id": "74d93933-6f22-436e-9441-66d205435abb", + "Service_Plans_Included_Friendly_Names": "AI Builder capacity Per User add-on" + }, + { + "Product_Display_Name": "Power Apps per user plan for Government", + "String_Id": "POWERAPPS_PER_USER_GCC", + "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1", + "Service_Plan_Name": "DYN365_CDS_P2_GOV", + "Service_Plan_Id": "37396c73-2203-48e6-8be1-d882dae53275", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Government" + }, + { + "Product_Display_Name": "Power Apps per user plan for Government", + "String_Id": "POWERAPPS_PER_USER_GCC", + "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Power Apps per user plan for Government", + "String_Id": "POWERAPPS_PER_USER_GCC", + "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1", + "Service_Plan_Name": "POWERAPPS_PER_USER_GCC", + "Service_Plan_Id": "8f55b472-f8bf-40a9-be30-e29919d4ddfe", + "Service_Plans_Included_Friendly_Names": "Power Apps per User Plan for Government" + }, + { + "Product_Display_Name": "Power Apps per user plan for Government", + "String_Id": "POWERAPPS_PER_USER_GCC", + "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1", + "Service_Plan_Name": "Flow_PowerApps_PerUser_GCC", + "Service_Plan_Id": "8e3eb3bd-bc99-4221-81b8-8b8bc882e128", + "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per User Plan for GCC" + }, + { + "Product_Display_Name": "PowerApps Plan 1 for Government", + "String_Id": "POWERAPPS_P1_GOV", + "GUID": "eca22b68-b31f-4e9c-a20c-4d40287bc5dd", + "Service_Plan_Name": "DYN365_CDS_P1_GOV", + "Service_Plan_Id": "ce361df2-f2a5-4713-953f-4050ba09aad8", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Government" + }, + { + "Product_Display_Name": "PowerApps Plan 1 for Government", + "String_Id": "POWERAPPS_P1_GOV", + "GUID": "eca22b68-b31f-4e9c-a20c-4d40287bc5dd", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "PowerApps Plan 1 for Government", + "String_Id": "POWERAPPS_P1_GOV", + "GUID": "eca22b68-b31f-4e9c-a20c-4d40287bc5dd", + "Service_Plan_Name": "FLOW_P1_GOV", + "Service_Plan_Id": "774da41c-a8b3-47c1-8322-b9c1ab68be9f", + "Service_Plans_Included_Friendly_Names": "Power Automate (Plan 1) for Government" + }, + { + "Product_Display_Name": "PowerApps Plan 1 for Government", + "String_Id": "POWERAPPS_P1_GOV", + "GUID": "eca22b68-b31f-4e9c-a20c-4d40287bc5dd", + "Service_Plan_Name": "POWERAPPS_P1_GOV", + "Service_Plan_Id": "5ce719f1-169f-4021-8a64-7d24dcaec15f", + "Service_Plans_Included_Friendly_Names": "PowerApps Plan 1 for Government" + }, + { + "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min)", + "String_Id": "POWERAPPS_PORTALS_LOGIN_T2", + "GUID": "57f3babd-73ce-40de-bcb2-dadbfbfff9f7", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min)", + "String_Id": "POWERAPPS_PORTALS_LOGIN_T2", + "GUID": "57f3babd-73ce-40de-bcb2-dadbfbfff9f7", + "Service_Plan_Name": "CDS_POWERAPPS_PORTALS_LOGIN", + "Service_Plan_Id": "32ad3a4e-2272-43b4-88d0-80d284258208", + "Service_Plans_Included_Friendly_Names": "Common Data Service Power Apps Portals Login Capacity" + }, + { + "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min)", + "String_Id": "POWERAPPS_PORTALS_LOGIN_T2", + "GUID": "57f3babd-73ce-40de-bcb2-dadbfbfff9f7", + "Service_Plan_Name": "POWERAPPS_PORTALS_LOGIN", + "Service_Plan_Id": "084747ad-b095-4a57-b41f-061d84d69f6f", + "Service_Plans_Included_Friendly_Names": "Power Apps Portals Login Capacity Add-On" + }, + { + "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min) for Government", + "String_Id": "POWERAPPS_PORTALS_LOGIN_T2_GCC", + "GUID": "26c903d5-d385-4cb1-b650-8d81a643b3c4", + "Service_Plan_Name": "CDS_POWERAPPS_PORTALS_LOGIN_GCC", + "Service_Plan_Id": "0f7b9a29-7990-44ff-9d05-a76be778f410", + "Service_Plans_Included_Friendly_Names": "Common Data Service Power Apps Portals Login Capacity for GCC" + }, + { + "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min) for Government", + "String_Id": "POWERAPPS_PORTALS_LOGIN_T2_GCC", + "GUID": "26c903d5-d385-4cb1-b650-8d81a643b3c4", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min) for Government", + "String_Id": "POWERAPPS_PORTALS_LOGIN_T2_GCC", + "GUID": "26c903d5-d385-4cb1-b650-8d81a643b3c4", + "Service_Plan_Name": "POWERAPPS_PORTALS_LOGIN_GCC", + "Service_Plan_Id": "bea6aef1-f52d-4cce-ae09-bed96c4b1811", + "Service_Plans_Included_Friendly_Names": "Power Apps Portals Login Capacity Add-On for Government" + }, + { + "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 3 (50 unit min)", + "String_Id": "POWERAPPS_PORTALS_LOGIN_T3", + "GUID": "927d8402-8d3b-40e8-b779-34e859f7b497", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 3 (50 unit min)", + "String_Id": "POWERAPPS_PORTALS_LOGIN_T3", + "GUID": "927d8402-8d3b-40e8-b779-34e859f7b497", + "Service_Plan_Name": "CDS_POWERAPPS_PORTALS_LOGIN", + "Service_Plan_Id": "32ad3a4e-2272-43b4-88d0-80d284258208", + "Service_Plans_Included_Friendly_Names": "Common Data Service Power Apps Portals Login Capacity" + }, + { + "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 3 (50 unit min)", + "String_Id": "POWERAPPS_PORTALS_LOGIN_T3", + "GUID": "927d8402-8d3b-40e8-b779-34e859f7b497", + "Service_Plan_Name": "POWERAPPS_PORTALS_LOGIN", + "Service_Plan_Id": "084747ad-b095-4a57-b41f-061d84d69f6f", + "Service_Plans_Included_Friendly_Names": "Power Apps Portals Login Capacity Add-On" + }, + { + "Product_Display_Name": "Power Apps Portals page view capacity add-on", + "String_Id": "POWERAPPS_PORTALS_PAGEVIEW", + "GUID": "a0de5e3a-2500-4a19-b8f4-ec1c64692d22", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Power Apps Portals page view capacity add-on", + "String_Id": "POWERAPPS_PORTALS_PAGEVIEW", + "GUID": "a0de5e3a-2500-4a19-b8f4-ec1c64692d22", + "Service_Plan_Name": "CDS_POWERAPPS_PORTALS_PAGEVIEW", + "Service_Plan_Id": "72c30473-7845-460a-9feb-b58f216e8694", + "Service_Plans_Included_Friendly_Names": "CDS PowerApps Portals page view capacity add-on" + }, + { + "Product_Display_Name": "Power Apps Portals page view capacity add-on", + "String_Id": "POWERAPPS_PORTALS_PAGEVIEW", + "GUID": "a0de5e3a-2500-4a19-b8f4-ec1c64692d22", + "Service_Plan_Name": "POWERAPPS_PORTALS_PAGEVIEW", + "Service_Plan_Id": "1c5a559a-ec06-4f76-be5b-6a315418495f", + "Service_Plans_Included_Friendly_Names": "Power Apps Portals Page View Capacity Add-On" + }, + { + "Product_Display_Name": "Power Apps Portals page view capacity add-on for Government", + "String_Id": "POWERAPPS_PORTALS_PAGEVIEW_GCC", + "GUID": "15a64d3e-5b99-4c4b-ae8f-aa6da264bfe7", + "Service_Plan_Name": "CDS_POWERAPPS_PORTALS_PAGEVIEW_GCC", + "Service_Plan_Id": "352257a9-db78-4217-a29d-8b8d4705b014", + "Service_Plans_Included_Friendly_Names": "CDS PowerApps Portals page view capacity add-on for GCC" + }, + { + "Product_Display_Name": "Power Apps Portals page view capacity add-on for Government", + "String_Id": "POWERAPPS_PORTALS_PAGEVIEW_GCC", + "GUID": "15a64d3e-5b99-4c4b-ae8f-aa6da264bfe7", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Power Apps Portals page view capacity add-on for Government", + "String_Id": "POWERAPPS_PORTALS_PAGEVIEW_GCC", + "GUID": "15a64d3e-5b99-4c4b-ae8f-aa6da264bfe7", + "Service_Plan_Name": "POWERAPPS_PORTALS_PAGEVIEW_GCC", + "Service_Plan_Id": "483d5646-7724-46ac-ad71-c78b7f099d8d", + "Service_Plans_Included_Friendly_Names": "Power Apps Portals Page View Capacity Add-On for Government" + }, + { + "Product_Display_Name": "Power Automate per flow plan", + "String_Id": "FLOW_BUSINESS_PROCESS", + "GUID": "b3a42176-0a8c-4c3f-ba4e-f2b37fe5be6b", + "Service_Plan_Name": "CDS_Flow_Business_Process", + "Service_Plan_Id": "c84e52ae-1906-4947-ac4d-6fb3e5bf7c2e", + "Service_Plans_Included_Friendly_Names": "Common data service for Flow per business process plan" + }, + { + "Product_Display_Name": "Power Automate per flow plan", + "String_Id": "FLOW_BUSINESS_PROCESS", + "GUID": "b3a42176-0a8c-4c3f-ba4e-f2b37fe5be6b", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Power Automate per flow plan", + "String_Id": "FLOW_BUSINESS_PROCESS", + "GUID": "b3a42176-0a8c-4c3f-ba4e-f2b37fe5be6b", + "Service_Plan_Name": "FLOW_BUSINESS_PROCESS", + "Service_Plan_Id": "7e017b61-a6e0-4bdc-861a-932846591f6e", + "Service_Plans_Included_Friendly_Names": "Flow per business process plan" + }, + { + "Product_Display_Name": "Power Automate per flow plan for Government", + "String_Id": "FLOW_BUSINESS_PROCESS_GCC", + "GUID": "d9de51e5-d8cd-45bb-8da3-1d55e28c52e6", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Power Automate per flow plan for Government", + "String_Id": "FLOW_BUSINESS_PROCESS_GCC", + "GUID": "d9de51e5-d8cd-45bb-8da3-1d55e28c52e6", + "Service_Plan_Name": "CDS_Flow_Business_Process_GCC", + "Service_Plan_Id": "54b61386-c818-4634-8400-61c9e8f6acd3", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Power Automate per Business Process Plan for GCC" + }, + { + "Product_Display_Name": "Power Automate per flow plan for Government", + "String_Id": "FLOW_BUSINESS_PROCESS_GCC", + "GUID": "d9de51e5-d8cd-45bb-8da3-1d55e28c52e6", + "Service_Plan_Name": "FLOW_BUSINESS_PROCESS_GCC", + "Service_Plan_Id": "cb83e771-a077-4a73-9201-d955585b29fa", + "Service_Plans_Included_Friendly_Names": "Power Automate per Business Process Plan for Government" + }, + { + "Product_Display_Name": "Power Automate per user plan", + "String_Id": "FLOW_PER_USER", + "GUID": "4a51bf65-409c-4a91-b845-1121b571cc9d", + "Service_Plan_Name": "DYN365_CDS_P2", + "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", + "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" + }, + { + "Product_Display_Name": "Power Automate per user plan", + "String_Id": "FLOW_PER_USER", + "GUID": "4a51bf65-409c-4a91-b845-1121b571cc9d", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Power Automate per user plan", + "String_Id": "FLOW_PER_USER", + "GUID": "4a51bf65-409c-4a91-b845-1121b571cc9d", + "Service_Plan_Name": "FLOW_PER_USER", + "Service_Plan_Id": "c5002c70-f725-4367-b409-f0eff4fee6c0", + "Service_Plans_Included_Friendly_Names": "Flow per user plan" + }, + { + "Product_Display_Name": "Power Automate per user plan dept", + "String_Id": "FLOW_PER_USER_DEPT", + "GUID": "d80a4c5d-8f05-4b64-9926-6574b9e6aee4", + "Service_Plan_Name": "DYN365_CDS_P2", + "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", + "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" + }, + { + "Product_Display_Name": "Power Automate per user plan dept", + "String_Id": "FLOW_PER_USER_DEPT", + "GUID": "d80a4c5d-8f05-4b64-9926-6574b9e6aee4", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Power Automate per user plan dept", + "String_Id": "FLOW_PER_USER_DEPT", + "GUID": "d80a4c5d-8f05-4b64-9926-6574b9e6aee4", + "Service_Plan_Name": "FLOW_PER_USER", + "Service_Plan_Id": "c5002c70-f725-4367-b409-f0eff4fee6c0", + "Service_Plans_Included_Friendly_Names": "Flow per user plan" + }, + { + "Product_Display_Name": "Power Automate per user plan for Government", + "String_Id": "FLOW_PER_USER_GCC", + "GUID": "c8803586-c136-479a-8ff3-f5f32d23a68e", + "Service_Plan_Name": "DYN365_CDS_P2_GOV", + "Service_Plan_Id": "37396c73-2203-48e6-8be1-d882dae53275", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Government" + }, + { + "Product_Display_Name": "Power Automate per user plan for Government", + "String_Id": "FLOW_PER_USER_GCC", + "GUID": "c8803586-c136-479a-8ff3-f5f32d23a68e", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Power Automate per user plan for Government", + "String_Id": "FLOW_PER_USER_GCC", + "GUID": "c8803586-c136-479a-8ff3-f5f32d23a68e", + "Service_Plan_Name": "FLOW_PER_USER_GCC", + "Service_Plan_Id": "769b8bee-2779-4c5a-9456-6f4f8629fd41", + "Service_Plans_Included_Friendly_Names": "Power Automate per User Plan for Government" + }, + { + "Product_Display_Name": "Power Automate per user with attended RPA plan", + "String_Id": "POWERAUTOMATE_ATTENDED_RPA", + "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9", + "Service_Plan_Name": "CDS_ATTENDED_RPA", + "Service_Plan_Id": "3da2fd4c-1bee-4b61-a17f-94c31e5cab93", + "Service_Plans_Included_Friendly_Names": "Common Data Service Attended RPA" + }, + { + "Product_Display_Name": "Power Automate per user with attended RPA plan", + "String_Id": "POWERAUTOMATE_ATTENDED_RPA", + "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Power Automate per user with attended RPA plan", + "String_Id": "POWERAUTOMATE_ATTENDED_RPA", + "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9", + "Service_Plan_Name": "POWER_AUTOMATE_ATTENDED_RPA", + "Service_Plan_Id": "375cd0ad-c407-49fd-866a-0bff4f8a9a4d", + "Service_Plans_Included_Friendly_Names": "Power Automate RPA Attended" + }, + { + "Product_Display_Name": "Power Automate Premium for Government", + "String_Id": "POWERAUTOMATE_ATTENDED_RPA_GCC", + "GUID": "d3987516-4b53-4dc0-8335-411260bf5626", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Power Automate Premium for Government", + "String_Id": "POWERAUTOMATE_ATTENDED_RPA_GCC", + "GUID": "d3987516-4b53-4dc0-8335-411260bf5626", + "Service_Plan_Name": "CDS_ATTENDED_RPA_GCC", + "Service_Plan_Id": "4802707d-47e1-45dc-82c5-b6981f0fb38c", + "Service_Plans_Included_Friendly_Names": "Common Data Service Attended RPA for Government" + }, + { + "Product_Display_Name": "Power Automate Premium for Government", + "String_Id": "POWERAUTOMATE_ATTENDED_RPA_GCC", + "GUID": "d3987516-4b53-4dc0-8335-411260bf5626", + "Service_Plan_Name": "POWER_AUTOMATE_ATTENDED_RPA_GCC", + "Service_Plan_Id": "fb613c67-1a58-4645-a8df-21e95a37d433", + "Service_Plans_Included_Friendly_Names": "Power Automate Attended RPA for Government" + }, + { + "Product_Display_Name": "Power Automate unattended RPA add-on", + "String_Id": "POWERAUTOMATE_UNATTENDED_RPA", + "GUID": "3539d28c-6e35-4a30-b3a9-cd43d5d3e0e2", + "Service_Plan_Name": "CDS_UNATTENDED_RPA", + "Service_Plan_Id": "b475952f-128a-4a44-b82a-0b98a45ca7fb", + "Service_Plans_Included_Friendly_Names": "Common Data Service Unattended RPA" + }, + { + "Product_Display_Name": "Power Automate unattended RPA add-on", + "String_Id": "POWERAUTOMATE_UNATTENDED_RPA", + "GUID": "3539d28c-6e35-4a30-b3a9-cd43d5d3e0e2", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Power Automate unattended RPA add-on", + "String_Id": "POWERAUTOMATE_UNATTENDED_RPA", + "GUID": "3539d28c-6e35-4a30-b3a9-cd43d5d3e0e2", + "Service_Plan_Name": "POWER_AUTOMATE_UNATTENDED_RPA", + "Service_Plan_Id": "0d373a98-a27a-426f-8993-f9a425ae99c5", + "Service_Plans_Included_Friendly_Names": "Power Automate Unattended RPA add-on" + }, + { + "Product_Display_Name": "Power Automate unattended RPA add-on for Government", + "String_Id": "POWERAUTOMATE_UNATTENDED_RPA_GCC", + "GUID": "086e9b70-4720-4442-ab6d-3ef32bfb4721", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Power Automate unattended RPA add-on for Government", + "String_Id": "POWERAUTOMATE_UNATTENDED_RPA_GCC", + "GUID": "086e9b70-4720-4442-ab6d-3ef32bfb4721", + "Service_Plan_Name": "CDS_UNATTENDED_RPA_GCC", + "Service_Plan_Id": "5141c408-df3d-456a-9878-a65119b0a750", + "Service_Plans_Included_Friendly_Names": "Common Data Service Unattended RPA for Government" + }, + { + "Product_Display_Name": "Power Automate unattended RPA add-on for Government", + "String_Id": "POWERAUTOMATE_UNATTENDED_RPA_GCC", + "GUID": "086e9b70-4720-4442-ab6d-3ef32bfb4721", + "Service_Plan_Name": "POWER_AUTOMATE_UNATTENDED_RPA_GCC", + "Service_Plan_Id": "45e63e9f-6dd9-41fd-bd41-93bfa008c537", + "Service_Plans_Included_Friendly_Names": "Power Automate Unattended RPA for Government" + }, + { + "Product_Display_Name": "Power BI", + "String_Id": "POWER_BI_INDIVIDUAL_USER", + "GUID": "e2767865-c3c9-4f09-9f99-6eee6eef861a", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Power BI", + "String_Id": "POWER_BI_INDIVIDUAL_USER", + "GUID": "e2767865-c3c9-4f09-9f99-6eee6eef861a", + "Service_Plan_Name": "SQL_IS_SSIM", + "Service_Plan_Id": "fc0a60aa-feee-4746-a0e3-aecfe81a38dd", + "Service_Plans_Included_Friendly_Names": "Microsoft Power BI Information Services Plan 1" + }, + { + "Product_Display_Name": "Power BI", + "String_Id": "POWER_BI_INDIVIDUAL_USER", + "GUID": "e2767865-c3c9-4f09-9f99-6eee6eef861a", + "Service_Plan_Name": "BI_AZURE_P1", + "Service_Plan_Id": "2125cfd7-2110-4567-83c4-c1cd5275163d", + "Service_Plans_Included_Friendly_Names": "Microsoft Power BI Reporting and Analytics Plan 1" + }, + { + "Product_Display_Name": "Power BI for Office 365 Add-On", + "String_Id": "POWER_BI_ADDON", + "GUID": "45bc2c81-6072-436a-9b0b-3b12eefbc402", + "Service_Plan_Name": "BI_AZURE_P1", + "Service_Plan_Id": "2125cfd7-2110-4567-83c4-c1cd5275163d", + "Service_Plans_Included_Friendly_Names": "MICROSOFT POWER BI REPORTING AND ANALYTICS PLAN 1" + }, + { + "Product_Display_Name": "Power BI for Office 365 Add-On", + "String_Id": "POWER_BI_ADDON", + "GUID": "45bc2c81-6072-436a-9b0b-3b12eefbc402", + "Service_Plan_Name": "SQL_IS_SSIM", + "Service_Plan_Id": "fc0a60aa-feee-4746-a0e3-aecfe81a38dd", + "Service_Plans_Included_Friendly_Names": "MICROSOFT POWER BI INFORMATION SERVICES PLAN" + }, + { + "Product_Display_Name": "Power BI Premium P1", + "String_Id": "PBI_PREMIUM_P1_ADDON", + "GUID": "7b26f5ab-a763-4c00-a1ac-f6c4b5506945", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Power BI Premium P1", + "String_Id": "PBI_PREMIUM_P1_ADDON", + "GUID": "7b26f5ab-a763-4c00-a1ac-f6c4b5506945", + "Service_Plan_Name": "PBI_PREMIUM_P1_ADDON", + "Service_Plan_Id": "9da49a6d-707a-48a1-b44a-53dcde5267f8", + "Service_Plans_Included_Friendly_Names": "Power BI Premium P" + }, + { + "Product_Display_Name": "Power BI Premium P1 GCC", + "String_Id": "PBI_PREMIUM_P1_ADDON_GCC", + "GUID": "f59b22a0-9819-48bf-b01d-715ef2b31027", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Power BI Premium P1 GCC", + "String_Id": "PBI_PREMIUM_P1_ADDON_GCC", + "GUID": "f59b22a0-9819-48bf-b01d-715ef2b31027", + "Service_Plan_Name": "PBI_PREMIUM_P1_ADDON_GCC", + "Service_Plan_Id": "30df3dbd-5bf6-4d74-9417-cccc096595e4", + "Service_Plans_Included_Friendly_Names": "Power BI Premium P1 for GCC" + }, + { + "Product_Display_Name": "Power BI Premium Per User", + "String_Id": "PBI_PREMIUM_PER_USER", + "GUID": "c1d032e0-5619-4761-9b5c-75b6831e1711", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Power BI Premium Per User", + "String_Id": "PBI_PREMIUM_PER_USER", + "GUID": "c1d032e0-5619-4761-9b5c-75b6831e1711", + "Service_Plan_Name": "BI_AZURE_P3", + "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c", + "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User" + }, + { + "Product_Display_Name": "Power BI Premium Per User", + "String_Id": "PBI_PREMIUM_PER_USER", + "GUID": "c1d032e0-5619-4761-9b5c-75b6831e1711", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Power BI Premium Per User Add-On", + "String_Id": "PBI_PREMIUM_PER_USER_ADDON", + "GUID": "de376a03-6e5b-42ec-855f-093fb50b8ca5", + "Service_Plan_Name": "BI_AZURE_P3", + "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c", + "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User" + }, + { + "Product_Display_Name": "Power BI Premium Per User Add-On for GCC", + "String_Id": "PBI_PREMIUM_PER_USER_ADDON_CE_GCC", + "GUID": "66024bbf-4cd4-4329-95c8-c932e2ae01a8", + "Service_Plan_Name": "BI_AZURE_P3_GOV", + "Service_Plan_Id": "32d15238-9a8c-46da-af3f-21fc5351d365", + "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User for Government" + }, + { + "Product_Display_Name": "Power BI Premium Per User Add-On for GCC", + "String_Id": "PBI_PREMIUM_PER_USER_ADDON_GCC", + "GUID": "1b572d5e-1bf8-4b19-9259-f9eda31a6972", + "Service_Plan_Name": "BI_AZURE_P3_GOV", + "Service_Plan_Id": "32d15238-9a8c-46da-af3f-21fc5351d365", + "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User for Government" + }, + { + "Product_Display_Name": "Power BI Premium Per User Dept", + "String_Id": "PBI_PREMIUM_PER_USER_DEPT", + "GUID": "f168a3fb-7bcf-4a27-98c3-c235ea4b78b4", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Power BI Premium Per User Dept", + "String_Id": "PBI_PREMIUM_PER_USER_DEPT", + "GUID": "f168a3fb-7bcf-4a27-98c3-c235ea4b78b4", + "Service_Plan_Name": "BI_AZURE_P3", + "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c", + "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User" + }, + { + "Product_Display_Name": "Power BI Premium Per User Dept", + "String_Id": "PBI_PREMIUM_PER_USER_DEPT", + "GUID": "f168a3fb-7bcf-4a27-98c3-c235ea4b78b4", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Power BI Premium Per User for Faculty", + "String_Id": "PBI_PREMIUM_PER_USER_FACULTY", + "GUID": "060d8061-f606-4e69-a4e7-e8fff75ea1f5", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Power BI Premium Per User for Faculty", + "String_Id": "PBI_PREMIUM_PER_USER_FACULTY", + "GUID": "060d8061-f606-4e69-a4e7-e8fff75ea1f5", + "Service_Plan_Name": "BI_AZURE_P3", + "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c", + "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User" + }, + { + "Product_Display_Name": "Power BI Premium Per User for Faculty", + "String_Id": "PBI_PREMIUM_PER_USER_FACULTY", + "GUID": "060d8061-f606-4e69-a4e7-e8fff75ea1f5", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Power BI Premium Per User for Government", + "String_Id": "PBI_PREMIUM_PER_USER_GCC", + "GUID": "e53d92fc-778b-4a8b-83de-791240ebf88d", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Power BI Premium Per User for Government", + "String_Id": "PBI_PREMIUM_PER_USER_GCC", + "GUID": "e53d92fc-778b-4a8b-83de-791240ebf88d", + "Service_Plan_Name": "BI_AZURE_P3_GOV", + "Service_Plan_Id": "32d15238-9a8c-46da-af3f-21fc5351d365", + "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User for Government" + }, + { + "Product_Display_Name": "Power BI Premium Per User for Government", + "String_Id": "PBI_PREMIUM_PER_USER_GCC", + "GUID": "e53d92fc-778b-4a8b-83de-791240ebf88d", + "Service_Plan_Name": "BI_AZURE_P_2_GOV", + "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76", + "Service_Plans_Included_Friendly_Names": "Power BI Pro for Government" + }, + { + "Product_Display_Name": "Power BI Pro", + "String_Id": "POWER_BI_PRO", + "GUID": "f8a1db68-be16-40ed-86d5-cb42ce701560", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Power BI Pro", + "String_Id": "POWER_BI_PRO", + "GUID": "f8a1db68-be16-40ed-86d5-cb42ce701560", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Power BI Pro CE", + "String_Id": "POWER_BI_PRO_CE", + "GUID": "420af87e-8177-4146-a780-3786adaffbca", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Power BI Pro CE", + "String_Id": "POWER_BI_PRO_CE", + "GUID": "420af87e-8177-4146-a780-3786adaffbca", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Power BI Pro Dept", + "String_Id": "POWER_BI_PRO_DEPT", + "GUID": "3a6a908c-09c5-406a-8170-8ebb63c42882", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Power BI Pro Dept", + "String_Id": "POWER_BI_PRO_DEPT", + "GUID": "3a6a908c-09c5-406a-8170-8ebb63c42882", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Power BI Pro for Faculty", + "String_Id": "POWER_BI_PRO_FACULTY", + "GUID": "de5f128b-46d7-4cfc-b915-a89ba060ea56", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Power BI Pro for Faculty", + "String_Id": "POWER_BI_PRO_FACULTY", + "GUID": "de5f128b-46d7-4cfc-b915-a89ba060ea56", + "Service_Plan_Name": "BI_AZURE_P2", + "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", + "Service_Plans_Included_Friendly_Names": "Power BI Pro" + }, + { + "Product_Display_Name": "Power BI Pro for GCC", + "String_Id": "POWERBI_PRO_GOV", + "GUID": "f0612879-44ea-47fb-baf0-3d76d9235576", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Power BI Pro for GCC", + "String_Id": "POWERBI_PRO_GOV", + "GUID": "f0612879-44ea-47fb-baf0-3d76d9235576", + "Service_Plan_Name": "BI_AZURE_P_2_GOV", + "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76", + "Service_Plans_Included_Friendly_Names": "Power BI Pro for Government" + }, + { + "Product_Display_Name": "Power Pages authenticated users T1 100 users/per site/month capacity pack CN_CN", + "String_Id": "Power Pages authenticated users T1_CN_CN", + "GUID": "9a3c2a19-06c0-41b1-b2ea-13528d7b2e17", + "Service_Plan_Name": "DV_PowerPages_Authenticated_User", + "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", + "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" + }, + { + "Product_Display_Name": "Power Pages authenticated users T1 100 users/per site/month capacity pack CN_CN", + "String_Id": "Power Pages authenticated users T1_CN_CN", + "GUID": "9a3c2a19-06c0-41b1-b2ea-13528d7b2e17", + "Service_Plan_Name": "PowerPages_Authenticated_User_CN", + "Service_Plan_Id": "967d9574-a076-4bb7-ab89-f41f64bc142e", + "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity China" + }, + { + "Product_Display_Name": "Power Pages authenticated users T1 100 users/per site/month capacity pack", + "String_Id": "Power_Pages_authenticated_users_T1_100_users/per_site/month_capacity_pack", + "GUID": "debc9e58-f2d7-412c-a0b6-575608564228", + "Service_Plan_Name": "DV_PowerPages_Authenticated_User", + "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", + "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" + }, + { + "Product_Display_Name": "Power Pages authenticated users T1 100 users/per site/month capacity pack", + "String_Id": "Power_Pages_authenticated_users_T1_100_users/per_site/month_capacity_pack", + "GUID": "debc9e58-f2d7-412c-a0b6-575608564228", + "Service_Plan_Name": "PowerPages_Authenticated_User", + "Service_Plan_Id": "0d3366f3-266e-4117-b422-7cabbc165e7c", + "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity" + }, + { + "Product_Display_Name": "Power Pages authenticated users T1 100 users/per site/month capacity pack", + "String_Id": "Power_Pages_authenticated_users_T1_100_users/per_site/month_capacity_pack", + "GUID": "debc9e58-f2d7-412c-a0b6-575608564228", + "Service_Plan_Name": "PowerPages_Authenticated_User_GCCH", + "Service_Plan_Id": "18e74ca2-b5f0-4802-9a8b-00d2ff1e8322", + "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity GCCH" + }, + { + "Product_Display_Name": "Power Pages authenticated users T1 100 users/per site/month capacity pack_GCC", + "String_Id": "Power_Pages_authenticated_users_T1_100_users/per_site/month_capacity_pack_GCC", + "GUID": "27cb5f12-2e3f-4997-a649-45298673e6a1", + "Service_Plan_Name": "DV_PowerPages_Authenticated_User", + "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", + "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" + }, + { + "Product_Display_Name": "Power Pages authenticated users T1 100 users/per site/month capacity pack_GCC", + "String_Id": "Power_Pages_authenticated_users_T1_100_users/per_site/month_capacity_pack_GCC", + "GUID": "27cb5f12-2e3f-4997-a649-45298673e6a1", + "Service_Plan_Name": "PowerPages_Authenticated_User_GCC", + "Service_Plan_Id": "cdf787bd-1546-48d2-9e93-b21f9ea7067a", + "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity GCC" + }, + { + "Product_Display_Name": "Power Pages authenticated users T1 100 users/per site/month capacity pack_USGOV_DOD", + "String_Id": "Power_Pages_authenticated_users_T1_100_users/per_site/month_capacity_pack_USGOV_DOD", + "GUID": "b54f012e-69e1-43b1-87d0-666def064940", + "Service_Plan_Name": "DV_PowerPages_Authenticated_User", + "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", + "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" + }, + { + "Product_Display_Name": "Power Pages authenticated users T1 100 users/per site/month capacity pack_USGOV_DOD", + "String_Id": "Power_Pages_authenticated_users_T1_100_users/per_site/month_capacity_pack_USGOV_DOD", + "GUID": "b54f012e-69e1-43b1-87d0-666def064940", + "Service_Plan_Name": "PowerPages_Authenticated_User_DoD", + "Service_Plan_Id": "03300fea-7a88-45a6-b5bd-29653803c591", + "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity DoD" + }, + { + "Product_Display_Name": "Power Pages authenticated users T1 100 users/per site/month capacity pack_USGOV_GCCHIGH", + "String_Id": "Power_Pages_authenticated_users_T1_100_users/per_site/month_capacity_pack_USGOV_GCCHIGH", + "GUID": "978ec396-f930-4ee1-85f3-e1d82e8f73a4", + "Service_Plan_Name": "DV_PowerPages_Authenticated_User", + "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", + "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" + }, + { + "Product_Display_Name": "Power Pages authenticated users T1 100 users/per site/month capacity pack_USGOV_GCCHIGH", + "String_Id": "Power_Pages_authenticated_users_T1_100_users/per_site/month_capacity_pack_USGOV_GCCHIGH", + "GUID": "978ec396-f930-4ee1-85f3-e1d82e8f73a4", + "Service_Plan_Name": "PowerPages_Authenticated_User_GCCH", + "Service_Plan_Id": "18e74ca2-b5f0-4802-9a8b-00d2ff1e8322", + "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity GCCH" + }, + { + "Product_Display_Name": "Power Pages authenticated users T1 100 users/per site/month capacity pack_USGOV_GCCHIGH", + "String_Id": "Power_Pages_authenticated_users_T1_100_users/per_site/month_capacity_pack_USGOV_GCCHIGH", + "GUID": "978ec396-f930-4ee1-85f3-e1d82e8f73a4", + "Service_Plan_Name": "PowerPages_Authenticated_Users_GCCH", + "Service_Plan_Id": "5410f688-68f2-47a5-9b8f-7466194a806a", + "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site mthly capacity GCCH New" + }, + { + "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack", + "String_Id": "Power_Pages_authenticated_users_T2_min_100_units_100_users/per_site/month_capacity_pack", + "GUID": "6fe1e61a-91e5-40d7-a547-0d2dcc81bce8", + "Service_Plan_Name": "DV_PowerPages_Authenticated_User", + "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", + "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" + }, + { + "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack", + "String_Id": "Power_Pages_authenticated_users_T2_min_100_units_100_users/per_site/month_capacity_pack", + "GUID": "6fe1e61a-91e5-40d7-a547-0d2dcc81bce8", + "Service_Plan_Name": "PowerPages_Authenticated_User", + "Service_Plan_Id": "0d3366f3-266e-4117-b422-7cabbc165e7c", + "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity" + }, + { + "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack", + "String_Id": "Power_Pages_authenticated_users_T2_min_100_units_100_users/per_site/month_capacity_pack", + "GUID": "6fe1e61a-91e5-40d7-a547-0d2dcc81bce8", + "Service_Plan_Name": "PowerPages_Authenticated_User_GCCH", + "Service_Plan_Id": "18e74ca2-b5f0-4802-9a8b-00d2ff1e8322", + "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity GCCH" + }, + { + "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack_GCC", + "String_Id": "Power_Pages_authenticated_users_T2_min_100_units_100_users/per_site/month_capacity_pack_GCC", + "GUID": "5f43d48c-dd3d-4dd8-a059-70c2f040f979", + "Service_Plan_Name": "DV_PowerPages_Authenticated_User", + "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", + "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" + }, + { + "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack_GCC", + "String_Id": "Power_Pages_authenticated_users_T2_min_100_units_100_users/per_site/month_capacity_pack_GCC", + "GUID": "5f43d48c-dd3d-4dd8-a059-70c2f040f979", + "Service_Plan_Name": "PowerPages_Authenticated_User_GCC", + "Service_Plan_Id": "cdf787bd-1546-48d2-9e93-b21f9ea7067a", + "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity GCC" + }, + { + "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack_USGOV_DOD", + "String_Id": "Power_Pages_authenticated_users_T2_min_100_units_100_users/per_site/month_capacity_pack_USGOV_DOD", + "GUID": "f3d55e2d-4367-44fa-952e-83d0b5dd53fc", + "Service_Plan_Name": "DV_PowerPages_Authenticated_User", + "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", + "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" + }, + { + "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack_USGOV_DOD", + "String_Id": "Power_Pages_authenticated_users_T2_min_100_units_100_users/per_site/month_capacity_pack_USGOV_DOD", + "GUID": "f3d55e2d-4367-44fa-952e-83d0b5dd53fc", + "Service_Plan_Name": "PowerPages_Authenticated_User_DoD", + "Service_Plan_Id": "03300fea-7a88-45a6-b5bd-29653803c591", + "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity DoD" + }, + { + "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack_USGOV_GCCHIGH", + "String_Id": "Power_Pages_authenticated_users_T2_min_100_units_100_users/per_site/month_capacity_pack_USGOV_GCCHIGH", + "GUID": "7cae5432-61bb-48c3-b75c-831394ec13a0", + "Service_Plan_Name": "DV_PowerPages_Authenticated_User", + "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", + "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" + }, + { + "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack_USGOV_GCCHIGH", + "String_Id": "Power_Pages_authenticated_users_T2_min_100_units_100_users/per_site/month_capacity_pack_USGOV_GCCHIGH", + "GUID": "7cae5432-61bb-48c3-b75c-831394ec13a0", + "Service_Plan_Name": "PowerPages_Authenticated_User_GCCH", + "Service_Plan_Id": "18e74ca2-b5f0-4802-9a8b-00d2ff1e8322", + "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity GCCH" + }, + { + "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack_USGOV_GCCHIGH", + "String_Id": "Power_Pages_authenticated_users_T2_min_100_units_100_users/per_site/month_capacity_pack_USGOV_GCCHIGH", + "GUID": "7cae5432-61bb-48c3-b75c-831394ec13a0", + "Service_Plan_Name": "PowerPages_Authenticated_Users_GCCH", + "Service_Plan_Id": "5410f688-68f2-47a5-9b8f-7466194a806a", + "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site mthly capacity GCCH New" + }, + { + "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack CN_CN", + "String_Id": "Power Pages authenticated users T2_CN_CN", + "GUID": "7d2bb54a-a870-41c2-98d1-1f3b5b523275", + "Service_Plan_Name": "DV_PowerPages_Authenticated_User", + "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", + "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" + }, + { + "Product_Display_Name": "Power Pages authenticated users T2 min 100 units - 100 users/per site/month capacity pack CN_CN", + "String_Id": "Power Pages authenticated users T2_CN_CN", + "GUID": "7d2bb54a-a870-41c2-98d1-1f3b5b523275", + "Service_Plan_Name": "PowerPages_Authenticated_User_CN", + "Service_Plan_Id": "967d9574-a076-4bb7-ab89-f41f64bc142e", + "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity China" + }, + { + "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack CN_CN", + "String_Id": "Power Pages authenticated users T3_CN_CN", + "GUID": "2cfd692f-a352-4fa8-b960-e3ad0c9b1178", + "Service_Plan_Name": "DV_PowerPages_Authenticated_User", + "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", + "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" + }, + { + "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack CN_CN", + "String_Id": "Power Pages authenticated users T3_CN_CN", + "GUID": "2cfd692f-a352-4fa8-b960-e3ad0c9b1178", + "Service_Plan_Name": "PowerPages_Authenticated_User_CN", + "Service_Plan_Id": "967d9574-a076-4bb7-ab89-f41f64bc142e", + "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity China" + }, + { + "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack", + "String_Id": "Power_Pages_authenticated_users_T3_min_1,000_units_100_users/per_site/month_capacity_pack", + "GUID": "878b8bbd-3cd0-4b44-9a56-3406741e65e0", + "Service_Plan_Name": "DV_PowerPages_Authenticated_User", + "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", + "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" + }, + { + "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack", + "String_Id": "Power_Pages_authenticated_users_T3_min_1,000_units_100_users/per_site/month_capacity_pack", + "GUID": "878b8bbd-3cd0-4b44-9a56-3406741e65e0", + "Service_Plan_Name": "PowerPages_Authenticated_User", + "Service_Plan_Id": "0d3366f3-266e-4117-b422-7cabbc165e7c", + "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity" + }, + { + "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack", + "String_Id": "Power_Pages_authenticated_users_T3_min_1,000_units_100_users/per_site/month_capacity_pack", + "GUID": "878b8bbd-3cd0-4b44-9a56-3406741e65e0", + "Service_Plan_Name": "PowerPages_Authenticated_User_GCCH", + "Service_Plan_Id": "18e74ca2-b5f0-4802-9a8b-00d2ff1e8322", + "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity GCCH" + }, + { + "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack_GCC", + "String_Id": "Power_Pages_authenticated_users_T3_min_1,000_units_100_users/per_site/month_capacity_pack_GCC", + "GUID": "53265c61-c78c-4223-ab30-422da0c97fbb", + "Service_Plan_Name": "DV_PowerPages_Authenticated_User", + "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", + "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" + }, + { + "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack_GCC", + "String_Id": "Power_Pages_authenticated_users_T3_min_1,000_units_100_users/per_site/month_capacity_pack_GCC", + "GUID": "53265c61-c78c-4223-ab30-422da0c97fbb", + "Service_Plan_Name": "PowerPages_Authenticated_User_GCC", + "Service_Plan_Id": "cdf787bd-1546-48d2-9e93-b21f9ea7067a", + "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity GCC" + }, + { + "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack_USGOV_DOD", + "String_Id": "Power_Pages_authenticated_users_T3_min_1,000_units_100_users/per_site/month_capacity_pack_USGOV_DOD", + "GUID": "398d37b5-8deb-48db-8f7f-703eb2fb7c72", + "Service_Plan_Name": "DV_PowerPages_Authenticated_User", + "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", + "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" + }, + { + "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack_USGOV_DOD", + "String_Id": "Power_Pages_authenticated_users_T3_min_1,000_units_100_users/per_site/month_capacity_pack_USGOV_DOD", + "GUID": "398d37b5-8deb-48db-8f7f-703eb2fb7c72", + "Service_Plan_Name": "PowerPages_Authenticated_User_DoD", + "Service_Plan_Id": "03300fea-7a88-45a6-b5bd-29653803c591", + "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity DoD" + }, + { + "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack_USGOV_GCCHIGH", + "String_Id": "Power_Pages_authenticated_users_T3_min_1,000_units_100_users/per_site/month_capacity_pack_USGOV_GCCHIGH", + "GUID": "01d46c34-3525-47d5-bd1a-5f19979938a0", + "Service_Plan_Name": "DV_PowerPages_Authenticated_User", + "Service_Plan_Id": "7aae746a-3463-4737-b295-3c1a16c31438", + "Service_Plans_Included_Friendly_Names": "Dataverse for Power Pages Authenticated users per site" + }, + { + "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack_USGOV_GCCHIGH", + "String_Id": "Power_Pages_authenticated_users_T3_min_1,000_units_100_users/per_site/month_capacity_pack_USGOV_GCCHIGH", + "GUID": "01d46c34-3525-47d5-bd1a-5f19979938a0", + "Service_Plan_Name": "PowerPages_Authenticated_User_GCCH", + "Service_Plan_Id": "18e74ca2-b5f0-4802-9a8b-00d2ff1e8322", + "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site monthly capacity GCCH" + }, + { + "Product_Display_Name": "Power Pages authenticated users T3 min 1,000 units - 100 users/per site/month capacity pack_USGOV_GCCHIGH", + "String_Id": "Power_Pages_authenticated_users_T3_min_1,000_units_100_users/per_site/month_capacity_pack_USGOV_GCCHIGH", + "GUID": "01d46c34-3525-47d5-bd1a-5f19979938a0", + "Service_Plan_Name": "PowerPages_Authenticated_Users_GCCH", + "Service_Plan_Id": "5410f688-68f2-47a5-9b8f-7466194a806a", + "Service_Plans_Included_Friendly_Names": "Power Pages Authenticated Users per site mthly capacity GCCH New" + }, + { + "Product_Display_Name": "Power Pages vTrial for Makers", + "String_Id": "Power_Pages_vTrial_for_Makers", + "GUID": "3f9f06f5-3c31-472c-985f-62d9c10ec167", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Power Pages vTrial for Makers", + "String_Id": "Power_Pages_vTrial_for_Makers", + "GUID": "3f9f06f5-3c31-472c-985f-62d9c10ec167", + "Service_Plan_Name": "DYN365_CDS_VIRAL", + "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Power Pages vTrial for Makers", + "String_Id": "Power_Pages_vTrial_for_Makers", + "GUID": "3f9f06f5-3c31-472c-985f-62d9c10ec167", + "Service_Plan_Name": "POWER_PAGES_VTRIAL", + "Service_Plan_Id": "6817d093-2d30-4249-8bd6-774f01efa78c", + "Service_Plans_Included_Friendly_Names": "Power Pages vTrial for Makers" + }, + { + "Product_Display_Name": "Power Virtual Agent", + "String_Id": "VIRTUAL_AGENT_BASE", + "GUID": "e4e55366-9635-46f4-a907-fc8c3b5ec81f", + "Service_Plan_Name": "CDS_VIRTUAL_AGENT_BASE", + "Service_Plan_Id": "0a0a23fa-fea1-4195-bb89-b4789cb12f7f", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Virtual Agent Base" + }, + { + "Product_Display_Name": "Power Virtual Agent", + "String_Id": "VIRTUAL_AGENT_BASE", + "GUID": "e4e55366-9635-46f4-a907-fc8c3b5ec81f", + "Service_Plan_Name": "FLOW_VIRTUAL_AGENT_BASE", + "Service_Plan_Id": "4b81a949-69a1-4409-ad34-9791a6ec88aa", + "Service_Plans_Included_Friendly_Names": "Power Automate for Virtual Agent" + }, + { + "Product_Display_Name": "Power Virtual Agent", + "String_Id": "VIRTUAL_AGENT_BASE", + "GUID": "e4e55366-9635-46f4-a907-fc8c3b5ec81f", + "Service_Plan_Name": "VIRTUAL_AGENT_BASE", + "Service_Plan_Id": "f6934f16-83d3-4f3b-ad27-c6e9c187b260", + "Service_Plans_Included_Friendly_Names": "Virtual Agent Base" + }, + { + "Product_Display_Name": "Power Virtual Agent for GCC", + "String_Id": "VIRTUAL_AGENT_BASE_GCC", + "GUID": "9900a3e2-6660-4c52-9074-60c949991389", + "Service_Plan_Name": "CDS_Virtual_Agent_Base_Gov", + "Service_Plan_Id": "e4d0b25d-e440-4ee9-aac4-1d5a5db9f3ef", + "Service_Plans_Included_Friendly_Names": "Dataverse for Virtual Agent Base for GCC" + }, + { + "Product_Display_Name": "Power Virtual Agent for GCC", + "String_Id": "VIRTUAL_AGENT_BASE_GCC", + "GUID": "9900a3e2-6660-4c52-9074-60c949991389", + "Service_Plan_Name": "FLOW_Virtual_Agent_Base_Gov", + "Service_Plan_Id": "f9f6db16-ace6-4838-b11c-892ee75e810a", + "Service_Plans_Included_Friendly_Names": "Power Automate for Virtual Agent for GCC" + }, + { + "Product_Display_Name": "Power Virtual Agent for GCC", + "String_Id": "VIRTUAL_AGENT_BASE_GCC", + "GUID": "9900a3e2-6660-4c52-9074-60c949991389", + "Service_Plan_Name": "Virtual_Agent_Base_GCC", + "Service_Plan_Id": "e425b9f6-1543-45a0-8efb-f8fdaf18cba1", + "Service_Plans_Included_Friendly_Names": "Virtual Agent Base for GCC" + }, + { + "Product_Display_Name": "Power Virtual Agent User License", + "String_Id": "VIRTUAL_AGENT_USL", + "GUID": "4b74a65c-8b4a-4fc8-9f6b-5177ed11ddfa", + "Service_Plan_Name": "CDS_VIRTUAL_AGENT_USL", + "Service_Plan_Id": "cb867b3c-7f38-4d0d-99ce-e29cd69812c8", + "Service_Plans_Included_Friendly_Names": "Common Data Service" + }, + { + "Product_Display_Name": "Power Virtual Agent User License", + "String_Id": "VIRTUAL_AGENT_USL", + "GUID": "4b74a65c-8b4a-4fc8-9f6b-5177ed11ddfa", + "Service_Plan_Name": "FLOW_VIRTUAL_AGENT_USL", + "Service_Plan_Id": "82f141c9-2e87-4f43-8cb2-12d2701dc6b3", + "Service_Plans_Included_Friendly_Names": "Power Automate for Virtual Agent" + }, + { + "Product_Display_Name": "Power Virtual Agent User License", + "String_Id": "VIRTUAL_AGENT_USL", + "GUID": "4b74a65c-8b4a-4fc8-9f6b-5177ed11ddfa", + "Service_Plan_Name": "VIRTUAL_AGENT_USL", + "Service_Plan_Id": "1263586c-59a4-4ad0-85e1-d50bc7149501", + "Service_Plans_Included_Friendly_Names": "Virtual Agent" + }, + { + "Product_Display_Name": "Power Virtual Agent User License for GCC", + "String_Id": "VIRTUAL_AGENT_USL_GCC", + "GUID": "f1de227b-f1bd-4959-bd80-b80547095e6d", + "Service_Plan_Name": "CDS_Virtual_Agent_Usl_GCC", + "Service_Plan_Id": "95df1203-fee7-4726-b7e1-8037a8e899eb", + "Service_Plans_Included_Friendly_Names": "Dataverse for Virtual Agent USL for GCC" + }, + { + "Product_Display_Name": "Power Virtual Agent User License for GCC", + "String_Id": "VIRTUAL_AGENT_USL_GCC", + "GUID": "f1de227b-f1bd-4959-bd80-b80547095e6d", + "Service_Plan_Name": "Flow_Virtual_Agent_Usl_Gov", + "Service_Plan_Id": "0b939472-1861-45f1-ab6d-208f359c05cd", + "Service_Plans_Included_Friendly_Names": "Flow for Virtual Agent for GCC" + }, + { + "Product_Display_Name": "Power Virtual Agent User License for GCC", + "String_Id": "VIRTUAL_AGENT_USL_GCC", + "GUID": "f1de227b-f1bd-4959-bd80-b80547095e6d", + "Service_Plan_Name": "FLOW_Virtual_Agent_Base_Gov", + "Service_Plan_Id": "f9f6db16-ace6-4838-b11c-892ee75e810a", + "Service_Plans_Included_Friendly_Names": "Power Automate for Virtual Agent for GCC" + }, + { + "Product_Display_Name": "Power Virtual Agent User License for GCC", + "String_Id": "VIRTUAL_AGENT_USL_GCC", + "GUID": "f1de227b-f1bd-4959-bd80-b80547095e6d", + "Service_Plan_Name": "Power_Virtual_Agent_Usl_GCC", + "Service_Plan_Id": "0bdd5466-65c3-470a-9fa6-f679b48286b0", + "Service_Plans_Included_Friendly_Names": "Power Virtual Agent USL for GCC" + }, + { + "Product_Display_Name": "Power Virtual Agents Viral Trial", + "String_Id": "CCIBOTS_PRIVPREV_VIRAL", + "GUID": "606b54a9-78d8-4298-ad8b-df6ef4481c80", + "Service_Plan_Name": "DYN365_CDS_CCI_BOTS", + "Service_Plan_Id": "cf7034ed-348f-42eb-8bbd-dddeea43ee81", + "Service_Plans_Included_Friendly_Names": "Common Data Service for CCI Bots" + }, + { + "Product_Display_Name": "Power Virtual Agents Viral Trial", + "String_Id": "CCIBOTS_PRIVPREV_VIRAL", + "GUID": "606b54a9-78d8-4298-ad8b-df6ef4481c80", + "Service_Plan_Name": "CCIBOTS_PRIVPREV_VIRAL", + "Service_Plan_Id": "ce312d15-8fdf-44c0-9974-a25a177125ee", + "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Customer Service Virtual Agents Viral" + }, + { + "Product_Display_Name": "Power Virtual Agents Viral Trial", + "String_Id": "CCIBOTS_PRIVPREV_VIRAL", + "GUID": "606b54a9-78d8-4298-ad8b-df6ef4481c80", + "Service_Plan_Name": "FLOW_CCI_BOTS", + "Service_Plan_Id": "5d798708-6473-48ad-9776-3acc301c40af", + "Service_Plans_Included_Friendly_Names": "Flow for CCI Bots" + }, + { + "Product_Display_Name": "Privacy Management � risk", + "String_Id": "PRIVACY_MANAGEMENT_RISK", + "GUID": "e42bc969-759a-4820-9283-6b73085b68e6", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Privacy Management � risk", + "String_Id": "PRIVACY_MANAGEMENT_RISK", + "GUID": "e42bc969-759a-4820-9283-6b73085b68e6", + "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK", + "Service_Plan_Id": "f281fb1f-99a7-46ab-9edb-ffd74e260ed3", + "Service_Plans_Included_Friendly_Names": "Priva - Risk" + }, + { + "Product_Display_Name": "Privacy Management � risk", + "String_Id": "PRIVACY_MANAGEMENT_RISK", + "GUID": "e42bc969-759a-4820-9283-6b73085b68e6", + "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK_EXCHANGE", + "Service_Plan_Id": "ebb17a6e-6002-4f65-acb0-d386480cebc1", + "Service_Plans_Included_Friendly_Names": "Priva - Risk (Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - risk for EDU", + "String_Id": "PRIVACY_MANAGEMENT_RISK_EDU", + "GUID": "dcdbaae7-d8c9-40cb-8bb1-62737b9e5a86", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Privacy Management - risk for EDU", + "String_Id": "PRIVACY_MANAGEMENT_RISK_EDU", + "GUID": "dcdbaae7-d8c9-40cb-8bb1-62737b9e5a86", + "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK", + "Service_Plan_Id": "f281fb1f-99a7-46ab-9edb-ffd74e260ed3", + "Service_Plans_Included_Friendly_Names": "Priva - Risk" + }, + { + "Product_Display_Name": "Privacy Management - risk for EDU", + "String_Id": "PRIVACY_MANAGEMENT_RISK_EDU", + "GUID": "dcdbaae7-d8c9-40cb-8bb1-62737b9e5a86", + "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK_EXCHANGE", + "Service_Plan_Id": "ebb17a6e-6002-4f65-acb0-d386480cebc1", + "Service_Plans_Included_Friendly_Names": "Priva - Risk (Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - risk GCC", + "String_Id": "PRIVACY_MANAGEMENT_RISK_GCC", + "GUID": "046f7d3b-9595-4685-a2e8-a2832d2b26aa", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Privacy Management - risk GCC", + "String_Id": "PRIVACY_MANAGEMENT_RISK_GCC", + "GUID": "046f7d3b-9595-4685-a2e8-a2832d2b26aa", + "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK", + "Service_Plan_Id": "f281fb1f-99a7-46ab-9edb-ffd74e260ed3", + "Service_Plans_Included_Friendly_Names": "Priva - Risk" + }, + { + "Product_Display_Name": "Privacy Management - risk GCC", + "String_Id": "PRIVACY_MANAGEMENT_RISK_GCC", + "GUID": "046f7d3b-9595-4685-a2e8-a2832d2b26aa", + "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK_EXCHANGE", + "Service_Plan_Id": "ebb17a6e-6002-4f65-acb0-d386480cebc1", + "Service_Plans_Included_Friendly_Names": "Priva - Risk (Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - risk_USGOV_DOD", + "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_DOD", + "GUID": "83b30692-0d09-435c-a455-2ab220d504b9", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Privacy Management - risk_USGOV_DOD", + "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_DOD", + "GUID": "83b30692-0d09-435c-a455-2ab220d504b9", + "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK", + "Service_Plan_Id": "f281fb1f-99a7-46ab-9edb-ffd74e260ed3", + "Service_Plans_Included_Friendly_Names": "Priva - Risk" + }, + { + "Product_Display_Name": "Privacy Management - risk_USGOV_DOD", + "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_DOD", + "GUID": "83b30692-0d09-435c-a455-2ab220d504b9", + "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK_EXCHANGE", + "Service_Plan_Id": "ebb17a6e-6002-4f65-acb0-d386480cebc1", + "Service_Plans_Included_Friendly_Names": "Priva - Risk (Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - risk_USGOV_GCCHIGH", + "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_GCCHIGH", + "GUID": "787d7e75-29ca-4b90-a3a9-0b780b35367c", + "Service_Plan_Name": "MIP_S_Exchange", + "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" + }, + { + "Product_Display_Name": "Privacy Management - risk_USGOV_GCCHIGH", + "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_GCCHIGH", + "GUID": "787d7e75-29ca-4b90-a3a9-0b780b35367c", + "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK", + "Service_Plan_Id": "f281fb1f-99a7-46ab-9edb-ffd74e260ed3", + "Service_Plans_Included_Friendly_Names": "Priva - Risk" + }, + { + "Product_Display_Name": "Privacy Management - risk_USGOV_GCCHIGH", + "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_GCCHIGH", + "GUID": "787d7e75-29ca-4b90-a3a9-0b780b35367c", + "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK_EXCHANGE", + "Service_Plan_Id": "ebb17a6e-6002-4f65-acb0-d386480cebc1", + "Service_Plans_Included_Friendly_Names": "Priva - Risk (Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (1)", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2", + "GUID": "d9020d1c-94ef-495a-b6de-818cbbcaa3b8", + "Service_Plan_Name": "MIP_S_EXCHANGE_CO", + "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (1)", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2", + "GUID": "d9020d1c-94ef-495a-b6de-818cbbcaa3b8", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_1", + "Service_Plan_Id": "93d24177-c2c3-408a-821d-3d25dfa66e7a", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (1)", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2", + "GUID": "d9020d1c-94ef-495a-b6de-818cbbcaa3b8", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_1", + "Service_Plan_Id": "07a4098c-3f2d-427f-bfe2-5889ed75dd7b", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1 - Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (1) for EDU", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_EDU_V2", + "GUID": "475e3e81-3c75-4e07-95b6-2fed374536c8", + "Service_Plan_Name": "MIP_S_EXCHANGE_CO", + "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (1) for EDU", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_EDU_V2", + "GUID": "475e3e81-3c75-4e07-95b6-2fed374536c8", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_1", + "Service_Plan_Id": "93d24177-c2c3-408a-821d-3d25dfa66e7a", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1 - Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (1) for EDU", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_EDU_V2", + "GUID": "475e3e81-3c75-4e07-95b6-2fed374536c8", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_1", + "Service_Plan_Id": "07a4098c-3f2d-427f-bfe2-5889ed75dd7b", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (1) GCC", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_GCC", + "GUID": "017fb6f8-00dd-4025-be2b-4eff067cae72", + "Service_Plan_Name": "MIP_S_EXCHANGE_CO", + "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (1) GCC", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_GCC", + "GUID": "017fb6f8-00dd-4025-be2b-4eff067cae72", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_1", + "Service_Plan_Id": "93d24177-c2c3-408a-821d-3d25dfa66e7a", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1 - Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (1) GCC", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_GCC", + "GUID": "017fb6f8-00dd-4025-be2b-4eff067cae72", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_1", + "Service_Plan_Id": "07a4098c-3f2d-427f-bfe2-5889ed75dd7b", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_DOD", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_DOD", + "GUID": "d3c841f3-ea93-4da2-8040-6f2348d20954", + "Service_Plan_Name": "MIP_S_EXCHANGE_CO", + "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_DOD", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_DOD", + "GUID": "d3c841f3-ea93-4da2-8040-6f2348d20954", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_1", + "Service_Plan_Id": "93d24177-c2c3-408a-821d-3d25dfa66e7a", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1 - Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_DOD", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_DOD", + "GUID": "d3c841f3-ea93-4da2-8040-6f2348d20954", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_1", + "Service_Plan_Id": "07a4098c-3f2d-427f-bfe2-5889ed75dd7b", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_GCCHIGH", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_GCCHIGH", + "GUID": "706d2425-6170-4818-ba08-2ad8f1d2d078", + "Service_Plan_Name": "MIP_S_EXCHANGE_CO", + "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_GCCHIGH", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_GCCHIGH", + "GUID": "706d2425-6170-4818-ba08-2ad8f1d2d078", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_1", + "Service_Plan_Id": "93d24177-c2c3-408a-821d-3d25dfa66e7a", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1 - Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_GCCHIGH", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_GCCHIGH", + "GUID": "706d2425-6170-4818-ba08-2ad8f1d2d078", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_1", + "Service_Plan_Id": "07a4098c-3f2d-427f-bfe2-5889ed75dd7b", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (10)", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2", + "GUID": "78ea43ac-9e5d-474f-8537-4abb82dafe27", + "Service_Plan_Name": "MIP_S_EXCHANGE_CO", + "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (10)", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2", + "GUID": "78ea43ac-9e5d-474f-8537-4abb82dafe27", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_10", + "Service_Plan_Id": "f0241705-7b44-4401-a6b6-7055062b5b03", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10 - Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (10)", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2", + "GUID": "78ea43ac-9e5d-474f-8537-4abb82dafe27", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_10", + "Service_Plan_Id": "74853901-d7a9-428e-895d-f4c8687a9f0b", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (10) for EDU", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_EDU_V2", + "GUID": "e001d9f1-5047-4ebf-8927-148530491f83", + "Service_Plan_Name": "MIP_S_EXCHANGE_CO", + "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (10) for EDU", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_EDU_V2", + "GUID": "e001d9f1-5047-4ebf-8927-148530491f83", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_10", + "Service_Plan_Id": "f0241705-7b44-4401-a6b6-7055062b5b03", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10 - Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (10) for EDU", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_EDU_V2", + "GUID": "e001d9f1-5047-4ebf-8927-148530491f83", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_10", + "Service_Plan_Id": "74853901-d7a9-428e-895d-f4c8687a9f0b", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (10) GCC", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_GCC", + "GUID": "a056b037-1fa0-4133-a583-d05cff47d551", + "Service_Plan_Name": "MIP_S_EXCHANGE_CO", + "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (10) GCC", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_GCC", + "GUID": "a056b037-1fa0-4133-a583-d05cff47d551", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_10", + "Service_Plan_Id": "f0241705-7b44-4401-a6b6-7055062b5b03", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10 - Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (10) GCC", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_GCC", + "GUID": "a056b037-1fa0-4133-a583-d05cff47d551", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_10", + "Service_Plan_Id": "74853901-d7a9-428e-895d-f4c8687a9f0b", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_DOD", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_DOD", + "GUID": "ab28dfa1-853a-4f54-9315-f5146975ac9a", + "Service_Plan_Name": "MIP_S_EXCHANGE_CO", + "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_DOD", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_DOD", + "GUID": "ab28dfa1-853a-4f54-9315-f5146975ac9a", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_10", + "Service_Plan_Id": "f0241705-7b44-4401-a6b6-7055062b5b03", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10 - Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_DOD", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_DOD", + "GUID": "ab28dfa1-853a-4f54-9315-f5146975ac9a", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_10", + "Service_Plan_Id": "74853901-d7a9-428e-895d-f4c8687a9f0b", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_GCCHIGH", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_GCCHIGH", + "GUID": "f6aa3b3d-62f4-4c1d-a44f-0550f40f729c", + "Service_Plan_Name": "MIP_S_EXCHANGE_CO", + "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_GCCHIGH", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_GCCHIGH", + "GUID": "f6aa3b3d-62f4-4c1d-a44f-0550f40f729c", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_10", + "Service_Plan_Id": "f0241705-7b44-4401-a6b6-7055062b5b03", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10 - Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_GCCHIGH", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_GCCHIGH", + "GUID": "f6aa3b3d-62f4-4c1d-a44f-0550f40f729c", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_10", + "Service_Plan_Id": "74853901-d7a9-428e-895d-f4c8687a9f0b", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (50)", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50", + "GUID": "c416b349-a83c-48cb-9529-c420841dedd6", + "Service_Plan_Name": "MIP_S_EXCHANGE_CO", + "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (50)", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50", + "GUID": "c416b349-a83c-48cb-9529-c420841dedd6", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR", + "Service_Plan_Id": "8bbd1fea-6dc6-4aef-8abc-79af22d746e4", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (50)", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50", + "GUID": "c416b349-a83c-48cb-9529-c420841dedd6", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE", + "Service_Plan_Id": "7ca7f875-98db-4458-ab1b-47503826dd73", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (50)", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_V2", + "GUID": "f6c82f13-9554-4da1-bed3-c024cc906e02", + "Service_Plan_Name": "MIP_S_EXCHANGE_CO", + "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (50)", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_V2", + "GUID": "f6c82f13-9554-4da1-bed3-c024cc906e02", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR", + "Service_Plan_Id": "8bbd1fea-6dc6-4aef-8abc-79af22d746e4", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (50)", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_V2", + "GUID": "f6c82f13-9554-4da1-bed3-c024cc906e02", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE", + "Service_Plan_Id": "7ca7f875-98db-4458-ab1b-47503826dd73", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (50) for EDU", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_EDU_V2", + "GUID": "ed45d397-7d61-4110-acc0-95674917bb14", + "Service_Plan_Name": "MIP_S_EXCHANGE_CO", + "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (50) for EDU", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_EDU_V2", + "GUID": "ed45d397-7d61-4110-acc0-95674917bb14", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR", + "Service_Plan_Id": "8bbd1fea-6dc6-4aef-8abc-79af22d746e4", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (50) for EDU", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_EDU_V2", + "GUID": "ed45d397-7d61-4110-acc0-95674917bb14", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE", + "Service_Plan_Id": "7ca7f875-98db-4458-ab1b-47503826dd73", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (100)", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2", + "GUID": "cf4c6c3b-f863-4940-97e8-1d25e912f4c4", + "Service_Plan_Name": "MIP_S_EXCHANGE_CO", + "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (100)", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2", + "GUID": "cf4c6c3b-f863-4940-97e8-1d25e912f4c4", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_100", + "Service_Plan_Id": "5c221cec-2c39-435b-a1e2-7cdd7fac5913", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100 - Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (100)", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2", + "GUID": "cf4c6c3b-f863-4940-97e8-1d25e912f4c4", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_100", + "Service_Plan_Id": "500f440d-167e-4030-a3a7-8cd35421fbd8", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (100) for EDU", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_EDU_V2", + "GUID": "9b85b4f0-92d9-4c3d-b230-041520cb1046", + "Service_Plan_Name": "MIP_S_EXCHANGE_CO", + "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (100) for EDU", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_EDU_V2", + "GUID": "9b85b4f0-92d9-4c3d-b230-041520cb1046", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_100", + "Service_Plan_Id": "5c221cec-2c39-435b-a1e2-7cdd7fac5913", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100 - Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (100) for EDU", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_EDU_V2", + "GUID": "9b85b4f0-92d9-4c3d-b230-041520cb1046", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_100", + "Service_Plan_Id": "500f440d-167e-4030-a3a7-8cd35421fbd8", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (100) GCC", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_GCC", + "GUID": "91bbc479-4c2c-4210-9c88-e5b468c35b83", + "Service_Plan_Name": "MIP_S_EXCHANGE_CO", + "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (100) GCC", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_GCC", + "GUID": "91bbc479-4c2c-4210-9c88-e5b468c35b83", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_100", + "Service_Plan_Id": "5c221cec-2c39-435b-a1e2-7cdd7fac5913", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100 - Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (100) GCC", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_GCC", + "GUID": "91bbc479-4c2c-4210-9c88-e5b468c35b83", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_100", + "Service_Plan_Id": "500f440d-167e-4030-a3a7-8cd35421fbd8", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_DOD", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_DOD", + "GUID": "ba6e69d5-ba2e-47a7-b081-66c1b8e7e7d4", + "Service_Plan_Name": "MIP_S_EXCHANGE_CO", + "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_DOD", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_DOD", + "GUID": "ba6e69d5-ba2e-47a7-b081-66c1b8e7e7d4", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_100", + "Service_Plan_Id": "5c221cec-2c39-435b-a1e2-7cdd7fac5913", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100 - Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_DOD", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_DOD", + "GUID": "ba6e69d5-ba2e-47a7-b081-66c1b8e7e7d4", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_100", + "Service_Plan_Id": "500f440d-167e-4030-a3a7-8cd35421fbd8", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_GCCHIGH", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_GCCHIGH", + "GUID": "cee36ce4-cc31-481f-8cab-02765d3e441f", + "Service_Plan_Name": "MIP_S_EXCHANGE_CO", + "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b", + "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_GCCHIGH", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_GCCHIGH", + "GUID": "cee36ce4-cc31-481f-8cab-02765d3e441f", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_100", + "Service_Plan_Id": "5c221cec-2c39-435b-a1e2-7cdd7fac5913", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100 - Exchange)" + }, + { + "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_GCCHIGH", + "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_GCCHIGH", + "GUID": "cee36ce4-cc31-481f-8cab-02765d3e441f", + "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_100", + "Service_Plan_Id": "500f440d-167e-4030-a3a7-8cd35421fbd8", + "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100)" + }, + { + "Product_Display_Name": "Project for Office 365", + "String_Id": "PROJECTCLIENT", + "GUID": "a10d5e58-74da-4312-95c8-76be4e5b75a0", + "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", + "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", + "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE DESKTOP CLIENT" + }, + { + "Product_Display_Name": "Project Online Essentials", + "String_Id": "PROJECTESSENTIALS", + "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Project Online Essentials", + "String_Id": "PROJECTESSENTIALS", + "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", + "Service_Plan_Name": "FORMS_PLAN_E1", + "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" + }, + { + "Product_Display_Name": "Project Online Essentials", + "String_Id": "PROJECTESSENTIALS", + "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the web" + }, + { + "Product_Display_Name": "Project Online Essentials", + "String_Id": "PROJECTESSENTIALS", + "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", + "Service_Plan_Name": "PROJECT_ESSENTIALS", + "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials" + }, + { + "Product_Display_Name": "Project Online Essentials", + "String_Id": "PROJECTESSENTIALS", + "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Project Online Essentials", + "String_Id": "PROJECTESSENTIALS", + "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Project Online Essentials for Faculty", + "String_Id": "PROJECTESSENTIALS_FACULTY", + "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Project Online Essentials for Faculty", + "String_Id": "PROJECTESSENTIALS_FACULTY", + "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6", + "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", + "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" + }, + { + "Product_Display_Name": "Project Online Essentials for Faculty", + "String_Id": "PROJECTESSENTIALS_FACULTY", + "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" + }, + { + "Product_Display_Name": "Project Online Essentials for Faculty", + "String_Id": "PROJECTESSENTIALS_FACULTY", + "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6", + "Service_Plan_Name": "PROJECT_ESSENTIALS", + "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials" + }, + { + "Product_Display_Name": "Project Online Essentials for Faculty", + "String_Id": "PROJECTESSENTIALS_FACULTY", + "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", + "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" + }, + { + "Product_Display_Name": "Project Online Essentials for Faculty", + "String_Id": "PROJECTESSENTIALS_FACULTY", + "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Project Online Essentials for GCC", + "String_Id": "PROJECTESSENTIALS_GOV", + "GUID": "ca1a159a-f09e-42b8-bb82-cb6420f54c8e", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Project Online Essentials for GCC", + "String_Id": "PROJECTESSENTIALS_GOV", + "GUID": "ca1a159a-f09e-42b8-bb82-cb6420f54c8e", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Project Online Essentials for GCC", + "String_Id": "PROJECTESSENTIALS_GOV", + "GUID": "ca1a159a-f09e-42b8-bb82-cb6420f54c8e", + "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV", + "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government" + }, + { + "Product_Display_Name": "Project Online Essentials for GCC", + "String_Id": "PROJECTESSENTIALS_GOV", + "GUID": "ca1a159a-f09e-42b8-bb82-cb6420f54c8e", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Project Online Premium", + "String_Id": "PROJECTPREMIUM", + "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a", + "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", + "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", + "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE DESKTOP CLIENT" + }, + { + "Product_Display_Name": "Project Online Premium", + "String_Id": "PROJECTPREMIUM", + "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a", + "Service_Plan_Name": "SHAREPOINT_PROJECT", + "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", + "Service_Plans_Included_Friendly_Names": "SHAREPOINT_PROJECT" + }, + { + "Product_Display_Name": "Project Online Premium", + "String_Id": "PROJECTPREMIUM", + "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" + }, + { + "Product_Display_Name": "Project Online Premium", + "String_Id": "PROJECTPREMIUM", + "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" + }, + { + "Product_Display_Name": "Project Online Premium Without Project Client", + "String_Id": "PROJECTONLINE_PLAN_1", + "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", + "Service_Plan_Name": "FORMS_PLAN_E1", + "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", + "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" + }, + { + "Product_Display_Name": "Project Online Premium Without Project Client", + "String_Id": "PROJECTONLINE_PLAN_1", + "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", + "Service_Plan_Name": "SHAREPOINT_PROJECT", + "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", + "Service_Plans_Included_Friendly_Names": "SHAREPOINT_PROJECT" + }, + { + "Product_Display_Name": "Project Online Premium Without Project Client", + "String_Id": "PROJECTONLINE_PLAN_1", + "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" + }, + { + "Product_Display_Name": "Project Online Premium Without Project Client", + "String_Id": "PROJECTONLINE_PLAN_1", + "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" + }, + { + "Product_Display_Name": "Project Online Premium Without Project Client", + "String_Id": "PROJECTONLINE_PLAN_1", + "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "SWAY" + }, + { + "Product_Display_Name": "Project Online With Project for Office 365", + "String_Id": "PROJECTONLINE_PLAN_2", + "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", + "Service_Plan_Name": "FORMS_PLAN_E1", + "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", + "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" + }, + { + "Product_Display_Name": "Project Online With Project for Office 365", + "String_Id": "PROJECTONLINE_PLAN_2", + "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", + "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", + "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", + "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE DESKTOP CLIENT" + }, + { + "Product_Display_Name": "Project Online With Project for Office 365", + "String_Id": "PROJECTONLINE_PLAN_2", + "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", + "Service_Plan_Name": "SHAREPOINT_PROJECT", + "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", + "Service_Plans_Included_Friendly_Names": "SHAREPOINT_PROJECT" + }, + { + "Product_Display_Name": "Project Online With Project for Office 365", + "String_Id": "PROJECTONLINE_PLAN_2", + "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" + }, + { + "Product_Display_Name": "Project Online With Project for Office 365", + "String_Id": "PROJECTONLINE_PLAN_2", + "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" + }, + { + "Product_Display_Name": "Project Online With Project for Office 365", + "String_Id": "PROJECTONLINE_PLAN_2", + "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "SWAY" + }, + { + "Product_Display_Name": "Project Plan 1", + "String_Id": "PROJECT_P1", + "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", + "Service_Plan_Name": "DYN365_CDS_FOR_PROJECT_P1", + "Service_Plan_Id": "a6f677b3-62a6-4644-93e7-2a85d240845e", + "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR PROJECT P1" + }, + { + "Product_Display_Name": "Project Plan 1", + "String_Id": "PROJECT_P1", + "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" + }, + { + "Product_Display_Name": "Project Plan 1", + "String_Id": "PROJECT_P1", + "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", + "Service_Plan_Name": "Power_Automate_For_Project_P1", + "Service_Plan_Id": "00283e6b-2bd8-440f-a2d5-87358e4c89a1", + "Service_Plans_Included_Friendly_Names": "POWER AUTOMATE FOR PROJECT P1" + }, + { + "Product_Display_Name": "Project Plan 1", + "String_Id": "PROJECT_P1", + "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", + "Service_Plan_Name": "PROJECT_ESSENTIALS", + "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", + "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS" + }, + { + "Product_Display_Name": "Project Plan 1", + "String_Id": "PROJECT_P1", + "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", + "Service_Plan_Name": "PROJECT_P1", + "Service_Plan_Id": "4a12c688-56c6-461a-87b1-30d6f32136f9", + "Service_Plans_Included_Friendly_Names": "PROJECT P1" + }, + { + "Product_Display_Name": "Project Plan 1", + "String_Id": "PROJECT_P1", + "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", + "Service_Plan_Name": "SHAREPOINTSTANDARD", + "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", + "Service_Plans_Included_Friendly_Names": "SHAREPOINT" + }, + { + "Product_Display_Name": "Project Plan 1 (for Department)", + "String_Id": "PROJECT_PLAN1_DEPT", + "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", + "Service_Plan_Name": "DYN365_CDS_FOR_PROJECT_P1", + "Service_Plan_Id": "a6f677b3-62a6-4644-93e7-2a85d240845e", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Project P1" + }, + { + "Product_Display_Name": "Project Plan 1 (for Department)", + "String_Id": "PROJECT_PLAN1_DEPT", + "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Project Plan 1 (for Department)", + "String_Id": "PROJECT_PLAN1_DEPT", + "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", + "Service_Plan_Name": "Power_Automate_For_Project_P1", + "Service_Plan_Id": "00283e6b-2bd8-440f-a2d5-87358e4c89a1", + "Service_Plans_Included_Friendly_Names": "Power Automate for Project P1" + }, + { + "Product_Display_Name": "Project Plan 1 (for Department)", + "String_Id": "PROJECT_PLAN1_DEPT", + "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", + "Service_Plan_Name": "PROJECT_ESSENTIALS", + "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", + "Service_Plans_Included_Friendly_Names": "Project Online Essentials" + }, + { + "Product_Display_Name": "Project Plan 1 (for Department)", + "String_Id": "PROJECT_PLAN1_DEPT", + "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", + "Service_Plan_Name": "PROJECT_P1", + "Service_Plan_Id": "4a12c688-56c6-461a-87b1-30d6f32136f9", + "Service_Plans_Included_Friendly_Names": "Project P1" + }, + { + "Product_Display_Name": "Project Plan 1 (for Department)", + "String_Id": "PROJECT_PLAN1_DEPT", + "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", + "Service_Plan_Name": "SHAREPOINTSTANDARD", + "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", + "Service_Plans_Included_Friendly_Names": "SHAREPOINT STANDARD" + }, + { + "Product_Display_Name": "Project Plan 3", + "String_Id": "PROJECTPROFESSIONAL", + "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", + "Service_Plan_Name": "DYN365_CDS_PROJECT", + "Service_Plan_Id": "50554c47-71d9-49fd-bc54-42a2765c555c", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Project" + }, + { + "Product_Display_Name": "Project Plan 3", + "String_Id": "PROJECTPROFESSIONAL", + "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Project Plan 3", + "String_Id": "PROJECTPROFESSIONAL", + "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", + "Service_Plan_Name": "FLOW_FOR_PROJECT", + "Service_Plan_Id": "fa200448-008c-4acb-abd4-ea106ed2199d", + "Service_Plans_Included_Friendly_Names": "Flow for Project" + }, + { + "Product_Display_Name": "Project Plan 3", + "String_Id": "PROJECTPROFESSIONAL", + "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the web" + }, + { + "Product_Display_Name": "Project Plan 3", + "String_Id": "PROJECTPROFESSIONAL", + "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", + "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", + "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", + "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" + }, + { + "Product_Display_Name": "Project Plan 3", + "String_Id": "PROJECTPROFESSIONAL", + "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", + "Service_Plan_Name": "SHAREPOINT_PROJECT", + "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", + "Service_Plans_Included_Friendly_Names": "Project Online Service" + }, + { + "Product_Display_Name": "Project Plan 3", + "String_Id": "PROJECTPROFESSIONAL", + "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", + "Service_Plan_Name": "PROJECT_PROFESSIONAL", + "Service_Plan_Id": "818523f5-016b-4355-9be8-ed6944946ea7", + "Service_Plans_Included_Friendly_Names": "Project P3" + }, + { + "Product_Display_Name": "Project Plan 3", + "String_Id": "PROJECTPROFESSIONAL", + "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Project Plan 3 (for Department)", + "String_Id": "PROJECT_PLAN3_DEPT", + "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", + "Service_Plan_Name": "DYN365_CDS_PROJECT", + "Service_Plan_Id": "50554c47-71d9-49fd-bc54-42a2765c555c", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Project" + }, + { + "Product_Display_Name": "Project Plan 3 (for Department)", + "String_Id": "PROJECT_PLAN3_DEPT", + "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Project Plan 3 (for Department)", + "String_Id": "PROJECT_PLAN3_DEPT", + "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", + "Service_Plan_Name": "FLOW_FOR_PROJECT", + "Service_Plan_Id": "fa200448-008c-4acb-abd4-ea106ed2199d", + "Service_Plans_Included_Friendly_Names": "Flow for Project" + }, + { + "Product_Display_Name": "Project Plan 3 (for Department)", + "String_Id": "PROJECT_PLAN3_DEPT", + "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Project Plan 3 (for Department)", + "String_Id": "PROJECT_PLAN3_DEPT", + "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", + "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", + "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", + "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" + }, + { + "Product_Display_Name": "Project Plan 3 (for Department)", + "String_Id": "PROJECT_PLAN3_DEPT", + "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", + "Service_Plan_Name": "SHAREPOINT_PROJECT", + "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", + "Service_Plans_Included_Friendly_Names": "Project Online Service" + }, + { + "Product_Display_Name": "Project Plan 3 (for Department)", + "String_Id": "PROJECT_PLAN3_DEPT", + "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", + "Service_Plan_Name": "PROJECT_PROFESSIONAL", + "Service_Plan_Id": "818523f5-016b-4355-9be8-ed6944946ea7", + "Service_Plans_Included_Friendly_Names": "Project P3" + }, + { + "Product_Display_Name": "Project Plan 3 (for Department)", + "String_Id": "PROJECT_PLAN3_DEPT", + "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Project Plan 3 for Faculty", + "String_Id": "PROJECTPROFESSIONAL_FACULTY", + "GUID": "46974aed-363e-423c-9e6a-951037cec495", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Project Plan 3 for Faculty", + "String_Id": "PROJECTPROFESSIONAL_FACULTY", + "GUID": "46974aed-363e-423c-9e6a-951037cec495", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" + }, + { + "Product_Display_Name": "Project Plan 3 for Faculty", + "String_Id": "PROJECTPROFESSIONAL_FACULTY", + "GUID": "46974aed-363e-423c-9e6a-951037cec495", + "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", + "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", + "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" + }, + { + "Product_Display_Name": "Project Plan 3 for Faculty", + "String_Id": "PROJECTPROFESSIONAL_FACULTY", + "GUID": "46974aed-363e-423c-9e6a-951037cec495", + "Service_Plan_Name": "SHAREPOINT_PROJECT_EDU", + "Service_Plan_Id": "664a2fed-6c7a-468e-af35-d61740f0ec90", + "Service_Plans_Included_Friendly_Names": "Project Online Service for Education" + }, + { + "Product_Display_Name": "Project Plan 3 for Faculty", + "String_Id": "PROJECTPROFESSIONAL_FACULTY", + "GUID": "46974aed-363e-423c-9e6a-951037cec495", + "Service_Plan_Name": "PROJECT_PROFESSIONAL_FACULTY", + "Service_Plan_Id": "22572403-045f-432b-a660-af949c0a77b5", + "Service_Plans_Included_Friendly_Names": "Project P3 for Faculty" + }, + { + "Product_Display_Name": "Project Plan 3 for Faculty", + "String_Id": "PROJECTPROFESSIONAL_FACULTY", + "GUID": "46974aed-363e-423c-9e6a-951037cec495", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", + "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" + }, + { + "Product_Display_Name": "Project Plan 3 for Faculty", + "String_Id": "PROJECTPROFESSIONAL_FACULTY", + "GUID": "46974aed-363e-423c-9e6a-951037cec495", + "Service_Plan_Name": "DYN365_CDS_PROJECT", + "Service_Plan_Id": "50554c47-71d9-49fd-bc54-42a2765c555c", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Project" + }, + { + "Product_Display_Name": "Project Plan 3 for Faculty", + "String_Id": "PROJECTPROFESSIONAL_FACULTY", + "GUID": "46974aed-363e-423c-9e6a-951037cec495", + "Service_Plan_Name": "FLOW_FOR_PROJECT", + "Service_Plan_Id": "fa200448-008c-4acb-abd4-ea106ed2199d", + "Service_Plans_Included_Friendly_Names": "Power Automate for Project" + }, + { + "Product_Display_Name": "Project Plan 3 for GCC", + "String_Id": "PROJECTPROFESSIONAL_GOV", + "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", + "Service_Plan_Name": "DYN365_CDS_PROJECT_GCC", + "Service_Plan_Id": "83837d9c-c21a-46a0-873e-d834c94015d6", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Project for GCC" + }, + { + "Product_Display_Name": "Project Plan 3 for GCC", + "String_Id": "PROJECTPROFESSIONAL_GOV", + "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Project Plan 3 for GCC", + "String_Id": "PROJECTPROFESSIONAL_GOV", + "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", + "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION_GOV", + "Service_Plan_Id": "45c6831b-ad74-4c7f-bd03-7c2b3fa39067", + "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" + }, + { + "Product_Display_Name": "Project Plan 3 for GCC", + "String_Id": "PROJECTPROFESSIONAL_GOV", + "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", + "Service_Plan_Name": "SHAREPOINT_PROJECT_GOV", + "Service_Plan_Id": "e57afa78-1f19-4542-ba13-b32cd4d8f472", + "Service_Plans_Included_Friendly_Names": "Project Online Service for Government" + }, + { + "Product_Display_Name": "Project Plan 3 for GCC", + "String_Id": "PROJECTPROFESSIONAL_GOV", + "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", + "Service_Plan_Name": "PROJECT_PROFESSIONAL_FOR_GOV", + "Service_Plan_Id": "49c7bc16-7004-4df6-8cd5-4ec48b7e9ea0", + "Service_Plans_Included_Friendly_Names": "Project P3 for GOV" + }, + { + "Product_Display_Name": "Project Plan 3 for GCC", + "String_Id": "PROJECTPROFESSIONAL_GOV", + "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Project Plan 3 for GCC", + "String_Id": "PROJECTPROFESSIONAL_GOV", + "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", + "Service_Plan_Name": "FLOW_FOR_PROJECT_GOV", + "Service_Plan_Id": "16687e20-06f9-4577-9cc0-34a2704260fc", + "Service_Plans_Included_Friendly_Names": "Data integration for Project with Power Automate for GCC" + }, + { + "Product_Display_Name": "Project Plan 3 for GCC TEST", + "String_Id": "Project_Professional_TEST_GCC", + "GUID": "5d505572-203c-4b83-aa9b-dab50fb46277", + "Service_Plan_Name": "DYN365_CDS_PROJECT_GCC", + "Service_Plan_Id": "83837d9c-c21a-46a0-873e-d834c94015d6", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Project for GCC" + }, + { + "Product_Display_Name": "Project Plan 3 for GCC TEST", + "String_Id": "Project_Professional_TEST_GCC", + "GUID": "5d505572-203c-4b83-aa9b-dab50fb46277", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Project Plan 3 for GCC TEST", + "String_Id": "Project_Professional_TEST_GCC", + "GUID": "5d505572-203c-4b83-aa9b-dab50fb46277", + "Service_Plan_Name": "MCOMEETBASIC_GOV", + "Service_Plan_Id": "986d454b-9027-4d9f-880b-f1b68f920cc4", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams Audio Conferencing with dial-out to select geographies for GCC" + }, + { + "Product_Display_Name": "Project Plan 3 for GCC TEST", + "String_Id": "Project_Professional_TEST_GCC", + "GUID": "5d505572-203c-4b83-aa9b-dab50fb46277", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Project Plan 3 for GCC TEST", + "String_Id": "Project_Professional_TEST_GCC", + "GUID": "5d505572-203c-4b83-aa9b-dab50fb46277", + "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION_GOV", + "Service_Plan_Id": "45c6831b-ad74-4c7f-bd03-7c2b3fa39067", + "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" + }, + { + "Product_Display_Name": "Project Plan 3 for GCC TEST", + "String_Id": "Project_Professional_TEST_GCC", + "GUID": "5d505572-203c-4b83-aa9b-dab50fb46277", + "Service_Plan_Name": "SHAREPOINT_PROJECT_GOV", + "Service_Plan_Id": "e57afa78-1f19-4542-ba13-b32cd4d8f472", + "Service_Plans_Included_Friendly_Names": "Project Online Service for Government" + }, + { + "Product_Display_Name": "Project Plan 3 for GCC TEST", + "String_Id": "Project_Professional_TEST_GCC", + "GUID": "5d505572-203c-4b83-aa9b-dab50fb46277", + "Service_Plan_Name": "PROJECT_PROFESSIONAL_FOR_GOV", + "Service_Plan_Id": "49c7bc16-7004-4df6-8cd5-4ec48b7e9ea0", + "Service_Plans_Included_Friendly_Names": "Project P3 for GOV" + }, + { + "Product_Display_Name": "Project Plan 3 for GCC TEST", + "String_Id": "Project_Professional_TEST_GCC", + "GUID": "5d505572-203c-4b83-aa9b-dab50fb46277", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Project Plan 3 for GCC TEST", + "String_Id": "Project_Professional_TEST_GCC", + "GUID": "5d505572-203c-4b83-aa9b-dab50fb46277", + "Service_Plan_Name": "FLOW_FOR_PROJECT_GOV", + "Service_Plan_Id": "16687e20-06f9-4577-9cc0-34a2704260fc", + "Service_Plans_Included_Friendly_Names": "Data integration for Project with Power Automate for GCC" + }, + { + "Product_Display_Name": "Project Plan 3_USGOV_GCCHIGH", + "String_Id": "PROJECTPROFESSIONAL_USGOV_GCCHIGH", + "GUID": "64758d81-92b7-4855-bcac-06617becb3e8", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Project Plan 3_USGOV_GCCHIGH", + "String_Id": "PROJECTPROFESSIONAL_USGOV_GCCHIGH", + "GUID": "64758d81-92b7-4855-bcac-06617becb3e8", + "Service_Plan_Name": "SHAREPOINTWAC", + "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", + "Service_Plans_Included_Friendly_Names": "Office for the Web" + }, + { + "Product_Display_Name": "Project Plan 3_USGOV_GCCHIGH", + "String_Id": "PROJECTPROFESSIONAL_USGOV_GCCHIGH", + "GUID": "64758d81-92b7-4855-bcac-06617becb3e8", + "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", + "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", + "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" + }, + { + "Product_Display_Name": "Project Plan 3_USGOV_GCCHIGH", + "String_Id": "PROJECTPROFESSIONAL_USGOV_GCCHIGH", + "GUID": "64758d81-92b7-4855-bcac-06617becb3e8", + "Service_Plan_Name": "SHAREPOINT_PROJECT", + "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", + "Service_Plans_Included_Friendly_Names": "Project Online Service" + }, + { + "Product_Display_Name": "Project Plan 3_USGOV_GCCHIGH", + "String_Id": "PROJECTPROFESSIONAL_USGOV_GCCHIGH", + "GUID": "64758d81-92b7-4855-bcac-06617becb3e8", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" + }, + { + "Product_Display_Name": "Project Plan 3_USGOV_GCCHIGH", + "String_Id": "PROJECTPROFESSIONAL_USGOV_GCCHIGH", + "GUID": "64758d81-92b7-4855-bcac-06617becb3e8", + "Service_Plan_Name": "DYN365_CDS_PROJECT", + "Service_Plan_Id": "50554c47-71d9-49fd-bc54-42a2765c555c", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Project" + }, + { + "Product_Display_Name": "Project Plan 5 for faculty", + "String_Id": "PROJECTPREMIUM_FACULTY", + "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Project Plan 5 for faculty", + "String_Id": "PROJECTPREMIUM_FACULTY", + "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" + }, + { + "Product_Display_Name": "Project Plan 5 for faculty", + "String_Id": "PROJECTPREMIUM_FACULTY", + "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", + "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", + "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", + "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" + }, + { + "Product_Display_Name": "Project Plan 5 for faculty", + "String_Id": "PROJECTPREMIUM_FACULTY", + "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", + "Service_Plan_Name": "SHAREPOINT_PROJECT_EDU", + "Service_Plan_Id": "664a2fed-6c7a-468e-af35-d61740f0ec90", + "Service_Plans_Included_Friendly_Names": "Project Online Service for Education" + }, + { + "Product_Display_Name": "Project Plan 5 for faculty", + "String_Id": "PROJECTPREMIUM_FACULTY", + "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", + "Service_Plan_Name": "PROJECT_PROFESSIONAL_FACULTY", + "Service_Plan_Id": "22572403-045f-432b-a660-af949c0a77b5", + "Service_Plans_Included_Friendly_Names": "Project P3 for Faculty" + }, + { + "Product_Display_Name": "Project Plan 5 for faculty", + "String_Id": "PROJECTPREMIUM_FACULTY", + "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", + "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" + }, + { + "Product_Display_Name": "Project Plan 5 for faculty", + "String_Id": "PROJECTPREMIUM_FACULTY", + "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Project Plan 5 for faculty", + "String_Id": "PROJECTPREMIUM_FACULTY", + "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office Online for Education" + }, + { + "Product_Display_Name": "Project Plan 5 for faculty", + "String_Id": "PROJECTPREMIUM_FACULTY", + "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", + "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", + "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", + "Service_Plans_Included_Friendly_Names": "Project Client" + }, + { + "Product_Display_Name": "Project Plan 5 for faculty", + "String_Id": "PROJECTPREMIUM_FACULTY", + "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", + "Service_Plan_Name": "Project Online for Education", + "Service_Plan_Id": "664a2fed-6c7a-468e-af35-d61740f0ec90", + "Service_Plans_Included_Friendly_Names": "Project Online for Education" + }, + { + "Product_Display_Name": "Project Plan 5 for faculty", + "String_Id": "PROJECTPREMIUM_FACULTY", + "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", + "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" + }, + { + "Product_Display_Name": "Project Plan 5 for faculty", + "String_Id": "PROJECTPREMIUM_FACULTY", + "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", + "Service_Plan_Name": "DYN365_CDS_PROJECT", + "Service_Plan_Id": "50554c47-71d9-49fd-bc54-42a2765c555c", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Project" + }, + { + "Product_Display_Name": "Project Plan 5 for faculty", + "String_Id": "PROJECTPREMIUM_FACULTY", + "GUID": "930cc132-4d6b-4d8c-8818-587d17c50d56", + "Service_Plan_Name": "FLOW_FOR_PROJECT", + "Service_Plan_Id": "fa200448-008c-4acb-abd4-ea106ed2199d", + "Service_Plans_Included_Friendly_Names": "Power Automate for Project" + }, + { + "Product_Display_Name": "Project Plan 5 for GCC", + "String_Id": "PROJECTPREMIUM_GOV", + "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", + "Service_Plan_Name": "DYN365_CDS_PROJECT_GCC", + "Service_Plan_Id": "83837d9c-c21a-46a0-873e-d834c94015d6", + "Service_Plans_Included_Friendly_Names": "Common Data Service for Project for GCC" + }, + { + "Product_Display_Name": "Project Plan 5 for GCC", + "String_Id": "PROJECTPREMIUM_GOV", + "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Project Plan 5 for GCC", + "String_Id": "PROJECTPREMIUM_GOV", + "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", + "Service_Plan_Name": "SHAREPOINTWAC_GOV", + "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Government" + }, + { + "Product_Display_Name": "Project Plan 5 for GCC", + "String_Id": "PROJECTPREMIUM_GOV", + "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", + "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION_GOV", + "Service_Plan_Id": "45c6831b-ad74-4c7f-bd03-7c2b3fa39067", + "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" + }, + { + "Product_Display_Name": "Project Plan 5 for GCC", + "String_Id": "PROJECTPREMIUM_GOV", + "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", + "Service_Plan_Name": "SHAREPOINT_PROJECT_GOV", + "Service_Plan_Id": "e57afa78-1f19-4542-ba13-b32cd4d8f472", + "Service_Plans_Included_Friendly_Names": "Project Online Service for Government" + }, + { + "Product_Display_Name": "Project Plan 5 for GCC", + "String_Id": "PROJECTPREMIUM_GOV", + "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", + "Service_Plan_Name": "PROJECT_PROFESSIONAL_FOR_GOV", + "Service_Plan_Id": "49c7bc16-7004-4df6-8cd5-4ec48b7e9ea0", + "Service_Plans_Included_Friendly_Names": "Project P3 for GOV" + }, + { + "Product_Display_Name": "Project Plan 5 for GCC", + "String_Id": "PROJECTPREMIUM_GOV", + "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", + "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", + "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" + }, + { + "Product_Display_Name": "Project Plan 5 for GCC", + "String_Id": "PROJECTPREMIUM_GOV", + "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", + "Service_Plan_Name": "FLOW_FOR_PROJECT_GOV", + "Service_Plan_Id": "16687e20-06f9-4577-9cc0-34a2704260fc", + "Service_Plans_Included_Friendly_Names": "Data integration for Project with Power Automate for GCC" + }, + { + "Product_Display_Name": "Project Plan 5 without Project Client for Faculty", + "String_Id": "PROJECTONLINE_PLAN_1_FACULTY", + "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Project Plan 5 without Project Client for Faculty", + "String_Id": "PROJECTONLINE_PLAN_1_FACULTY", + "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac", + "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", + "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", + "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" + }, + { + "Product_Display_Name": "Project Plan 5 without Project Client for Faculty", + "String_Id": "PROJECTONLINE_PLAN_1_FACULTY", + "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac", + "Service_Plan_Name": "SHAREPOINTWAC_EDU", + "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", + "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" + }, + { + "Product_Display_Name": "Project Plan 5 without Project Client for Faculty", + "String_Id": "PROJECTONLINE_PLAN_1_FACULTY", + "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac", + "Service_Plan_Name": "SHAREPOINT_PROJECT_EDU", + "Service_Plan_Id": "664a2fed-6c7a-468e-af35-d61740f0ec90", + "Service_Plans_Included_Friendly_Names": "Project Online Service for Education" + }, + { + "Product_Display_Name": "Project Plan 5 without Project Client for Faculty", + "String_Id": "PROJECTONLINE_PLAN_1_FACULTY", + "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac", + "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", + "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", + "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" + }, + { + "Product_Display_Name": "Project Plan 5 without Project Client for Faculty", + "String_Id": "PROJECTONLINE_PLAN_1_FACULTY", + "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac", + "Service_Plan_Name": "SWAY", + "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", + "Service_Plans_Included_Friendly_Names": "Sway" + }, + { + "Product_Display_Name": "Rights Management Adhoc", + "String_Id": "RIGHTSMANAGEMENT_ADHOC", + "GUID": "8c4ce438-32a7-4ac5-91a6-e22ae08d9c8b", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Rights Management Adhoc", + "String_Id": "RIGHTSMANAGEMENT_ADHOC", + "GUID": "8c4ce438-32a7-4ac5-91a6-e22ae08d9c8b", + "Service_Plan_Name": "RMS_S_ADHOC", + "Service_Plan_Id": "7a39d7dd-e456-4e09-842a-0204ee08187b", + "Service_Plans_Included_Friendly_Names": "Rights Management Adhoc" + }, + { + "Product_Display_Name": "Rights Management Service Basic Content Protection", + "String_Id": "RMSBASIC", + "GUID": "093e8d14-a334-43d9-93e3-30589a8b47d0", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Rights Management Service Basic Content Protection", + "String_Id": "RMSBASIC", + "GUID": "093e8d14-a334-43d9-93e3-30589a8b47d0", + "Service_Plan_Name": "RMS_S_BASIC", + "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", + "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" + }, + { + "Product_Display_Name": "Sensor Data Intelligence Additional Machines Add-in for Dynamics 365 Supply Chain Management", + "String_Id": "DYN365_IOT_INTELLIGENCE_ADDL_MACHINES", + "GUID": "08e18479-4483-4f70-8f17-6f92156d8ea9", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Sensor Data Intelligence Additional Machines Add-in for Dynamics 365 Supply Chain Management", + "String_Id": "DYN365_IOT_INTELLIGENCE_ADDL_MACHINES", + "GUID": "08e18479-4483-4f70-8f17-6f92156d8ea9", + "Service_Plan_Name": "D365_IOTFORSCM_ADDITIONAL", + "Service_Plan_Id": "a5f38206-2f48-4d83-9957-525f4e75e9c0", + "Service_Plans_Included_Friendly_Names": "IoT Intelligence Add-in Additional Machines" + }, + { + "Product_Display_Name": "Sensor Data Intelligence Scenario Add-in for Dynamics 365 Supply Chain Management", + "String_Id": "DYN365_IOT_INTELLIGENCE_SCENARIO", + "GUID": "9ea4bdef-a20b-4668-b4a7-73e1f7696e0a", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Sensor Data Intelligence Scenario Add-in for Dynamics 365 Supply Chain Management", + "String_Id": "DYN365_IOT_INTELLIGENCE_SCENARIO", + "GUID": "9ea4bdef-a20b-4668-b4a7-73e1f7696e0a", + "Service_Plan_Name": "D365_IOTFORSCM", + "Service_Plan_Id": "83dd9619-c7d5-44da-9250-dc4ee79fff7e", + "Service_Plans_Included_Friendly_Names": "Iot Intelligence Add-in for D365 Supply Chain Management" + }, + { + "Product_Display_Name": "SharePoint Online (Plan 1)", + "String_Id": "SHAREPOINTSTANDARD", + "GUID": "1fc08a02-8b3d-43b9-831e-f76859e04e1a", + "Service_Plan_Name": "SHAREPOINTSTANDARD", + "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", + "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" + }, + { + "Product_Display_Name": "SharePoint Online (Plan 2)", + "String_Id": "SHAREPOINTENTERPRISE", + "GUID": "a9732ec9-17d9-494c-a51c-d6b45b384dcb", + "Service_Plan_Name": "SHAREPOINTENTERPRISE", + "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", + "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" + }, + { + "Product_Display_Name": "SharePoint Syntex", + "String_Id": "Intelligent_Content_Services", + "GUID": "f61d4aba-134f-44e9-a2a0-f81a5adb26e4", + "Service_Plan_Name": "CDS_O365_E5_KM", + "Service_Plan_Id": "3069d530-e41b-421c-ad59-fb1001a23e11", + "Service_Plans_Included_Friendly_Names": "Common Data Service for SharePoint Syntex" + }, + { + "Product_Display_Name": "SharePoint Syntex", + "String_Id": "Intelligent_Content_Services", + "GUID": "f61d4aba-134f-44e9-a2a0-f81a5adb26e4", + "Service_Plan_Name": "Intelligent_Content_Services", + "Service_Plan_Id": "f00bd55e-1633-416e-97c0-03684e42bc42", + "Service_Plans_Included_Friendly_Names": "SharePoint Syntex" + }, + { + "Product_Display_Name": "SharePoint Syntex", + "String_Id": "Intelligent_Content_Services", + "GUID": "f61d4aba-134f-44e9-a2a0-f81a5adb26e4", + "Service_Plan_Name": "Intelligent_Content_Services_SPO_type", + "Service_Plan_Id": "fd2e7f90-1010-487e-a11b-d2b1ae9651fc", + "Service_Plans_Included_Friendly_Names": "SharePoint Syntex - SPO type" + }, + { + "Product_Display_Name": "Skype for Business Online (Plan 1)", + "String_Id": "MCOIMP", + "GUID": "b8b749f8-a4ef-4887-9539-c95b1eaa5db7", + "Service_Plan_Name": "MCOIMP", + "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", + "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 1)" + }, + { + "Product_Display_Name": "Skype for Business Online (Plan 2)", + "String_Id": "MCOSTANDARD", + "GUID": "d42c793f-6c78-4f43-92ca-e8f6a02b035f", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" + }, + { + "Product_Display_Name": "Skype for Business PSTN Domestic and International Calling", + "String_Id": "MCOPSTN2", + "GUID": "d3b4fe1f-9992-4930-8acb-ca6ec609365e", + "Service_Plan_Name": "MCOPSTN2", + "Service_Plan_Id": "5a10155d-f5c1-411a-a8ec-e99aae125390", + "Service_Plans_Included_Friendly_Names": "DOMESTIC AND INTERNATIONAL CALLING PLAN" + }, + { + "Product_Display_Name": "Skype for Business PSTN Domestic Calling", + "String_Id": "MCOPSTN1", + "GUID": "0dab259f-bf13-4952-b7f8-7db8f131b28d", + "Service_Plan_Name": "MCOPSTN1", + "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8", + "Service_Plans_Included_Friendly_Names": "DOMESTIC CALLING PLAN" + }, + { + "Product_Display_Name": "Skype for Business PSTN Domestic Calling (120 Minutes)", + "String_Id": "MCOPSTN5", + "GUID": "54a152dc-90de-4996-93d2-bc47e670fc06", + "Service_Plan_Name": "MCOPSTN5", + "Service_Plan_Id": "54a152dc-90de-4996-93d2-bc47e670fc06", + "Service_Plans_Included_Friendly_Names": "DOMESTIC CALLING PLAN" + }, + { + "Product_Display_Name": "Skype for Business PSTN Usage Calling Plan", + "String_Id": "MCOPSTNPP", + "GUID": "06b48c5f-01d9-4b18-9015-03b52040f51a", + "Service_Plan_Name": "MCOPSTN3", + "Service_Plan_Id": "6b340437-d6f9-4dc5-8cc2-99163f7f83d6", + "Service_Plans_Included_Friendly_Names": "MCOPSTN3" + }, + { + "Product_Display_Name": "Teams Phone with Calling Plan", + "String_Id": "MCOTEAMS_ESSENTIALS", + "GUID": "ae2343d1-0999-43f6-ae18-d816516f6e78", + "Service_Plan_Name": "MCOPSTN1", + "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan" + }, + { + "Product_Display_Name": "Teams Phone with Calling Plan", + "String_Id": "MCOTEAMS_ESSENTIALS", + "GUID": "ae2343d1-0999-43f6-ae18-d816516f6e78", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Teams Rooms Premium", + "String_Id": "MTR_PREM", + "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", + "Service_Plan_Name": "MMR_P1", + "Service_Plan_Id": "bdaa59a3-74fd-4137-981a-31d4f84eb8a0", + "Service_Plans_Included_Friendly_Names": "Meeting Room Managed Services" + }, + { + "Product_Display_Name": "Teams Rooms Premium", + "String_Id": "MTR_PREM", + "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", + "Service_Plan_Name": "MCOMEETADV", + "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" + }, + { + "Product_Display_Name": "Teams Rooms Premium", + "String_Id": "MTR_PREM", + "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Teams Rooms Premium", + "String_Id": "MTR_PREM", + "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune" + }, + { + "Product_Display_Name": "Teams Rooms Premium", + "String_Id": "MTR_PREM", + "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Teams Rooms Premium", + "String_Id": "MTR_PREM", + "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Teams Rooms Premium", + "String_Id": "MTR_PREM", + "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", + "Service_Plan_Name": "WHITEBOARD_PLAN3", + "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", + "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" + }, + { + "Product_Display_Name": "TELSTRA Calling for O365", + "String_Id": "MCOPSTNEAU2", + "GUID": "de3312e1-c7b0-46e6-a7c3-a515ff90bc86", + "Service_Plan_Name": "MCOPSTNEAU", + "Service_Plan_Id": "7861360b-dc3b-4eba-a3fc-0d323a035746", + "Service_Plans_Included_Friendly_Names": "AUSTRALIA CALLING PLAN" + }, + { + "Product_Display_Name": "Universal Print", + "String_Id": "UNIVERSAL_PRINT", + "GUID": "9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Universal Print", + "String_Id": "UNIVERSAL_PRINT", + "GUID": "9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Visio Plan 1", + "String_Id": "VISIO_PLAN1_DEPT", + "GUID": "ca7f3140-d88c-455b-9a1c-7f0679e31a76", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Visio Plan 1", + "String_Id": "VISIO_PLAN1_DEPT", + "GUID": "ca7f3140-d88c-455b-9a1c-7f0679e31a76", + "Service_Plan_Name": "ONEDRIVE_BASIC", + "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1", + "Service_Plans_Included_Friendly_Names": "OneDrive for business Basic" + }, + { + "Product_Display_Name": "Visio Plan 1", + "String_Id": "VISIO_PLAN1_DEPT", + "GUID": "ca7f3140-d88c-455b-9a1c-7f0679e31a76", + "Service_Plan_Name": "VISIOONLINE", + "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f", + "Service_Plans_Included_Friendly_Names": "Visio web app" + }, + { + "Product_Display_Name": "Visio Plan 2", + "String_Id": "VISIO_PLAN2_DEPT", + "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Visio Plan 2", + "String_Id": "VISIO_PLAN2_DEPT", + "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1", + "Service_Plan_Name": "ONEDRIVE_BASIC", + "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1", + "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Basic)" + }, + { + "Product_Display_Name": "Visio Plan 2", + "String_Id": "VISIO_PLAN2_DEPT", + "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1", + "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION", + "Service_Plan_Id": "663a804f-1c30-4ff0-9915-9db84f0d1cea", + "Service_Plans_Included_Friendly_Names": "Visio Desktop App" + }, + { + "Product_Display_Name": "Visio Plan 2", + "String_Id": "VISIO_PLAN2_DEPT", + "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1", + "Service_Plan_Name": "VISIOONLINE", + "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f", + "Service_Plans_Included_Friendly_Names": "Visio Web App" + }, + { + "Product_Display_Name": "Visio Plan 2_USGOV_GCCHIGH", + "String_Id": "VISIOCLIENT_USGOV_GCCHIGH", + "GUID": "80e52531-ad7f-44ea-abc3-28e389462f1b", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Visio Plan 2_USGOV_GCCHIGH", + "String_Id": "VISIOCLIENT_USGOV_GCCHIGH", + "GUID": "80e52531-ad7f-44ea-abc3-28e389462f1b", + "Service_Plan_Name": "ONEDRIVE_BASIC", + "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1", + "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Basic)" + }, + { + "Product_Display_Name": "Visio Plan 2_USGOV_GCCHIGH", + "String_Id": "VISIOCLIENT_USGOV_GCCHIGH", + "GUID": "80e52531-ad7f-44ea-abc3-28e389462f1b", + "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION", + "Service_Plan_Id": "663a804f-1c30-4ff0-9915-9db84f0d1cea", + "Service_Plans_Included_Friendly_Names": "Visio Desktop App" + }, + { + "Product_Display_Name": "Visio Plan 2_USGOV_GCCHIGH", + "String_Id": "VISIOCLIENT_USGOV_GCCHIGH", + "GUID": "80e52531-ad7f-44ea-abc3-28e389462f1b", + "Service_Plan_Name": "VISIOONLINE", + "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f", + "Service_Plans_Included_Friendly_Names": "Visio Web App" + }, + { + "Product_Display_Name": "Visio Online Plan 1", + "String_Id": "VISIOONLINE_PLAN1", + "GUID": "4b244418-9658-4451-a2b8-b5e2b364e9bd", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" + }, + { + "Product_Display_Name": "Visio Online Plan 1", + "String_Id": "VISIOONLINE_PLAN1", + "GUID": "4b244418-9658-4451-a2b8-b5e2b364e9bd", + "Service_Plan_Name": "ONEDRIVE_BASIC", + "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1", + "Service_Plans_Included_Friendly_Names": "ONEDRIVE FOR BUSINESS BASIC" + }, + { + "Product_Display_Name": "Visio Online Plan 1", + "String_Id": "VISIOONLINE_PLAN1", + "GUID": "4b244418-9658-4451-a2b8-b5e2b364e9bd", + "Service_Plan_Name": "VISIOONLINE", + "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f", + "Service_Plans_Included_Friendly_Names": "VISIO WEB APP" + }, + { + "Product_Display_Name": "Visio Online Plan 2", + "String_Id": "VISIOCLIENT", + "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" + }, + { + "Product_Display_Name": "Visio Online Plan 2", + "String_Id": "VISIOCLIENT", + "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5", + "Service_Plan_Name": "ONEDRIVE_BASIC", + "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1", + "Service_Plans_Included_Friendly_Names": "ONEDRIVE FOR BUSINESS BASIC" + }, + { + "Product_Display_Name": "Visio Online Plan 2", + "String_Id": "VISIOCLIENT", + "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5", + "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION", + "Service_Plan_Id": "663a804f-1c30-4ff0-9915-9db84f0d1cea", + "Service_Plans_Included_Friendly_Names": "VISIO DESKTOP APP" + }, + { + "Product_Display_Name": "Visio Online Plan 2", + "String_Id": "VISIOCLIENT", + "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5", + "Service_Plan_Name": "VISIOONLINE", + "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f", + "Service_Plans_Included_Friendly_Names": "VISIO WEB APP" + }, + { + "Product_Display_Name": "Visio Plan 2 for GCC", + "String_Id": "VISIOCLIENT_GOV", + "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT" + }, + { + "Product_Display_Name": "Visio Plan 2 for GCC", + "String_Id": "VISIOCLIENT_GOV", + "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba", + "Service_Plan_Name": "ONEDRIVE_BASIC_GOV", + "Service_Plan_Id": "98709c2e-96b5-4244-95f5-a0ebe139fb8a", + "Service_Plans_Included_Friendly_Names": "ONEDRIVE FOR BUSINESS BASIC FOR GOVERNMENT" + }, + { + "Product_Display_Name": "Visio Plan 2 for GCC", + "String_Id": "VISIOCLIENT_GOV", + "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba", + "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION_GOV", + "Service_Plan_Id": "f85945f4-7a55-4009-bc39-6a5f14a8eac1", + "Service_Plans_Included_Friendly_Names": "VISIO DESKTOP APP FOR Government" + }, + { + "Product_Display_Name": "Visio Plan 2 for GCC", + "String_Id": "VISIOCLIENT_GOV", + "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba", + "Service_Plan_Name": "VISIOONLINE_GOV", + "Service_Plan_Id": "8a9ecb07-cfc0-48ab-866c-f83c4d911576", + "Service_Plans_Included_Friendly_Names": "VISIO WEB APP FOR GOVERNMENT" + }, + { + "Product_Display_Name": "Visio Plan 2 for Faculty", + "String_Id": "VISIOCLIENT_FACULTY", + "GUID": "bf95fd32-576a-4742-8d7a-6dc4940b9532", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Visio Plan 2 for Faculty", + "String_Id": "VISIOCLIENT_FACULTY", + "GUID": "bf95fd32-576a-4742-8d7a-6dc4940b9532", + "Service_Plan_Name": "ONEDRIVE_BASIC", + "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1", + "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Basic)" + }, + { + "Product_Display_Name": "Visio Plan 2 for Faculty", + "String_Id": "VISIOCLIENT_FACULTY", + "GUID": "bf95fd32-576a-4742-8d7a-6dc4940b9532", + "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION", + "Service_Plan_Id": "663a804f-1c30-4ff0-9915-9db84f0d1cea", + "Service_Plans_Included_Friendly_Names": "Visio Desktop App" + }, + { + "Product_Display_Name": "Visio Plan 2 for Faculty", + "String_Id": "VISIOCLIENT_FACULTY", + "GUID": "bf95fd32-576a-4742-8d7a-6dc4940b9532", + "Service_Plan_Name": "VISIOONLINE", + "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f", + "Service_Plans_Included_Friendly_Names": "Visio Web App" + }, + { + "Product_Display_Name": "Viva Topics", + "String_Id": "TOPIC_EXPERIENCES", + "GUID": "4016f256-b063-4864-816e-d818aad600c9", + "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX_TOPICEXP", + "Service_Plan_Id": "b74d57b2-58e9-484a-9731-aeccbba954f0", + "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index (Viva Topics)" + }, + { + "Product_Display_Name": "Viva Topics", + "String_Id": "TOPIC_EXPERIENCES", + "GUID": "4016f256-b063-4864-816e-d818aad600c9", + "Service_Plan_Name": "CORTEX", + "Service_Plan_Id": "c815c93d-0759-4bb8-b857-bc921a71be83", + "Service_Plans_Included_Friendly_Names": "Viva Topics" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)", + "String_Id": "WIN_ENT_E5", + "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e", + "Service_Plan_Name": "DATAVERSE_FOR_POWERAUTOMATE_DESKTOP", + "Service_Plan_Id": "59231cdf-b40d-4534-a93e-14d0cd31d27e", + "Service_Plans_Included_Friendly_Names": "Dataverse for PAD" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)", + "String_Id": "WIN_ENT_E5", + "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)", + "String_Id": "WIN_ENT_E5", + "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)", + "String_Id": "WIN_ENT_E5", + "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e", + "Service_Plan_Name": "POWERAUTOMATE_DESKTOP_FOR_WIN", + "Service_Plan_Id": "2d589a15-b171-4e61-9b5f-31d15eeb2872", + "Service_Plans_Included_Friendly_Names": "PAD for Windows" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)", + "String_Id": "WIN_ENT_E5", + "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)", + "String_Id": "WIN_ENT_E5", + "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e", + "Service_Plan_Name": "WIN10_PRO_ENT_SUB", + "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)", + "String_Id": "WIN_ENT_E5", + "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise A3 for faculty", + "String_Id": "WIN10_ENT_A3_FAC", + "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise A3 for faculty", + "String_Id": "WIN10_ENT_A3_FAC", + "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise A3 for faculty", + "String_Id": "WIN10_ENT_A3_FAC", + "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06", + "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", + "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", + "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise A3 for faculty", + "String_Id": "WIN10_ENT_A3_FAC", + "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise A3 for students", + "String_Id": "WIN10_ENT_A3_STU", + "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise A3 for students", + "String_Id": "WIN10_ENT_A3_STU", + "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise A3 for students", + "String_Id": "WIN10_ENT_A3_STU", + "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31", + "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", + "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", + "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise A3 for students", + "String_Id": "WIN10_ENT_A3_STU", + "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise A5 for faculty", + "String_Id": "WIN10_ENT_A5_FAC", + "GUID": "7b1a89a9-5eb9-4cf8-9467-20c943f1122c", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise A5 for faculty", + "String_Id": "WIN10_ENT_A5_FAC", + "GUID": "7b1a89a9-5eb9-4cf8-9467-20c943f1122c", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise A5 for faculty", + "String_Id": "WIN10_ENT_A5_FAC", + "GUID": "7b1a89a9-5eb9-4cf8-9467-20c943f1122c", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise A5 for faculty", + "String_Id": "WIN10_ENT_A5_FAC", + "GUID": "7b1a89a9-5eb9-4cf8-9467-20c943f1122c", + "Service_Plan_Name": "Virtualization Rights for Windows 10", + "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise A5 for faculty", + "String_Id": "WIN10_ENT_A5_FAC", + "GUID": "7b1a89a9-5eb9-4cf8-9467-20c943f1122c", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E3", + "String_Id": "WIN10_PRO_ENT_SUB", + "GUID": "cb10e6cd-9da4-4992-867b-67546b1db821", + "Service_Plan_Name": "WIN10_PRO_ENT_SUB", + "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", + "Service_Plans_Included_Friendly_Names": "WINDOWS 10 ENTERPRISE" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E3", + "String_Id": "WIN10_VDA_E3", + "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E3", + "String_Id": "WIN10_VDA_E3", + "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "UNIVERSAL PRINT" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E3", + "String_Id": "WIN10_VDA_E3", + "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", + "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", + "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", + "Service_Plans_Included_Friendly_Names": "WINDOWS 10 ENTERPRISE (NEW)" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E3", + "String_Id": "WIN10_VDA_E3", + "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "WINDOWS UPDATE FOR BUSINESS DEPLOYMENT SERVICE" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E3", + "String_Id": "WIN10_VDA_E3", + "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", + "Service_Plan_Name": "Windows_Autopatch", + "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", + "Service_Plans_Included_Friendly_Names": "Windows Autopatch" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E5", + "String_Id": "WIN10_VDA_E5", + "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E5", + "String_Id": "WIN10_VDA_E5", + "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender For Endpoint" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E5", + "String_Id": "WIN10_VDA_E5", + "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E5", + "String_Id": "WIN10_VDA_E5", + "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", + "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", + "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", + "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E5", + "String_Id": "WIN10_VDA_E5", + "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E5", + "String_Id": "WIN10_VDA_E5", + "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", + "Service_Plan_Name": "Windows_Autopatch", + "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", + "Service_Plans_Included_Friendly_Names": "Windows Autopatch" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E5 Commercial (GCC Compatible)", + "String_Id": "WINE5_GCC_COMPAT", + "GUID": "938fd547-d794-42a4-996c-1cc206619580", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", + "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E5 Commercial (GCC Compatible)", + "String_Id": "WINE5_GCC_COMPAT", + "GUID": "938fd547-d794-42a4-996c-1cc206619580", + "Service_Plan_Name": "WINDEFATP", + "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", + "Service_Plans_Included_Friendly_Names": "Microsoft Defender For Endpoint" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E5 Commercial (GCC Compatible)", + "String_Id": "WINE5_GCC_COMPAT", + "GUID": "938fd547-d794-42a4-996c-1cc206619580", + "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", + "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", + "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA", + "String_Id": "E3_VDA_only", + "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA", + "String_Id": "E3_VDA_only", + "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550", + "Service_Plan_Name": "UNIVERSAL_PRINT_01", + "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", + "Service_Plans_Included_Friendly_Names": "Universal Print" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA", + "String_Id": "E3_VDA_only", + "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550", + "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)", + "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", + "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA", + "String_Id": "E3_VDA_only", + "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550", + "Service_Plan_Name": "Windows_Autopatch", + "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3", + "Service_Plans_Included_Friendly_Names": "Windows Autopatch" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA", + "String_Id": "E3_VDA_only", + "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550", + "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", + "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", + "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA", + "String_Id": "E3_VDA_only", + "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550", + "Service_Plan_Name": "DATAVERSE_FOR_POWERAUTOMATE_DESKTOP", + "Service_Plan_Id": "59231cdf-b40d-4534-a93e-14d0cd31d27e", + "Service_Plans_Included_Friendly_Names": "Dataverse for PAD" + }, + { + "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA", + "String_Id": "E3_VDA_only", + "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550", + "Service_Plan_Name": "POWERAUTOMATE_DESKTOP_FOR_WIN", + "Service_Plan_Id": "2d589a15-b171-4e61-9b5f-31d15eeb2872", + "Service_Plans_Included_Friendly_Names": "PAD for Windows" + }, + { + "Product_Display_Name": "Windows 365 Business 1 vCPU 2 GB 64 GB", + "String_Id": "CPC_B_1C_2RAM_64GB", + "GUID": "816eacd3-e1e3-46b3-83c8-1ffd37e053d9", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Business 1 vCPU 2 GB 64 GB", + "String_Id": "CPC_B_1C_2RAM_64GB", + "GUID": "816eacd3-e1e3-46b3-83c8-1ffd37e053d9", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Windows 365 Business 1 vCPU 2 GB 64 GB", + "String_Id": "CPC_B_1C_2RAM_64GB", + "GUID": "816eacd3-e1e3-46b3-83c8-1ffd37e053d9", + "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", + "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" + }, + { + "Product_Display_Name": "Windows 365 Business 1 vCPU 2 GB 64 GB", + "String_Id": "CPC_B_1C_2RAM_64GB", + "GUID": "816eacd3-e1e3-46b3-83c8-1ffd37e053d9", + "Service_Plan_Name": "CPC_B_1C_2RAM_64GB", + "Service_Plan_Id": "3b98b912-1720-4a1e-9630-c9a41dbb61d8", + "Service_Plans_Included_Friendly_Names": "Windows 365 Business 1 vCPU 2 GB 64 GB" + }, + { + "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 128 GB", + "String_Id": "CPC_B_2C_4RAM_128GB", + "GUID": "135bee78-485b-4181-ad6e-40286e311850", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 128 GB", + "String_Id": "CPC_B_2C_4RAM_128GB", + "GUID": "135bee78-485b-4181-ad6e-40286e311850", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 128 GB", + "String_Id": "CPC_B_2C_4RAM_128GB", + "GUID": "135bee78-485b-4181-ad6e-40286e311850", + "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", + "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" + }, + { + "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 128 GB", + "String_Id": "CPC_B_2C_4RAM_128GB", + "GUID": "135bee78-485b-4181-ad6e-40286e311850", + "Service_Plan_Name": "CPC_B_2C_4RAM_128GB", + "Service_Plan_Id": "1a13832e-cd79-497d-be76-24186f55c8b0", + "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU 4 GB 128 GB" + }, + { + "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 256 GB", + "String_Id": "CPC_B_2C_4RAM_256GB", + "GUID": "805d57c3-a97d-4c12-a1d0-858ffe5015d0", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 256 GB", + "String_Id": "CPC_B_2C_4RAM_256GB", + "GUID": "805d57c3-a97d-4c12-a1d0-858ffe5015d0", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 256 GB", + "String_Id": "CPC_B_2C_4RAM_256GB", + "GUID": "805d57c3-a97d-4c12-a1d0-858ffe5015d0", + "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", + "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" + }, + { + "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 256 GB", + "String_Id": "CPC_B_2C_4RAM_256GB", + "GUID": "805d57c3-a97d-4c12-a1d0-858ffe5015d0", + "Service_Plan_Name": "CPC_B_2C_4RAM_256GB", + "Service_Plan_Id": "a0b1c075-51c9-4a42-b34c-308f3993bb7e", + "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU 4 GB 256 GB" + }, + { + "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 64 GB", + "String_Id": "CPC_B_2C_4RAM_64GB", + "GUID": "42e6818f-8966-444b-b7ac-0027c83fa8b5", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 64 GB", + "String_Id": "CPC_B_2C_4RAM_64GB", + "GUID": "42e6818f-8966-444b-b7ac-0027c83fa8b5", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 64 GB", + "String_Id": "CPC_B_2C_4RAM_64GB", + "GUID": "42e6818f-8966-444b-b7ac-0027c83fa8b5", + "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", + "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" + }, + { + "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 64 GB", + "String_Id": "CPC_B_2C_4RAM_64GB", + "GUID": "42e6818f-8966-444b-b7ac-0027c83fa8b5", + "Service_Plan_Name": "CPC_B_2C_4RAM_64GB", + "Service_Plan_Id": "a790cd6e-a153-4461-83c7-e127037830b6", + "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU 4 GB 64 GB" + }, + { + "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 128 GB", + "String_Id": "CPC_B_2C_8RAM_128GB", + "GUID": "71f21848-f89b-4aaa-a2dc-780c8e8aac5b", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 128 GB", + "String_Id": "CPC_B_2C_8RAM_128GB", + "GUID": "71f21848-f89b-4aaa-a2dc-780c8e8aac5b", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 128 GB", + "String_Id": "CPC_B_2C_8RAM_128GB", + "GUID": "71f21848-f89b-4aaa-a2dc-780c8e8aac5b", + "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", + "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" + }, + { + "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 128 GB", + "String_Id": "CPC_B_2C_8RAM_128GB", + "GUID": "71f21848-f89b-4aaa-a2dc-780c8e8aac5b", + "Service_Plan_Name": "CPC_SS_2", + "Service_Plan_Id": "9d2eed2c-b0c0-4a89-940c-bc303444a41b", + "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU, 8 GB, 128 GB" + }, + { + "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 256 GB", + "String_Id": "CPC_B_2C_8RAM_256GB", + "GUID": "750d9542-a2f8-41c7-8c81-311352173432", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 256 GB", + "String_Id": "CPC_B_2C_8RAM_256GB", + "GUID": "750d9542-a2f8-41c7-8c81-311352173432", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 256 GB", + "String_Id": "CPC_B_2C_8RAM_256GB", + "GUID": "750d9542-a2f8-41c7-8c81-311352173432", + "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", + "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" + }, + { + "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 256 GB", + "String_Id": "CPC_B_2C_8RAM_256GB", + "GUID": "750d9542-a2f8-41c7-8c81-311352173432", + "Service_Plan_Name": "CPC_B_2C_8RAM_256GB", + "Service_Plan_Id": "1a3ef005-2ef6-434b-8be1-faa56c892854", + "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU 8 GB 256 GB" + }, + { + "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB", + "String_Id": "CPC_B_4C_16RAM_128GB", + "GUID": "ad83ac17-4a5a-4ebb-adb2-079fb277e8b9", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB", + "String_Id": "CPC_B_4C_16RAM_128GB", + "GUID": "ad83ac17-4a5a-4ebb-adb2-079fb277e8b9", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB", + "String_Id": "CPC_B_4C_16RAM_128GB", + "GUID": "ad83ac17-4a5a-4ebb-adb2-079fb277e8b9", + "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", + "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" + }, + { + "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB", + "String_Id": "CPC_B_4C_16RAM_128GB", + "GUID": "ad83ac17-4a5a-4ebb-adb2-079fb277e8b9", + "Service_Plan_Name": "CPC_B_4C_16RAM_128GB", + "Service_Plan_Id": "1d4f75d3-a19b-49aa-88cb-f1ea1690b550", + "Service_Plans_Included_Friendly_Names": "Windows 365 Business 4 vCPU 16 GB 128 GB" + }, + { + "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB (with Windows Hybrid Benefit)", + "String_Id": "CPC_B_4C_16RAM_128GB_WHB", + "GUID": "439ac253-bfbc-49c7-acc0-6b951407b5ef", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB (with Windows Hybrid Benefit)", + "String_Id": "CPC_B_4C_16RAM_128GB_WHB", + "GUID": "439ac253-bfbc-49c7-acc0-6b951407b5ef", + "Service_Plan_Name": "CPC_B_4C_16RAM_128GB", + "Service_Plan_Id": "1d4f75d3-a19b-49aa-88cb-f1ea1690b550", + "Service_Plans_Included_Friendly_Names": "Windows 365 Business 4 vCPU 16 GB 128 GB" + }, + { + "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 256 GB", + "String_Id": "CPC_B_4C_16RAM_256GB", + "GUID": "b3891a9f-c7d9-463c-a2ec-0b2321bda6f9", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 256 GB", + "String_Id": "CPC_B_4C_16RAM_256GB", + "GUID": "b3891a9f-c7d9-463c-a2ec-0b2321bda6f9", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 256 GB", + "String_Id": "CPC_B_4C_16RAM_256GB", + "GUID": "b3891a9f-c7d9-463c-a2ec-0b2321bda6f9", + "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", + "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" + }, + { + "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 256 GB", + "String_Id": "CPC_B_4C_16RAM_256GB", + "GUID": "b3891a9f-c7d9-463c-a2ec-0b2321bda6f9", + "Service_Plan_Name": "CPC_B_4C_16RAM_256GB", + "Service_Plan_Id": "30f6e561-8805-41d0-80ce-f82698b72d7d", + "Service_Plans_Included_Friendly_Names": "Windows 365 Business 4 vCPU 16 GB 256 GB" + }, + { + "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 512 GB", + "String_Id": "CPC_B_4C_16RAM_512GB", + "GUID": "1b3043ad-dfc6-427e-a2c0-5ca7a6c94a2b", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 512 GB", + "String_Id": "CPC_B_4C_16RAM_512GB", + "GUID": "1b3043ad-dfc6-427e-a2c0-5ca7a6c94a2b", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 512 GB", + "String_Id": "CPC_B_4C_16RAM_512GB", + "GUID": "1b3043ad-dfc6-427e-a2c0-5ca7a6c94a2b", + "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", + "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" + }, + { + "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 512 GB", + "String_Id": "CPC_B_4C_16RAM_512GB", + "GUID": "1b3043ad-dfc6-427e-a2c0-5ca7a6c94a2b", + "Service_Plan_Name": "CPC_B_4C_16RAM_512GB", + "Service_Plan_Id": "15499661-b229-4a1f-b0f9-bd5832ef7b3e", + "Service_Plans_Included_Friendly_Names": "Windows 365 Business 4 vCPU 16 GB 512 GB" + }, + { + "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 128 GB", + "String_Id": "CPC_B_8C_32RAM_128GB", + "GUID": "3cb45fab-ae53-4ff6-af40-24c1915ca07b", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 128 GB", + "String_Id": "CPC_B_8C_32RAM_128GB", + "GUID": "3cb45fab-ae53-4ff6-af40-24c1915ca07b", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 128 GB", + "String_Id": "CPC_B_8C_32RAM_128GB", + "GUID": "3cb45fab-ae53-4ff6-af40-24c1915ca07b", + "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", + "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" + }, + { + "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 128 GB", + "String_Id": "CPC_B_8C_32RAM_128GB", + "GUID": "3cb45fab-ae53-4ff6-af40-24c1915ca07b", + "Service_Plan_Name": "CPC_B_8C_32RAM_128GB", + "Service_Plan_Id": "648005fc-b330-4bd9-8af6-771f28958ac0", + "Service_Plans_Included_Friendly_Names": "Windows 365 Business 8 vCPU 32 GB 128 GB" + }, + { + "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 256 GB", + "String_Id": "CPC_B_8C_32RAM_256GB", + "GUID": "fbc79df2-da01-4c17-8d88-17f8c9493d8f", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 256 GB", + "String_Id": "CPC_B_8C_32RAM_256GB", + "GUID": "fbc79df2-da01-4c17-8d88-17f8c9493d8f", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 256 GB", + "String_Id": "CPC_B_8C_32RAM_256GB", + "GUID": "fbc79df2-da01-4c17-8d88-17f8c9493d8f", + "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", + "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" + }, + { + "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 256 GB", + "String_Id": "CPC_B_8C_32RAM_256GB", + "GUID": "fbc79df2-da01-4c17-8d88-17f8c9493d8f", + "Service_Plan_Name": "CPC_B_8C_32RAM_256GB", + "Service_Plan_Id": "d7a5113a-0276-4dc2-94f8-ca9f2c5ae078", + "Service_Plans_Included_Friendly_Names": "Windows 365 Business 8 vCPU 32 GB 256 GB" + }, + { + "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 512 GB", + "String_Id": "CPC_B_8C_32RAM_512GB", + "GUID": "8ee402cd-e6a8-4b67-a411-54d1f37a2049", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 512 GB", + "String_Id": "CPC_B_8C_32RAM_512GB", + "GUID": "8ee402cd-e6a8-4b67-a411-54d1f37a2049", + "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", + "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" + }, + { + "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 512 GB", + "String_Id": "CPC_B_8C_32RAM_512GB", + "GUID": "8ee402cd-e6a8-4b67-a411-54d1f37a2049", + "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", + "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" + }, + { + "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 512 GB", + "String_Id": "CPC_B_8C_32RAM_512GB", + "GUID": "8ee402cd-e6a8-4b67-a411-54d1f37a2049", + "Service_Plan_Name": "CPC_B_8C_32RAM_512GB", + "Service_Plan_Id": "4229a0b4-7f34-4835-b068-6dc8d10be57c", + "Service_Plans_Included_Friendly_Names": "Windows 365 Business 8 vCPU 32 GB 512 GB" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 1 vCPU 2 GB 64 GB", + "String_Id": "CPC_E_1C_2GB_64GB", + "GUID": "0c278af4-c9c1-45de-9f4b-cd929e747a2c", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 1 vCPU 2 GB 64 GB", + "String_Id": "CPC_E_1C_2GB_64GB", + "GUID": "0c278af4-c9c1-45de-9f4b-cd929e747a2c", + "Service_Plan_Name": "CPC_E_1C_2GB_64GB", + "Service_Plan_Id": "86d70dbb-d4c6-4662-ba17-3014204cbb28", + "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 1 vCPU 2 GB 64 GB" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 64 GB", + "String_Id": "CPC_E_2C_4GB_64GB", + "GUID": "7bb14422-3b90-4389-a7be-f1b745fc037f", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 64 GB", + "String_Id": "CPC_E_2C_4GB_64GB", + "GUID": "7bb14422-3b90-4389-a7be-f1b745fc037f", + "Service_Plan_Name": "CPC_E_2C_4GB_64GB", + "Service_Plan_Id": "23a25099-1b2f-4e07-84bd-b84606109438", + "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 4 GB 64 GB" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB", + "String_Id": "CPC_E_2C_4GB_128GB", + "GUID": "226ca751-f0a4-4232-9be5-73c02a92555e", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB", + "String_Id": "CPC_E_2C_4GB_128GB", + "GUID": "226ca751-f0a4-4232-9be5-73c02a92555e", + "Service_Plan_Name": "CPC_1", + "Service_Plan_Id": "545e3611-3af8-49a5-9a0a-b7867968f4b0", + "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB (Preview)", + "String_Id": "CPC_LVL_1", + "GUID": "bce09f38-1800-4a51-8d50-5486380ba84a", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB (Preview)", + "String_Id": "CPC_LVL_1", + "GUID": "bce09f38-1800-4a51-8d50-5486380ba84a", + "Service_Plan_Name": "CPC_1", + "Service_Plan_Id": "545e3611-3af8-49a5-9a0a-b7867968f4b0", + "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 256 GB", + "String_Id": "CPC_E_2C_4GB_256GB", + "GUID": "5265a84e-8def-4fa2-ab4b-5dc278df5025", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 256 GB", + "String_Id": "CPC_E_2C_4GB_256GB", + "GUID": "5265a84e-8def-4fa2-ab4b-5dc278df5025", + "Service_Plan_Name": "CPC_E_2C_4GB_256GB", + "Service_Plan_Id": "0d143570-9b92-4f57-adb5-e4efcd23b3bb", + "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 4 GB 256 GB" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB", + "String_Id": "CPC_E_2C_8GB_128GB", + "GUID": "e2aebe6c-897d-480f-9d62-fff1381581f7", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB", + "String_Id": "CPC_E_2C_8GB_128GB", + "GUID": "e2aebe6c-897d-480f-9d62-fff1381581f7", + "Service_Plan_Name": "CPC_2", + "Service_Plan_Id": "3efff3fe-528a-4fc5-b1ba-845802cc764f", + "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB (Preview)", + "String_Id": "CPC_LVL_2", + "GUID": "461cb62c-6db7-41aa-bf3c-ce78236cdb9e", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB (Preview)", + "String_Id": "CPC_LVL_2", + "GUID": "461cb62c-6db7-41aa-bf3c-ce78236cdb9e", + "Service_Plan_Name": "CPC_2", + "Service_Plan_Id": "3efff3fe-528a-4fc5-b1ba-845802cc764f", + "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 256 GB", + "String_Id": "CPC_E_2C_8GB_256GB", + "GUID": "1c79494f-e170-431f-a409-428f6053fa35", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 256 GB", + "String_Id": "CPC_E_2C_8GB_256GB", + "GUID": "1c79494f-e170-431f-a409-428f6053fa35", + "Service_Plan_Name": "CPC_E_2C_8GB_256GB", + "Service_Plan_Id": "d3468c8c-3545-4f44-a32f-b465934d2498", + "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 8 GB 256 GB" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 128 GB", + "String_Id": "CPC_E_4C_16GB_128GB", + "GUID": "d201f153-d3b2-4057-be2f-fe25c8983e6f", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 128 GB", + "String_Id": "CPC_E_4C_16GB_128GB", + "GUID": "d201f153-d3b2-4057-be2f-fe25c8983e6f", + "Service_Plan_Name": "CPC_E_4C_16GB_128GB", + "Service_Plan_Id": "2de9c682-ca3f-4f2b-b360-dfc4775db133", + "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 4 vCPU 16 GB 128 GB" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB", + "String_Id": "CPC_E_4C_16GB_256GB", + "GUID": "96d2951e-cb42-4481-9d6d-cad3baac177e", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB", + "String_Id": "CPC_E_4C_16GB_256GB", + "GUID": "96d2951e-cb42-4481-9d6d-cad3baac177e", + "Service_Plan_Name": "CPC_E_4C_16GB_256GB", + "Service_Plan_Id": "9ecf691d-8b82-46cb-b254-cd061b2c02fb", + "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB (Preview)", + "String_Id": "CPC_LVL_3", + "GUID": "bbb4bf6e-3e12-4343-84a1-54d160c00f40", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB (Preview)", + "String_Id": "CPC_LVL_3", + "GUID": "bbb4bf6e-3e12-4343-84a1-54d160c00f40", + "Service_Plan_Name": "CPC_E_4C_16GB_256GB", + "Service_Plan_Id": "9ecf691d-8b82-46cb-b254-cd061b2c02fb", + "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 512 GB", + "String_Id": "CPC_E_4C_16GB_512GB", + "GUID": "0da63026-e422-4390-89e8-b14520d7e699", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 512 GB", + "String_Id": "CPC_E_4C_16GB_512GB", + "GUID": "0da63026-e422-4390-89e8-b14520d7e699", + "Service_Plan_Name": "CPC_E_4C_16GB_512GB", + "Service_Plan_Id": "3bba9856-7cf2-4396-904a-00de74fba3a4", + "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 4 vCPU 16 GB 512 GB" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 128 GB", + "String_Id": "CPC_E_8C_32GB_128GB", + "GUID": "c97d00e4-0c4c-4ec2-a016-9448c65de986", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 128 GB", + "String_Id": "CPC_E_8C_32GB_128GB", + "GUID": "c97d00e4-0c4c-4ec2-a016-9448c65de986", + "Service_Plan_Name": "CPC_E_8C_32GB_128GB", + "Service_Plan_Id": "2f3cdb12-bcde-4e37-8529-e9e09ec09e23", + "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 8 vCPU 32 GB 128 GB" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 256 GB", + "String_Id": "CPC_E_8C_32GB_256GB", + "GUID": "7818ca3e-73c8-4e49-bc34-1276a2d27918", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 256 GB", + "String_Id": "CPC_E_8C_32GB_256GB", + "GUID": "7818ca3e-73c8-4e49-bc34-1276a2d27918", + "Service_Plan_Name": "CPC_E_8C_32GB_256GB", + "Service_Plan_Id": "69dc175c-dcff-4757-8389-d19e76acb45d", + "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 8 vCPU 32 GB 256 GB" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 512 GB", + "String_Id": "CPC_E_8C_32GB_512GB", + "GUID": "9fb0ba5f-4825-4e84-b239-5167a3a5d4dc", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "Exchange Foundation" + }, + { + "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 512 GB", + "String_Id": "CPC_E_8C_32GB_512GB", + "GUID": "9fb0ba5f-4825-4e84-b239-5167a3a5d4dc", + "Service_Plan_Name": "CPC_E_8C_32GB_512GB", + "Service_Plan_Id": "0e837228-8250-4047-8a80-d4a34ba11658", + "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 8 vCPU 32 GB 512 GB" + }, + { + "Product_Display_Name": "Windows 365 Shared Use 2 vCPU 4 GB 64 GB", + "String_Id": "Windows_365_S_2vCPU_4GB_64GB", + "GUID": "1f9990ca-45d9-4c8d-8d04-a79241924ce1", + "Service_Plan_Name": "CPC_S_2C_4GB_64GB", + "Service_Plan_Id": "64981bdb-a5a6-4a22-869f-a9455366d5bc", + "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 2 vCPU 4 GB 64 GB" + }, + { + "Product_Display_Name": "Windows 365 Shared Use 2 vCPU 4 GB 128 GB", + "String_Id": "Windows_365_S_2vCPU_4GB_128GB", + "GUID": "90369797-7141-4e75-8f5e-d13f4b6092c1", + "Service_Plan_Name": "CPC_S_2C_4GB_128GB", + "Service_Plan_Id": "51855c77-4d2e-4736-be67-6dca605f2b57", + "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 2 vCPU 4 GB 128 GB" + }, + { + "Product_Display_Name": "Windows 365 Shared Use 2 vCPU 4 GB 256 GB", + "String_Id": "Windows_365_S_2vCPU_4GB_256GB", + "GUID": "8fe96593-34d3-49bb-aeee-fb794fed0800", + "Service_Plan_Name": "CPC_S_2C_4GB_256GB", + "Service_Plan_Id": "aa8fbe7b-695c-4c05-8d45-d1dddf6f7616", + "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 2 vCPU 4 GB 256 GB" + }, + { + "Product_Display_Name": "Windows 365 Shared Use 2 vCPU 8 GB 128 GB", + "String_Id": "Windows_365_S_2vCPU_8GB_128GB", + "GUID": "2d21fc84-b918-491e-ad84-e24d61ccec94", + "Service_Plan_Name": "CPC_S_2C_8GB_128GB", + "Service_Plan_Id": "057efbfe-a95d-4263-acb0-12b4a31fed8d", + "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 2 vCPU 8 GB 128 GB" + }, + { + "Product_Display_Name": "Windows 365 Shared Use 2 vCPU 8 GB 256 GB", + "String_Id": "Windows_365_S_2vCPU_8GB_256GB", + "GUID": "2eaa4058-403e-4434-9da9-ea693f5d96dc", + "Service_Plan_Name": "CPC_S_2C_8GB_256GB", + "Service_Plan_Id": "50ef7026-6174-40ba-bff7-f0e4fcddbf65", + "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 2 vCPU 8 GB 256 GB" + }, + { + "Product_Display_Name": "Windows 365 Shared Use 4 vCPU 16 GB 128 GB", + "String_Id": "Windows_365_S_4vCPU_16GB_128GB", + "GUID": "1bf40e76-4065-4530-ac37-f1513f362f50", + "Service_Plan_Name": "CPC_S_4C_16GB_128GB", + "Service_Plan_Id": "dd3801e2-4aa1-4b16-a44b-243e55497584", + "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 4 vCPU 16 GB 128 GB" + }, + { + "Product_Display_Name": "Windows 365 Shared Use 4 vCPU 16 GB 256 GB", + "String_Id": "Windows_365_S_4vCPU_16GB_256GB", + "GUID": "a9d1e0df-df6f-48df-9386-76a832119cca", + "Service_Plan_Name": "CPC_S_4C_16GB_256GB", + "Service_Plan_Id": "2d1d344e-d10c-41bb-953b-b3a47521dca0", + "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 4 vCPU 16 GB 256 GB" + }, + { + "Product_Display_Name": "Windows 365 Shared Use 4 vCPU 16 GB 512 GB", + "String_Id": "Windows_365_S_4vCPU_16GB_512GB", + "GUID": "469af4da-121c-4529-8c85-9467bbebaa4b", + "Service_Plan_Name": "CPC_S_4C_16GB_512GB", + "Service_Plan_Id": "48b82071-99a5-4214-b493-406a637bd68d", + "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 4 vCPU 16 GB 512 GB" + }, + { + "Product_Display_Name": "Windows 365 Shared Use 8 vCPU 32 GB 128 GB", + "String_Id": "Windows_365_S_8vCPU_32GB_128GB", + "GUID": "f319c63a-61a9-42b7-b786-5695bc7edbaf", + "Service_Plan_Name": "CPC_S_8C_32GB_128GB", + "Service_Plan_Id": "e4dee41f-a5c5-457d-b7d3-c309986fdbb2", + "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 8 vCPU 32 GB 128 GB" + }, + { + "Product_Display_Name": "Windows 365 Shared Use 8 vCPU 32 GB 256 GB", + "String_Id": "Windows_365_S_8vCPU_32GB_256GB", + "GUID": "fb019e88-26a0-4218-bd61-7767d109ac26", + "Service_Plan_Name": "CPC_S_8C_32GB_256GB", + "Service_Plan_Id": "1e2321a0-f81c-4d43-a0d5-9895125706b8", + "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 8 vCPU 32 GB 256 GB" + }, + { + "Product_Display_Name": "Windows 365 Shared Use 8 vCPU 32 GB 512 GB", + "String_Id": "Windows_365_S_8vCPU_32GB_512GB", + "GUID": "f4dc1de8-8c94-4d37-af8a-1fca6675590a", + "Service_Plan_Name": "CPC_S_8C_32GB_512GB", + "Service_Plan_Id": "fa0b4021-0f60-4d95-bf68-95036285282a", + "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 8 vCPU 32 GB 512 GB" + }, + { + "Product_Display_Name": "Windows Store for Business", + "String_Id": "WINDOWS_STORE", + "GUID": "6470687e-a428-4b7a-bef2-8a291ad947c9", + "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", + "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", + "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" + }, + { + "Product_Display_Name": "Windows Store for Business", + "String_Id": "WINDOWS_STORE", + "GUID": "6470687e-a428-4b7a-bef2-8a291ad947c9", + "Service_Plan_Name": "WINDOWS_STORE", + "Service_Plan_Id": "a420f25f-a7b3-4ff5-a9d0-5d58f73b537d", + "Service_Plans_Included_Friendly_Names": "WINDOWS STORE SERVICE" + }, + { + "Product_Display_Name": "Windows Store for Business EDU Faculty", + "String_Id": "WSFB_EDU_FACULTY", + "GUID": "c7e9d9e6-1981-4bf3-bb50-a5bdfaa06fb2", + "Service_Plan_Name": "Windows Store for Business EDU Store_faculty", + "Service_Plan_Id": "aaa2cd24-5519-450f-a1a0-160750710ca1", + "Service_Plans_Included_Friendly_Names": "Windows Store for Business EDU Store_faculty" + }, + { + "Product_Display_Name": "Microsoft Workplace Analytics", + "String_Id": "WORKPLACE_ANALYTICS", + "GUID": "3d957427-ecdc-4df2-aacd-01cc9d519da8", + "Service_Plan_Name": "WORKPLACE_ANALYTICS", + "Service_Plan_Id": "f477b0f0-3bb1-4890-940c-40fcee6ce05f", + "Service_Plans_Included_Friendly_Names": "Microsoft Workplace Analytics" + }, + { + "Product_Display_Name": "Microsoft Workplace Analytics", + "String_Id": "WORKPLACE_ANALYTICS", + "GUID": "3d957427-ecdc-4df2-aacd-01cc9d519da8", + "Service_Plan_Name": "WORKPLACE_ANALYTICS_INSIGHTS_BACKEND", + "Service_Plan_Id": "ff7b261f-d98b-415b-827c-42a3fdf015af", + "Service_Plans_Included_Friendly_Names": "Microsoft Workplace Analytics Insights Backend" + }, + { + "Product_Display_Name": "Microsoft Workplace Analytics", + "String_Id": "WORKPLACE_ANALYTICS", + "GUID": "3d957427-ecdc-4df2-aacd-01cc9d519da8", + "Service_Plan_Name": "WORKPLACE_ANALYTICS_INSIGHTS_USER", + "Service_Plan_Id": "b622badb-1b45-48d5-920f-4b27a2c0996c", + "Service_Plans_Included_Friendly_Names": "Microsoft Workplace Analytics Insights User" + }, + { + "Product_Display_Name": "Workload Identities Premium", + "String_Id": "Workload_Identities_Premium_CN", + "GUID": "73fa80b5-689f-4db9-bbe4-bd414bc41e44", + "Service_Plan_Name": "AAD_WRKLDID_P1", + "Service_Plan_Id": "84c289f0-efcb-486f-8581-07f44fc9efad", + "Service_Plans_Included_Friendly_Names": "Azure Active Directory workload identities P1" + }, + { + "Product_Display_Name": "Workload Identities Premium", + "String_Id": "Workload_Identities_Premium_CN", + "GUID": "73fa80b5-689f-4db9-bbe4-bd414bc41e44", + "Service_Plan_Name": "AAD_WRKLDID_P2", + "Service_Plan_Id": "7dc0e92d-bf15-401d-907e-0884efe7c760", + "Service_Plans_Included_Friendly_Names": "Azure Active Directory workload identities P2" + } ] From 24713c8c5c16ecfa391de43c663e643e7e8fc10a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Sat, 20 Jan 2024 23:58:58 +0100 Subject: [PATCH 31/69] Add standard for enabling online archive --- src/data/standards.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/data/standards.json b/src/data/standards.json index b5fbfbfeab28..c039f008aa29 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -408,6 +408,15 @@ "impact": "Low Impact", "impactColour": "info" }, + { + "name": "standards.EnableOnlineArchiving", + "cat": "Exchange Standards", + "helpText": "Enables the In-Place Online Archive for all UserMailboxes with a valid license.", + "addedComponent": [], + "label": "Enable Online Archive for all users", + "impact": "Medium Impact", + "impactColour": "info" + }, { "name": "standards.SpoofWarn", "cat": "Exchange Standards", From a33a4af81bbba867479d6839e267608d7e99b37b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Sun, 21 Jan 2024 00:23:07 +0100 Subject: [PATCH 32/69] Add AD synced field in view user --- src/views/identity/administration/UserDetails.jsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/views/identity/administration/UserDetails.jsx b/src/views/identity/administration/UserDetails.jsx index 52f5e0666430..bcf1ab9f0760 100644 --- a/src/views/identity/administration/UserDetails.jsx +++ b/src/views/identity/administration/UserDetails.jsx @@ -12,6 +12,10 @@ export default function UserDetails({ tenantDomain, userId, className = null }) heading: 'Sign-In Status', body: user.accountEnabled ? 'Enabled' : 'Blocked', }, + { + heading: 'AD Synced', + body: user.onPremisesSyncEnabled ? 'Yes' : 'No', + }, { heading: 'First Name', body: user.givenName, From b28e015d96e513b3f9bc55741fd63d691a60201e Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Tue, 23 Jan 2024 20:03:41 +0100 Subject: [PATCH 33/69] fixes bug --- src/views/identity/administration/Users.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/identity/administration/Users.jsx b/src/views/identity/administration/Users.jsx index f782b436c629..548ccd9a7f40 100644 --- a/src/views/identity/administration/Users.jsx +++ b/src/views/identity/administration/Users.jsx @@ -181,7 +181,7 @@ const Offcanvas = (row, rowIndex, formatExtraData) => { groupName: 'displayName', }, }, - modalMessage: 'Select the group to add the user to', + modalMessage: 'Select the group to remove the user from', }, { label: 'Enable Online Archive', From 144145a6efa5b59f9a6dacef76940f4ea64d4861 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Wed, 24 Jan 2024 22:13:30 +0100 Subject: [PATCH 34/69] Yeah this is not great --- .../identity/administration/EditUser.jsx | 26 ++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/src/views/identity/administration/EditUser.jsx b/src/views/identity/administration/EditUser.jsx index f674dd53628a..c66d1ea7e02a 100644 --- a/src/views/identity/administration/EditUser.jsx +++ b/src/views/identity/administration/EditUser.jsx @@ -14,6 +14,7 @@ import { } from 'src/components/forms' import countryList from 'src/data/countryList' import { useListUserQuery, useListUsersQuery } from 'src/store/api/users' +import { useListGroupsQuery } from 'src/store/api/groups' import { useListDomainsQuery } from 'src/store/api/domains' import { useListLicensesQuery } from 'src/store/api/licenses' import { CippCodeBlock, ModalService } from 'src/components/utilities' @@ -45,6 +46,12 @@ const EditUser = () => { error: usersError, } = useListUsersQuery({ tenantDomain }) + const { + data: groups = [], + isFetching: groupsIsFetching, + error: groupsError, + } = useListGroupsQuery({ tenantDomain }) + const { data: domains = [], isFetching: domainsIsFetching, @@ -70,8 +77,10 @@ const EditUser = () => { }, [userId, tenantDomain, dispatch]) const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() const onSubmit = (values) => { + console.log(values.AddToGroups) const shippedValues = { AddedAliases: values.addedAliases, + AddToGroups: Array.isArray(values.AddToGroups) ? values.AddToGroups : [], BusinessPhone: values.businessPhones, RemoveAllLicenses: values.RemoveAllLicenses, City: values.city, @@ -96,7 +105,7 @@ const EditUser = () => { mustchangepass: values.RequirePasswordChange, ...(values.licenses ? values.license : ''), } - //window.alert(JSON.stringify(shippedValues)) + window.alert(JSON.stringify(shippedValues)) genericPostRequest({ path: '/api/EditUser', values: shippedValues }) } const usageLocation = useSelector((state) => state.app.usageLocation) @@ -370,6 +379,21 @@ const EditUser = () => {
    + + ({ + value: group.id, + name: `${group.displayName} - ${group.calculatedGroupType} `, + groupType: group.calculatedGroupType, + }))} + placeholder={!groupsIsFetching ? 'Select groups' : 'Loading...'} + name="AddToGroups" + /> + {groupsError && Failed to load list of groups} + Date: Thu, 25 Jan 2024 12:36:01 +0100 Subject: [PATCH 35/69] fixes copy paste error --- src/views/endpoint/autopilot/AutopilotAddDevice.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/endpoint/autopilot/AutopilotAddDevice.jsx b/src/views/endpoint/autopilot/AutopilotAddDevice.jsx index a6ff876f4a76..248f890b7e87 100644 --- a/src/views/endpoint/autopilot/AutopilotAddDevice.jsx +++ b/src/views/endpoint/autopilot/AutopilotAddDevice.jsx @@ -238,7 +238,7 @@ const AddAPDevice = () => {
    From 21f3587d3226f6c7dcf4b8c2c689cad4d5b50d3b Mon Sep 17 00:00:00 2001 From: John Duprey Date: Fri, 26 Jan 2024 12:46:46 -0500 Subject: [PATCH 36/69] Update AlertRules.jsx - Add new user creation audit log - Fix add service principal value --- src/views/tenant/administration/AlertRules.jsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/views/tenant/administration/AlertRules.jsx b/src/views/tenant/administration/AlertRules.jsx index d7c6c554220d..566cbe3c118d 100644 --- a/src/views/tenant/administration/AlertRules.jsx +++ b/src/views/tenant/administration/AlertRules.jsx @@ -135,6 +135,10 @@ const AlertRules = () => { value: 'Add member to role.', label: 'A user has been added to an admin role', }, + { + value: 'Add User.', + label: 'A user account was created', + }, { value: 'Disable account.', label: 'A user account has been disabled', @@ -164,7 +168,7 @@ const AlertRules = () => { label: 'A user has logged in from a location not in the allowed locations list', }, { - value: 'Add service principal', + value: 'Add service principal.', label: 'A service principal has been created', }, { From 67f36f0386b18533114578abc07f9732879a74e7 Mon Sep 17 00:00:00 2001 From: CHRIS-BRANNON <99292551+CHRIS-BRANNON@users.noreply.github.com> Date: Fri, 26 Jan 2024 18:19:04 -0500 Subject: [PATCH 37/69] Update placeholder CA policy placeholder showed select user instead of select policy. --- src/views/tenant/conditional/DeployVacation.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/tenant/conditional/DeployVacation.jsx b/src/views/tenant/conditional/DeployVacation.jsx index 8f1fb21b7281..572aee8bb83d 100644 --- a/src/views/tenant/conditional/DeployVacation.jsx +++ b/src/views/tenant/conditional/DeployVacation.jsx @@ -107,7 +107,7 @@ const ListClassicAlerts = () => { value: ca.id, name: `${ca.displayName}`, }))} - placeholder={!caIsFetching ? 'Select user' : 'Loading...'} + placeholder={!caIsFetching ? 'Select policy' : 'Loading...'} name="PolicyId" /> From 8299d900b78ea96d4ffc456e4c20b2267c16de85 Mon Sep 17 00:00:00 2001 From: John Duprey Date: Fri, 26 Jan 2024 19:23:30 -0500 Subject: [PATCH 38/69] Add partner center link --- .../tenant/administration/ListGDAPRelationships.jsx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/views/tenant/administration/ListGDAPRelationships.jsx b/src/views/tenant/administration/ListGDAPRelationships.jsx index 7987176646db..e55def41f1ce 100644 --- a/src/views/tenant/administration/ListGDAPRelationships.jsx +++ b/src/views/tenant/administration/ListGDAPRelationships.jsx @@ -94,6 +94,16 @@ const Actions = (row, rowIndex, formatExtraData) => { '/tenant/administration/tenant-onboarding-wizard?tableFilter=Complex: id eq ' + row.id, }, + { + label: 'Open Relationship in Partner Center', + color: 'info', + link: + 'https://partner.microsoft.com/en-us/dashboard/commerce2/customers/' + + row?.customer?.tenantId + + '/adminrelationships/' + + row.id, + external: true, + }, { label: 'Enable automatic extension', color: 'info', From ed8572bf34893dc13a530ee617aab9e207e87df2 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Sun, 28 Jan 2024 20:31:05 +0100 Subject: [PATCH 39/69] Improvements to IP db --- src/_nav.jsx | 2 +- .../tenant/administration/GeoIPLookup.jsx | 38 ++++++++----------- 2 files changed, 17 insertions(+), 23 deletions(-) diff --git a/src/_nav.jsx b/src/_nav.jsx index 0f140ce656a0..a17d7e73a344 100644 --- a/src/_nav.jsx +++ b/src/_nav.jsx @@ -173,7 +173,7 @@ const _nav = [ }, { component: CNavItem, - name: 'Geo IP Lookup', + name: 'IP Database', to: '/tenant/tools/geoiplookup', }, { diff --git a/src/views/tenant/administration/GeoIPLookup.jsx b/src/views/tenant/administration/GeoIPLookup.jsx index 339a93630a99..36984ba1f45f 100644 --- a/src/views/tenant/administration/GeoIPLookup.jsx +++ b/src/views/tenant/administration/GeoIPLookup.jsx @@ -26,38 +26,25 @@ import Skeleton from 'react-loading-skeleton' import { domainsApi } from 'src/store/api/domains' const GeoIPLookup = () => { - let navigate = useNavigate() const tenant = useSelector((state) => state.app.currentTenant) let query = useQuery() const ip = query.get('ip') - const SearchNow = query.get('SearchNow') - const [visibleA, setVisibleA] = useState(true) + const [ipaddress, setIpaddress] = useState(ip) const handleSubmit = async (values) => { - setVisibleA(false) - - const shippedValues = { - ip: values.domain, - SearchNow: true, - random: (Math.random() + 1).toString(36).substring(7), - } - var queryString = Object.keys(shippedValues) - .map((key) => key + '=' + shippedValues[key]) - .join('&') - - navigate(`?${queryString}`) + setIpaddress(values.domain) } const [execGraphRequest, graphrequest] = useLazyGenericGetRequestQuery() useEffect(() => { - if (ip) { + if (ipaddress) { execGraphRequest({ path: 'api/ExecGeoIPLookup', params: { - IP: ip, + IP: ipaddress, }, }) } - }, [execGraphRequest, tenant.defaultDomainName, query, ip]) + }, [execGraphRequest, tenant.defaultDomainName, query, ipaddress, ip]) const [execAddIp, iprequest] = useLazyGenericGetRequestQuery() const addTrustedIP = (State) => { @@ -118,14 +105,14 @@ const GeoIPLookup = () => { - {ip && ( + {ipaddress && (

    IP Address

    {graphrequest.isFetching && } - {ip} + {ipaddress}

    AS

    @@ -150,9 +137,16 @@ const GeoIPLookup = () => { {graphrequest.data?.country} - {graphrequest.data?.city}
    -

    Lat/Lon

    +

    Map Locat

    {graphrequest.isFetching && } - {graphrequest.data?.lat} / {graphrequest.data?.lon} + + + {graphrequest.data?.lat} / {graphrequest.data?.lon} +
    From 3726b483915d72ada82fd76e2fcef0d9d92ea504 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Sun, 28 Jan 2024 21:07:42 +0100 Subject: [PATCH 40/69] geo ip updates --- .../tenant/administration/GeoIPLookup.jsx | 266 +++++++++--------- 1 file changed, 134 insertions(+), 132 deletions(-) diff --git a/src/views/tenant/administration/GeoIPLookup.jsx b/src/views/tenant/administration/GeoIPLookup.jsx index 36984ba1f45f..8f548461d429 100644 --- a/src/views/tenant/administration/GeoIPLookup.jsx +++ b/src/views/tenant/administration/GeoIPLookup.jsx @@ -21,7 +21,7 @@ import { faBook, faSearch } from '@fortawesome/free-solid-svg-icons' import { useSelector } from 'react-redux' import { useNavigate } from 'react-router-dom' import { useLazyGenericGetRequestQuery } from 'src/store/api/app' -import { CippContentCard } from 'src/components/layout' +import { CippContentCard, CippPageList } from 'src/components/layout' import Skeleton from 'react-loading-skeleton' import { domainsApi } from 'src/store/api/domains' @@ -59,138 +59,140 @@ const GeoIPLookup = () => { } return ( - - - - - - - Geo IP Lookup - - - - { - return ( - - - {({ input, meta }) => { - return ( - <> - - - - Check{graphrequest.isFetching && } - - - - ) - }} - - - ) - }} - /> - - - - {ipaddress && ( - - - - -

    IP Address

    - {graphrequest.isFetching && } - {ipaddress} -
    - -

    AS

    - {graphrequest.isFetching && } - {graphrequest.data?.as} -
    - -

    Owner

    - {graphrequest.isFetching && } - {graphrequest.data?.org} -
    -
    - - -

    ISP

    - {graphrequest.isFetching && } - {graphrequest.data?.isp} -
    - -

    Geo IP Location

    - {graphrequest.isFetching && } - {graphrequest.data?.country} - {graphrequest.data?.city} -
    - -

    Map Locat

    - {graphrequest.isFetching && } - - - {graphrequest.data?.lat} / {graphrequest.data?.lon} - -
    -
    - - -

    Hosting

    - {graphrequest.isFetching && } - {graphrequest.data?.hosting ? 'Yes' : 'No'} -
    - -

    Mobile

    - {graphrequest.isFetching && } - {graphrequest.data?.mobile ? 'Yes' : 'No'} -
    - -

    Proxy or Anonimizer

    - {graphrequest.isFetching && } - {graphrequest.data?.proxy ? 'Yes' : 'No'} -
    -
    - - - addTrustedIP('Trusted')} className="me-3"> - Add as trusted IP for selected tenant - {iprequest.isFetching && } - - addTrustedIP('NotTrusted')} - > - Remove as trusted IP for selected tenant - {iprequest.isFetching && } - - - - {iprequest.data && ( - - {iprequest.data?.results} - - )} -
    + <> + + + + + + + Geo IP Lookup + + + + { + return ( + + + {({ input, meta }) => { + return ( + <> + + + + Check{graphrequest.isFetching && } + + + + ) + }} + + + ) + }} + /> + + - )} - + {ipaddress && ( + + + + +

    IP Address

    + {graphrequest.isFetching && } + {ipaddress} +
    + +

    AS

    + {graphrequest.isFetching && } + {graphrequest.data?.as} +
    + +

    Owner

    + {graphrequest.isFetching && } + {graphrequest.data?.org} +
    +
    + + +

    ISP

    + {graphrequest.isFetching && } + {graphrequest.data?.isp} +
    + +

    Geo IP Location

    + {graphrequest.isFetching && } + {graphrequest.data?.country} - {graphrequest.data?.city} +
    + +

    Map Location

    + {graphrequest.isFetching && } + + + {graphrequest.data?.lat} / {graphrequest.data?.lon} + +
    +
    + + +

    Hosting

    + {graphrequest.isFetching && } + {graphrequest.data?.hosting ? 'Yes' : 'No'} +
    + +

    Mobile

    + {graphrequest.isFetching && } + {graphrequest.data?.mobile ? 'Yes' : 'No'} +
    + +

    Proxy or Anonimizer

    + {graphrequest.isFetching && } + {graphrequest.data?.proxy ? 'Yes' : 'No'} +
    +
    + + + addTrustedIP('Trusted')} className="me-3"> + Add as trusted IP for selected tenant + {iprequest.isFetching && } + + addTrustedIP('NotTrusted')} + > + Remove as trusted IP for selected tenant + {iprequest.isFetching && } + + + + {iprequest.data && ( + + {iprequest.data?.results} + + )} +
    +
    + )} +
    + ) } From 26ae7aa55da28cd5190591fc9842e4569ab366f0 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Sun, 28 Jan 2024 22:33:44 +0100 Subject: [PATCH 41/69] small redesign to allow ip whitelist --- .../tenant/administration/GeoIPLookup.jsx | 46 ++++++++++++++++--- 1 file changed, 40 insertions(+), 6 deletions(-) diff --git a/src/views/tenant/administration/GeoIPLookup.jsx b/src/views/tenant/administration/GeoIPLookup.jsx index 8f548461d429..f9a90be6a703 100644 --- a/src/views/tenant/administration/GeoIPLookup.jsx +++ b/src/views/tenant/administration/GeoIPLookup.jsx @@ -7,7 +7,6 @@ import { CCardHeader, CCardTitle, CCol, - CCollapse, CForm, CFormInput, CInputGroup, @@ -19,11 +18,9 @@ import { Field, Form } from 'react-final-form' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { faBook, faSearch } from '@fortawesome/free-solid-svg-icons' import { useSelector } from 'react-redux' -import { useNavigate } from 'react-router-dom' import { useLazyGenericGetRequestQuery } from 'src/store/api/app' import { CippContentCard, CippPageList } from 'src/components/layout' import Skeleton from 'react-loading-skeleton' -import { domainsApi } from 'src/store/api/domains' const GeoIPLookup = () => { const tenant = useSelector((state) => state.app.currentTenant) @@ -51,17 +48,37 @@ const GeoIPLookup = () => { execAddIp({ path: 'api/ExecAddTrustedIP', params: { - IP: ip, + IP: ipaddress, TenantFilter: tenant.defaultDomainName, State: State, }, }) } + const columns = [ + { + name: 'Tenant', + selector: (row) => row['PartitionKey'], + sortable: true, + exportSelector: 'PartitionKey', + }, + { + name: 'IP', + selector: (row) => row['RowKey'], + sortable: true, + exportSelector: 'RowKey', + }, + { + name: 'State', + selector: (row) => row.state, + sortable: true, + exportSelector: 'state', + }, + ] return ( <> - + @@ -106,8 +123,23 @@ const GeoIPLookup = () => { + + + + + {ipaddress && ( - + @@ -173,6 +205,8 @@ const GeoIPLookup = () => { Add as trusted IP for selected tenant {iprequest.isFetching && } + + Date: Sun, 28 Jan 2024 22:50:23 +0100 Subject: [PATCH 42/69] better look --- src/views/tenant/administration/GeoIPLookup.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/tenant/administration/GeoIPLookup.jsx b/src/views/tenant/administration/GeoIPLookup.jsx index f9a90be6a703..00e392748f71 100644 --- a/src/views/tenant/administration/GeoIPLookup.jsx +++ b/src/views/tenant/administration/GeoIPLookup.jsx @@ -78,7 +78,7 @@ const GeoIPLookup = () => { return ( <> - + From 5f8317a5a5f518aa11242c2b757f166fd58a7d13 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Mon, 29 Jan 2024 17:50:23 +0100 Subject: [PATCH 43/69] sam wizard update --- src/views/cipp/Setup.jsx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/views/cipp/Setup.jsx b/src/views/cipp/Setup.jsx index 6b674870df54..c0a728ff8ec7 100644 --- a/src/views/cipp/Setup.jsx +++ b/src/views/cipp/Setup.jsx @@ -105,6 +105,16 @@ const Setup = () => { This wizard will guide you through setting up CIPPs access to your client tenants. If this is your first time setting up CIPP you will want to choose the option "I would like CIPP to create an application for me". + + To successfully finish setup you must follow the instructions{' '} + + here. + + Date: Wed, 31 Jan 2024 19:57:43 +0100 Subject: [PATCH 44/69] Change mailbox filtering logic in MailboxForwarding --- .../email-exchange/administration/EditMailboxPermissions.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/views/email-exchange/administration/EditMailboxPermissions.jsx b/src/views/email-exchange/administration/EditMailboxPermissions.jsx index ddd87082fe47..945129569e61 100644 --- a/src/views/email-exchange/administration/EditMailboxPermissions.jsx +++ b/src/views/email-exchange/administration/EditMailboxPermissions.jsx @@ -597,8 +597,7 @@ const MailboxForwarding = () => { params: { Endpoint: 'users', TenantFilter: tenantDomain, - $filter: 'assignedLicenses/$count ne 0 and accountEnabled eq true', - $count: true, + $filter: "userType eq 'Member' and mail ge ' '", // filter out guests and users with no mailbox. #HACK "mail ne 'null'" does not work so this horrible hack is required }, }) useEffect(() => { From 27305d19abb51c9596aa65b8e60276ad483e01b5 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Wed, 31 Jan 2024 22:44:03 +0100 Subject: [PATCH 45/69] prettification --- src/scss/_themes.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/scss/_themes.scss b/src/scss/_themes.scss index b427f810d76a..3c1be2d0cecf 100644 --- a/src/scss/_themes.scss +++ b/src/scss/_themes.scss @@ -571,6 +571,9 @@ .accordion { --cui-accordion-btn-icon: url('data:image/svg+xml,%3Cns0%3Asvg%20xmlns%3Ans0%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22%23FFFFFF%22%3E%3Cns0%3Apath%20fill-rule%3D%22evenodd%22%20d%3D%22M1%2E646%204%2E646a%2E5%2E5%200%200%201%20%2E708%200L8%2010%2E293l5%2E646-5%2E647a%2E5%2E5%200%200%201%20%2E708%2E708l-6%206a%2E5%2E5%200%200%201-%2E708%200l-6-6a%2E5%2E5%200%200%201%200-%2E708z%22%20%2F%3E%3C%2Fns0%3Asvg%3E'); } + .accordion-button:not(.collapsed) { + background-color: var(--cyberdrain-dark); + } .list-group-content-card { --cui-list-group-border-color: var(--cyberdrain-accent-blue); } From 488e747ff755adcffe38859379056b47bb6166e0 Mon Sep 17 00:00:00 2001 From: John Duprey Date: Wed, 31 Jan 2024 17:36:11 -0500 Subject: [PATCH 46/69] Fix graph explorer all tenants reports --- .../tenant/administration/GraphExplorer.jsx | 48 ++++++++++++------- 1 file changed, 30 insertions(+), 18 deletions(-) diff --git a/src/views/tenant/administration/GraphExplorer.jsx b/src/views/tenant/administration/GraphExplorer.jsx index 507fe3ebc5f9..dea2ff3b06e1 100644 --- a/src/views/tenant/administration/GraphExplorer.jsx +++ b/src/views/tenant/administration/GraphExplorer.jsx @@ -56,20 +56,26 @@ const GraphExplorer = () => { const QueryColumns = { set: false, data: [] } if (graphrequest.isSuccess) { - if (graphrequest.data.Results.length === 0) { - graphrequest.data = [{ data: 'No Data Found' }] - } - - //set columns - Object.keys(graphrequest.data.Results[0]).map((value) => + if (graphrequest.data?.Results?.length > 0) { + //set columns + Object.keys(graphrequest.data?.Results[0]).map((value) => + QueryColumns.data.push({ + name: value, + selector: (row) => row[`${value.toString()}`], + sortable: true, + exportSelector: value, + cell: cellGenericFormatter(), + }), + ) + } else { QueryColumns.data.push({ - name: value, - selector: (row) => row[`${value.toString()}`], + name: 'data', + selector: (row) => row['data'], sortable: true, - exportSelector: value, + exportSelector: 'data', cell: cellGenericFormatter(), - }), - ) + }) + } QueryColumns.set = true } @@ -253,6 +259,7 @@ const GraphExplorer = () => { field: PropTypes.node, set: PropTypes.string, } + console.log(graphrequest.data) return ( <> @@ -467,13 +474,18 @@ const GraphExplorer = () => { Results - + <> + {graphrequest?.data?.Metadata?.Queued && ( + {graphrequest?.data?.Metadata?.QueueMessage} + )} + + )} From 998377f0b172e5a3b096c0834f31ded580df0f00 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Thu, 1 Feb 2024 12:29:29 +0100 Subject: [PATCH 47/69] added excluded to list standards --- .../identity/administration/EditUser.jsx | 44 +++++++++++++++++++ .../tenant/standards/ListAppliedStandards.jsx | 3 +- src/views/tenant/standards/ListStandards.jsx | 14 +++++- 3 files changed, 59 insertions(+), 2 deletions(-) diff --git a/src/views/identity/administration/EditUser.jsx b/src/views/identity/administration/EditUser.jsx index f674dd53628a..1e0298d7518d 100644 --- a/src/views/identity/administration/EditUser.jsx +++ b/src/views/identity/administration/EditUser.jsx @@ -94,12 +94,15 @@ const EditUser = () => { streetAddress: values.streetAddress, tenantID: tenantDomain, mustchangepass: values.RequirePasswordChange, + addedAttributes: values.addedAttributes, ...(values.licenses ? values.license : ''), } //window.alert(JSON.stringify(shippedValues)) genericPostRequest({ path: '/api/EditUser', values: shippedValues }) } const usageLocation = useSelector((state) => state.app.usageLocation) + const [addedAttributes, setAddedAttribute] = React.useState(0) + const precheckedLicenses = user.assignedLicenses ? user.assignedLicenses.reduce( (o, key) => Object.assign(o, { [`License_${key.skuId}`]: true }), @@ -369,6 +372,47 @@ const EditUser = () => { /> + <> + {addedAttributes > 0 && + [...Array(addedAttributes)].map((e, i) => ( + + + + + + + + + ))} + + + + {addedAttributes > 0 && ( + setAddedAttribute(addedAttributes - 1)} + className={`circular-button`} + title={'-'} + > + + + )} + setAddedAttribute(addedAttributes + 1)} + className={`circular-button`} + title={'+'} + > + + + + { sortable: true, exportSelector: 'displayName', }, + { name: 'Applied Standards', selector: (row) => row['StandardsExport'], diff --git a/src/views/tenant/standards/ListStandards.jsx b/src/views/tenant/standards/ListStandards.jsx index c444b2d9f40b..969c83ee9dbf 100644 --- a/src/views/tenant/standards/ListStandards.jsx +++ b/src/views/tenant/standards/ListStandards.jsx @@ -5,7 +5,7 @@ import { CippContentCard, CippPage } from 'src/components/layout' import { useSelector } from 'react-redux' import { ModalService } from 'src/components/utilities' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { CippTable } from 'src/components/tables' +import { CippTable, cellBooleanFormatter } from 'src/components/tables' import CippCodeOffCanvas from 'src/components/utilities/CippCodeOffcanvas' const ListAppliedStandards = () => { @@ -62,6 +62,18 @@ const ListAppliedStandards = () => { exportSelector: 'displayName', maxWidth: '280px', }, + { + name: 'Excluded from all tenants', + selector: (row) => row.standards.OverrideAllTenants?.remediate, + sortable: true, + cell: cellBooleanFormatter({ + warning: false, + reverse: false, + colourless: true, + noDataIsFalse: true, + }), + exportSelector: 'row.standards.OverrideAllTenants.remediate', + }, { name: 'Actions', cell: Offcanvas, From 501dfec1d3bf02d7da95d6aefdc3cebfe4f2bb6f Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Thu, 1 Feb 2024 13:02:49 +0100 Subject: [PATCH 48/69] nested standards table --- src/views/tenant/standards/ListStandards.jsx | 41 ++++++++++++-------- 1 file changed, 24 insertions(+), 17 deletions(-) diff --git a/src/views/tenant/standards/ListStandards.jsx b/src/views/tenant/standards/ListStandards.jsx index 969c83ee9dbf..0c218a0c023b 100644 --- a/src/views/tenant/standards/ListStandards.jsx +++ b/src/views/tenant/standards/ListStandards.jsx @@ -1,12 +1,13 @@ import React, { useState } from 'react' import { CButton, CCallout, CCol, CRow, CSpinner } from '@coreui/react' import { useGenericGetRequestQuery, useLazyGenericGetRequestQuery } from 'src/store/api/app' -import { CippContentCard, CippPage } from 'src/components/layout' +import { CippContentCard, CippPage, CippPageList } from 'src/components/layout' import { useSelector } from 'react-redux' import { ModalService } from 'src/components/utilities' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { CippTable, cellBooleanFormatter } from 'src/components/tables' import CippCodeOffCanvas from 'src/components/utilities/CippCodeOffcanvas' +import { cellTableFormatter } from 'src/components/tables/CellTable' const ListAppliedStandards = () => { const [ExecuteGetRequest, getResults] = useLazyGenericGetRequestQuery() @@ -51,9 +52,6 @@ const ListAppliedStandards = () => { ) } - const { data: listStandardsAllTenants = [] } = useGenericGetRequestQuery({ - path: 'api/listStandards', - }) const tableColumns = [ { name: 'Tenant', @@ -74,6 +72,13 @@ const ListAppliedStandards = () => { }), exportSelector: 'row.standards.OverrideAllTenants.remediate', }, + { + name: 'Standards', + selector: (row) => row['standards'], + sortable: true, + exportSelector: 'standards', + cell: cellTableFormatter('standards'), + }, { name: 'Actions', cell: Offcanvas, @@ -86,19 +91,21 @@ const ListAppliedStandards = () => { <> - {listStandardsAllTenants && ( - - {getResults.isLoading && } - {getResults.isSuccess && ( - {getResults.data?.Results} - )} - - - )} + {getResults.isLoading && } + {getResults.isSuccess && {getResults.data?.Results}} + From dc559d7ac743a3e781adf6976b93ad7ef0a72940 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Thu, 1 Feb 2024 13:26:23 +0100 Subject: [PATCH 49/69] added copy button to actions --- .../utilities/CippActionsOffcanvas.jsx | 19 ++++++++--- src/components/utilities/CippCodeBlock.jsx | 33 +++++++++++-------- 2 files changed, 33 insertions(+), 19 deletions(-) diff --git a/src/components/utilities/CippActionsOffcanvas.jsx b/src/components/utilities/CippActionsOffcanvas.jsx index 3cec2692a969..6ec39c31d6a7 100644 --- a/src/components/utilities/CippActionsOffcanvas.jsx +++ b/src/components/utilities/CippActionsOffcanvas.jsx @@ -15,7 +15,7 @@ import { COffcanvasTitle, CSpinner, } from '@coreui/react' -import { CippOffcanvas, ModalService } from 'src/components/utilities' +import { CippCodeBlock, CippOffcanvas, ModalService } from 'src/components/utilities' import { CippOffcanvasPropTypes } from 'src/components/utilities/CippOffcanvas' import { CippOffcanvasTable } from 'src/components/tables' import { useLazyGenericGetRequestQuery, useLazyGenericPostRequestQuery } from 'src/store/api/app' @@ -304,14 +304,23 @@ export default function CippActionsOffcanvas(props) { Loading )} - {postResults.isSuccess && {postResults.data?.Results}} + {postResults.isSuccess && ( + + )} {postResults.isError && ( Could not connect to API: {postResults.error.message} )} {getResults.isSuccess && ( - - {getResults.data?.Results} - + )} {getResults.isError && ( Could not connect to API: {getResults.error.message} diff --git a/src/components/utilities/CippCodeBlock.jsx b/src/components/utilities/CippCodeBlock.jsx index 6de8d6ce45c7..aad81e02d78d 100644 --- a/src/components/utilities/CippCodeBlock.jsx +++ b/src/components/utilities/CippCodeBlock.jsx @@ -1,7 +1,7 @@ import React, { useState } from 'react' import PropTypes from 'prop-types' import { CopyToClipboard } from 'react-copy-to-clipboard' -import { CButton } from '@coreui/react' +import { CButton, CCallout } from '@coreui/react' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { faCopy, faClipboard } from '@fortawesome/free-regular-svg-icons' import SyntaxHighlighter from 'react-syntax-highlighter' @@ -13,6 +13,9 @@ function CippCodeBlock({ showLineNumbers = true, startingLineNumber, wrapLongLines = true, + callout = false, + calloutColour = 'info', + calloutCopyValue = false, }) { const [codeCopied, setCodeCopied] = useState(false) @@ -23,7 +26,7 @@ function CippCodeBlock({ return (
    - onCodeCopied()}> + onCodeCopied()}> : } - - - {code} - + {callout && {code}} + {!callout && ( + + {code} + + )}
    ) } From 981b1fe81860423e5229d80134598978a9c64331 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Thu, 1 Feb 2024 13:44:06 +0100 Subject: [PATCH 50/69] add copy buttons to mass results --- src/components/tables/CippTable.jsx | 45 ++++++++++++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/src/components/tables/CippTable.jsx b/src/components/tables/CippTable.jsx index 5effb0f2b538..35822ecf806a 100644 --- a/src/components/tables/CippTable.jsx +++ b/src/components/tables/CippTable.jsx @@ -25,7 +25,9 @@ import PropTypes from 'prop-types' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { faCheck, + faClipboard, faColumns, + faCopy, faFileCsv, faFilePdf, faSearch, @@ -38,6 +40,7 @@ import { useLazyGenericGetRequestQuery, useLazyGenericPostRequestQuery } from 's import { ConfirmModal } from '../utilities/SharedModal' import { debounce } from 'lodash-es' import { useSearchParams } from 'react-router-dom' +import CopyToClipboard from 'react-copy-to-clipboard' const FilterComponent = ({ filterText, onFilter, onClear, filterlist, onFilterPreset }) => ( <> @@ -748,6 +751,12 @@ export default function CippTable({ filteredItems, ]) const tablePageSize = useSelector((state) => state.app.tablePageSize) + const [codeCopied, setCodeCopied] = useState(false) + + const onCodeCopied = () => { + setCodeCopied(true) + setTimeout(() => setCodeCopied(false), 2000) + } return (
    @@ -777,6 +786,20 @@ export default function CippTable({ {message.data?.Metadata?.Heading} + onCodeCopied()}> + + {codeCopied ? ( + + ) : ( + + )} + + {results.map((line, i) => { return
  • {line}
  • })} @@ -790,7 +813,27 @@ export default function CippTable({ massResults.map((message, idx) => { const results = message.data?.Results const displayResults = Array.isArray(results) ? results.join(', ') : results - return
  • {displayResults}
  • + return ( + <> +
  • + {displayResults} + onCodeCopied()}> + + {codeCopied ? ( + + ) : ( + + )} + + +
  • + + ) })} {loopRunning && (
  • From bd7b41a2c6c6dd7bd72d57bda6355b3edf1ae547 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Thu, 1 Feb 2024 18:09:46 +0100 Subject: [PATCH 51/69] Add back Clear ImmutableId button --- src/views/identity/administration/Users.jsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/views/identity/administration/Users.jsx b/src/views/identity/administration/Users.jsx index f782b436c629..5d6898822d8d 100644 --- a/src/views/identity/administration/Users.jsx +++ b/src/views/identity/administration/Users.jsx @@ -260,6 +260,13 @@ const Offcanvas = (row, rowIndex, formatExtraData) => { modalUrl: `/api/ExecResetPass?MustChange=false&TenantFilter=${tenant.defaultDomainName}&ID=${row.id}&displayName=${row.displayName}`, modalMessage: 'Are you sure you want to reset the password for this user?', }, + { + label: 'Clear ImmutableId', + color: 'warning', + modal: true, + modalUrl: `/api/ExecClrImmId?TenantFilter=${tenant.defaultDomainName}&ID=${row.id}`, + modalMessage: 'Are you sure you want to clear the ImmutableId for this user?', + }, { label: 'Revoke all user sessions', color: 'danger', From d0b4292d4c29af77d1ad1dbef4316a9fa539d9da Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Thu, 1 Feb 2024 20:32:36 +0100 Subject: [PATCH 52/69] some prettification --- .../utilities/CippListOffcanvas.jsx | 34 +++++++++++++------ 1 file changed, 24 insertions(+), 10 deletions(-) diff --git a/src/components/utilities/CippListOffcanvas.jsx b/src/components/utilities/CippListOffcanvas.jsx index 115d4b0375cc..b27c1ed3dbd4 100644 --- a/src/components/utilities/CippListOffcanvas.jsx +++ b/src/components/utilities/CippListOffcanvas.jsx @@ -1,7 +1,17 @@ import React from 'react' import PropTypes from 'prop-types' -import { CListGroup, CListGroupItem } from '@coreui/react' +import { + CCard, + CCardBody, + CCardHeader, + CCardTitle, + CListGroup, + CListGroupItem, +} from '@coreui/react' import { CippOffcanvas } from '.' +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' +import { faGlobe } from '@fortawesome/free-solid-svg-icons' +import { CippOffcanvasTable } from '../tables' export default function CippListOffcanvas(props) { return ( @@ -13,7 +23,7 @@ export default function CippListOffcanvas(props) { hideFunction={props.hideFunction} > {props.groups.map((group, key) => ( - + ))} ) @@ -29,18 +39,22 @@ CippListOffcanvas.propTypes = { } export function OffcanvasListSection({ title, items }) { + console.log(items) + const mappedItems = items.map((item, key) => ({ value: item.content, label: item.heading })) return ( <>

    {title}

    {items.length > 0 && ( - - {items.map((item, key) => ( - - {item.heading &&
    {item.heading}
    } - {item.content} -
    - ))} -
    + + + + Extended Information + + + + + + )} ) From 2c7bce33d25a096e3e36c314f9c6dd2a96a55dfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Fri, 2 Feb 2024 19:28:06 +0100 Subject: [PATCH 53/69] IT WOOOOOOORKS --- .../identity/administration/EditUser.jsx | 29 +++++++++++++++++-- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/src/views/identity/administration/EditUser.jsx b/src/views/identity/administration/EditUser.jsx index c20136446482..4acf76e7a5e4 100644 --- a/src/views/identity/administration/EditUser.jsx +++ b/src/views/identity/administration/EditUser.jsx @@ -81,6 +81,7 @@ const EditUser = () => { const shippedValues = { AddedAliases: values.addedAliases, AddToGroups: Array.isArray(values.AddToGroups) ? values.AddToGroups : [], + RemoveFromGroups: Array.isArray(values.RemoveFromGroups) ? values.RemoveFromGroups : [], BusinessPhone: values.businessPhones, RemoveAllLicenses: values.RemoveAllLicenses, City: values.city, @@ -89,6 +90,7 @@ const EditUser = () => { Country: values.country, Department: values.department, DisplayName: values.displayName, + userPrincipalName: values.userPrincipalName, Domain: values.primDomain, firstName: values.givenName, Jobtitle: values.jobTitle, @@ -106,7 +108,7 @@ const EditUser = () => { addedAttributes: values.addedAttributes, ...(values.licenses ? values.license : ''), } - window.alert(JSON.stringify(shippedValues)) + // window.alert(JSON.stringify(shippedValues)) genericPostRequest({ path: '/api/EditUser', values: shippedValues }) } const usageLocation = useSelector((state) => state.app.usageLocation) @@ -429,15 +431,36 @@ const EditUser = () => { label="Add user to group" disabled={formDisabled} values={groups?.map((group) => ({ - value: group.id, + value: { + groupid: group.id, + groupType: group.calculatedGroupType, + groupName: group.displayName, + }, name: `${group.displayName} - ${group.calculatedGroupType} `, - groupType: group.calculatedGroupType, }))} placeholder={!groupsIsFetching ? 'Select groups' : 'Loading...'} name="AddToGroups" /> {groupsError && Failed to load list of groups} + + ({ + value: { + groupid: group.id, + groupType: group.calculatedGroupType, + groupName: group.displayName, + }, + name: `${group.displayName} - ${group.calculatedGroupType} `, + }))} + placeholder={!groupsIsFetching ? 'Select groups' : 'Loading...'} + name="RemoveFromGroups" + /> + {groupsError && Failed to load list of groups} + Date: Sat, 3 Feb 2024 16:59:43 +0100 Subject: [PATCH 54/69] Add Alias field and spinner --- .../administration/AddSharedMailbox.jsx | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/views/email-exchange/administration/AddSharedMailbox.jsx b/src/views/email-exchange/administration/AddSharedMailbox.jsx index 07661ac5ea92..e3d32df5917b 100644 --- a/src/views/email-exchange/administration/AddSharedMailbox.jsx +++ b/src/views/email-exchange/administration/AddSharedMailbox.jsx @@ -12,7 +12,9 @@ import { CCardBody, } from '@coreui/react' import { Form } from 'react-final-form' -import { RFFCFormInput, RFFCFormSelect } from 'src/components/forms' +import { RFFCFormInput, RFFCFormSelect, RFFCFormTextarea } from 'src/components/forms' +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' +import { faCircleNotch } from '@fortawesome/free-solid-svg-icons' import { CippPage } from 'src/components/layout/CippPage' import { useLazyGenericPostRequestQuery } from 'src/store/api/app' import { useListDomainsQuery } from 'src/store/api/domains' @@ -33,6 +35,7 @@ const AddSharedMailbox = () => { domain: values.domain, displayName: values.displayName, username: values.username, + addedAliases: values.addedAliases, } //window.alert(JSON.stringify(shippedValues)) genericPostRequest({ path: '/api/AddSharedMailbox', values: shippedValues }) @@ -74,11 +77,23 @@ const AddSharedMailbox = () => { )} {domainsError && Failed to load list of domains} + + + Add Shared Mailbox + {postResults.isFetching && ( + + )} From 13c8d55b824c7e0d3bfed08b98244837eb0842e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Sat, 3 Feb 2024 19:04:27 +0100 Subject: [PATCH 55/69] Multi line of the http results --- .../email-exchange/administration/AddSharedMailbox.jsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/views/email-exchange/administration/AddSharedMailbox.jsx b/src/views/email-exchange/administration/AddSharedMailbox.jsx index e3d32df5917b..ff95dc92de3c 100644 --- a/src/views/email-exchange/administration/AddSharedMailbox.jsx +++ b/src/views/email-exchange/administration/AddSharedMailbox.jsx @@ -98,7 +98,11 @@ const AddSharedMailbox = () => { {postResults.isSuccess && ( - {postResults.data.Results} + + {postResults.data.Results.map((message, idx) => { + return
  • {message}
  • + })} + )} ) From cf4b2237e5506f6de39337b944302c741c242a71 Mon Sep 17 00:00:00 2001 From: John Duprey Date: Sat, 3 Feb 2024 18:23:14 -0500 Subject: [PATCH 56/69] Flatten CSV for all columns export --- src/components/tables/CippTable.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/tables/CippTable.jsx b/src/components/tables/CippTable.jsx index 35822ecf806a..81dcd5e92507 100644 --- a/src/components/tables/CippTable.jsx +++ b/src/components/tables/CippTable.jsx @@ -573,6 +573,7 @@ export default function CippTable({ return output } filtered = filtered.map((item) => flatten(item)) + const dataFlat = data.map((item) => flatten(item)) if (!disablePDFExport) { if (dynamicColumns === true) { @@ -678,7 +679,7 @@ export default function CippTable({ From a7a455a09087f57db2fe6f0d984d875163d4735c Mon Sep 17 00:00:00 2001 From: John Duprey Date: Sat, 3 Feb 2024 19:40:51 -0500 Subject: [PATCH 57/69] Improve mailbox rule output --- .../administration/MailboxRuleList.jsx | 29 ++++++++++++++----- 1 file changed, 21 insertions(+), 8 deletions(-) diff --git a/src/views/email-exchange/administration/MailboxRuleList.jsx b/src/views/email-exchange/administration/MailboxRuleList.jsx index ca1ebcddc5c3..bef19b35b53c 100644 --- a/src/views/email-exchange/administration/MailboxRuleList.jsx +++ b/src/views/email-exchange/administration/MailboxRuleList.jsx @@ -2,44 +2,57 @@ import React from 'react' import { useSelector } from 'react-redux' import { CippPageList } from 'src/components/layout' import { CellTip } from 'src/components/tables' +import { cellGenericFormatter } from 'src/components/tables/CellGenericFormat' const MailboxRuleList = () => { const tenant = useSelector((state) => state.app.currentTenant) const columns = [ { - selector: (row) => row['Tenant'], + selector: (row) => row?.Tenant, name: 'Tenant', sortable: true, exportSelector: 'Tenant', - cell: (row) => CellTip(row['Tenant']), + maxWidth: '150px', + cell: cellGenericFormatter(), + }, + { + selector: (row) => row?.UserPrincipalName, + name: 'User Principal Name', + sortable: true, + exportSelector: 'UserPrincipalName', + maxWidth: '200px', + cell: cellGenericFormatter(), }, { - selector: (row) => row['Name'], + selector: (row) => row?.Name, name: 'Display Name', sortable: true, - cell: (row) => CellTip(row['Name']), + cell: cellGenericFormatter(), + maxWidth: '200px', exportSelector: 'Name', }, { - selector: (row) => row['Description'], + selector: (row) => row?.Description, name: 'Description', sortable: true, - cell: (row) => CellTip(row['Description']), + cell: cellGenericFormatter(), exportSelector: 'Description', }, { - selector: (row) => row['MailboxOwnerId'], + selector: (row) => row?.MailboxOwnerId, name: 'Mailbox', sortable: true, exportSelector: 'MailboxOwnerId', maxWidth: '150px', + cell: cellGenericFormatter(), }, { - selector: (row) => row['ForwardTo'], + selector: (row) => row?.ForwardTo, name: 'Forwards To', sortable: true, exportSelector: 'ForwardTo', + cell: cellGenericFormatter(), }, ] From f90fb05168ef17515da40a0738df91e654f2a349 Mon Sep 17 00:00:00 2001 From: John Duprey Date: Sat, 3 Feb 2024 20:32:29 -0500 Subject: [PATCH 58/69] Update MailboxRuleList.jsx --- .../email-exchange/administration/MailboxRuleList.jsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/views/email-exchange/administration/MailboxRuleList.jsx b/src/views/email-exchange/administration/MailboxRuleList.jsx index bef19b35b53c..34f3798900d8 100644 --- a/src/views/email-exchange/administration/MailboxRuleList.jsx +++ b/src/views/email-exchange/administration/MailboxRuleList.jsx @@ -24,6 +24,14 @@ const MailboxRuleList = () => { maxWidth: '200px', cell: cellGenericFormatter(), }, + { + selector: (row) => row?.Enabled, + name: 'Enabled', + sortable: true, + cell: cellGenericFormatter(), + exportSelector: 'Enabled', + maxWidth: '50px', + }, { selector: (row) => row?.Name, name: 'Display Name', From ccecc0bfe9727c63060a67da942c7dcad8af46be Mon Sep 17 00:00:00 2001 From: Roel van der Wegen Date: Mon, 5 Feb 2024 05:53:56 +0100 Subject: [PATCH 59/69] Clean up vendorTenantList.json Removed MSPMagic (collapsed) and a few non-vendors. Hopefully fixes the failed API call. --- src/data/vendorTenantList.json | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/data/vendorTenantList.json b/src/data/vendorTenantList.json index de12e3508819..314e92081780 100644 --- a/src/data/vendorTenantList.json +++ b/src/data/vendorTenantList.json @@ -11,10 +11,6 @@ "vendorName": "Datto Backupify", "vendorTenantId": "8ebde5a4-a587-497c-9881-8a5c272dd1c4" }, - { - "vendorName": "Eshgro Smarter365", - "vendorTenantId": "0a3132f8-cbcd-430f-a554-b0490bea8018" - }, { "vendorName": "BitTitan", "vendorTenantId": "6690473e-14f0-4f77-bf88-2ae5ade8746c" @@ -47,14 +43,6 @@ "vendorName": "CloudMore AB", "vendorTenantId": "0cc4f6a9-d96a-4508-b938-32386e1c44cf" }, - { - "vendorName": "Google Workspace", - "vendorTenantId": "0f8cb250-b44f-4acd-b24e-2524ef9f85ac" - }, - { - "vendorName": "Merill", - "vendorTenantId": "10407d69-1ba5-4bec-8ebe-9af2f0b9e06a" - }, { "vendorName": "Citrix Cloud", "vendorTenantId": "13d925d3-c1fe-4447-9600-bb8572753a33" @@ -191,10 +179,6 @@ "vendorName": "SuperVision (KPN)", "vendorTenantId": "8edc1ef5-a81d-4229-badb-e2634a284461" }, - { - "vendorName": "MSPMagic", - "vendorTenantId": "74d3d0de-bbd7-433f-95c2-40cc5d185968" - }, { "vendorName": "SimeonCloud", "vendorTenantId": "3d945cb7-f7da-444c-8c9e-93c3226581ec" From 8eae371f91490887547b18e45a4e68bc17e82951 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Mon, 5 Feb 2024 11:14:58 +0100 Subject: [PATCH 60/69] add setting of onedrive permission --- .../teams-share/onedrive/OneDriveList.jsx | 56 ++++++++++++++++++- 1 file changed, 54 insertions(+), 2 deletions(-) diff --git a/src/views/teams-share/onedrive/OneDriveList.jsx b/src/views/teams-share/onedrive/OneDriveList.jsx index d63e3a468177..d9053d19f427 100644 --- a/src/views/teams-share/onedrive/OneDriveList.jsx +++ b/src/views/teams-share/onedrive/OneDriveList.jsx @@ -1,10 +1,58 @@ -import { CLink } from '@coreui/react' -import React from 'react' +import { CButton, CLink } from '@coreui/react' +import { faEllipsisV } from '@fortawesome/free-solid-svg-icons' +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' +import React, { useState } from 'react' import { useSelector } from 'react-redux' import { CippPageList } from 'src/components/layout' import { CellTip } from 'src/components/tables' +import { CippActionsOffcanvas } from 'src/components/utilities' const OneDriveList = () => { + const Offcanvas = (row, rowIndex, formatExtraData) => { + const tenant = useSelector((state) => state.app.currentTenant) + const [ocVisible, setOCVisible] = useState(false) + + //console.log(row) + return ( + <> + setOCVisible(true)}> + + + setOCVisible(false)} + /> + + ) + } const tenant = useSelector((state) => state.app.currentTenant) const columns = [ { @@ -58,6 +106,10 @@ const OneDriveList = () => { ) }, }, + { + name: 'Actions', + cell: Offcanvas, + }, ] return ( Date: Mon, 5 Feb 2024 11:38:15 +0100 Subject: [PATCH 61/69] add remove option --- .../teams-share/onedrive/OneDriveList.jsx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/views/teams-share/onedrive/OneDriveList.jsx b/src/views/teams-share/onedrive/OneDriveList.jsx index d9053d19f427..d961c55552b2 100644 --- a/src/views/teams-share/onedrive/OneDriveList.jsx +++ b/src/views/teams-share/onedrive/OneDriveList.jsx @@ -35,6 +35,7 @@ const OneDriveList = () => { modalBody: { UPN: row.UPN, TenantFilter: tenant.defaultDomainName, + RemovePermission: false, }, modalUrl: `/api/ExecOneDrivePermission`, modalDropdown: { @@ -44,6 +45,24 @@ const OneDriveList = () => { }, modalMessage: 'Select the User to add to this users OneDrive permissions', }, + { + label: 'Remove permissions from OneDrive', + color: 'info', + modal: true, + modalType: 'POST', + modalBody: { + UPN: row.UPN, + TenantFilter: tenant.defaultDomainName, + RemovePermission: true, + }, + modalUrl: `/api/ExecOneDrivePermission`, + modalDropdown: { + url: `/api/listUsers?TenantFilter=${tenant.defaultDomainName}`, + labelField: 'displayName', + valueField: 'userPrincipalName', + }, + modalMessage: 'Select the User to remove from this users OneDrive permissions', + }, ]} placement="end" visible={ocVisible} From 9f894dd252991638b5c7fd7deb56d7d77760aa94 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Mon, 5 Feb 2024 12:33:43 +0100 Subject: [PATCH 62/69] add setting sharepoint owner --- .../teams-share/onedrive/OneDriveList.jsx | 4 +- .../teams-share/sharepoint/SharepointList.jsx | 182 ++++++++++++------ 2 files changed, 129 insertions(+), 57 deletions(-) diff --git a/src/views/teams-share/onedrive/OneDriveList.jsx b/src/views/teams-share/onedrive/OneDriveList.jsx index d961c55552b2..b4114ab96c06 100644 --- a/src/views/teams-share/onedrive/OneDriveList.jsx +++ b/src/views/teams-share/onedrive/OneDriveList.jsx @@ -37,7 +37,7 @@ const OneDriveList = () => { TenantFilter: tenant.defaultDomainName, RemovePermission: false, }, - modalUrl: `/api/ExecOneDrivePermission`, + modalUrl: `/api/ExecSharePointOwner`, modalDropdown: { url: `/api/listUsers?TenantFilter=${tenant.defaultDomainName}`, labelField: 'displayName', @@ -55,7 +55,7 @@ const OneDriveList = () => { TenantFilter: tenant.defaultDomainName, RemovePermission: true, }, - modalUrl: `/api/ExecOneDrivePermission`, + modalUrl: `/api/ExecSharePointOwner`, modalDropdown: { url: `/api/listUsers?TenantFilter=${tenant.defaultDomainName}`, labelField: 'displayName', diff --git a/src/views/teams-share/sharepoint/SharepointList.jsx b/src/views/teams-share/sharepoint/SharepointList.jsx index 9f6b2854ff8c..072a5c03ad76 100644 --- a/src/views/teams-share/sharepoint/SharepointList.jsx +++ b/src/views/teams-share/sharepoint/SharepointList.jsx @@ -1,65 +1,137 @@ -import React from 'react' +import { CButton } from '@coreui/react' +import { faEllipsisV } from '@fortawesome/free-solid-svg-icons' +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' +import React, { useState } from 'react' import { useSelector } from 'react-redux' import { CippPageList } from 'src/components/layout' import { CellTip } from 'src/components/tables' - -const columns = [ - { - name: 'URL', - selector: (row) => row['URL'], - sortable: true, - cell: (row) => CellTip(row['URL']), - exportSelector: 'URL', - }, - { - name: 'Owner', - selector: (row) => row['displayName'], - sortable: true, - cell: (row) => CellTip(row['displayName']), - exportSelector: 'displayName', - maxWidth: '300px', - }, - { - name: 'Last Active', - selector: (row) => row['LastActive'], - sortable: true, - exportSelector: 'LastActive', - maxWidth: '120px', - }, - { - name: 'File Count (Total)', - selector: (row) => row['FileCount'], - sortable: true, - exportSelector: 'FileCount', - maxWidth: '120px', - }, - { - name: 'Used (GB)', - selector: (row) => row['UsedGB'], - sortable: true, - exportSelector: 'UsedGB', - maxWidth: '120px', - }, - { - name: 'Allocated (GB)', - selector: (row) => row['Allocated'], - sortable: true, - exportSelector: 'Allocated', - maxWidth: '70px', - }, - { - name: 'Root Template', - selector: (row) => row['Template'], - sortable: true, - cell: (row) => CellTip(row['Template']), - exportSelector: 'Template', - maxWidth: '200px', - }, -] +import { CippActionsOffcanvas } from 'src/components/utilities' const SharepointList = () => { const tenant = useSelector((state) => state.app.currentTenant) + const Offcanvas = (row, rowIndex, formatExtraData) => { + const tenant = useSelector((state) => state.app.currentTenant) + const [ocVisible, setOCVisible] = useState(false) + //console.log(row) + return ( + <> + setOCVisible(true)}> + + + setOCVisible(false)} + /> + + ) + } + const columns = [ + { + name: 'URL', + selector: (row) => row['URL'], + sortable: true, + cell: (row) => CellTip(row['URL']), + exportSelector: 'URL', + }, + { + name: 'Owner', + selector: (row) => row['displayName'], + sortable: true, + cell: (row) => CellTip(row['displayName']), + exportSelector: 'displayName', + maxWidth: '300px', + }, + { + name: 'Last Active', + selector: (row) => row['LastActive'], + sortable: true, + exportSelector: 'LastActive', + maxWidth: '120px', + }, + { + name: 'File Count (Total)', + selector: (row) => row['FileCount'], + sortable: true, + exportSelector: 'FileCount', + maxWidth: '120px', + }, + { + name: 'Used (GB)', + selector: (row) => row['UsedGB'], + sortable: true, + exportSelector: 'UsedGB', + maxWidth: '120px', + }, + { + name: 'Allocated (GB)', + selector: (row) => row['Allocated'], + sortable: true, + exportSelector: 'Allocated', + maxWidth: '70px', + }, + { + name: 'Root Template', + selector: (row) => row['Template'], + sortable: true, + cell: (row) => CellTip(row['Template']), + exportSelector: 'Template', + maxWidth: '200px', + }, + { + name: 'Actions', + cell: Offcanvas, + }, + ] return ( Date: Mon, 5 Feb 2024 14:23:21 +0100 Subject: [PATCH 63/69] add remove member --- .../teams-share/sharepoint/SharepointList.jsx | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/src/views/teams-share/sharepoint/SharepointList.jsx b/src/views/teams-share/sharepoint/SharepointList.jsx index 072a5c03ad76..46e793ba25d9 100644 --- a/src/views/teams-share/sharepoint/SharepointList.jsx +++ b/src/views/teams-share/sharepoint/SharepointList.jsx @@ -28,6 +28,46 @@ const SharepointList = () => { }, ]} actions={[ + { + label: 'Add member', + color: 'info', + modal: true, + modalType: 'POST', + modalBody: { + groupId: row.UPN, + TenantFilter: tenant.defaultDomainName, + add: true, + URL: row.URL, + SharePointType: row.Template, + }, + modalUrl: `/api/ExecSetSharePointMember`, + modalDropdown: { + url: `/api/listUsers?TenantFilter=${tenant.defaultDomainName}`, + labelField: 'displayName', + valueField: 'userPrincipalName', + }, + modalMessage: 'Select the User to add as a member.', + }, + { + label: 'Remove member', + color: 'info', + modal: true, + modalType: 'POST', + modalBody: { + groupId: row.UPN, + TenantFilter: tenant.defaultDomainName, + add: false, + URL: row.URL, + SharePointType: row.Template, + }, + modalUrl: `/api/ExecSetSharePointMember`, + modalDropdown: { + url: `/api/listUsers?TenantFilter=${tenant.defaultDomainName}`, + labelField: 'displayName', + valueField: 'userPrincipalName', + }, + modalMessage: 'Select the User to remove as a member.', + }, { label: 'Add Site Admin', color: 'info', From 5b2933201c9f662cf5e1aeec79b8e6b4b9b13bc3 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Mon, 5 Feb 2024 14:28:20 +0100 Subject: [PATCH 64/69] up version --- public/version_latest.txt | 2 +- version_latest.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/version_latest.txt b/public/version_latest.txt index 32f3eaad0d92..acf69b48b843 100644 --- a/public/version_latest.txt +++ b/public/version_latest.txt @@ -1 +1 @@ -5.0.1 \ No newline at end of file +5.1.0 \ No newline at end of file diff --git a/version_latest.txt b/version_latest.txt index 32f3eaad0d92..acf69b48b843 100644 --- a/version_latest.txt +++ b/version_latest.txt @@ -1 +1 @@ -5.0.1 \ No newline at end of file +5.1.0 \ No newline at end of file From 1278c64b987361c6111fce67ac4c93a6f9201dd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Mon, 5 Feb 2024 19:56:43 +0100 Subject: [PATCH 65/69] Add disable legacy basic authentication for SharePoint --- src/data/standards.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/data/standards.json b/src/data/standards.json index b5fbfbfeab28..11a544283bd0 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -693,6 +693,15 @@ "impact": "Medium Impact", "impactColour": "warning" }, + { + "name": "standards.DisableSharePointLegacyAuth", + "cat": "SharePoint Standards", + "helpText": "Disables the ability to authenticate with SharePoint using legacy authentication methods. Any applications that use legacy authentication will need to be updated to use modern authentication.", + "addedComponent": [], + "label": "Disable legacy basic authentication for SharePoint", + "impact": "Medium Impact", + "impactColour": "warning" + }, { "name": "standards.sharingCapability", "cat": "SharePoint Standards", From 3d7c92d2ff1a1941543df7e4f9558855ccdaa3ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Mon, 5 Feb 2024 22:40:03 +0100 Subject: [PATCH 66/69] Add disable users from installing add-ins in Outlook standard --- src/data/standards.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/data/standards.json b/src/data/standards.json index c039f008aa29..06dc2c56f7db 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -414,7 +414,7 @@ "helpText": "Enables the In-Place Online Archive for all UserMailboxes with a valid license.", "addedComponent": [], "label": "Enable Online Archive for all users", - "impact": "Medium Impact", + "impact": "Low Impact", "impactColour": "info" }, { @@ -582,6 +582,15 @@ "impact": "Low Impact", "impactColour": "info" }, + { + "name": "standards.DisableOutlookAddins", + "cat": "Exchange Standards", + "helpText": "Disables the ability for users to install add-ins in Outlook. This is to prevent users from installing malicious add-ins.", + "addedComponent": [], + "label": "Disable users from installing add-ins in Outlook", + "impact": "Medium Impact", + "impactColour": "warning" + }, { "name": "standards.SafeSendersDisable", "cat": "Exchange Standards", From d28134e1bd7b197ef849579eb03f5c69c288519c Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Tue, 6 Feb 2024 18:57:42 +0100 Subject: [PATCH 67/69] fixes flatten issue --- src/components/tables/CippTable.jsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/tables/CippTable.jsx b/src/components/tables/CippTable.jsx index 81dcd5e92507..a7b3581aae7f 100644 --- a/src/components/tables/CippTable.jsx +++ b/src/components/tables/CippTable.jsx @@ -573,7 +573,11 @@ export default function CippTable({ return output } filtered = filtered.map((item) => flatten(item)) - const dataFlat = data.map((item) => flatten(item)) + if (Array.isArray(data)) { + const dataFlat = data.map((item) => flatten(item)) + } else { + const dataFlat = [] + } if (!disablePDFExport) { if (dynamicColumns === true) { From 7d8df63c09d21bd7de9a88aac317cba6e073285d Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Tue, 6 Feb 2024 19:00:54 +0100 Subject: [PATCH 68/69] array fix --- src/components/tables/CippTable.jsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/tables/CippTable.jsx b/src/components/tables/CippTable.jsx index a7b3581aae7f..32f89ad71795 100644 --- a/src/components/tables/CippTable.jsx +++ b/src/components/tables/CippTable.jsx @@ -573,10 +573,13 @@ export default function CippTable({ return output } filtered = filtered.map((item) => flatten(item)) + + let dataFlat + if (Array.isArray(data)) { - const dataFlat = data.map((item) => flatten(item)) + dataFlat = data.map((item) => flatten(item)) } else { - const dataFlat = [] + dataFlat = [] } if (!disablePDFExport) { From fbe07edb718a648a6e969c58a6649a150f2bda33 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Tue, 6 Feb 2024 19:01:31 +0100 Subject: [PATCH 69/69] up version --- public/version_latest.txt | 2 +- version_latest.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/version_latest.txt b/public/version_latest.txt index acf69b48b843..3bff059174b8 100644 --- a/public/version_latest.txt +++ b/public/version_latest.txt @@ -1 +1 @@ -5.1.0 \ No newline at end of file +5.1.1 \ No newline at end of file diff --git a/version_latest.txt b/version_latest.txt index acf69b48b843..3bff059174b8 100644 --- a/version_latest.txt +++ b/version_latest.txt @@ -1 +1 @@ -5.1.0 \ No newline at end of file +5.1.1 \ No newline at end of file