]*>/)) {
+ elements.push(
+
+ {'\u2022'}
+ {stripTags(cleaned.replace(/]*>/, ''))}
+
+ )
+ } else if (cleaned.match(/]*>/)) {
+ elements.push(
+
+ {stripTags(cleaned.replace(/]*>/, '').replace(/]*>/, ''))}
+
+ )
+ } else {
+ const text = stripTags(cleaned.replace(/]*>/, ''))
+ if (text.trim()) {
+ elements.push(
+
+ {text}
+
+ )
+ }
+ }
+ }
+ return elements.length > 0
+ ? elements
+ : [
+
+ {' '}
+ ,
+ ]
+}
+
+/**
+ * Convert Markdown to @react-pdf/renderer elements.
+ * Supports headings, lists, tables, code blocks, horizontal rules, and paragraphs.
+ */
+const markdownToElements = (markdown, s) => {
+ if (!markdown)
+ return [
+
+ {' '}
+ ,
+ ]
+ const lines = markdown.split('\n')
+ const elements = []
+ let key = 0
+ let inCodeBlock = false
+ let codeContent = ''
+ let inTable = false
+ let tableRows = []
+
+ const flushTable = () => {
+ if (tableRows.length > 0) {
+ const header = tableRows[0]
+ const data = tableRows.slice(1)
+ elements.push(
+
+
+ {header.map((c, ci) => (
+
+ {processInline(c)}
+
+ ))}
+
+ {data.map((row, ri) => (
+
+ {row.map((c, ci) => (
+
+ {processInline(c)}
+
+ ))}
+
+ ))}
+
+ )
+ }
+ inTable = false
+ tableRows = []
+ }
+
+ for (let i = 0; i < lines.length; i++) {
+ const line = lines[i]
+
+ if (line.trim().startsWith('```')) {
+ if (inCodeBlock) {
+ elements.push(
+
+ {codeContent.trim()}
+
+ )
+ codeContent = ''
+ inCodeBlock = false
+ } else {
+ inCodeBlock = true
+ }
+ continue
+ }
+ if (inCodeBlock) {
+ codeContent += line + '\n'
+ continue
+ }
+
+ if (line.trim().startsWith('|')) {
+ if (!inTable) {
+ inTable = true
+ tableRows = []
+ }
+ if (line.trim().match(/^\|[\s-:|]+\|$/)) continue
+ tableRows.push(
+ line
+ .split('|')
+ .filter((c) => c.trim() !== '')
+ .map((c) => c.trim())
+ )
+ continue
+ } else if (inTable) {
+ flushTable()
+ }
+
+ if (line.trim() === '') continue
+
+ if (line.startsWith('### ')) {
+ elements.push(
+
+ {processInline(line.slice(4))}
+
+ )
+ } else if (line.startsWith('## ')) {
+ elements.push(
+
+ {processInline(line.slice(3))}
+
+ )
+ } else if (line.startsWith('# ')) {
+ elements.push(
+
+ {processInline(line.slice(2))}
+
+ )
+ } else if (line.trim().match(/^[-*_]{3,}$/)) {
+ elements.push()
+ } else if (line.trim().match(/^[-*+]\s/)) {
+ elements.push(
+
+ {'\u2022'}
+ {processInline(line.trim().replace(/^[-*+]\s/, ''))}
+
+ )
+ } else if (line.trim().match(/^\d+\.\s/)) {
+ const num = line.trim().match(/^(\d+)\./)[1]
+ elements.push(
+
+ {num + '.'}
+ {processInline(line.trim().replace(/^\d+\.\s/, ''))}
+
+ )
+ } else {
+ elements.push(
+
+ {processInline(line)}
+
+ )
+ }
+ }
+
+ if (inTable) flushTable()
+ return elements.length > 0
+ ? elements
+ : [
+
+ {' '}
+ ,
+ ]
+}
+
+/* ── Document ──────────────────────────────────────────────── */
+
+export const ReportBuilderDocument = ({
+ blocks = [],
+ tenantName,
+ templateName,
+ brandingSettings,
+ generatedDate,
+}) => {
+ const brandColor = brandingSettings?.colour || '#F77F00'
+ const logo = brandingSettings?.logo || null
+ const s = createStyles(brandColor)
+
+ const dateObj = generatedDate ? new Date(generatedDate) : new Date()
+ const currentDate = dateObj.toLocaleDateString('en-US', {
+ year: 'numeric',
+ month: 'long',
+ day: 'numeric',
+ })
+
+ const reportName = templateName || 'Report'
+ const safeBlocks = blocks || []
+
+ // Dynamic cover title: shrink font for long names, truncate beyond 50 chars
+ const coverTitle = reportName.length > 50 ? reportName.slice(0, 47) + '...' : reportName
+ const coverTitleFontSize = coverTitle.length <= 20 ? 48 : coverTitle.length <= 35 ? 36 : 28
+
+ return (
+
+ {/* ── Cover Page ── */}
+
+
+
+
+
+ {logo && }
+
+ {currentDate}
+
+
+
+ ASSESSMENT REPORT
+
+ {coverTitle.toUpperCase().split(' ').slice(0, -1).join(' ') || coverTitle.toUpperCase()}
+ {coverTitle.split(' ').length > 1 ? (
+ <>
+ {'\n'}
+
+ {coverTitle.toUpperCase().split(' ').slice(-1)[0]}
+
+ >
+ ) : null}
+
+
+ {tenantName || 'Organization'}
+
+
+
+
+ Confidential & Proprietary
+
+
+
+ {/* ── Content Pages — blocks batched 5 per page ── */}
+ {(() => {
+ const BLOCKS_PER_PAGE = 5
+ const groups = []
+ for (let i = 0; i < safeBlocks.length; i += BLOCKS_PER_PAGE) {
+ groups.push(safeBlocks.slice(i, i + BLOCKS_PER_PAGE))
+ }
+ if (groups.length === 0) groups.push([])
+ return groups.map((group, pageIndex) => (
+
+
+
+ {reportName}
+ {currentDate}
+
+ {logo && }
+
+
+
+ {group.map((block, blockIndex) => {
+ const statusStyle =
+ block.status === 'Passed'
+ ? s.statusPassed
+ : block.status === 'Failed'
+ ? s.statusFailed
+ : block.status === 'Investigate'
+ ? s.statusInvestigate
+ : block.status === 'Skipped'
+ ? s.statusSkipped
+ : null
+
+ return (
+
+ {block.title ? {block.title} : null}
+ {block.type === 'test' && block.status ? (
+ Status: {block.status}
+ ) : null}
+ {block.type === 'database' && block.format && block.format !== 'text' ? (
+ {block.content || ''}
+ ) : block.type === 'database' && (!block.format || block.format === 'text') ? (
+ markdownToElements(block.content, s)
+ ) : block.type === 'blank' || (block.type === 'test' && block.static) ? (
+ htmlToElements(block.content, s)
+ ) : (
+ markdownToElements(block.content, s)
+ )}
+
+ )
+ })}
+
+ ))
+ })()}
+
+ )
+}
+
+/* ── Preview / Download wrapper ──────────────────────────── */
+
+export const ReportBuilderPDF = ({
+ blocks,
+ tenantName,
+ templateName,
+ brandingSettings,
+ generatedDate,
+ mode = 'preview',
+}) => {
+ const document = useMemo(
+ () => (
+
+ ),
+ [blocks, tenantName, templateName, brandingSettings, generatedDate]
+ )
+
+ if (mode === 'preview') {
+ return (
+
+ {document}
+
+ )
+ }
+ return null
+}
diff --git a/src/components/confirmation-dialog.js b/src/components/confirmation-dialog.js
index fcd629bc9224..1ec98341e0a6 100644
--- a/src/components/confirmation-dialog.js
+++ b/src/components/confirmation-dialog.js
@@ -3,6 +3,7 @@ import ExclamationCircleIcon from '@heroicons/react/24/outline/ExclamationCircle
import ExclamationTriangleIcon from '@heroicons/react/24/outline/ExclamationTriangleIcon';
import {
Button,
+ CircularProgress,
Dialog,
DialogActions,
DialogContent,
@@ -47,16 +48,26 @@ export const ConfirmationDialog = (props) => {
open = false,
title,
variant = 'info',
+ confirmLoading = false,
...other
} = props;
const icon = iconMap[variant];
+ const handleDialogClose = (event, reason) => {
+ if (confirmLoading) {
+ return;
+ }
+ if (onCancel) {
+ onCancel(event);
+ }
+ };
+
return (
@@ -100,5 +117,6 @@ ConfirmationDialog.propTypes = {
onConfirm: PropTypes.func,
open: PropTypes.bool,
title: PropTypes.string,
- variant: PropTypes.oneOf(['error', 'warning', 'info'])
+ variant: PropTypes.oneOf(['error', 'warning', 'info']),
+ confirmLoading: PropTypes.bool
};
diff --git a/src/components/linearProgressWithLabel.jsx b/src/components/linearProgressWithLabel.jsx
index 55b4db2967bd..8e7951f4e6d7 100644
--- a/src/components/linearProgressWithLabel.jsx
+++ b/src/components/linearProgressWithLabel.jsx
@@ -1,56 +1,56 @@
-import { Box, LinearProgress } from "@mui/material";
+import { Box, LinearProgress } from '@mui/material'
export const LinearProgressWithLabel = (props) => {
- const { value, colourLevels, addedLabel, ...otherProps } = props;
+ const { value, colourLevels, addedLabel, ...otherProps } = props
// Function to determine color based on value and colourLevels
const getProgressColor = (value, colourLevels) => {
if (!colourLevels) {
- return undefined; // Use default MUI color
+ return undefined // Use default MUI color
}
// Check if flipped mode is enabled
- const isFlipped = colourLevels === 'flipped' || colourLevels.flipped === true;
+ const isFlipped = colourLevels === 'flipped' || colourLevels.flipped === true
if (isFlipped) {
// Flipped color order: green -> yellow -> orange -> red
if (value >= 0 && value < 25) {
- return "#4caf50"; // Green for low values when flipped
+ return '#4caf50' // Green for low values when flipped
} else if (value >= 25 && value < 50) {
- return "#ffeb3b"; // Yellow
+ return '#ffeb3b' // Yellow
} else if (value >= 50 && value < 75) {
- return "#ff9800"; // Orange
+ return '#ff9800' // Orange
} else if (value >= 75 && value <= 100) {
- return "#f44336"; // Red for high values when flipped
+ return '#f44336' // Red for high values when flipped
}
} else {
// Normal color order: red -> orange -> yellow -> green
if (value >= 0 && value < 25) {
- return colourLevels.level0to25 || "#f44336"; // Default red
+ return colourLevels.level0to25 || '#f44336' // Default red
} else if (value >= 25 && value < 50) {
- return colourLevels.level25to50 || "#ff9800"; // Default orange
+ return colourLevels.level25to50 || '#ff9800' // Default orange
} else if (value >= 50 && value < 75) {
- return colourLevels.level50to75 || "#ffeb3b"; // Default yellow
+ return colourLevels.level50to75 || '#ffeb3b' // Default yellow
} else if (value >= 75 && value <= 100) {
- return colourLevels.level75to100 || "#4caf50"; // Default green
+ return colourLevels.level75to100 || '#4caf50' // Default green
}
}
- return undefined; // Fallback to default
- };
+ return undefined // Fallback to default
+ }
- const progressColor = getProgressColor(value, colourLevels);
+ const progressColor = getProgressColor(value, colourLevels)
return (
-
-
+
+
{
{...otherProps}
/>
- {`${Math.round(value)}% ${addedLabel ?? ""}`}
+ {`${Math.round(value)}% ${addedLabel ?? ''}`}
- );
-};
+ )
+}
diff --git a/src/data/GDAPRoles.json b/src/data/GDAPRoles.json
index 1d3ca9b38094..7a92b58f95bc 100644
--- a/src/data/GDAPRoles.json
+++ b/src/data/GDAPRoles.json
@@ -806,5 +806,13 @@
"IsSystem": true,
"Name": "Yammer Administrator",
"ObjectId": "810a2642-a034-447f-a5e8-41beaa378541"
+ },
+ {
+ "ExtensionData": {},
+ "Description": "Assign the Customer Delegated Admin Relationship Administrator role to users who need to accept, view, or terminate GDAP relationships with partners.",
+ "IsEnabled": true,
+ "IsSystem": true,
+ "Name": "Customer Delegated Admin Relationship Administrator",
+ "ObjectId": "fc8ad4e2-40e4-4724-8317-bcda7503ecbf"
}
]
diff --git a/src/data/M365Licenses.json b/src/data/M365Licenses.json
index 7f24d98cdf4f..3f725239335b 100644
--- a/src/data/M365Licenses.json
+++ b/src/data/M365Licenses.json
@@ -1,370 +1,610 @@
[
{
- "Product_Display_Name": "10-Year Audit Log Retention Add On",
- "String_Id": "10_ALR_ADDON",
- "GUID": "c2e41e49-e2a2-4c55-832a-cf13ffba1d6a",
- "Service_Plan_Name": "Auditing_10Year_ Retention_ Add_On",
- "Service_Plan_Id": "7d16094b-4db8-41ff-a182-372a90a85407",
- "Service_Plans_Included_Friendly_Names": "Auditing 10Year Retention Add On"
- },
- {
- "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": "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": "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": "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": "AI Builder Capacity add-on",
- "String_Id": "CDSAICAPACITY",
- "GUID": "d2dea78b-507c-4e56-b400-39447f4738f8",
+ "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "Azure Information Protection Premium P1 for Government",
- "String_Id": "RIGHTSMANAGEMENT_CE_GOV\t",
- "GUID": "78362de1-6942-4bb8-83a1-a32aa67e6e2c",
- "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": "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": "Azure Information Protection Premium P1 for Government",
- "String_Id": "RIGHTSMANAGEMENT_CE_GOV\t",
- "GUID": "78362de1-6942-4bb8-83a1-a32aa67e6e2c",
- "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": "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": "Azure Information Protection Premium P1 for Government",
- "String_Id": "RIGHTSMANAGEMENT_CE_GOV\t",
- "GUID": "78362de1-6942-4bb8-83a1-a32aa67e6e2c",
- "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "Clipchamp Premium Add-on",
- "String_Id": "Clipchamp_Premium_Add_on",
- "GUID": "4b2c20e4-939d-4bf4-9dd8-6870240cfe19",
- "Service_Plan_Name": "CLIPCHAMP_PREMIUM",
- "Service_Plan_Id": "430b908f-78e1-4812-b045-cf83320e7d5d",
- "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp Premium"
+ "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "Microsoft Entra ID P1 for Faculty",
- "String_Id": "AAD_PREMIUM_FACULTY",
- "GUID": "30fc3c36-5a95-4956-ba57-c09c2a600bb9",
+ "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": "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": "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": "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": "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": "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": "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": "Microsoft Entra ID P1_USGOV_GCCHIGH",
- "String_Id": "AAD_PREMIUM_USGOV_GCCHIGH ",
- "GUID": "de597797-22fb-4d65-a9fe-b7dbe8893914",
+ "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 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "Azure Information Protection Plan 1",
- "String_Id": "RIGHTSMANAGEMENT_CE",
- "GUID": "a0e6a48f-b056-4037-af70-b9ac53504551",
+ "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 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_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",
+ "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": "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": "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_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": "Windows 365 Business 16 vCPU, 64 GB, 1 TB",
+ "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_1_TB",
+ "GUID": "24be3cd7-82ca-41a5-94a7-4903373cdcae",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 512 GB",
+ "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_512_GB",
+ "GUID": "93d9955a-ec70-44d5-8faa-a194492390f7",
+ "Service_Plan_Name": "CPC_B_16C_64GB_512GB",
+ "Service_Plan_Id": "cbbedc49-52d5-4fd6-82ac-a5bc51634dc3",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Business 16 vCPU, 64 GB, 512 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 512 GB",
+ "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_512_GB",
+ "GUID": "93d9955a-ec70-44d5-8faa-a194492390f7",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
+ "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 512 GB",
+ "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_512_GB",
+ "GUID": "93d9955a-ec70-44d5-8faa-a194492390f7",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 512 GB",
+ "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_512_GB",
+ "GUID": "93d9955a-ec70-44d5-8faa-a194492390f7",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 1 TB",
+ "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_1_TB",
+ "GUID": "24be3cd7-82ca-41a5-94a7-4903373cdcae",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 1 TB",
+ "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_1_TB",
+ "GUID": "24be3cd7-82ca-41a5-94a7-4903373cdcae",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
+ "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 1 TB",
+ "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_1_TB",
+ "GUID": "24be3cd7-82ca-41a5-94a7-4903373cdcae",
+ "Service_Plan_Name": "CPC_B_16C_64GB_1TB",
+ "Service_Plan_Id": "37c961db-2cfd-4e13-b81e-b0059ce10e34",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Business 16 vCPU, 64 GB, 1 TB"
+ },
+ {
+ "Product_Display_Name": "10-Year Audit Log Retention Add On",
+ "String_Id": "10_ALR_ADDON",
+ "GUID": "c2e41e49-e2a2-4c55-832a-cf13ffba1d6a",
+ "Service_Plan_Name": "Auditing_10Year_ Retention_ Add_On",
+ "Service_Plan_Id": "7d16094b-4db8-41ff-a182-372a90a85407",
+ "Service_Plans_Included_Friendly_Names": "Auditing 10Year Retention Add On"
+ },
+ {
+ "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": "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 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": "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"
+ "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 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",
+ "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",
+ "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_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 Premium P1 for Government",
+ "String_Id": "RIGHTSMANAGEMENT_CE_GOV\t",
+ "GUID": "78362de1-6942-4bb8-83a1-a32aa67e6e2c",
+ "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": "Azure Information Protection Premium P1 for Government",
+ "String_Id": "RIGHTSMANAGEMENT_CE_GOV\t",
+ "GUID": "78362de1-6942-4bb8-83a1-a32aa67e6e2c",
+ "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": "Azure Information Protection Premium P1 for Government",
+ "String_Id": "RIGHTSMANAGEMENT_CE_GOV\t",
+ "GUID": "78362de1-6942-4bb8-83a1-a32aa67e6e2c",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV",
+ "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597",
"Service_Plans_Included_Friendly_Names": "Azure Rights Management"
},
{
@@ -379,17 +619,17 @@
"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"
+ "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": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ "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": "Basic Collaboration",
@@ -440,21 +680,85 @@
"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": "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": "Common Data Service for Apps File Capacity",
- "String_Id": "CDS_FILE_CAPACITY",
- "GUID": "631d5fb1-a668-4c2a-9427-8830665a742e",
+ "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 Premium Add-on",
+ "String_Id": "Clipchamp_Premium_Add_on",
+ "GUID": "4b2c20e4-939d-4bf4-9dd8-6870240cfe19",
+ "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 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": "Common Data Service Database Capacity",
"String_Id": "CDS_DB_CAPACITY",
@@ -475,17 +779,33 @@
"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"
+ "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 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"
+ "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 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 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 Log Capacity",
@@ -547,17 +867,25 @@
"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"
+ "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": "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"
+ "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": "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",
@@ -579,17 +907,17 @@
"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"
+ "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": "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": "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 Database Storage (Qualified Offer)",
@@ -600,12 +928,36 @@
"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 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 - 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 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 - 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 Production Instance (Qualified Offer)",
@@ -624,21 +976,13 @@
"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",
+ "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 - 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",
@@ -647,14 +991,6 @@
"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",
@@ -699,9 +1035,9 @@
"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"
+ "Service_Plan_Name": "POWERAPPS_DYN_APPS",
+ "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
+ "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365"
},
{
"Product_Display_Name": "Dynamics 365 Business Central Essentials",
@@ -715,17 +1051,17 @@
"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"
+ "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": "POWERAPPS_DYN_APPS",
- "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
- "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365"
+ "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 Attach",
@@ -735,14 +1071,6 @@
"Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941",
"Service_Plans_Included_Friendly_Names": "Power Pages Internal User"
},
- {
- "Product_Display_Name": "Dynamics 365 Business Central Essentials Attach",
- "String_Id": "Dynamics_365_Business_Central_Essentials_Attach",
- "GUID": "1d506c23-1702-46f1-b940-160c55f98d05",
- "Service_Plan_Name": "DYN365_BUSCENTRAL_ESSENTIALS_ATTACH",
- "Service_Plan_Id": "17ca446c-d7a4-4d29-8dec-8e241592164b",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Essentials Attach"
- },
{
"Product_Display_Name": "Dynamics 365 Business Central Essentials Attach",
"String_Id": "Dynamics_365_Business_Central_Essentials_Attach",
@@ -768,12 +1096,12 @@
"Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365"
},
{
- "Product_Display_Name": "Dynamics 365 Business Central External Accountant",
- "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU",
- "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4",
- "Service_Plan_Name": "DYN365_FINANCIALS_ACCOUNTANT",
- "Service_Plan_Id": "170991d7-b98e-41c5-83d4-db2052e1795f",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central External Accountant"
+ "Product_Display_Name": "Dynamics 365 Business Central Essentials Attach",
+ "String_Id": "Dynamics_365_Business_Central_Essentials_Attach",
+ "GUID": "1d506c23-1702-46f1-b940-160c55f98d05",
+ "Service_Plan_Name": "DYN365_BUSCENTRAL_ESSENTIALS_ATTACH",
+ "Service_Plan_Id": "17ca446c-d7a4-4d29-8dec-8e241592164b",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Essentials Attach"
},
{
"Product_Display_Name": "Dynamics 365 Business Central External Accountant",
@@ -791,6 +1119,14 @@
"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": "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",
@@ -803,49 +1139,49 @@
"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"
+ "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 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"
+ "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 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"
+ "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": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ "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 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"
+ "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": "POWERAPPS_DYN_APPS",
- "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
- "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365"
+ "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 Team Members",
@@ -880,1057 +1216,1521 @@
"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",
+ "String_Id": "DYN365_RETAIL",
+ "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
+ "Service_Plan_Name": "DYN365_CDS_RETAIL",
+ "Service_Plan_Id": "93cc200d-a47f-4c56-aec1-83f8b0d0425a",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Dynamics 365 Retail"
},
{
- "Product_Display_Name": "Dynamics 365 Commerce 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 Commerce",
+ "String_Id": "DYN365_RETAIL",
+ "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
+ "Service_Plan_Name": "FLOW_DYN_APPS",
+ "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365"
},
{
- "Product_Display_Name": "Dynamics 365 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 Commerce",
+ "String_Id": "DYN365_RETAIL",
+ "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
+ "Service_Plan_Name": "Power_Pages_Internal_User",
+ "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941",
+ "Service_Plans_Included_Friendly_Names": "Power Pages Internal User"
},
{
- "Product_Display_Name": "Dynamics 365 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 Commerce",
+ "String_Id": "DYN365_RETAIL",
+ "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
},
{
- "Product_Display_Name": "Dynamics 365 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 Commerce",
+ "String_Id": "DYN365_RETAIL",
+ "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
+ "Service_Plan_Name": "CDS_FOR_IOM",
+ "Service_Plan_Id": "2bb89402-51e9-4c5a-be33-e954a9dd1ba6",
+ "Service_Plans_Included_Friendly_Names": "Dataverse for IOM"
},
{
- "Product_Display_Name": "Dynamics 365 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 Commerce",
+ "String_Id": "DYN365_RETAIL",
+ "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
+ "Service_Plan_Name": "DYN365_RETAIL",
+ "Service_Plan_Id": "117e3aa0-8d08-4a19-a6a5-90b7a96e2128",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Commerce"
},
{
- "Product_Display_Name": "Dynamics 365 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 Commerce",
+ "String_Id": "DYN365_RETAIL",
+ "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
+ "Service_Plan_Name": "DYN365_REGULATORY_SERVICE",
+ "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Finance and Operations, Enterprise edition - Regulatory Service"
},
{
- "Product_Display_Name": "Dynamics 365 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 Commerce",
+ "String_Id": "DYN365_RETAIL",
+ "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
+ "Service_Plan_Name": "DYN365_FP_ACC_PROTECTION",
+ "Service_Plan_Id": "4c00c16c-0304-4421-b598-555c3e78edcb",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Fraud Protection - Account Protection"
},
{
- "Product_Display_Name": "Dynamics 365 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 Commerce",
+ "String_Id": "DYN365_RETAIL",
+ "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
+ "Service_Plan_Name": "DYN365_FP_LOSS_PREVENTION",
+ "Service_Plan_Id": "ecc62904-fa88-4552-a62c-fe582fb31444",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Fraud Protection - Loss Prevention"
},
{
- "Product_Display_Name": "Dynamics 365 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 Commerce",
+ "String_Id": "DYN365_RETAIL",
+ "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
+ "Service_Plan_Name": "DYN365_FP_PURCH_PROTECTION",
+ "Service_Plan_Id": "d703990f-006e-459b-b8dd-1267c4533a22",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Fraud Protection - Purchase Protection"
},
{
- "Product_Display_Name": "Dynamics 365 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 Commerce",
+ "String_Id": "DYN365_RETAIL",
+ "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
+ "Service_Plan_Name": "POWERAPPS_DYN_APPS",
+ "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365"
},
{
- "Product_Display_Name": "Dynamics 365 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 Commerce",
+ "String_Id": "DYN365_RETAIL",
+ "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
+ "Service_Plan_Name": "FLOW_FOR_IOM_USL",
+ "Service_Plan_Id": "9e6d1620-dce9-4655-8933-af8fa5bccc9c",
+ "Service_Plans_Included_Friendly_Names": "Data Integration for IOM with Power Automate USL"
},
{
- "Product_Display_Name": "Dynamics 365 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 Commerce",
+ "String_Id": "DYN365_RETAIL",
+ "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
+ "Service_Plan_Name": "DYN365_IOM",
+ "Service_Plan_Id": "616cf6e2-f52f-4738-b463-10003061fcd3",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Intelligent Order Management"
},
{
- "Product_Display_Name": "Dynamics 365 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 Commerce",
+ "String_Id": "DYN365_RETAIL",
+ "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
+ "Service_Plan_Name": "DYN365_IOM_USER",
+ "Service_Plan_Id": "81375e2f-5ef7-4773-96aa-e3279f50bd21",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Intelligent Order Management USL"
},
{
- "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
- "String_Id": "DYN365_ENTERPRISE_PLAN1",
- "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
+ "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": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ "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 Customer Engagement Plan",
- "String_Id": "DYN365_ENTERPRISE_PLAN1",
- "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
+ "Product_Display_Name": "Dynamics 365 Contact Center",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER",
+ "GUID": "dfb1700c-013e-4132-8bce-0d319c43a95d",
"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 Contact Center",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER",
+ "GUID": "dfb1700c-013e-4132-8bce-0d319c43a95d",
+ "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 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 Contact Center",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER",
+ "GUID": "dfb1700c-013e-4132-8bce-0d319c43a95d",
+ "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": "SHAREPOINT_PROJECT",
- "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063",
- "Service_Plans_Included_Friendly_Names": "Project Online Service"
+ "Product_Display_Name": "Dynamics 365 Contact Center",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER",
+ "GUID": "dfb1700c-013e-4132-8bce-0d319c43a95d",
+ "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 Engagement Plan",
- "String_Id": "DYN365_ENTERPRISE_PLAN1",
- "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
+ "Product_Display_Name": "Dynamics 365 Contact Center",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER",
+ "GUID": "dfb1700c-013e-4132-8bce-0d319c43a95d",
+ "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 Contact Center",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER",
+ "GUID": "dfb1700c-013e-4132-8bce-0d319c43a95d",
+ "Service_Plan_Name": "DYN365_CC",
+ "Service_Plan_Id": "2a9d72b3-1714-440f-babf-bf92bf9683d8",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Contact Center"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Contact Center",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER",
+ "GUID": "dfb1700c-013e-4132-8bce-0d319c43a95d",
+ "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 Contact Center",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER",
+ "GUID": "dfb1700c-013e-4132-8bce-0d319c43a95d",
+ "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 Contact Center",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER",
+ "GUID": "dfb1700c-013e-4132-8bce-0d319c43a95d",
"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 Contact Center",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER",
+ "GUID": "dfb1700c-013e-4132-8bce-0d319c43a95d",
+ "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 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 Contact Center Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "39a78eb6-3a8a-4e1e-878a-575a5c8984e7",
+ "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 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 Contact Center Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "39a78eb6-3a8a-4e1e-878a-575a5c8984e7",
+ "Service_Plan_Name": "DYN365_CC",
+ "Service_Plan_Id": "2a9d72b3-1714-440f-babf-bf92bf9683d8",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Contact Center"
},
{
- "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 Contact Center Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "39a78eb6-3a8a-4e1e-878a-575a5c8984e7",
+ "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 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 Contact Center Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "39a78eb6-3a8a-4e1e-878a-575a5c8984e7",
+ "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 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 Contact Center Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "39a78eb6-3a8a-4e1e-878a-575a5c8984e7",
+ "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": "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 Contact Center Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "39a78eb6-3a8a-4e1e-878a-575a5c8984e7",
+ "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 Insights Attach",
- "String_Id": "DYN365_CUSTOMER_INSIGHTS_ATTACH",
- "GUID": "a3d0cd86-8068-4071-ad40-4dc5b5908c4b",
+ "Product_Display_Name": "Dynamics 365 Contact Center Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "39a78eb6-3a8a-4e1e-878a-575a5c8984e7",
"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 Contact Center Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "39a78eb6-3a8a-4e1e-878a-575a5c8984e7",
+ "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 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 Contact Center Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "39a78eb6-3a8a-4e1e-878a-575a5c8984e7",
+ "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 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 Contact Center Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "39a78eb6-3a8a-4e1e-878a-575a5c8984e7",
+ "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 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 Contact Center Digital",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL",
+ "GUID": "59d3d0bf-df39-4b8b-8601-ea6c09a7fd66",
+ "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 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 Contact Center Digital",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL",
+ "GUID": "59d3d0bf-df39-4b8b-8601-ea6c09a7fd66",
+ "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 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 Contact Center Digital",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL",
+ "GUID": "59d3d0bf-df39-4b8b-8601-ea6c09a7fd66",
+ "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 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 Contact Center Digital",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL",
+ "GUID": "59d3d0bf-df39-4b8b-8601-ea6c09a7fd66",
+ "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 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 Contact Center Digital",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL",
+ "GUID": "59d3d0bf-df39-4b8b-8601-ea6c09a7fd66",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
},
{
- "Product_Display_Name": "Dynamics 365 Customer Service 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 Contact Center Digital",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL",
+ "GUID": "59d3d0bf-df39-4b8b-8601-ea6c09a7fd66",
+ "Service_Plan_Name": "DYN365_CS_MESSAGING",
+ "Service_Plan_Id": "43b076f2-1123-45ba-a339-2e170ee58c53",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging Application Integration"
},
{
- "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 Contact Center Digital",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL",
+ "GUID": "59d3d0bf-df39-4b8b-8601-ea6c09a7fd66",
+ "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 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 Contact Center Digital",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL",
+ "GUID": "59d3d0bf-df39-4b8b-8601-ea6c09a7fd66",
+ "Service_Plan_Name": "DYN365_CC_DIGITAL",
+ "Service_Plan_Id": "0ef2b4e3-0a2b-450d-8c5f-a52203c40f50",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Contact Center Digital"
},
{
- "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 Contact Center Digital",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL",
+ "GUID": "59d3d0bf-df39-4b8b-8601-ea6c09a7fd66",
+ "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 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 Contact Center Digital Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "7e6e6091-1680-4532-9370-6cd4598483ac",
+ "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 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 Contact Center Digital Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "7e6e6091-1680-4532-9370-6cd4598483ac",
+ "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 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 Contact Center Digital Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "7e6e6091-1680-4532-9370-6cd4598483ac",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
},
{
- "Product_Display_Name": "Dynamics 365 for Customer Service 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 Contact Center Digital Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "7e6e6091-1680-4532-9370-6cd4598483ac",
+ "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 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 Contact Center Digital Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "7e6e6091-1680-4532-9370-6cd4598483ac",
+ "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 Contact Center Digital Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "7e6e6091-1680-4532-9370-6cd4598483ac",
+ "Service_Plan_Name": "DYN365_CS_MESSAGING",
+ "Service_Plan_Id": "43b076f2-1123-45ba-a339-2e170ee58c53",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging Application Integration"
},
{
- "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin",
- "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial",
- "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a",
+ "Product_Display_Name": "Dynamics 365 Contact Center Digital Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "7e6e6091-1680-4532-9370-6cd4598483ac",
"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 Contact Center Digital Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "7e6e6091-1680-4532-9370-6cd4598483ac",
+ "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 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 Contact Center Digital Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "7e6e6091-1680-4532-9370-6cd4598483ac",
+ "Service_Plan_Name": "DYN365_CC_DIGITAL",
+ "Service_Plan_Id": "0ef2b4e3-0a2b-450d-8c5f-a52203c40f50",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Contact Center Digital"
},
{
- "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 Contact Center Voice",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE",
+ "GUID": "79e2368c-4568-48d5-a352-b0344afabcf8",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
},
{
- "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin",
- "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial",
- "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a",
+ "Product_Display_Name": "Dynamics 365 Contact Center Voice",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE",
+ "GUID": "79e2368c-4568-48d5-a352-b0344afabcf8",
+ "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 Contact Center Voice",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE",
+ "GUID": "79e2368c-4568-48d5-a352-b0344afabcf8",
+ "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 Contact Center Voice",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE",
+ "GUID": "79e2368c-4568-48d5-a352-b0344afabcf8",
+ "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 Contact Center Voice",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE",
+ "GUID": "79e2368c-4568-48d5-a352-b0344afabcf8",
"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",
+ "Product_Display_Name": "Dynamics 365 Contact Center Voice",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE",
+ "GUID": "79e2368c-4568-48d5-a352-b0344afabcf8",
"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",
+ "Product_Display_Name": "Dynamics 365 Contact Center Voice",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE",
+ "GUID": "79e2368c-4568-48d5-a352-b0344afabcf8",
+ "Service_Plan_Name": "DYN365_CC_VOICE",
+ "Service_Plan_Id": "57517633-b4ad-4db8-8c1a-65f443424490",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Contact Center Voice"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Contact Center Voice",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE",
+ "GUID": "79e2368c-4568-48d5-a352-b0344afabcf8",
+ "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 Contact Center Voice",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE",
+ "GUID": "79e2368c-4568-48d5-a352-b0344afabcf8",
+ "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 Contact Center Voice Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "73e8b747-20bf-463d-8ffd-274a7d65d0bc",
"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 Contact Center Voice Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "73e8b747-20bf-463d-8ffd-274a7d65d0bc",
+ "Service_Plan_Name": "DYN365_CC_VOICE",
+ "Service_Plan_Id": "57517633-b4ad-4db8-8c1a-65f443424490",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Contact Center Voice"
},
{
- "Product_Display_Name": "Dynamics 365 Customer Service Voice Channel Add-in",
- "String_Id": "DYN365_CS_VOICE",
- "GUID": "dadd2312-b5b1-4fa0-8c15-0903de3e2303",
+ "Product_Display_Name": "Dynamics 365 Contact Center Voice Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "73e8b747-20bf-463d-8ffd-274a7d65d0bc",
"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 Voice Channel Add-in",
- "String_Id": "DYN365_CS_VOICE",
- "GUID": "dadd2312-b5b1-4fa0-8c15-0903de3e2303",
+ "Product_Display_Name": "Dynamics 365 Contact Center Voice Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "73e8b747-20bf-463d-8ffd-274a7d65d0bc",
+ "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 Contact Center Voice Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "73e8b747-20bf-463d-8ffd-274a7d65d0bc",
"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 Voice Channel Add-in",
- "String_Id": "DYN365_CS_VOICE",
- "GUID": "dadd2312-b5b1-4fa0-8c15-0903de3e2303",
+ "Product_Display_Name": "Dynamics 365 Contact Center Voice Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "73e8b747-20bf-463d-8ffd-274a7d65d0bc",
+ "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 Contact Center Voice Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "73e8b747-20bf-463d-8ffd-274a7d65d0bc",
"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 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 Contact Center Voice Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "73e8b747-20bf-463d-8ffd-274a7d65d0bc",
+ "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 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 Contact Center Voice Add-on for Customer Service Enterprise",
+ "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
+ "GUID": "73e8b747-20bf-463d-8ffd-274a7d65d0bc",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 Service Enterprise Viral Trial",
- "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial",
- "GUID": "1e615a51-59db-4807-9957-aa83c3657351",
+ "Product_Display_Name": "Dynamics 365 Customer Insights Attach",
+ "String_Id": "Dynamics_365_Customer_Insights_Attach_New",
+ "GUID": "ff22b8d4-5073-4b24-ba45-84ad5d9b6642",
"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 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 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 Insights Attach",
+ "String_Id": "Dynamics_365_Customer_Insights_Attach_New",
+ "GUID": "ff22b8d4-5073-4b24-ba45-84ad5d9b6642",
+ "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS_COMBINED_BASE",
+ "Service_Plan_Id": "d66ee5da-07d5-49d6-a1d8-45662c3f37be",
+ "Service_Plans_Included_Friendly_Names": "Dataverse for Customer Insights Combined Base"
},
{
- "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 Insights Attach",
+ "String_Id": "Dynamics_365_Customer_Insights_Attach_New",
+ "GUID": "ff22b8d4-5073-4b24-ba45-84ad5d9b6642",
+ "Service_Plan_Name": "DYN365_CUSTOMER_INSIGHTS_JOURNEYS_BASE",
+ "Service_Plan_Id": "1720c3f7-7da3-4a11-8324-92aad283eb68",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Insights Journeys"
},
{
- "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 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 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 Insights Attach",
+ "String_Id": "Dynamics_365_Customer_Insights_Attach_New",
+ "GUID": "ff22b8d4-5073-4b24-ba45-84ad5d9b6642",
+ "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 Customer Voice Trial",
- "String_Id": "FORMS_PRO",
- "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c",
+ "Product_Display_Name": "Dynamics 365 Customer Insights Attach",
+ "String_Id": "Dynamics_365_Customer_Insights_Attach_New",
+ "GUID": "ff22b8d4-5073-4b24-ba45-84ad5d9b6642",
+ "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 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 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 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 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 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 Service Professional",
- "String_Id": "DYN365_CUSTOMER_SERVICE_PRO",
- "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92",
+ "Product_Display_Name": "Dynamics 365 Customer Insights Journeys T3 Interacted People",
+ "String_Id": "Dynamics_365_Customer_Insights_Journeys_T3_Interacted_People",
+ "GUID": "05735051-46c0-4c84-9107-bb13d77d0b88",
"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 Insights Journeys T3 Interacted People",
+ "String_Id": "Dynamics_365_Customer_Insights_Journeys_T3_Interacted_People",
+ "GUID": "05735051-46c0-4c84-9107-bb13d77d0b88",
+ "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 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 Insights Journeys T3 Interacted People",
+ "String_Id": "Dynamics_365_Customer_Insights_Journeys_T3_Interacted_People",
+ "GUID": "05735051-46c0-4c84-9107-bb13d77d0b88",
+ "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS_JOURNEYS_ADD-ON",
+ "Service_Plan_Id": "2f2e81a6-15de-4041-9f33-73c06fed3801",
+ "Service_Plans_Included_Friendly_Names": "Dataverse for Customer Insights Journeys add-on"
},
{
- "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 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 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 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 for Customer Service Professional Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "D365_CUSTOMER_SERVICE_PRO_ATTACH",
- "GUID": "19dec69d-d9f3-4792-8a39-d8ecdf51937b",
- "Service_Plan_Name": "D365_CUSTOMER_SERVICE_PRO_ATTACH",
- "Service_Plan_Id": "a9dd2dca-10ae-4da2-aaf0-d3fe8a825110",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Pro Attach"
+ "Product_Display_Name": "Dynamics 365 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 for Customer Service Professional Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "D365_CUSTOMER_SERVICE_PRO_ATTACH",
- "GUID": "19dec69d-d9f3-4792-8a39-d8ecdf51937b",
+ "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 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 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 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 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 Voice Additional Responses",
- "String_Id": "Forms_Pro_AddOn",
- "GUID": "446a86f8-a0cb-4095-83b3-d100eb050e3d",
+ "Product_Display_Name": "Dynamics 365 Customer Insights User License",
+ "String_Id": "Dynamics_365_Customer_Insights_User_License",
+ "GUID": "12b5a442-a6f2-49e4-868b-2d7408c2356f",
"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 Insights User License",
+ "String_Id": "Dynamics_365_Customer_Insights_User_License",
+ "GUID": "12b5a442-a6f2-49e4-868b-2d7408c2356f",
+ "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 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 Insights User License",
+ "String_Id": "Dynamics_365_Customer_Insights_User_License",
+ "GUID": "12b5a442-a6f2-49e4-868b-2d7408c2356f",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 - 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 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 - 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 Customer Service Digital Messaging Partner Sandbox",
+ "String_Id": "Dynamics_365_Customer_Service_Digital_Messaging_Partner_Sandbox",
+ "GUID": "aeb8c883-d700-4aa1-8719-402b5adf2949",
+ "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 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 Customer Service Digital Messaging Partner Sandbox",
+ "String_Id": "Dynamics_365_Customer_Service_Digital_Messaging_Partner_Sandbox",
+ "GUID": "aeb8c883-d700-4aa1-8719-402b5adf2949",
+ "Service_Plan_Name": "DYN365_CS_MESSAGING",
+ "Service_Plan_Id": "43b076f2-1123-45ba-a339-2e170ee58c53",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging Application Integration"
},
{
- "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Production Instance for Government",
- "String_Id": "CRMINSTANCE_GCC",
- "GUID": "2bd3cb20-1bb6-446b-b4d0-089af3a05c52",
+ "Product_Display_Name": "Dynamics 365 Customer Service Digital Messaging Partner Sandbox",
+ "String_Id": "Dynamics_365_Customer_Service_Digital_Messaging_Partner_Sandbox",
+ "GUID": "aeb8c883-d700-4aa1-8719-402b5adf2949",
"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 Customer Service Digital Messaging Partner Sandbox",
+ "String_Id": "Dynamics_365_Customer_Service_Digital_Messaging_Partner_Sandbox",
+ "GUID": "aeb8c883-d700-4aa1-8719-402b5adf2949",
+ "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 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 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 Field Service, Enterprise Edition - Resource Scheduling Optimization",
- "String_Id": "CRM_AUTO_ROUTING_ADDON",
- "GUID": "977464c4-bfaf-4b67-b761-a9bb735a2196",
+ "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": "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": "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": "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": "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": "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": "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": "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 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": "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": "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": "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": "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 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": "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": "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 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 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": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ },
+ {
+ "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": "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 Voice Channel Add-in",
+ "String_Id": "DYN365_CS_VOICE",
+ "GUID": "dadd2312-b5b1-4fa0-8c15-0903de3e2303",
+ "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 Voice Channel Add-in",
+ "String_Id": "DYN365_CS_VOICE",
+ "GUID": "dadd2312-b5b1-4fa0-8c15-0903de3e2303",
+ "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 Voice Channel Add-in",
+ "String_Id": "DYN365_CS_VOICE",
+ "GUID": "dadd2312-b5b1-4fa0-8c15-0903de3e2303",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Voice",
+ "String_Id": "DYN365_CUSTOMER_VOICE_BASE",
+ "GUID": "359ea3e6-8130-4a57-9f8f-ad897a0342f1",
+ "Service_Plan_Name": "Customer_Voice_Base",
+ "Service_Plan_Id": "296820fe-dce5-40f4-a4f2-e14b8feef383",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Voice Base Plan"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Voice",
+ "String_Id": "DYN365_CUSTOMER_VOICE_BASE",
+ "GUID": "359ea3e6-8130-4a57-9f8f-ad897a0342f1",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses",
+ "String_Id": "Forms_Pro_AddOn",
+ "GUID": "446a86f8-a0cb-4095-83b3-d100eb050e3d",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses",
+ "String_Id": "Forms_Pro_AddOn",
+ "GUID": "446a86f8-a0cb-4095-83b3-d100eb050e3d",
+ "Service_Plan_Name": "Forms_Pro_AddOn",
+ "Service_Plan_Id": "90a816f6-de5f-49fd-963c-df490d73b7b5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice Add-on"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses",
+ "String_Id": "DYN365_CUSTOMER_VOICE_ADDON",
+ "GUID": "65f71586-ade3-4ce1-afc0-1b452eaf3782",
+ "Service_Plan_Name": "CUSTOMER_VOICE_ADDON",
+ "Service_Plan_Id": "e6e35e2d-2e7f-4e71-bc6f-2f40ed062f5d",
+ "Service_Plans_Included_Friendly_Names": "Dynamics Customer Voice Add-On"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses",
+ "String_Id": "DYN365_CUSTOMER_VOICE_ADDON",
+ "GUID": "65f71586-ade3-4ce1-afc0-1b452eaf3782",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Voice 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": "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_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": "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": "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 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 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 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 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 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 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 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 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 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"
@@ -1959,6 +2759,14 @@
"Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
"Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365"
},
+ {
+ "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 Contractor for Government",
"String_Id": "D365_FIELD_SERVICE_CONTRACTOR_GOV",
@@ -1975,14 +2783,6 @@
"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",
@@ -2011,41 +2811,41 @@
"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"
+ "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 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"
+ "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 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"
+ "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": "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"
+ "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 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"
+ "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",
@@ -2059,62 +2859,14 @@
"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"
+ "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": "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 Finance Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "DYN365_FINANCE_ATTACH",
- "GUID": "d721f2e4-099b-4105-b40e-872e46cad402",
- "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 Finance Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "DYN365_FINANCE_ATTACH",
- "GUID": "d721f2e4-099b-4105-b40e-872e46cad402",
- "Service_Plan_Name": "CDS_AI_Capacity_FI",
- "Service_Plan_Id": "5d85ec34-44e5-43b6-a9aa-d1b4c1d3aa3b",
- "Service_Plans_Included_Friendly_Names": "AI Builder Capacity Add-on"
- },
- {
- "Product_Display_Name": "Dynamics 365 for Finance Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "DYN365_FINANCE_ATTACH",
- "GUID": "d721f2e4-099b-4105-b40e-872e46cad402",
- "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 for Finance Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "DYN365_FINANCE_ATTACH",
- "GUID": "d721f2e4-099b-4105-b40e-872e46cad402",
- "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 Finance Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "DYN365_FINANCE_ATTACH",
- "GUID": "d721f2e4-099b-4105-b40e-872e46cad402",
- "Service_Plan_Name": "D365_Finance_Attach",
- "Service_Plan_Id": "223e33cb-eee0-462d-b1bd-e9a5febf8e85",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Finance Attach"
- },
- {
- "Product_Display_Name": "Dynamics 365 for Finance Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "DYN365_FINANCE_ATTACH",
- "GUID": "d721f2e4-099b-4105-b40e-872e46cad402",
"Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
"Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
"Service_Plans_Included_Friendly_Names": "Exchange Foundation"
@@ -2123,25 +2875,25 @@
"Product_Display_Name": "Dynamics 365 Finance Attach to Qualifying Base Offer Embedded with Project Management & Accounting",
"String_Id": "DYN365_FINANCE_ATTACH_ISVEMB_PROJOPS",
"GUID": "db5bd06c-b99a-4c54-98e9-90fea5164c88",
- "Service_Plan_Name": "D365_ProjectOperationsCDSAttach",
- "Service_Plan_Id": "e564d403-7eaf-4c91-b92f-bb0dc62026e1",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations CDS Attach"
+ "Service_Plan_Name": "PROJECT_FOR_PROJECT_OPERATIONS_ATTACH",
+ "Service_Plan_Id": "6d8e07c6-9613-484f-8cc1-a66c5c3979bb",
+ "Service_Plans_Included_Friendly_Names": "Project for Project Operations Attach"
},
{
"Product_Display_Name": "Dynamics 365 Finance Attach to Qualifying Base Offer Embedded with Project Management & Accounting",
"String_Id": "DYN365_FINANCE_ATTACH_ISVEMB_PROJOPS",
"GUID": "db5bd06c-b99a-4c54-98e9-90fea5164c88",
- "Service_Plan_Name": "Power_Pages_Internal_User",
- "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941",
- "Service_Plans_Included_Friendly_Names": "Power Pages Internal User"
+ "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 Attach to Qualifying Base Offer Embedded with Project Management & Accounting",
"String_Id": "DYN365_FINANCE_ATTACH_ISVEMB_PROJOPS",
"GUID": "db5bd06c-b99a-4c54-98e9-90fea5164c88",
- "Service_Plan_Name": "CDS_AI_Capacity_FI",
- "Service_Plan_Id": "5d85ec34-44e5-43b6-a9aa-d1b4c1d3aa3b",
- "Service_Plans_Included_Friendly_Names": "AI Builder Capacity Add-on"
+ "Service_Plan_Name": "D365_ProjectOperationsAttach",
+ "Service_Plan_Id": "fa7675bd-6717-40e7-8172-d0bbcbe1ab12",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations Attach"
},
{
"Product_Display_Name": "Dynamics 365 Finance Attach to Qualifying Base Offer Embedded with Project Management & Accounting",
@@ -2155,25 +2907,25 @@
"Product_Display_Name": "Dynamics 365 Finance Attach to Qualifying Base Offer Embedded with Project Management & Accounting",
"String_Id": "DYN365_FINANCE_ATTACH_ISVEMB_PROJOPS",
"GUID": "db5bd06c-b99a-4c54-98e9-90fea5164c88",
- "Service_Plan_Name": "D365_ProjectOperationsAttach",
- "Service_Plan_Id": "fa7675bd-6717-40e7-8172-d0bbcbe1ab12",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations Attach"
+ "Service_Plan_Name": "CDS_AI_Capacity_FI",
+ "Service_Plan_Id": "5d85ec34-44e5-43b6-a9aa-d1b4c1d3aa3b",
+ "Service_Plans_Included_Friendly_Names": "AI Builder Capacity Add-on"
},
{
"Product_Display_Name": "Dynamics 365 Finance Attach to Qualifying Base Offer Embedded with Project Management & Accounting",
"String_Id": "DYN365_FINANCE_ATTACH_ISVEMB_PROJOPS",
"GUID": "db5bd06c-b99a-4c54-98e9-90fea5164c88",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ "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 Finance Attach to Qualifying Base Offer Embedded with Project Management & Accounting",
"String_Id": "DYN365_FINANCE_ATTACH_ISVEMB_PROJOPS",
"GUID": "db5bd06c-b99a-4c54-98e9-90fea5164c88",
- "Service_Plan_Name": "PROJECT_FOR_PROJECT_OPERATIONS_ATTACH",
- "Service_Plan_Id": "6d8e07c6-9613-484f-8cc1-a66c5c3979bb",
- "Service_Plans_Included_Friendly_Names": "Project for Project Operations Attach"
+ "Service_Plan_Name": "D365_ProjectOperationsCDSAttach",
+ "Service_Plan_Id": "e564d403-7eaf-4c91-b92f-bb0dc62026e1",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations CDS Attach"
},
{
"Product_Display_Name": "Dynamics 365 Finance Attach to Qualifying Base Offer Embedded with Project Management & Accounting",
@@ -2187,25 +2939,25 @@
"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"
+ "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": "NBENTERPRISE",
- "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6",
- "Service_Plans_Included_Friendly_Names": "Retired - Microsoft Social Engagement"
+ "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": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ "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",
@@ -2219,25 +2971,25 @@
"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"
+ "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": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ "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": "POWERAPPS_DYN_APPS",
- "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365"
+ "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",
@@ -2248,1433 +3000,1737 @@
"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 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 Case Management, Enterprise Edition for Government",
- "String_Id": "D365_ENTERPRISE_CASE_MANAGEMENT_GOV",
- "GUID": "5cd0b796-9ac8-4792-9f0b-796ca9044e4a",
+ "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 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 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 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 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 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 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 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 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 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 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 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 Case Management, Enterprise Edition for Government",
- "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV",
- "GUID": "ff5a82be-1edd-4d48-94e0-52527825b589",
+ "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 Case Management, Enterprise Edition for Government",
- "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV",
- "GUID": "ff5a82be-1edd-4d48-94e0-52527825b589",
+ "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 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 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 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 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 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 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 Case Management, Enterprise Edition for Government",
- "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV",
- "GUID": "ff5a82be-1edd-4d48-94e0-52527825b589",
+ "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",
+ "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": "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 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 Case Management, Enterprise Edition for Government",
- "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT_GOV",
- "GUID": "ff5a82be-1edd-4d48-94e0-52527825b589",
+ "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 Commerce",
- "String_Id": "DYN365_RETAIL",
- "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
+ "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": "Power_Pages_Internal_User",
"Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941",
"Service_Plans_Included_Friendly_Names": "Power Pages Internal User"
},
{
- "Product_Display_Name": "Dynamics 365 Commerce",
- "String_Id": "DYN365_RETAIL",
- "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
- "Service_Plan_Name": "DYN365_CDS_RETAIL",
- "Service_Plan_Id": "93cc200d-a47f-4c56-aec1-83f8b0d0425a",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Dynamics 365 Retail"
- },
- {
- "Product_Display_Name": "Dynamics 365 Commerce",
- "String_Id": "DYN365_RETAIL",
- "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
- "Service_Plan_Name": "FLOW_FOR_IOM_USL",
- "Service_Plan_Id": "9e6d1620-dce9-4655-8933-af8fa5bccc9c",
- "Service_Plans_Included_Friendly_Names": "Data Integration for IOM with Power Automate USL"
- },
- {
- "Product_Display_Name": "Dynamics 365 Commerce",
- "String_Id": "DYN365_RETAIL",
- "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
- "Service_Plan_Name": "CDS_FOR_IOM",
- "Service_Plan_Id": "2bb89402-51e9-4c5a-be33-e954a9dd1ba6",
- "Service_Plans_Included_Friendly_Names": "Dataverse for IOM"
- },
- {
- "Product_Display_Name": "Dynamics 365 Commerce",
- "String_Id": "DYN365_RETAIL",
- "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
- "Service_Plan_Name": "DYN365_RETAIL",
- "Service_Plan_Id": "117e3aa0-8d08-4a19-a6a5-90b7a96e2128",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Commerce"
+ "Product_Display_Name": "Dynamics 365 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 Commerce",
- "String_Id": "DYN365_RETAIL",
- "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
- "Service_Plan_Name": "DYN365_REGULATORY_SERVICE",
- "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Finance and Operations, Enterprise edition - Regulatory Service"
+ "Product_Display_Name": "Dynamics 365 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 Commerce",
- "String_Id": "DYN365_RETAIL",
- "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
- "Service_Plan_Name": "DYN365_FP_ACC_PROTECTION",
- "Service_Plan_Id": "4c00c16c-0304-4421-b598-555c3e78edcb",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Fraud Protection - Account Protection"
+ "Product_Display_Name": "Dynamics 365 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 Commerce",
- "String_Id": "DYN365_RETAIL",
- "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
- "Service_Plan_Name": "DYN365_FP_LOSS_PREVENTION",
- "Service_Plan_Id": "ecc62904-fa88-4552-a62c-fe582fb31444",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Fraud Protection - Loss Prevention"
+ "Product_Display_Name": "Dynamics 365 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 Commerce",
- "String_Id": "DYN365_RETAIL",
- "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
- "Service_Plan_Name": "DYN365_FP_PURCH_PROTECTION",
- "Service_Plan_Id": "d703990f-006e-459b-b8dd-1267c4533a22",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Fraud Protection - Purchase Protection"
+ "Product_Display_Name": "Dynamics 365 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 Commerce",
- "String_Id": "DYN365_RETAIL",
- "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
- "Service_Plan_Name": "DYN365_IOM",
- "Service_Plan_Id": "616cf6e2-f52f-4738-b463-10003061fcd3",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Intelligent Order Management"
+ "Product_Display_Name": "Dynamics 365 for Customer Service Professional Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "D365_CUSTOMER_SERVICE_PRO_ATTACH",
+ "GUID": "19dec69d-d9f3-4792-8a39-d8ecdf51937b",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
},
{
- "Product_Display_Name": "Dynamics 365 Commerce",
- "String_Id": "DYN365_RETAIL",
- "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
- "Service_Plan_Name": "DYN365_IOM_USER",
- "Service_Plan_Id": "81375e2f-5ef7-4773-96aa-e3279f50bd21",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Intelligent Order Management USL"
+ "Product_Display_Name": "Dynamics 365 for Customer Service Professional Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "D365_CUSTOMER_SERVICE_PRO_ATTACH",
+ "GUID": "19dec69d-d9f3-4792-8a39-d8ecdf51937b",
+ "Service_Plan_Name": "D365_CUSTOMER_SERVICE_PRO_ATTACH",
+ "Service_Plan_Id": "a9dd2dca-10ae-4da2-aaf0-d3fe8a825110",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Pro Attach"
},
{
- "Product_Display_Name": "Dynamics 365 Commerce",
- "String_Id": "DYN365_RETAIL",
- "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
+ "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 Commerce",
- "String_Id": "DYN365_RETAIL",
- "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
- "Service_Plan_Name": "POWERAPPS_DYN_APPS",
- "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365"
+ "Product_Display_Name": "Dynamics 365 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 Commerce",
- "String_Id": "DYN365_RETAIL",
- "GUID": "79909bd8-4c69-4202-939e-11bc4385b134",
+ "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 Contact Center",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER",
- "GUID": "dfb1700c-013e-4132-8bce-0d319c43a95d",
- "Service_Plan_Name": "DYN365_CC",
- "Service_Plan_Id": "2a9d72b3-1714-440f-babf-bf92bf9683d8",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Contact Center"
+ "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 Contact Center",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER",
- "GUID": "dfb1700c-013e-4132-8bce-0d319c43a95d",
- "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 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 Contact Center",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER",
- "GUID": "dfb1700c-013e-4132-8bce-0d319c43a95d",
- "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 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 Contact Center",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER",
- "GUID": "dfb1700c-013e-4132-8bce-0d319c43a95d",
- "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 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 Contact Center",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER",
- "GUID": "dfb1700c-013e-4132-8bce-0d319c43a95d",
- "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 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 Contact Center",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER",
- "GUID": "dfb1700c-013e-4132-8bce-0d319c43a95d",
+ "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 Contact Center",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER",
- "GUID": "dfb1700c-013e-4132-8bce-0d319c43a95d",
- "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 Contact Center",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER",
- "GUID": "dfb1700c-013e-4132-8bce-0d319c43a95d",
- "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 Contact Center",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER",
- "GUID": "dfb1700c-013e-4132-8bce-0d319c43a95d",
+ "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 Contact Center",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER",
- "GUID": "dfb1700c-013e-4132-8bce-0d319c43a95d",
- "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 Contact Center Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "39a78eb6-3a8a-4e1e-878a-575a5c8984e7",
- "Service_Plan_Name": "DYN365_CC",
- "Service_Plan_Id": "2a9d72b3-1714-440f-babf-bf92bf9683d8",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Contact Center"
+ "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 Contact Center Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "39a78eb6-3a8a-4e1e-878a-575a5c8984e7",
- "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 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 Contact Center Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "39a78eb6-3a8a-4e1e-878a-575a5c8984e7",
- "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 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 Contact Center Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "39a78eb6-3a8a-4e1e-878a-575a5c8984e7",
- "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 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 Contact Center Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "39a78eb6-3a8a-4e1e-878a-575a5c8984e7",
- "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 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 Contact Center Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "39a78eb6-3a8a-4e1e-878a-575a5c8984e7",
- "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": "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 Contact Center Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "39a78eb6-3a8a-4e1e-878a-575a5c8984e7",
- "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 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 Contact Center Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "39a78eb6-3a8a-4e1e-878a-575a5c8984e7",
- "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 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 Contact Center Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "39a78eb6-3a8a-4e1e-878a-575a5c8984e7",
- "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 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 Contact Center Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "39a78eb6-3a8a-4e1e-878a-575a5c8984e7",
- "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 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 Contact Center Digital",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL",
- "GUID": "59d3d0bf-df39-4b8b-8601-ea6c09a7fd66",
- "Service_Plan_Name": "DYN365_CC_DIGITAL",
- "Service_Plan_Id": "0ef2b4e3-0a2b-450d-8c5f-a52203c40f50",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Contact Center Digital"
+ "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 Contact Center Digital",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL",
- "GUID": "59d3d0bf-df39-4b8b-8601-ea6c09a7fd66",
- "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 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 Contact Center Digital",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL",
- "GUID": "59d3d0bf-df39-4b8b-8601-ea6c09a7fd66",
- "Service_Plan_Name": "DYN365_CS_MESSAGING",
- "Service_Plan_Id": "43b076f2-1123-45ba-a339-2e170ee58c53",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging Application Integration"
+ "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 Contact Center Digital",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL",
- "GUID": "59d3d0bf-df39-4b8b-8601-ea6c09a7fd66",
+ "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 Contact Center Digital",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL",
- "GUID": "59d3d0bf-df39-4b8b-8601-ea6c09a7fd66",
- "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 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 Contact Center Digital",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL",
- "GUID": "59d3d0bf-df39-4b8b-8601-ea6c09a7fd66",
- "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 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 Contact Center Digital",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL",
- "GUID": "59d3d0bf-df39-4b8b-8601-ea6c09a7fd66",
- "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 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 Contact Center Digital",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL",
- "GUID": "59d3d0bf-df39-4b8b-8601-ea6c09a7fd66",
- "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 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 Contact Center Digital",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL",
- "GUID": "59d3d0bf-df39-4b8b-8601-ea6c09a7fd66",
- "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 Finance Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "DYN365_FINANCE_ATTACH",
+ "GUID": "d721f2e4-099b-4105-b40e-872e46cad402",
+ "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 Contact Center Digital Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "7e6e6091-1680-4532-9370-6cd4598483ac",
- "Service_Plan_Name": "DYN365_CC_DIGITAL",
- "Service_Plan_Id": "0ef2b4e3-0a2b-450d-8c5f-a52203c40f50",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Contact Center Digital"
+ "Product_Display_Name": "Dynamics 365 for Finance Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "DYN365_FINANCE_ATTACH",
+ "GUID": "d721f2e4-099b-4105-b40e-872e46cad402",
+ "Service_Plan_Name": "D365_Finance_Attach",
+ "Service_Plan_Id": "223e33cb-eee0-462d-b1bd-e9a5febf8e85",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Finance Attach"
},
{
- "Product_Display_Name": "Dynamics 365 Contact Center Digital Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "7e6e6091-1680-4532-9370-6cd4598483ac",
- "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 for Finance Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "DYN365_FINANCE_ATTACH",
+ "GUID": "d721f2e4-099b-4105-b40e-872e46cad402",
+ "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 Contact Center Digital Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "7e6e6091-1680-4532-9370-6cd4598483ac",
- "Service_Plan_Name": "DYN365_CS_MESSAGING",
- "Service_Plan_Id": "43b076f2-1123-45ba-a339-2e170ee58c53",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging Application Integration"
+ "Product_Display_Name": "Dynamics 365 for Finance Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "DYN365_FINANCE_ATTACH",
+ "GUID": "d721f2e4-099b-4105-b40e-872e46cad402",
+ "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 Contact Center Digital Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "7e6e6091-1680-4532-9370-6cd4598483ac",
- "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 Finance Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "DYN365_FINANCE_ATTACH",
+ "GUID": "d721f2e4-099b-4105-b40e-872e46cad402",
+ "Service_Plan_Name": "CDS_AI_Capacity_FI",
+ "Service_Plan_Id": "5d85ec34-44e5-43b6-a9aa-d1b4c1d3aa3b",
+ "Service_Plans_Included_Friendly_Names": "AI Builder Capacity Add-on"
},
{
- "Product_Display_Name": "Dynamics 365 Contact Center Digital Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "7e6e6091-1680-4532-9370-6cd4598483ac",
+ "Product_Display_Name": "Dynamics 365 for Finance Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "DYN365_FINANCE_ATTACH",
+ "GUID": "d721f2e4-099b-4105-b40e-872e46cad402",
"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 Contact Center Digital Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "7e6e6091-1680-4532-9370-6cd4598483ac",
- "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 Contact Center Digital Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "7e6e6091-1680-4532-9370-6cd4598483ac",
- "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 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 Contact Center Digital Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "7e6e6091-1680-4532-9370-6cd4598483ac",
+ "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": "Power Apps for Dynamics 365"
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR FINANCIALS"
},
{
- "Product_Display_Name": "Dynamics 365 Contact Center Digital Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_DIGITAL_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "7e6e6091-1680-4532-9370-6cd4598483ac",
+ "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": "Power Automate for Dynamics 365"
- },
- {
- "Product_Display_Name": "Dynamics 365 Contact Center Voice",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE",
- "GUID": "79e2368c-4568-48d5-a352-b0344afabcf8",
- "Service_Plan_Name": "DYN365_CC_VOICE",
- "Service_Plan_Id": "57517633-b4ad-4db8-8c1a-65f443424490",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Contact Center Voice"
+ "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
},
{
- "Product_Display_Name": "Dynamics 365 Contact Center Voice",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE",
- "GUID": "79e2368c-4568-48d5-a352-b0344afabcf8",
- "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 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 Contact Center Voice",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE",
- "GUID": "79e2368c-4568-48d5-a352-b0344afabcf8",
- "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 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 Contact Center Voice",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE",
- "GUID": "79e2368c-4568-48d5-a352-b0344afabcf8",
- "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 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 Contact Center Voice",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE",
- "GUID": "79e2368c-4568-48d5-a352-b0344afabcf8",
+ "Product_Display_Name": "Dynamics 365 for Marketing Addnl Contacts Tier 1",
+ "String_Id": "DYN365_MARKETING_CONTACT_ADDON",
+ "GUID": "fc4581aa-6b1f-459d-95b6-84bd49d6f843",
"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 Contact Center Voice",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE",
- "GUID": "79e2368c-4568-48d5-a352-b0344afabcf8",
- "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 Marketing Addnl Contacts Tier 1",
+ "String_Id": "DYN365_MARKETING_CONTACT_ADDON",
+ "GUID": "fc4581aa-6b1f-459d-95b6-84bd49d6f843",
+ "Service_Plan_Name": "DYN365_MARKETING_CONTACT_ADDON",
+ "Service_Plan_Id": "18db5075-2c70-408d-a82b-929059d782af",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing Additional Contacts Tier 1"
},
{
- "Product_Display_Name": "Dynamics 365 Contact Center Voice",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE",
- "GUID": "79e2368c-4568-48d5-a352-b0344afabcf8",
- "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 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 Contact Center Voice",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE",
- "GUID": "79e2368c-4568-48d5-a352-b0344afabcf8",
- "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 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 Contact Center Voice",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE",
- "GUID": "79e2368c-4568-48d5-a352-b0344afabcf8",
- "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 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 Contact Center Voice Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "73e8b747-20bf-463d-8ffd-274a7d65d0bc",
- "Service_Plan_Name": "DYN365_CC_VOICE",
- "Service_Plan_Id": "57517633-b4ad-4db8-8c1a-65f443424490",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Contact Center Voice"
- },
- {
- "Product_Display_Name": "Dynamics 365 Contact Center Voice Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "73e8b747-20bf-463d-8ffd-274a7d65d0bc",
- "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 Contact Center Voice Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "73e8b747-20bf-463d-8ffd-274a7d65d0bc",
- "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 Contact Center Voice Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "73e8b747-20bf-463d-8ffd-274a7d65d0bc",
- "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 Contact Center Voice Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "73e8b747-20bf-463d-8ffd-274a7d65d0bc",
- "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 Contact Center Voice Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "73e8b747-20bf-463d-8ffd-274a7d65d0bc",
- "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 Contact Center Voice Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "73e8b747-20bf-463d-8ffd-274a7d65d0bc",
- "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 Contact Center Voice Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "73e8b747-20bf-463d-8ffd-274a7d65d0bc",
- "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 Contact Center Voice Add-on for Customer Service Enterprise",
- "String_Id": "DYNAMICS_365_CONTACT_CENTER_VOICE_ADD_ON_FOR_CUSTOMER_SERVICE_ENTERPRISE",
- "GUID": "73e8b747-20bf-463d-8ffd-274a7d65d0bc",
- "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 Attach",
- "String_Id": "Dynamics_365_Customer_Insights_Attach_New",
- "GUID": "ff22b8d4-5073-4b24-ba45-84ad5d9b6642",
- "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 Attach",
- "String_Id": "Dynamics_365_Customer_Insights_Attach_New",
- "GUID": "ff22b8d4-5073-4b24-ba45-84ad5d9b6642",
- "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS_COMBINED_BASE",
- "Service_Plan_Id": "d66ee5da-07d5-49d6-a1d8-45662c3f37be",
- "Service_Plans_Included_Friendly_Names": "Dataverse for Customer Insights Combined Base"
+ "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 Customer Insights Attach",
- "String_Id": "Dynamics_365_Customer_Insights_Attach_New",
- "GUID": "ff22b8d4-5073-4b24-ba45-84ad5d9b6642",
- "Service_Plan_Name": "DYN365_CUSTOMER_INSIGHTS_JOURNEYS_BASE",
- "Service_Plan_Id": "1720c3f7-7da3-4a11-8324-92aad283eb68",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Insights Journeys"
+ "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 Customer Insights Attach",
- "String_Id": "Dynamics_365_Customer_Insights_Attach_New",
- "GUID": "ff22b8d4-5073-4b24-ba45-84ad5d9b6642",
+ "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 Customer Insights Attach",
- "String_Id": "Dynamics_365_Customer_Insights_Attach_New",
- "GUID": "ff22b8d4-5073-4b24-ba45-84ad5d9b6642",
+ "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 Customer Insights Journeys T3 Interacted People",
- "String_Id": "Dynamics_365_Customer_Insights_Journeys_T3_Interacted_People",
- "GUID": "05735051-46c0-4c84-9107-bb13d77d0b88",
- "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS_JOURNEYS_ADD-ON",
- "Service_Plan_Id": "2f2e81a6-15de-4041-9f33-73c06fed3801",
- "Service_Plans_Included_Friendly_Names": "Dataverse for Customer Insights Journeys add-on"
+ "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 Customer Insights Journeys T3 Interacted People",
- "String_Id": "Dynamics_365_Customer_Insights_Journeys_T3_Interacted_People",
- "GUID": "05735051-46c0-4c84-9107-bb13d77d0b88",
- "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 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 Customer Insights Journeys T3 Interacted People",
- "String_Id": "Dynamics_365_Customer_Insights_Journeys_T3_Interacted_People",
- "GUID": "05735051-46c0-4c84-9107-bb13d77d0b88",
+ "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 Customer Insights User License",
- "String_Id": "Dynamics_365_Customer_Insights_User_License",
- "GUID": "12b5a442-a6f2-49e4-868b-2d7408c2356f",
+ "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": "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 Customer Insights User License",
- "String_Id": "Dynamics_365_Customer_Insights_User_License",
- "GUID": "12b5a442-a6f2-49e4-868b-2d7408c2356f",
+ "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 Customer Insights User License",
- "String_Id": "Dynamics_365_Customer_Insights_User_License",
- "GUID": "12b5a442-a6f2-49e4-868b-2d7408c2356f",
- "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 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 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 Customer Service Chat",
- "String_Id": "DYN365_CS_CHAT",
- "GUID": "7d7af6c2-0be6-46df-84d1-c181b0272909",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 Project Service Automation for Government",
+ "String_Id": "D365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV",
+ "GUID": "6c827f0a-42cb-4cff-b1cd-f4104c16ede3",
+ "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 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 Project Service Automation for Government",
+ "String_Id": "D365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV",
+ "GUID": "6c827f0a-42cb-4cff-b1cd-f4104c16ede3",
+ "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 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 Project Service Automation for Government",
+ "String_Id": "D365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV",
+ "GUID": "6c827f0a-42cb-4cff-b1cd-f4104c16ede3",
+ "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": "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 for Government",
+ "String_Id": "D365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV",
+ "GUID": "6c827f0a-42cb-4cff-b1cd-f4104c16ede3",
+ "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 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 Project Service Automation for Government",
+ "String_Id": "D365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV",
+ "GUID": "6c827f0a-42cb-4cff-b1cd-f4104c16ede3",
+ "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 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 Project Service Automation for Government",
+ "String_Id": "D365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV",
+ "GUID": "6c827f0a-42cb-4cff-b1cd-f4104c16ede3",
+ "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",
+ "Product_Display_Name": "Dynamics 365 for Project Service Automation for Government",
+ "String_Id": "D365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV",
+ "GUID": "6c827f0a-42cb-4cff-b1cd-f4104c16ede3",
"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 Project Service Automation for Government",
+ "String_Id": "D365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV",
+ "GUID": "6c827f0a-42cb-4cff-b1cd-f4104c16ede3",
+ "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 Customer Service, Enterprise Edition for Government",
- "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE_GOV",
- "GUID": "3c74d823-8f01-4fe8-82d5-f089a5504cec",
+ "Product_Display_Name": "Dynamics 365 for Project Service Automation for Government",
+ "String_Id": "D365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV",
+ "GUID": "6c827f0a-42cb-4cff-b1cd-f4104c16ede3",
"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 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 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 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 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 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 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 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 Field Service Enterprise Edition",
- "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE",
- "GUID": "c7d15985-e746-4f01-b113-20b575898250",
+ "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": "Retired - Microsoft Social Engagement"
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT - SERVICE DISCONTINUATION"
},
{
- "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 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 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 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 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 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 Field Service Enterprise Edition",
- "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE",
- "GUID": "c7d15985-e746-4f01-b113-20b575898250",
+ "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 (Plan 2)"
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (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 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 Field Service Enterprise Edition",
- "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE",
- "GUID": "c7d15985-e746-4f01-b113-20b575898250",
+ "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": "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": "FLOW_DYN_APPS",
"Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365"
+ "Service_Plans_Included_Friendly_Names": "FLOW 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 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 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 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 & Trial"
},
{
- "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 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 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 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 Field Service Enterprise Edition for Government",
- "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE_GOV",
- "GUID": "c3d74ead-70b7-4513-8dce-797be3fbe07a",
+ "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": "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",
+ "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": "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 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 Field Service Enterprise Edition for Government",
- "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE_GOV",
- "GUID": "c3d74ead-70b7-4513-8dce-797be3fbe07a",
+ "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": "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 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 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 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 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 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 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 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 Field Service for Government",
- "String_Id": "D365_ENTERPRISE_FIELD_SERVICE_GOV",
- "GUID": "8eac9119-7e6b-4278-9dc4-e3458993b08a",
+ "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": "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": "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 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 Field Service for Government",
- "String_Id": "D365_ENTERPRISE_FIELD_SERVICE_GOV",
- "GUID": "8eac9119-7e6b-4278-9dc4-e3458993b08a",
+ "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": "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": "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": "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 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 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 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 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 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 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 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 Financials Business Edition",
- "String_Id": "DYN365_FINANCIALS_BUSINESS_SKU",
- "GUID": "cc13a803-544e-4464-b4e4-6d6169a138fa",
+ "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 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": "POWERAPPS FOR DYNAMICS 365"
+ "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": "POWERAPPS_DYN_APPS",
- "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR FINANCIALS"
+ "Product_Display_Name": "Dynamics 365 for 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 Guides vTrial",
- "String_Id": "Dynamics_365_Guides_vTrial",
- "GUID": "99cb3f83-fbec-4aa1-8262-9679e6df7c53",
- "Service_Plan_Name": "D365_GUIDES_VIRAL_TRIAL",
- "Service_Plan_Id": "fe986032-d840-4817-82d4-51fe4fbbe163",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Guides vTrial"
+ "Product_Display_Name": "Dynamics 365 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 Guides vTrial",
- "String_Id": "Dynamics_365_Guides_vTrial",
- "GUID": "99cb3f83-fbec-4aa1-8262-9679e6df7c53",
+ "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 Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "DYN365_SCM_ATTACH",
+ "GUID": "090b4a96-8114-4c95-9c91-60e81ef53302",
"Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
"Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
"Service_Plans_Included_Friendly_Names": "Exchange Foundation"
},
{
- "Product_Display_Name": "Dynamics 365 Guides vTrial",
- "String_Id": "Dynamics_365_Guides_vTrial",
- "GUID": "99cb3f83-fbec-4aa1-8262-9679e6df7c53",
- "Service_Plan_Name": "DYN365_CDS_VIRAL",
- "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "Product_Display_Name": "Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "DYN365_SCM_ATTACH",
+ "GUID": "090b4a96-8114-4c95-9c91-60e81ef53302",
+ "Service_Plan_Name": "CDS_FOR_IOM",
+ "Service_Plan_Id": "2bb89402-51e9-4c5a-be33-e954a9dd1ba6",
+ "Service_Plans_Included_Friendly_Names": "Dataverse for IOM"
},
{
- "Product_Display_Name": "Dynamics 365 Guides vTrial",
- "String_Id": "Dynamics_365_Guides_vTrial",
- "GUID": "99cb3f83-fbec-4aa1-8262-9679e6df7c53",
- "Service_Plan_Name": "POWER_APPS_DYN365_VIRAL_TRIAL_MIXED_REALITY",
- "Service_Plan_Id": "066e2fd1-ba15-40e7-aa96-d6636b1cdf71",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365 Mixed Reality"
+ "Product_Display_Name": "Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "DYN365_SCM_ATTACH",
+ "GUID": "090b4a96-8114-4c95-9c91-60e81ef53302",
+ "Service_Plan_Name": "DYN365_REGULATORY_SERVICE",
+ "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Finance and Operations, Enterprise edition - Regulatory Service"
},
{
- "Product_Display_Name": "Dynamics 365 Guides vTrial",
- "String_Id": "Dynamics_365_Guides_vTrial",
- "GUID": "99cb3f83-fbec-4aa1-8262-9679e6df7c53",
- "Service_Plan_Name": "POWER_AUTOMATE_DYN365_VIRAL_TRIAL_MIXED_REALITY",
- "Service_Plan_Id": "26fa8a18-2812-4b3d-96b4-864818ce26be",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 Mixed Reality"
+ "Product_Display_Name": "Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "DYN365_SCM_ATTACH",
+ "GUID": "090b4a96-8114-4c95-9c91-60e81ef53302",
+ "Service_Plan_Name": "D365_SCM_Attach",
+ "Service_Plan_Id": "b21c777f-c2d5-486e-88f6-fc0a3e474271",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Supply Chain Management Attach"
},
{
- "Product_Display_Name": "Dynamics 365 Human Resources Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "DYN365_HUMAN_RESOURCES_ATTACH",
- "GUID": "83c489a4-94b6-4dcc-9fdc-ff9b107a4621",
- "Service_Plan_Name": "Forms_Pro_Talent",
- "Service_Plan_Id": "1c4ae475-5608-43fa-b3f7-d20e07cf24b4",
- "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Talent"
+ "Product_Display_Name": "Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "DYN365_SCM_ATTACH",
+ "GUID": "090b4a96-8114-4c95-9c91-60e81ef53302",
+ "Service_Plan_Name": "DYN365_CDS_SUPPLYCHAINMANAGEMENT",
+ "Service_Plan_Id": "b6a8b974-2956-4e14-ae81-f0384c363528",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Dynamics 365 Supply Chain Management"
},
{
- "Product_Display_Name": "Dynamics 365 Human Resources Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "DYN365_HUMAN_RESOURCES_ATTACH",
- "GUID": "83c489a4-94b6-4dcc-9fdc-ff9b107a4621",
+ "Product_Display_Name": "Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "DYN365_SCM_ATTACH",
+ "GUID": "090b4a96-8114-4c95-9c91-60e81ef53302",
"Service_Plan_Name": "Power_Pages_Internal_User",
"Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941",
"Service_Plans_Included_Friendly_Names": "Power Pages Internal User"
},
{
- "Product_Display_Name": "Dynamics 365 Human Resources Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "DYN365_HUMAN_RESOURCES_ATTACH",
- "GUID": "83c489a4-94b6-4dcc-9fdc-ff9b107a4621",
- "Service_Plan_Name": "D365_HR_SELF_SERVICE_OPS",
- "Service_Plan_Id": "835b837b-63c1-410e-bf6b-bdef201ad129",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Human Resource Self Service"
- },
- {
- "Product_Display_Name": "Dynamics 365 Human Resources Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "DYN365_HUMAN_RESOURCES_ATTACH",
- "GUID": "83c489a4-94b6-4dcc-9fdc-ff9b107a4621",
- "Service_Plan_Name": "D365_HR_OPS",
- "Service_Plan_Id": "8b21a5dc-5485-49ed-a2d4-0e772c830f6d",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Human Resources"
+ "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 Human Resources Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "DYN365_HUMAN_RESOURCES_ATTACH",
- "GUID": "83c489a4-94b6-4dcc-9fdc-ff9b107a4621",
- "Service_Plan_Name": "D365_HR_Attach",
- "Service_Plan_Id": "3219525a-4064-45ec-9c35-a33ea6b39a49",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Human Resources Attach"
+ "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 Human Resources Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "DYN365_HUMAN_RESOURCES_ATTACH",
- "GUID": "83c489a4-94b6-4dcc-9fdc-ff9b107a4621",
- "Service_Plan_Name": "D365_HR_ATTACH_OPS",
- "Service_Plan_Id": "90d8cb62-e98a-4639-8342-8c7d2c8215ba",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Human Resources Attach License"
+ "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 Human Resources Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "DYN365_HUMAN_RESOURCES_ATTACH",
- "GUID": "83c489a4-94b6-4dcc-9fdc-ff9b107a4621",
+ "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 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 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 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 Talent",
+ "String_Id": "SKU_Dynamics_365_for_HCM_Trial",
+ "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6",
+ "Service_Plan_Name": "POWERAPPS_DYN_APPS",
+ "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
+ "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365"
},
{
- "Product_Display_Name": "Dynamics 365 for 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 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 Marketing Additional Application",
- "String_Id": "DYN365_MARKETING_APPLICATION_ADDON",
- "GUID": "99c5688b-6c75-4496-876f-07f0fbd69add",
+ "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 Marketing Addnl Contacts Tier 1",
- "String_Id": "DYN365_MARKETING_CONTACT_ADDON",
- "GUID": "fc4581aa-6b1f-459d-95b6-84bd49d6f843",
- "Service_Plan_Name": "DYN365_MARKETING_CONTACT_ADDON",
- "Service_Plan_Id": "18db5075-2c70-408d-a82b-929059d782af",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing Additional Contacts Tier 1"
+ "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 Marketing Addnl Contacts Tier 1",
- "String_Id": "DYN365_MARKETING_CONTACT_ADDON",
- "GUID": "fc4581aa-6b1f-459d-95b6-84bd49d6f843",
- "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": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
},
{
- "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 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 Marketing Addnl Contacts Tier 3",
- "String_Id": "DYN365_MARKETING_CONTACT_ADDON_T3",
- "GUID": "23053933-0fda-431f-9a5b-a00fd78444c1",
+ "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": "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": "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": "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": "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": "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",
+ "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": "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_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_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_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": "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_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": "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": "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 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 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": "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": "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": "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": "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 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 Marketing Addnl Contacts Tier 5",
- "String_Id": "DYN365_MARKETING_CONTACT_ADDON_T5",
- "GUID": "d8eec316-778c-4f14-a7d1-a0aca433b4e7",
+ "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 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 Guides vTrial",
+ "String_Id": "Dynamics_365_Guides_vTrial",
+ "GUID": "99cb3f83-fbec-4aa1-8262-9679e6df7c53",
"Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
"Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
"Service_Plans_Included_Friendly_Names": "Exchange Foundation"
},
{
- "Product_Display_Name": "Dynamics 365 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 Guides vTrial",
+ "String_Id": "Dynamics_365_Guides_vTrial",
+ "GUID": "99cb3f83-fbec-4aa1-8262-9679e6df7c53",
+ "Service_Plan_Name": "DYN365_CDS_VIRAL",
+ "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
},
{
- "Product_Display_Name": "Dynamics 365 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 Guides vTrial",
+ "String_Id": "Dynamics_365_Guides_vTrial",
+ "GUID": "99cb3f83-fbec-4aa1-8262-9679e6df7c53",
+ "Service_Plan_Name": "POWER_APPS_DYN365_VIRAL_TRIAL_MIXED_REALITY",
+ "Service_Plan_Id": "066e2fd1-ba15-40e7-aa96-d6636b1cdf71",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365 Mixed Reality"
},
{
- "Product_Display_Name": "Dynamics 365 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 Guides vTrial",
+ "String_Id": "Dynamics_365_Guides_vTrial",
+ "GUID": "99cb3f83-fbec-4aa1-8262-9679e6df7c53",
+ "Service_Plan_Name": "D365_GUIDES_VIRAL_TRIAL",
+ "Service_Plan_Id": "fe986032-d840-4817-82d4-51fe4fbbe163",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Guides vTrial"
},
{
- "Product_Display_Name": "Dynamics 365 for Marketing Attach",
- "String_Id": "DYN365_MARKETING_APP_ATTACH",
- "GUID": "85430fb9-02e8-48be-9d7e-328beb41fa29",
+ "Product_Display_Name": "Dynamics 365 Guides vTrial",
+ "String_Id": "Dynamics_365_Guides_vTrial",
+ "GUID": "99cb3f83-fbec-4aa1-8262-9679e6df7c53",
+ "Service_Plan_Name": "POWER_AUTOMATE_DYN365_VIRAL_TRIAL_MIXED_REALITY",
+ "Service_Plan_Id": "26fa8a18-2812-4b3d-96b4-864818ce26be",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 Mixed Reality"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Human Resources Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "DYN365_HUMAN_RESOURCES_ATTACH",
+ "GUID": "83c489a4-94b6-4dcc-9fdc-ff9b107a4621",
"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 Human Resources Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "DYN365_HUMAN_RESOURCES_ATTACH",
+ "GUID": "83c489a4-94b6-4dcc-9fdc-ff9b107a4621",
+ "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 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 Human Resources Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "DYN365_HUMAN_RESOURCES_ATTACH",
+ "GUID": "83c489a4-94b6-4dcc-9fdc-ff9b107a4621",
+ "Service_Plan_Name": "D365_HR_SELF_SERVICE_OPS",
+ "Service_Plan_Id": "835b837b-63c1-410e-bf6b-bdef201ad129",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Human Resource Self Service"
},
{
- "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 Human Resources Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "DYN365_HUMAN_RESOURCES_ATTACH",
+ "GUID": "83c489a4-94b6-4dcc-9fdc-ff9b107a4621",
+ "Service_Plan_Name": "D365_HR_OPS",
+ "Service_Plan_Id": "8b21a5dc-5485-49ed-a2d4-0e772c830f6d",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Human Resources"
},
{
- "Product_Display_Name": "Dynamics 365 for Marketing USL",
- "String_Id": "D365_MARKETING_USER",
- "GUID": "4b32a493-9a67-4649-8eb9-9fc5a5f75c12",
+ "Product_Display_Name": "Dynamics 365 Human Resources Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "DYN365_HUMAN_RESOURCES_ATTACH",
+ "GUID": "83c489a4-94b6-4dcc-9fdc-ff9b107a4621",
+ "Service_Plan_Name": "D365_HR_ATTACH_OPS",
+ "Service_Plan_Id": "90d8cb62-e98a-4639-8342-8c7d2c8215ba",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Human Resources Attach License"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Human Resources Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "DYN365_HUMAN_RESOURCES_ATTACH",
+ "GUID": "83c489a4-94b6-4dcc-9fdc-ff9b107a4621",
+ "Service_Plan_Name": "D365_HR_Attach",
+ "Service_Plan_Id": "3219525a-4064-45ec-9c35-a33ea6b39a49",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Human Resources Attach"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Human Resources Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "DYN365_HUMAN_RESOURCES_ATTACH",
+ "GUID": "83c489a4-94b6-4dcc-9fdc-ff9b107a4621",
+ "Service_Plan_Name": "Forms_Pro_Talent",
+ "Service_Plan_Id": "1c4ae475-5608-43fa-b3f7-d20e07cf24b4",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Talent"
+ },
+ {
+ "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 Marketing App",
+ "String_Id": "DYN365_MARKETING_APP",
+ "GUID": "00b861da-8087-4e30-beb8-8db3c6d9581e",
+ "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 Marketing App",
+ "String_Id": "DYN365_MARKETING_APP",
+ "GUID": "00b861da-8087-4e30-beb8-8db3c6d9581e",
+ "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 Marketing App",
+ "String_Id": "DYN365_MARKETING_APP",
+ "GUID": "00b861da-8087-4e30-beb8-8db3c6d9581e",
+ "Service_Plan_Name": "DYN365_MARKETING_APP_MSE",
+ "Service_Plan_Id": "ce112267-84df-4a78-9e8d-707ea8af89f3",
+ "Service_Plans_Included_Friendly_Names": "Retired - Microsoft Social Engagement"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Marketing App",
+ "String_Id": "DYN365_MARKETING_APP",
+ "GUID": "00b861da-8087-4e30-beb8-8db3c6d9581e",
"Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
"Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
"Service_Plans_Included_Friendly_Names": "Exchange Foundation"
@@ -3683,97 +4739,97 @@
"Product_Display_Name": "Dynamics 365 Multi-app",
"String_Id": "Dynamics_365_Multi_app_",
"GUID": "6c75fb1b-61f2-42d0-b1b8-6492ca9ae159",
- "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"
+ "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 Multi-app",
"String_Id": "Dynamics_365_Multi_app_",
"GUID": "6c75fb1b-61f2-42d0-b1b8-6492ca9ae159",
- "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"
+ "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 Multi-app",
"String_Id": "Dynamics_365_Multi_app_",
"GUID": "6c75fb1b-61f2-42d0-b1b8-6492ca9ae159",
- "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"
+ "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 Multi-app",
"String_Id": "Dynamics_365_Multi_app_",
"GUID": "6c75fb1b-61f2-42d0-b1b8-6492ca9ae159",
- "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"
+ "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 Multi-app",
"String_Id": "Dynamics_365_Multi_app_",
"GUID": "6c75fb1b-61f2-42d0-b1b8-6492ca9ae159",
- "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"
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
},
{
"Product_Display_Name": "Dynamics 365 Multi-app",
"String_Id": "Dynamics_365_Multi_app_",
"GUID": "6c75fb1b-61f2-42d0-b1b8-6492ca9ae159",
- "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"
+ "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 Multi-app",
"String_Id": "Dynamics_365_Multi_app_",
"GUID": "6c75fb1b-61f2-42d0-b1b8-6492ca9ae159",
- "Service_Plan_Name": "DYN365_MARKETING_APP",
- "Service_Plan_Id": "a3a4fa10-5092-401a-af30-0462a95a7ac8",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing"
+ "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 Multi-app",
"String_Id": "Dynamics_365_Multi_app_",
"GUID": "6c75fb1b-61f2-42d0-b1b8-6492ca9ae159",
- "Service_Plan_Name": "DYN365_ENTERPRISE_SALES",
- "Service_Plan_Id": "2da8e897-7791-486b-b08f-cc63c8129df7",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales"
+ "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 Multi-app",
"String_Id": "Dynamics_365_Multi_app_",
"GUID": "6c75fb1b-61f2-42d0-b1b8-6492ca9ae159",
- "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"
+ "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 Multi-app",
"String_Id": "Dynamics_365_Multi_app_",
"GUID": "6c75fb1b-61f2-42d0-b1b8-6492ca9ae159",
- "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"
+ "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 Multi-app",
"String_Id": "Dynamics_365_Multi_app_",
"GUID": "6c75fb1b-61f2-42d0-b1b8-6492ca9ae159",
- "Service_Plan_Name": "FLOW_DYN_APPS",
- "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365"
+ "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 Multi-app",
"String_Id": "Dynamics_365_Multi_app_",
"GUID": "6c75fb1b-61f2-42d0-b1b8-6492ca9ae159",
- "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"
+ "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 Multi-app",
@@ -3787,89 +4843,145 @@
"Product_Display_Name": "Dynamics 365 Multi-app",
"String_Id": "Dynamics_365_Multi_app_",
"GUID": "6c75fb1b-61f2-42d0-b1b8-6492ca9ae159",
- "Service_Plan_Name": "POWERAPPS_DYN_APPS",
- "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365"
+ "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 Multi-app",
"String_Id": "Dynamics_365_Multi_app_",
"GUID": "6c75fb1b-61f2-42d0-b1b8-6492ca9ae159",
- "Service_Plan_Name": "GUIDES",
- "Service_Plan_Id": "0b2c029c-dca0-454a-a336-887285d6ef07",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Guides"
+ "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 Multi-app",
"String_Id": "Dynamics_365_Multi_app_",
"GUID": "6c75fb1b-61f2-42d0-b1b8-6492ca9ae159",
- "Service_Plan_Name": "MICROSOFT_REMOTE_ASSIST",
- "Service_Plan_Id": "4f4c7800-298a-4e22-8867-96b17850d4dd",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Remote Assist"
+ "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 Multi-app",
"String_Id": "Dynamics_365_Multi_app_",
"GUID": "6c75fb1b-61f2-42d0-b1b8-6492ca9ae159",
- "Service_Plan_Name": "POWERAPPS_GUIDES",
- "Service_Plan_Id": "816971f4-37c5-424a-b12b-b56881f402e7",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Guides"
+ "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 Multi-app",
"String_Id": "Dynamics_365_Multi_app_",
"GUID": "6c75fb1b-61f2-42d0-b1b8-6492ca9ae159",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ "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 Multi-app",
"String_Id": "Dynamics_365_Multi_app_",
"GUID": "6c75fb1b-61f2-42d0-b1b8-6492ca9ae159",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ "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 Multi-app",
"String_Id": "Dynamics_365_Multi_app_",
"GUID": "6c75fb1b-61f2-42d0-b1b8-6492ca9ae159",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ "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 Multi-app",
"String_Id": "Dynamics_365_Multi_app_",
"GUID": "6c75fb1b-61f2-42d0-b1b8-6492ca9ae159",
- "Service_Plan_Name": "PROJECT_ESSENTIALS",
- "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
- "Service_Plans_Included_Friendly_Names": "Project Online Essentials"
+ "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 Multi-app",
"String_Id": "Dynamics_365_Multi_app_",
"GUID": "6c75fb1b-61f2-42d0-b1b8-6492ca9ae159",
- "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 Operations – Activity",
- "String_Id": "Dyn365_Operations_Activity",
- "GUID": "b75074f1-4c54-41bf-970f-c9ac871567f5",
- "Service_Plan_Name": "DYN365_RETAIL_Activity",
- "Service_Plan_Id": "f06754ec-6d72-4bf6-991c-4cb5413d9932",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Retail Activity"
+ "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 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 - 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": "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 - 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 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 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 Operations – Activity",
"String_Id": "Dyn365_Operations_Activity",
"GUID": "b75074f1-4c54-41bf-970f-c9ac871567f5",
- "Service_Plan_Name": "DYN365_Enterprise_Talent_Attract_Activity",
- "Service_Plan_Id": "aac5a56b-b02e-4608-8014-b076646d4011",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent - Attract Experience Activity"
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Operations – Activity",
+ "String_Id": "Dyn365_Operations_Activity",
+ "GUID": "b75074f1-4c54-41bf-970f-c9ac871567f5",
+ "Service_Plan_Name": "Dynamics_365_for_Operations_Activity",
+ "Service_Plan_Id": "6bddf93e-d6f4-4991-b9fc-30cfdf07ee7b",
+ "Service_Plans_Included_Friendly_Names": "Dynamics365 for Operations Activity"
},
{
"Product_Display_Name": "Dynamics 365 Operations – Activity",
@@ -3883,26 +4995,122 @@
"Product_Display_Name": "Dynamics 365 Operations – Activity",
"String_Id": "Dyn365_Operations_Activity",
"GUID": "b75074f1-4c54-41bf-970f-c9ac871567f5",
- "Service_Plan_Name": "Dynamics_365_for_Talent_Activity",
- "Service_Plan_Id": "1f87ee90-5c3a-4cf9-b6fd-e3e8017c26ec",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent Activity"
+ "Service_Plan_Name": "DYN365_Enterprise_Talent_Attract_Activity",
+ "Service_Plan_Id": "aac5a56b-b02e-4608-8014-b076646d4011",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent - Attract Experience Activity"
},
{
"Product_Display_Name": "Dynamics 365 Operations – Activity",
"String_Id": "Dyn365_Operations_Activity",
"GUID": "b75074f1-4c54-41bf-970f-c9ac871567f5",
- "Service_Plan_Name": "Dynamics_365_for_Operations_Activity",
- "Service_Plan_Id": "6bddf93e-d6f4-4991-b9fc-30cfdf07ee7b",
- "Service_Plans_Included_Friendly_Names": "Dynamics365 for Operations Activity"
+ "Service_Plan_Name": "DYN365_RETAIL_Activity",
+ "Service_Plan_Id": "f06754ec-6d72-4bf6-991c-4cb5413d9932",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Retail Activity"
},
{
"Product_Display_Name": "Dynamics 365 Operations – Activity",
"String_Id": "Dyn365_Operations_Activity",
"GUID": "b75074f1-4c54-41bf-970f-c9ac871567f5",
+ "Service_Plan_Name": "Dynamics_365_for_Talent_Activity",
+ "Service_Plan_Id": "1f87ee90-5c3a-4cf9-b6fd-e3e8017c26ec",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent Activity"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 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": "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": "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": "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": "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": "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": "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": "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 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 Attach",
"String_Id": "DYN365_PROJECT_OPERATIONS_ATTACH",
@@ -3915,25 +5123,25 @@
"Product_Display_Name": "Dynamics 365 Project Operations Attach",
"String_Id": "DYN365_PROJECT_OPERATIONS_ATTACH",
"GUID": "af739e8e-dd11-4eb5-a986-5908f595c603",
- "Service_Plan_Name": "D365_ProjectOperationsCDSAttach",
- "Service_Plan_Id": "e564d403-7eaf-4c91-b92f-bb0dc62026e1",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations CDS Attach"
+ "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 Project Operations Attach",
"String_Id": "DYN365_PROJECT_OPERATIONS_ATTACH",
"GUID": "af739e8e-dd11-4eb5-a986-5908f595c603",
- "Service_Plan_Name": "Power_Pages_Internal_User",
- "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941",
- "Service_Plans_Included_Friendly_Names": "Power Pages Internal User"
+ "Service_Plan_Name": "PROJECT_FOR_PROJECT_OPERATIONS_ATTACH",
+ "Service_Plan_Id": "6d8e07c6-9613-484f-8cc1-a66c5c3979bb",
+ "Service_Plans_Included_Friendly_Names": "Project for Project Operations Attach"
},
{
"Product_Display_Name": "Dynamics 365 Project Operations Attach",
"String_Id": "DYN365_PROJECT_OPERATIONS_ATTACH",
"GUID": "af739e8e-dd11-4eb5-a986-5908f595c603",
- "Service_Plan_Name": "D365_ProjectOperations",
- "Service_Plan_Id": "69f07c66-bee4-4222-b051-195095efee5b",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations"
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
},
{
"Product_Display_Name": "Dynamics 365 Project Operations Attach",
@@ -3947,2041 +5155,913 @@
"Product_Display_Name": "Dynamics 365 Project Operations Attach",
"String_Id": "DYN365_PROJECT_OPERATIONS_ATTACH",
"GUID": "af739e8e-dd11-4eb5-a986-5908f595c603",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ "Service_Plan_Name": "D365_ProjectOperations",
+ "Service_Plan_Id": "69f07c66-bee4-4222-b051-195095efee5b",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations"
},
{
"Product_Display_Name": "Dynamics 365 Project Operations Attach",
"String_Id": "DYN365_PROJECT_OPERATIONS_ATTACH",
"GUID": "af739e8e-dd11-4eb5-a986-5908f595c603",
- "Service_Plan_Name": "PROJECT_FOR_PROJECT_OPERATIONS_ATTACH",
- "Service_Plan_Id": "6d8e07c6-9613-484f-8cc1-a66c5c3979bb",
- "Service_Plans_Included_Friendly_Names": "Project for Project Operations Attach"
+ "Service_Plan_Name": "D365_ProjectOperationsCDSAttach",
+ "Service_Plan_Id": "e564d403-7eaf-4c91-b92f-bb0dc62026e1",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations CDS Attach"
},
{
"Product_Display_Name": "Dynamics 365 Project Operations Attach",
"String_Id": "DYN365_PROJECT_OPERATIONS_ATTACH",
"GUID": "af739e8e-dd11-4eb5-a986-5908f595c603",
- "Service_Plan_Name": "SHAREPOINTSTANDARD",
- "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)"
- },
- {
- "Product_Display_Name": "Dynamics 365 for Project Service Automation Enterprise Edition for Government",
- "String_Id": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV",
- "GUID": "1ec19b5f-7542-4b20-b01f-fb5d3f040e2d",
- "Service_Plan_Name": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV",
- "Service_Plan_Id": "1d8c8e0e-4308-4db5-8a41-b129dbdaea20",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Project Service Automation for Government"
+ "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 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 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 for Project Service Automation Enterprise Edition for Government",
- "String_Id": "DYN365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV",
- "GUID": "1ec19b5f-7542-4b20-b01f-fb5d3f040e2d",
+ "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 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 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 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 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 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 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 for Project Service Automation for Government",
- "String_Id": "D365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV",
- "GUID": "6c827f0a-42cb-4cff-b1cd-f4104c16ede3",
- "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 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 for Project Service Automation for Government",
- "String_Id": "D365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV",
- "GUID": "6c827f0a-42cb-4cff-b1cd-f4104c16ede3",
- "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 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 for Project Service Automation for Government",
- "String_Id": "D365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV",
- "GUID": "6c827f0a-42cb-4cff-b1cd-f4104c16ede3",
- "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 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 for Project Service Automation for Government",
- "String_Id": "D365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV",
- "GUID": "6c827f0a-42cb-4cff-b1cd-f4104c16ede3",
- "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 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 for Project Service Automation for Government",
- "String_Id": "D365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV",
- "GUID": "6c827f0a-42cb-4cff-b1cd-f4104c16ede3",
- "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 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 for Project Service Automation for Government",
- "String_Id": "D365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV",
- "GUID": "6c827f0a-42cb-4cff-b1cd-f4104c16ede3",
- "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 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 for Project Service Automation for Government",
- "String_Id": "D365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV",
- "GUID": "6c827f0a-42cb-4cff-b1cd-f4104c16ede3",
- "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 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 for Project Service Automation for Government",
- "String_Id": "D365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV",
- "GUID": "6c827f0a-42cb-4cff-b1cd-f4104c16ede3",
- "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 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 for Project Service Automation for Government",
- "String_Id": "D365_ENTERPRISE_PROJECT_SERVICE_AUTOMATION_GOV",
- "GUID": "6c827f0a-42cb-4cff-b1cd-f4104c16ede3",
- "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 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 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 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 & Trial"
},
{
- "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 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 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 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 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 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 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 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 Sales and Customer Service Enterprise Edition",
- "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE",
- "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc",
+ "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 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"
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
},
{
- "Product_Display_Name": "Dynamics 365 for Sales Enterprise Edition",
- "String_Id": "DYN365_ENTERPRISE_SALES",
- "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace",
+ "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": "FLOW FOR DYNAMICS 365"
+ "Service_Plans_Included_Friendly_Names": "Power Automate 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 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 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 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 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 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 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 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 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 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 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 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 for Sales, Enterprise Edition for Government",
- "String_Id": "DYN365_ENTERPRISE_SALES_GOV",
- "GUID": "28b275ce-aec7-4c26-82e2-1ffbc2746ad4",
+ "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 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 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 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 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 Supply Chain Management Premium",
+ "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
+ "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
+ "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 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 Supply Chain Management Premium",
+ "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
+ "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
+ "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": "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 Supply Chain Management Premium",
+ "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
+ "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
+ "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 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 Supply Chain Management Premium",
+ "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
+ "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
+ "Service_Plan_Name": "D365_SCM_Premium",
+ "Service_Plan_Id": "0363c8e5-c30d-4d7c-a621-7b6cab5e0482",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Supply Chain Management Premium"
},
{
- "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 Supply Chain Management Premium",
+ "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
+ "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
+ "Service_Plan_Name": "DYN365_IOM_USER",
+ "Service_Plan_Id": "81375e2f-5ef7-4773-96aa-e3279f50bd21",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Intelligent Order Management USL"
},
{
- "Product_Display_Name": "Dynamics 365 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 Supply Chain Management Premium",
+ "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
+ "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
+ "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 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 Supply Chain Management Premium",
+ "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
+ "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
+ "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 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 Supply Chain Management Premium",
+ "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
+ "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
+ "Service_Plan_Name": "FLOW_FOR_IOM_USL",
+ "Service_Plan_Id": "9e6d1620-dce9-4655-8933-af8fa5bccc9c",
+ "Service_Plans_Included_Friendly_Names": "Data Integration for IOM with Power Automate USL"
},
{
- "Product_Display_Name": "Dynamics 365 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 & Trial"
+ "Product_Display_Name": "Dynamics 365 Supply Chain Management Premium",
+ "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
+ "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
+ "Service_Plan_Name": "D365_DemandPlanning",
+ "Service_Plan_Id": "e8b616eb-1a6d-42b4-84c7-b63870791349",
+ "Service_Plans_Included_Friendly_Names": "DO NOT USE - Dynamics 365 Supply Chain Management Premium"
},
{
- "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 Supply Chain Management Premium",
+ "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
+ "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
+ "Service_Plan_Name": "CDS_FOR_IOM",
+ "Service_Plan_Id": "2bb89402-51e9-4c5a-be33-e954a9dd1ba6",
+ "Service_Plans_Included_Friendly_Names": "Dataverse for IOM"
},
{
- "Product_Display_Name": "Dynamics 365 for 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 Supply Chain Management Premium",
+ "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
+ "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
+ "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": "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 Supply Chain Management Premium",
+ "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
+ "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
+ "Service_Plan_Name": "DYN365_IOM",
+ "Service_Plan_Id": "616cf6e2-f52f-4738-b463-10003061fcd3",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Intelligent Order Management"
},
{
- "Product_Display_Name": "Dynamics 365 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 Supply Chain Management Premium",
+ "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
+ "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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",
+ "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"
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 & Trial"
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "DYN365_SCM_ATTACH",
- "GUID": "090b4a96-8114-4c95-9c91-60e81ef53302",
+ "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 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "DYN365_SCM_ATTACH",
- "GUID": "090b4a96-8114-4c95-9c91-60e81ef53302",
- "Service_Plan_Name": "DYN365_CDS_SUPPLYCHAINMANAGEMENT",
- "Service_Plan_Id": "b6a8b974-2956-4e14-ae81-f0384c363528",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Dynamics 365 Supply Chain Management"
+ "Product_Display_Name": "Dynamics 365 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 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "DYN365_SCM_ATTACH",
- "GUID": "090b4a96-8114-4c95-9c91-60e81ef53302",
- "Service_Plan_Name": "CDS_FOR_IOM",
- "Service_Plan_Id": "2bb89402-51e9-4c5a-be33-e954a9dd1ba6",
- "Service_Plans_Included_Friendly_Names": "Dataverse for IOM"
+ "Product_Display_Name": "Dynamics 365 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 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "DYN365_SCM_ATTACH",
- "GUID": "090b4a96-8114-4c95-9c91-60e81ef53302",
- "Service_Plan_Name": "DYN365_REGULATORY_SERVICE",
- "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Finance and Operations, Enterprise edition - Regulatory Service"
- },
- {
- "Product_Display_Name": "Dynamics 365 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "DYN365_SCM_ATTACH",
- "GUID": "090b4a96-8114-4c95-9c91-60e81ef53302",
- "Service_Plan_Name": "D365_SCM_Attach",
- "Service_Plan_Id": "b21c777f-c2d5-486e-88f6-fc0a3e474271",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Supply Chain Management Attach"
+ "Product_Display_Name": "Dynamics 365 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 for Supply Chain Management Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "DYN365_SCM_ATTACH",
- "GUID": "090b4a96-8114-4c95-9c91-60e81ef53302",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "Dynamics 365 Sales Professional Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "D365_SALES_PRO_ATTACH",
- "GUID": "245e6bf9-411e-481e-8611-5c08595e2988",
+ "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"
+ "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "Dynamics 365 Supply Chain Management Premium",
- "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
- "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
- "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": "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": "Dynamics 365 Supply Chain Management Premium",
- "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
- "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
- "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": "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": "Dynamics 365 Supply Chain Management Premium",
- "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
- "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
- "Service_Plan_Name": "FLOW_FOR_IOM_USL",
- "Service_Plan_Id": "9e6d1620-dce9-4655-8933-af8fa5bccc9c",
- "Service_Plans_Included_Friendly_Names": "Data Integration for IOM with Power Automate USL"
+ "Product_Display_Name": "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": "Dynamics 365 Supply Chain Management Premium",
- "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
- "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
- "Service_Plan_Name": "CDS_FOR_IOM",
- "Service_Plan_Id": "2bb89402-51e9-4c5a-be33-e954a9dd1ba6",
- "Service_Plans_Included_Friendly_Names": "Dataverse for IOM"
+ "Product_Display_Name": "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": "Dynamics 365 Supply Chain Management Premium",
- "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
- "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
- "Service_Plan_Name": "D365_DemandPlanning",
- "Service_Plan_Id": "e8b616eb-1a6d-42b4-84c7-b63870791349",
- "Service_Plans_Included_Friendly_Names": "DO NOT USE - Dynamics 365 Supply Chain Management Premium"
+ "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": "Dynamics 365 Supply Chain Management Premium",
- "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
- "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
- "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": "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": "Dynamics 365 Supply Chain Management Premium",
- "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
- "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
- "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": "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": "Dynamics 365 Supply Chain Management Premium",
- "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
- "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
- "Service_Plan_Name": "DYN365_IOM",
- "Service_Plan_Id": "616cf6e2-f52f-4738-b463-10003061fcd3",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Intelligent Order Management"
- },
- {
- "Product_Display_Name": "Dynamics 365 Supply Chain Management Premium",
- "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
- "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
- "Service_Plan_Name": "DYN365_IOM_USER",
- "Service_Plan_Id": "81375e2f-5ef7-4773-96aa-e3279f50bd21",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Intelligent Order Management USL"
- },
- {
- "Product_Display_Name": "Dynamics 365 Supply Chain Management Premium",
- "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
- "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
- "Service_Plan_Name": "D365_SCM_Premium",
- "Service_Plan_Id": "0363c8e5-c30d-4d7c-a621-7b6cab5e0482",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Supply Chain Management Premium"
- },
- {
- "Product_Display_Name": "Dynamics 365 Supply Chain Management Premium",
- "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
- "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
- "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 Supply Chain Management Premium",
- "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
- "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
- "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 Supply Chain Management Premium",
- "String_Id": "Dynamics_365_Supply_Chain_Management_Premium",
- "GUID": "9467fd84-2758-4287-b1fa-6a908c441b8a",
- "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 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": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ "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": "ADALLOM_S_STANDALONE",
- "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps"
+ "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",
@@ -5999,14 +6079,6 @@
"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",
@@ -6071,6 +6143,22 @@
"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": "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": "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",
@@ -6115,17 +6203,9 @@
"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"
+ "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",
@@ -6139,41 +6219,33 @@
"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"
+ "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": "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)"
+ "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 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"
+ "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 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)"
+ "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)",
@@ -6187,14 +6259,6 @@
"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)"
@@ -6207,6 +6271,14 @@
"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": "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",
@@ -6216,21 +6288,29 @@
"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 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 Students",
- "String_Id": "EXCHANGESTANDARD_STUDENT",
- "GUID": "ad2fe44a-915d-4e2b-ade1-6766d50a9d9c",
+ "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 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 Students",
"String_Id": "EXCHANGESTANDARD_STUDENT",
@@ -6243,41 +6323,17 @@
"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) for GCC",
- "String_Id": "EXCHANGEENTERPRISE_GOV",
- "GUID": "7be8dc28-4da4-4e6d-b9b9-c60f2806df8a",
- "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": "Exchange Online (Plan 2) for GCC",
- "String_Id": "EXCHANGEENTERPRISE_GOV",
- "GUID": "7be8dc28-4da4-4e6d-b9b9-c60f2806df8a",
- "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": "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 2)",
@@ -6287,6 +6343,14 @@
"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": "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 2) for Faculty",
"String_Id": "EXCHANGEENTERPRISE_FACULTY",
@@ -6312,12 +6376,20 @@
"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 (Plan 2) for GCC",
+ "String_Id": "EXCHANGEENTERPRISE_GOV",
+ "GUID": "7be8dc28-4da4-4e6d-b9b9-c60f2806df8a",
+ "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": "Exchange Online (Plan 2) for GCC",
+ "String_Id": "EXCHANGEENTERPRISE_GOV",
+ "GUID": "7be8dc28-4da4-4e6d-b9b9-c60f2806df8a",
+ "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 Archiving for Exchange Online",
@@ -6336,12 +6408,12 @@
"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": "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 Essentials",
@@ -6352,12 +6424,12 @@
"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 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 Kiosk",
@@ -6383,6 +6455,14 @@
"Service_Plan_Id": "326e2b78-9d27-42c9-8509-46c827743a17",
"Service_Plans_Included_Friendly_Names": "Exchange Online Protection"
},
+ {
+ "Product_Display_Name": "Flow Plan 1 for Government",
+ "String_Id": "FLOW_P1_GOV",
+ "GUID": "2b3b0c87-36af-4d15-8124-04a691cc2546",
+ "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": "Flow Plan 1 for Government",
"String_Id": "FLOW_P1_GOV",
@@ -6399,14 +6479,6 @@
"Service_Plan_Id": "ce361df2-f2a5-4713-953f-4050ba09aad8",
"Service_Plans_Included_Friendly_Names": "Common Data Service for Government"
},
- {
- "Product_Display_Name": "Flow Plan 1 for Government",
- "String_Id": "FLOW_P1_GOV",
- "GUID": "2b3b0c87-36af-4d15-8124-04a691cc2546",
- "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": "Intune",
"String_Id": "INTUNE_A",
@@ -6419,17 +6491,17 @@
"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"
+ "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": "AAD_EDU",
- "Service_Plan_Id": "3a3976ce-de18-4a87-a78e-5e9245e252df",
- "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID for Education"
+ "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",
@@ -6443,9 +6515,9 @@
"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"
+ "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",
@@ -6456,252 +6528,428 @@
"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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 Azure Multi-Factor Authentication",
- "String_Id": "MFA_STANDALONE",
- "GUID": "cb2020b1-d8f6-41c0-9acd-8ff3d6d7831b",
+ "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "FLOW_O365_P2",
+ "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "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": "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": "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": "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": "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": "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": "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": "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 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 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 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 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 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 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 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 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 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 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 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 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 - 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": "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": "AAD_BASIC_EDU",
- "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
- "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education"
+ "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": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ "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 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"
+ "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": "EducationAnalyticsP1",
- "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
- "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ "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": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ "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": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ "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": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
+ "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": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ "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": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ "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": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
+ "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": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "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": "MDE_LITE",
- "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1"
+ "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",
@@ -6715,33 +6963,25 @@
"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"
+ "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": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "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": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "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",
@@ -6755,121 +6995,121 @@
"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"
+ "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": "MINECRAFT_EDUCATION_EDITION",
- "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256",
- "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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": "Nucleus",
- "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
- "Service_Plans_Included_Friendly_Names": "Nucleus"
+ "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": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ "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": "SHAREPOINTWAC_EDU",
- "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
- "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ "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": "PROJECT_O365_P2",
- "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
+ "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": "SCHOOL_DATA_SYNC_P2",
- "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
- "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
+ "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": "SHAREPOINTENTERPRISE_EDU",
- "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education"
+ "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": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "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": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
+ "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": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ "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": "VIVA_LEARNING_SEEDED",
- "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
- "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ "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": "WHITEBOARD_PLAN2",
- "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
},
{
"Product_Display_Name": "Microsoft 365 A3 for Faculty",
"String_Id": "M365EDU_A3_FACULTY",
"GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "YAMMER_EDU",
- "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
- "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ "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",
@@ -6883,94 +7123,118 @@
"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"
+ "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": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
- "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
- "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ "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": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1"
+ "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": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ "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": "DYN365_CDS_O365_P2",
- "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "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": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ "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": "ADALLOM_S_DISCOVERY",
- "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery"
+ "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": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ "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": "INTUNE_EDU",
- "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education"
+ "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": "POWERAPPS_O365_P2",
- "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ "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": "FLOW_O365_P2",
- "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ "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": "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": "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": "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": "POWER_VIRTUAL_AGENTS_O365_P2",
"Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee",
"Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
@@ -6979,33 +7243,129 @@
"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"
+ "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": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ "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": "CDS_O365_P2",
- "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ "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": "EducationAnalyticsP1",
- "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
- "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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",
@@ -7019,5225 +7379,5809 @@
"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"
+ "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
+ "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": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ "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": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ "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": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
+ "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": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "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": "MDE_LITE",
- "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1"
+ "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": "OFFICE_FORMS_PLAN_2",
- "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
+ "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": "KAIZALA_O365_P3",
- "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ "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": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "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": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "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": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "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": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3"
+ "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": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ "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": "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": "POWERAPPS_O365_P2",
+ "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "FLOW_O365_P2",
+ "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "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": "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": "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": "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",
+ "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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_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",
+ "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",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "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": "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",
+ "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": "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": "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": "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": "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": "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": "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": "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": "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 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",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "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": "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",
+ "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 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": "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": "REMOTE_HELP",
+ "Service_Plan_Id": "a4c6cf29-1168-4076-ba5c-e8fe0e62b17e",
+ "Service_Plans_Included_Friendly_Names": "Remote help"
+ },
+ {
+ "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": "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 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": "DATA_INVESTIGATIONS",
+ "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
+ "Service_Plans_Included_Friendly_Names": "Retired - 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": "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 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": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Commercial data protection for Microsoft Copilot"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "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 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": "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": "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": "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": "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": "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 A3 for Students",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "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": "INTUNE_A",
"Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1"
},
{
- "Product_Display_Name": "Microsoft 365 A3 for Students",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "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"
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1 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 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 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 A5 for faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "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": "Intune_ServiceNow",
+ "Service_Plan_Id": "3eeb8536-fecf-41bf-a3f8-d6f17a9f3efc",
+ "Service_Plans_Included_Friendly_Names": "Intune ServiceNow Integration"
+ },
+ {
+ "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 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 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 - Exchange"
},
{
- "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 A5 for faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "COMMON_DEFENDER_PLATFORM_FOR_OFFICE",
+ "Service_Plan_Id": "a312bdeb-1e21-40d0-84b1-0e73f128144f",
+ "Service_Plans_Included_Friendly_Names": "Defender Platform 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": "WHITEBOARD_PLAN2",
- "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
+ "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 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 A5 for faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 A5 for faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "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 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 A5 for faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "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 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 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 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 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 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 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 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 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 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 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 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 A5 for faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 A5 for faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "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 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 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 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 A5 for faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "CLIPCHAMP",
+ "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp"
},
{
- "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 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 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 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 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 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 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 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 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 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": "Retired - Microsoft Data Investigations"
},
{
- "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 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 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 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 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 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 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 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Commercial data protection for Microsoft Copilot"
},
{
- "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 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "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 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 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 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 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 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 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 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 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 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 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 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "YAMMER_EDU",
- "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
- "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ "Product_Display_Name": "Microsoft 365 A5 for 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 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 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 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 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": "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": "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": "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": "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": "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": "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 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 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 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 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 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 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 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 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "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"
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1 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 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 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 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 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 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 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 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 Plan 1"
},
{
- "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 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 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 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 faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "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 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "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 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 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 faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "COMMON_DEFENDER_PLATFORM_FOR_OFFICE",
- "Service_Plan_Id": "a312bdeb-1e21-40d0-84b1-0e73f128144f",
- "Service_Plans_Included_Friendly_Names": "Defender Platform 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": "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": "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": "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": "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": "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": "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 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "Intune_ServiceNow",
+ "Service_Plan_Id": "3eeb8536-fecf-41bf-a3f8-d6f17a9f3efc",
+ "Service_Plans_Included_Friendly_Names": "Intune ServiceNow Integration"
},
{
- "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "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 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 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 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 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 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 faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "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 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 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 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 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 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 faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "CLIPCHAMP",
- "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472",
- "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp"
+ "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 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 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 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 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 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 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 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 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 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 Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "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 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 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 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 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 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 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 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 - Exchange"
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "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 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 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 faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "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 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 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 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 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 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 faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "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 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 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 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 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 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 Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "COMMON_DEFENDER_PLATFORM_FOR_OFFICE",
+ "Service_Plan_Id": "a312bdeb-1e21-40d0-84b1-0e73f128144f",
+ "Service_Plans_Included_Friendly_Names": "Defender Platform 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": "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": "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": "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": "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": "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": "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 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 Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "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 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 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 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 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": "Microsoft Insider Risk Management - Exchange"
},
{
- "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "CLIPCHAMP",
+ "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp"
},
{
- "Product_Display_Name": "Microsoft 365 A5 for faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "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 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 faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "RETIRED - Commercial data protection for Microsoft Copilot"
+ "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 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": "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": "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": "DATA_INVESTIGATIONS",
- "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
- "Service_Plans_Included_Friendly_Names": "Retired - 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": "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 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 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 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 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 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 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 faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "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 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 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 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 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 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 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 faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "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": "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 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 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 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 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 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 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 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 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 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 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 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 faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "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 faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "Intune_ServiceNow",
- "Service_Plan_Id": "3eeb8536-fecf-41bf-a3f8-d6f17a9f3efc",
- "Service_Plans_Included_Friendly_Names": "Intune ServiceNow Integration"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "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 faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "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 faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "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 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": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "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 Plan 1 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"
+ "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": "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": "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 faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "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 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "FLOW_O365_P2",
+ "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
},
{
- "Product_Display_Name": "Microsoft 365 A5 for Students",
- "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 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",
- "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 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",
- "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 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",
- "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 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",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "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 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",
- "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 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",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "COMMON_DEFENDER_PLATFORM_FOR_OFFICE",
- "Service_Plan_Id": "a312bdeb-1e21-40d0-84b1-0e73f128144f",
- "Service_Plans_Included_Friendly_Names": "Defender Platform 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": "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",
+ "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",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "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",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "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 A5 for Students",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "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",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "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",
- "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 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",
- "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 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",
- "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 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",
- "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 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",
- "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 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",
- "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 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",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "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 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",
- "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 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",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "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": "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": "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 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 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 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 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 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 for Students",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "CLIPCHAMP",
- "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472",
- "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp"
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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": "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": "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": "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": "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": "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": "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": "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": "INSIDER_RISK_MANAGEMENT",
- "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34",
- "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management - Exchange"
+ "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 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 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 for Students",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 for Students",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "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 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 for Students",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "RETIRED - Commercial data protection for Microsoft Copilot"
+ "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 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 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 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": "Retired - Microsoft Data Investigations"
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 A5 for Students",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "Intune_ServiceNow",
- "Service_Plan_Id": "3eeb8536-fecf-41bf-a3f8-d6f17a9f3efc",
- "Service_Plans_Included_Friendly_Names": "Intune ServiceNow Integration"
+ "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 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 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 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 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 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 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 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 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 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 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 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 Plan 1"
+ "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 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 Plan 1 for Education"
+ "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 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 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 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 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 A5 for Students",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "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 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 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 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 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 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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": "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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Commercial data protection for Microsoft Copilot"
},
{
- "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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
+ "Product_Display_Name": "Microsoft 365 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "Service_Plan_Name": "PLACES_CORE",
+ "Service_Plan_Id": "1fe6227d-3e01-46d0-9510-0acad4ff6e94",
+ "Service_Plans_Included_Friendly_Names": "Places Core"
},
{
- "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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "Product_Display_Name": "Microsoft 365 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
},
{
- "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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
+ "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
+ "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
},
{
- "Product_Display_Name": "Microsoft 365 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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": "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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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": "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 Business Basic (no Teams)",
+ "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
+ "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "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 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "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 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 Apps for Business",
- "String_Id": "SMB_BUSINESS",
- "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc",
+ "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 ONLINE"
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
},
{
- "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 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 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 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 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 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 Apps for Enterprise",
- "String_Id": "OFFICESUBSCRIPTION",
- "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425",
+ "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 Apps for Enterprise",
- "String_Id": "OFFICESUBSCRIPTION",
- "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425",
+ "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": "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 Apps for Enterprise",
- "String_Id": "OFFICESUBSCRIPTION",
- "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 Apps for Students",
- "String_Id": "OFFICESUBSCRIPTION_STUDENT",
- "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 Basic",
- "String_Id": "O365_BUSINESS_ESSENTIALS",
- "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
+ "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": "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
},
{
- "Product_Display_Name": "Microsoft 365 Business 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 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 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 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 Basic",
- "String_Id": "SMB_BUSINESS_ESSENTIALS",
- "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
+ "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)"
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 Basic (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Basic (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Basic (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "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 Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Basic (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Basic (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "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 Business Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Basic (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
- "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
- "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
+ "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Basic (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Basic (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Basic (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Basic (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Basic (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Basic (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
"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 (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
"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 (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
"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 (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "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 Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Basic (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
"Service_Plan_Name": "PLACES_CORE",
"Service_Plan_Id": "1fe6227d-3e01-46d0-9510-0acad4ff6e94",
"Service_Plans_Included_Friendly_Names": "Places Core"
},
{
- "Product_Display_Name": "Microsoft 365 Business Basic (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "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 Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Basic (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
"Service_Plan_Name": "Bing_Chat_Enterprise",
"Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
"Service_Plans_Included_Friendly_Names": "RETIRED - Commercial data protection for Microsoft Copilot"
},
{
- "Product_Display_Name": "Microsoft 365 Business Basic (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
"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 (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
"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 (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "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 (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
"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 (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
"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 (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
"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 (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
+ "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
"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 (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "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 Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Basic (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "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 Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Basic (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_(no Teams)",
- "GUID": "21502a13-c8dc-4744-be9c-177fd9d2eafc",
- "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 Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 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",
+ "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Basic EEA (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)",
- "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97",
+ "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
"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",
+ "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Business Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
+ "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
+ "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
"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",
+ "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
"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",
+ "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
"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",
+ "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
"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 Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 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 Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 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 Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 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 Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 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 Premium (no Teams)",
+ "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
+ "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Commercial data protection for Microsoft Copilot"
},
{
- "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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 Basic EEA (no Teams)",
- "String_Id": "Microsoft_365_Business_Basic_EEA_(no_Teams)",
- "GUID": "b1f3042b-a390-4b56-ab61-b88e7e767a97",
+ "Product_Display_Name": "Microsoft 365 Business Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
"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",
+ "Product_Display_Name": "Microsoft 365 Business Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
"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",
+ "Product_Display_Name": "Microsoft 365 Business Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
"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",
+ "Product_Display_Name": "Microsoft 365 Business Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
"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",
+ "Product_Display_Name": "Microsoft 365 Business Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
"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",
+ "Product_Display_Name": "Microsoft 365 Business Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
"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",
+ "Product_Display_Name": "Microsoft 365 Business Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
"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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 Standard",
- "String_Id": "O365_BUSINESS_PREMIUM",
- "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
+ "Product_Display_Name": "Microsoft 365 Business Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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": "CLIPCHAMP",
- "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472",
- "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp"
+ "Product_Display_Name": "Microsoft 365 Business Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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": "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 Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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": "MICROSOFT_LOOP",
- "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda",
- "Service_Plans_Included_Friendly_Names": "Microsoft Loop"
+ "Product_Display_Name": "Microsoft 365 Business Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "Product_Display_Name": "Microsoft 365 Business Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "Product_Display_Name": "Microsoft 365 Business Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 Standard",
- "String_Id": "O365_BUSINESS_PREMIUM",
- "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Product_Display_Name": "Microsoft 365 Business Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
"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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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": "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 Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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": "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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
+ "Product_Display_Name": "Microsoft 365 Business Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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": "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 Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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": "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 Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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": "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 Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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": "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 Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ "Product_Display_Name": "Microsoft 365 Business Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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": "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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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": "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 Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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": "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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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 Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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 Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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 Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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 Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
+ "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
+ "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
},
{
- "Product_Display_Name": "Microsoft 365 Business Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "Product_Display_Name": "Microsoft 365 Business Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
"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 Business Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
- "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
- "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
+ "Product_Display_Name": "Microsoft 365 Business Premium Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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 Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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 Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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 Donation",
+ "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
+ "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
+ "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 Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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": "WINBIZ",
+ "Service_Plan_Id": "8e229017-d77b-43d5-9305-903395523b99",
+ "Service_Plans_Included_Friendly_Names": "Windows 10/11 Business"
},
{
- "Product_Display_Name": "Microsoft 365 Business Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
},
{
- "Product_Display_Name": "Microsoft 365 Business Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
},
{
- "Product_Display_Name": "Microsoft 365 Business Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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 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 Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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": "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 (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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": "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 (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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": "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 Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
},
{
- "Product_Display_Name": "Microsoft 365 Business Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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": "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 (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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": "AAD_SMB",
+ "Service_Plan_Id": "de377cbc-0019-4ec2-b77c-3f223947e102",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory"
},
{
- "Product_Display_Name": "Microsoft 365 Business Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "Service_Plan_Name": "PLACES_CORE",
- "Service_Plan_Id": "1fe6227d-3e01-46d0-9510-0acad4ff6e94",
- "Service_Plans_Included_Friendly_Names": "Places 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": "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 Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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 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 Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "RETIRED - Commercial data protection for Microsoft Copilot"
+ "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)",
+ "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium",
+ "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a",
+ "Service_Plan_Name": "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 Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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": "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 Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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": "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 Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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 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 Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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": "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 Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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": "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 Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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": "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 (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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": "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 Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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": "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 (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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 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 Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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 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 Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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": "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 (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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": "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 Standard (no Teams)",
- "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
- "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
- "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 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 Standard EEA (no Teams)",
- "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard",
- "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0",
+ "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 Standard EEA (no Teams)",
- "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard",
- "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0",
+ "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)",
+ "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium",
+ "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a",
"Service_Plan_Name": "Bing_Chat_Enterprise",
"Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
"Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
},
{
- "Product_Display_Name": "Microsoft 365 Business 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",
+ "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": "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 Standard EEA (no Teams)",
- "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard",
- "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0",
+ "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 Standard EEA (no Teams)",
- "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard",
- "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0",
+ "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 Standard EEA (no Teams)",
- "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard",
- "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0",
+ "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 Standard EEA (no Teams)",
- "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard",
- "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0",
+ "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 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 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 Standard EEA (no Teams)",
- "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard",
- "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0",
+ "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": "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 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 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 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 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 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 Standard EEA (no Teams)",
- "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard",
- "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0",
+ "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 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",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
},
{
- "Product_Display_Name": "Microsoft 365 Business Standard 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 EEA (no Teams)",
- "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)",
- "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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": "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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 EEA (no Teams)",
- "String_Id": "Microsoft_365_Business_Standard_EEA_(no_Teams)",
- "GUID": "ffa3a2a0-3820-462a-aa81-8a4d741f0cba",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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 - 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 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": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "TEAMS1"
},
{
"Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
@@ -12271,14 +13215,6 @@
"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",
@@ -12299,2753 +13235,2449 @@
"Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
"String_Id": "SMB_BUSINESS_PREMIUM",
"GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "O365_SB_Relationship_Management",
- "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79",
- "Service_Plans_Included_Friendly_Names": "OUTLOOK CUSTOMER MANAGER"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "OFFICE_BUSINESS",
- "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1",
- "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "POWERAPPS_O365_P1",
- "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "SHAREPOINTSTANDARD",
- "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "TEAMS1"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "YAMMER_MIDSIZE",
- "Service_Plan_Id": "41bf139a-4e60-409f-9346-a1361efc6dfb",
- "Service_Plans_Included_Friendly_Names": "YAMMER_MIDSIZE"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "DYN365BC_MS_INVOICING",
- "Service_Plan_Id": "39b5c996-467e-4e60-bd62-46066f572726",
- "Service_Plans_Included_Friendly_Names": "Microsoft Invoicing"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS",
- "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02",
- "Service_Plans_Included_Friendly_Names": "Avatars for Teams"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS",
- "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8",
- "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "CDS_O365_P3",
- "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "BPOS_S_DlpAddOn",
- "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed",
- "Service_Plans_Included_Friendly_Names": "Data Loss Prevention"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "EXCHANGE_S_STANDARD",
- "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON",
- "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793",
- "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "OFFICE_BUSINESS",
- "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for business"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
- "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
- "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "CLIPCHAMP",
- "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472",
- "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "MDE_SMB",
- "Service_Plan_Id": "bfc1bbd9-981b-4f71-9b82-17c35fd0e2a4",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Business"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "ATP_ENTERPRISE",
- "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
"Service_Plan_Name": "FORMS_PLAN_E1",
"Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "KAIZALA_O365_P2",
- "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "MICROSOFT_LOOP",
- "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda",
- "Service_Plans_Included_Friendly_Names": "Microsoft Loop"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "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": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ "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 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 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 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 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 Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "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 for the Web"
+ "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "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 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 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 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 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 Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "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": "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 (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "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 Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Product_Display_Name": "Microsoft 365 Business Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Commercial data protection for Microsoft Copilot"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
"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",
+ "Product_Display_Name": "Microsoft 365 Business Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
"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 Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "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 Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Product_Display_Name": "Microsoft 365 Business Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
"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 Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "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 Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Product_Display_Name": "Microsoft 365 Business Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
"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",
+ "Product_Display_Name": "Microsoft 365 Business Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
"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",
+ "Product_Display_Name": "Microsoft 365 Business Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "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 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 Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "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 Premium",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Product_Display_Name": "Microsoft 365 Business Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
"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",
+ "Product_Display_Name": "Microsoft 365 Business Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
"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 Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "Service_Plan_Name": "PLACES_CORE",
+ "Service_Plan_Id": "1fe6227d-3e01-46d0-9510-0acad4ff6e94",
+ "Service_Plans_Included_Friendly_Names": "Places Core"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "Product_Display_Name": "Microsoft 365 Business Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
"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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "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 Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "Product_Display_Name": "Microsoft 365 Business Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
"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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "Product_Display_Name": "Microsoft 365 Business Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
"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 Business Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
- "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
- "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "Product_Display_Name": "Microsoft 365 Business Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
"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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "Product_Display_Name": "Microsoft 365 Business Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
"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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "Product_Display_Name": "Microsoft 365 Business Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
+ "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
+ "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "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 (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "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 (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "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 (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "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 (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "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 (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "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 (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
+ "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 (no Teams)",
+ "String_Id": "MICROSOFT_365_BUSINESS_STANDARD_NO_TEAMS",
+ "GUID": "5a1c7b8d-0739-4ca8-bf69-ec87e69133ac",
"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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 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": "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": "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": "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": "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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 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 Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 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 Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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": "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 Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 Standard EEA (no Teams)",
+ "String_Id": "Office_365_w/o_Teams_Bundle_Business_Standard",
+ "GUID": "c1f79c29-5d7a-4bec-a2c1-1a76774864c0",
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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": "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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 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 Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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": "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": "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": "PROJECTWORKMANAGEMENT",
"Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
"Service_Plans_Included_Friendly_Names": "Microsoft Planner"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "Service_Plan_Name": "PLACES_CORE",
- "Service_Plan_Id": "1fe6227d-3e01-46d0-9510-0acad4ff6e94",
- "Service_Plans_Included_Friendly_Names": "Places Core"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "RETIRED - Commercial data protection for Microsoft Copilot"
+ "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 Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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": "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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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": "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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "Service_Plan_Name": "DYN365_CDS_O365_P3",
- "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
+ "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 Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "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 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 Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
+ "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 Premium (no Teams)",
- "String_Id": "Microsoft_365_ Business_ Premium_(no Teams)",
- "GUID": "00e1ec7b-e4a3-40d1-9441-b69b597ab222",
- "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3",
- "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
+ "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 Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 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 Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 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 Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 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 Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 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 Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 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 Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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": "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 Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 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 Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 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 Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
- "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
- "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
+ "Product_Display_Name": "Microsoft 365 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 Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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": "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 Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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": "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 Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 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 Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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": "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 Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 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 Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 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 Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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": "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 Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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": "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 Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 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 Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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": "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 Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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": "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 Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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": "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 Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 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 Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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": "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 Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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": "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 Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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": "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 Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Voice",
+ "String_Id": "BUSINESS_VOICE_MED2",
+ "GUID": "a6051f20-9cbc-47d2-930d-419183bf6cf1",
+ "Service_Plan_Name": "MCOPSTN1",
+ "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Voice",
+ "String_Id": "BUSINESS_VOICE_MED2",
+ "GUID": "a6051f20-9cbc-47d2-930d-419183bf6cf1",
+ "Service_Plan_Name": "MCOMEETADV",
+ "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Voice",
+ "String_Id": "BUSINESS_VOICE_MED2",
+ "GUID": "a6051f20-9cbc-47d2-930d-419183bf6cf1",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "RETIRED - Commercial data protection for Microsoft Copilot"
+ "Product_Display_Name": "Microsoft 365 Business Voice (UK",
+ "String_Id": "BUSINESS_VOICE",
+ "GUID": "e5a17adf-8f0d-4b57-bc14-d331235f9307",
+ "Service_Plan_Name": "MCOPSTN1",
+ "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Voice (UK",
+ "String_Id": "BUSINESS_VOICE",
+ "GUID": "e5a17adf-8f0d-4b57-bc14-d331235f9307",
+ "Service_Plan_Name": "MCOMEETADV",
+ "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Voice (UK",
+ "String_Id": "BUSINESS_VOICE",
+ "GUID": "e5a17adf-8f0d-4b57-bc14-d331235f9307",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Voice (US)",
+ "String_Id": "BUSINESS_VOICE_MED2_TELCO",
+ "GUID": "08d7bce8-6e16-490e-89db-1d508e5e9609",
+ "Service_Plan_Name": "MCOMEETADV",
+ "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
+ "Product_Display_Name": "Microsoft 365 Business Voice (US)",
+ "String_Id": "BUSINESS_VOICE_MED2_TELCO",
+ "GUID": "08d7bce8-6e16-490e-89db-1d508e5e9609",
+ "Service_Plan_Name": "MCOPSTN1",
+ "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Voice (without Calling Plan)",
+ "String_Id": "BUSINESS_VOICE_DIRECTROUTING",
+ "GUID": "d52db95a-5ecb-46b6-beb0-190ab5cda4a8",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Voice (without Calling Plan)",
+ "String_Id": "BUSINESS_VOICE_DIRECTROUTING",
+ "GUID": "d52db95a-5ecb-46b6-beb0-190ab5cda4a8",
+ "Service_Plan_Name": "MCOMEETADV",
+ "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Voice (without Calling Plan)",
+ "String_Id": "BUSINESS_VOICE_DIRECTROUTING",
+ "GUID": "d52db95a-5ecb-46b6-beb0-190ab5cda4a8",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Voice (without Calling Plan)",
+ "String_Id": "BUSINESS_VOICE_DIRECTROUTING",
+ "GUID": "d52db95a-5ecb-46b6-beb0-190ab5cda4a8",
+ "Service_Plan_Name": "MCOMEETADV",
+ "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ "Product_Display_Name": "Microsoft 365 Business Voice (without Calling Plan) for US",
+ "String_Id": "BUSINESS_VOICE_DIRECTROUTING_MED",
+ "GUID": "8330dae3-d349-44f7-9cad-1b23c64baabe",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Voice (without Calling Plan) for US",
+ "String_Id": "BUSINESS_VOICE_DIRECTROUTING_MED",
+ "GUID": "8330dae3-d349-44f7-9cad-1b23c64baabe",
+ "Service_Plan_Name": "MCOMEETADV",
+ "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Copilot (Education Faculty)",
+ "String_Id": "Microsoft_365_Copilot_EDU",
+ "GUID": "ad9c22b3-52d7-4e7e-973c-88121ea96436",
+ "Service_Plan_Name": "M365_COPILOT_CONNECTORS",
+ "Service_Plan_Id": "89f1c4c8-0878-40f7-804d-869c9128ab5d",
+ "Service_Plans_Included_Friendly_Names": "Power Platform Connectors in Microsoft 365 Copilot"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Copilot (Education Faculty)",
+ "String_Id": "Microsoft_365_Copilot_EDU",
+ "GUID": "ad9c22b3-52d7-4e7e-973c-88121ea96436",
+ "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 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Copilot (Education Faculty)",
+ "String_Id": "Microsoft_365_Copilot_EDU",
+ "GUID": "ad9c22b3-52d7-4e7e-973c-88121ea96436",
+ "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 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Copilot (Education Faculty)",
+ "String_Id": "Microsoft_365_Copilot_EDU",
+ "GUID": "ad9c22b3-52d7-4e7e-973c-88121ea96436",
+ "Service_Plan_Name": "M365_COPILOT_SHAREPOINT",
+ "Service_Plan_Id": "0aedf20c-091d-420b-aadf-30c042609612",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Copilot for SharePoint"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Copilot (Education Faculty)",
+ "String_Id": "Microsoft_365_Copilot_EDU",
+ "GUID": "ad9c22b3-52d7-4e7e-973c-88121ea96436",
+ "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 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Copilot (Education Faculty)",
+ "String_Id": "Microsoft_365_Copilot_EDU",
+ "GUID": "ad9c22b3-52d7-4e7e-973c-88121ea96436",
+ "Service_Plan_Name": "M365_COPILOT_BUSINESS_CHAT",
+ "Service_Plan_Id": "3f30311c-6b1e-48a4-ab79-725b469da960",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Copilot with Graph-grounded chat"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Copilot (Education Faculty)",
+ "String_Id": "Microsoft_365_Copilot_EDU",
+ "GUID": "ad9c22b3-52d7-4e7e-973c-88121ea96436",
+ "Service_Plan_Name": "COPILOT_STUDIO_IN_COPILOT_FOR_M365",
+ "Service_Plan_Id": "fe6c28b3-d468-44ea-bbd0-a10a5167435c",
+ "Service_Plans_Included_Friendly_Names": "Copilot Studio in Copilot for M365"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Copilot (Education Faculty)",
+ "String_Id": "Microsoft_365_Copilot_EDU",
+ "GUID": "ad9c22b3-52d7-4e7e-973c-88121ea96436",
+ "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 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Copilot for Finance (Preview)",
+ "String_Id": "Microsoft_Copilot_for_Finance_trial",
+ "GUID": "7792674b-fa0c-4af5-b2a1-a15239f933b6",
+ "Service_Plan_Name": "CDS_Copilot_for_Finance_Trial",
+ "Service_Plan_Id": "1c56fdd3-59ce-417a-b8bb-a97bb4e67b99",
+ "Service_Plans_Included_Friendly_Names": "Dataverse for Copilot for Finance Trial"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Copilot for Finance (Preview)",
+ "String_Id": "Microsoft_Copilot_for_Finance_trial",
+ "GUID": "7792674b-fa0c-4af5-b2a1-a15239f933b6",
+ "Service_Plan_Name": "FLOW_Copilot_for_Finance_Trial",
+ "Service_Plan_Id": "68bf3da4-4e1a-4e13-a1cc-2bc6986b4d88",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Copilot for Finance Trial"
},
- {
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Copilot for Finance (Preview)",
+ "String_Id": "Microsoft_Copilot_for_Finance_trial",
+ "GUID": "7792674b-fa0c-4af5-b2a1-a15239f933b6",
+ "Service_Plan_Name": "COPILOT_STUDIO_IN_COPILOT_FOR_M365",
+ "Service_Plan_Id": "fe6c28b3-d468-44ea-bbd0-a10a5167435c",
+ "Service_Plans_Included_Friendly_Names": "Copilot Studio in Copilot for M365"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Copilot for Finance (Preview)",
+ "String_Id": "Microsoft_Copilot_for_Finance_trial",
+ "GUID": "7792674b-fa0c-4af5-b2a1-a15239f933b6",
+ "Service_Plan_Name": "financecopilot_trial",
+ "Service_Plan_Id": "5a6d0425-3ef2-4e42-8372-76709c9effe0",
+ "Service_Plans_Included_Friendly_Names": "Copilot for Finance Trial"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "Service_Plan_Name": "Microsoft_Copilot_for_Sales",
+ "Service_Plan_Id": "a2194428-ead1-4fc1-bb81-ab8675125f42",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Copilot for Sales"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium Donation",
- "String_Id": "Microsoft_365_Business_Premium_Donation_(Non_Profit_Pricing)",
- "GUID": "24c35284-d768-4e53-84d9-b7ae73dddf69",
- "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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "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 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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "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 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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "Service_Plan_Name": "M365_COPILOT_CONNECTORS",
+ "Service_Plan_Id": "89f1c4c8-0878-40f7-804d-869c9128ab5d",
+ "Service_Plans_Included_Friendly_Names": "Power Platform Connectors in Microsoft 365 Copilot"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)",
- "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium",
- "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
+ "Product_Display_Name": "Microsoft 365 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "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 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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "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 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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "Service_Plan_Name": "COPILOT_STUDIO_IN_COPILOT_FOR_M365",
+ "Service_Plan_Id": "fe6c28b3-d468-44ea-bbd0-a10a5167435c",
+ "Service_Plans_Included_Friendly_Names": "Copilot Studio in Copilot for M365"
},
{
- "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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "Service_Plan_Name": "Microsoft_Copilot_for_Sales_PowerAutomate",
+ "Service_Plan_Id": "0c1c2af2-6c51-43c7-9c55-fa487ac147ff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Copilot for Sales with Power Automate"
},
{
- "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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "Service_Plan_Name": "M365_COPILOT_BUSINESS_CHAT",
+ "Service_Plan_Id": "3f30311c-6b1e-48a4-ab79-725b469da960",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Copilot with Graph-grounded chat"
},
{
- "Product_Display_Name": "Microsoft 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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "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 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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "Service_Plan_Name": "M365_COPILOT_SHAREPOINT",
+ "Service_Plan_Id": "0aedf20c-091d-420b-aadf-30c042609612",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Copilot for SharePoint"
},
{
- "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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "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 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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "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 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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "Service_Plan_Name": "Microsoft_Copilot_for_Sales",
+ "Service_Plan_Id": "a2194428-ead1-4fc1-bb81-ab8675125f42",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Copilot for Sales"
},
{
- "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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "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 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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "Service_Plan_Name": "M365_COPILOT_SHAREPOINT",
+ "Service_Plan_Id": "0aedf20c-091d-420b-aadf-30c042609612",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Copilot for SharePoint"
},
{
- "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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "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 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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "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 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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "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 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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "Service_Plan_Name": "Microsoft_Copilot_for_Sales_PowerAutomate",
+ "Service_Plan_Id": "0c1c2af2-6c51-43c7-9c55-fa487ac147ff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Copilot for Sales with Power Automate"
},
{
- "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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "Service_Plan_Name": "M365_COPILOT_BUSINESS_CHAT",
+ "Service_Plan_Id": "3f30311c-6b1e-48a4-ab79-725b469da960",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Copilot with Graph-grounded chat"
},
{
- "Product_Display_Name": "Microsoft 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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "Service_Plan_Name": "M365_COPILOT_CONNECTORS",
+ "Service_Plan_Id": "89f1c4c8-0878-40f7-804d-869c9128ab5d",
+ "Service_Plans_Included_Friendly_Names": "Power Platform Connectors in Microsoft 365 Copilot"
},
{
- "Product_Display_Name": "Microsoft 365 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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "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 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 Copilot for Sales",
+ "String_Id": "Microsoft_Copilot_for_Sales",
+ "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "Service_Plan_Name": "COPILOT_STUDIO_IN_COPILOT_FOR_M365",
+ "Service_Plan_Id": "fe6c28b3-d468-44ea-bbd0-a10a5167435c",
+ "Service_Plans_Included_Friendly_Names": "Copilot Studio in Copilot for M365"
},
{
- "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 Domestic Calling Plan (120 min)",
+ "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 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 Domestic Calling Plan (120 min)",
+ "String_Id": "MCOPSTN_5",
+ "GUID": "11dee6af-eca8-419f-8061-6864517c1875",
+ "Service_Plan_Name": "MCOSMS5",
+ "Service_Plan_Id": "754aec36-45fc-4eaa-bcaf-44f6cb1f553c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 SMS 100 Units"
},
{
- "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 Domestic Calling Plan (120 minutes) - US",
+ "String_Id": "MCOPSTN5_US",
+ "GUID": "d13e9d1b-316a-4946-98c6-362c97a4fdfe",
+ "Service_Plan_Name": "PSTN5_US",
+ "Service_Plan_Id": "1346d5e6-15a6-4b88-9693-806ff7296a7a",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan - US (120 minutes)"
},
{
- "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 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 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 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 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 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 Business Premium EEA (no Teams)",
- "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium",
- "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a",
+ "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 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",
+ "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 Business Premium EEA (no Teams)",
- "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium",
- "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a",
+ "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": "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": "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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": "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": "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 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 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 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 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 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 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 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 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 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 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": "RETIRED - Commercial data protection for Microsoft Copilot"
},
{
- "Product_Display_Name": "Microsoft 365 Business Premium EEA (no Teams)",
- "String_Id": "Office_365_w/o_Teams_Bundle_Business_Premium",
- "GUID": "a3f586b6-8cce-4d9b-99d6-55238397f77a",
- "Service_Plan_Name": "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": "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 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 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 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 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 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 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 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 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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 Business Voice (US)",
- "String_Id": "BUSINESS_VOICE_MED2_TELCO",
- "GUID": "08d7bce8-6e16-490e-89db-1d508e5e9609",
- "Service_Plan_Name": "MCOMEETADV",
- "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
+ "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
+ "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
},
{
- "Product_Display_Name": "Microsoft 365 Business Voice (US)",
- "String_Id": "BUSINESS_VOICE_MED2_TELCO",
- "GUID": "08d7bce8-6e16-490e-89db-1d508e5e9609",
- "Service_Plan_Name": "MCOPSTN1",
- "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan"
+ "Product_Display_Name": "Microsoft 365 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 Business Voice (without Calling Plan)",
- "String_Id": "BUSINESS_VOICE_DIRECTROUTING",
- "GUID": "d52db95a-5ecb-46b6-beb0-190ab5cda4a8",
- "Service_Plan_Name": "MCOMEETADV",
- "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ "Product_Display_Name": "Microsoft 365 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 Business Voice (without Calling Plan)",
- "String_Id": "BUSINESS_VOICE_DIRECTROUTING",
- "GUID": "d52db95a-5ecb-46b6-beb0-190ab5cda4a8",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ "Product_Display_Name": "Microsoft 365 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 Business Voice (UK",
- "String_Id": "BUSINESS_VOICE",
- "GUID": "e5a17adf-8f0d-4b57-bc14-d331235f9307",
- "Service_Plan_Name": "MCOMEETADV",
- "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ "Product_Display_Name": "Microsoft 365 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 Business Voice (UK",
- "String_Id": "BUSINESS_VOICE",
- "GUID": "e5a17adf-8f0d-4b57-bc14-d331235f9307",
- "Service_Plan_Name": "MCOPSTN1",
- "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan"
+ "Product_Display_Name": "Microsoft 365 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 Business Voice (UK",
- "String_Id": "BUSINESS_VOICE",
- "GUID": "e5a17adf-8f0d-4b57-bc14-d331235f9307",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ "Product_Display_Name": "Microsoft 365 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 Business Voice (without Calling Plan) for US",
- "String_Id": "BUSINESS_VOICE_DIRECTROUTING_MED",
- "GUID": "8330dae3-d349-44f7-9cad-1b23c64baabe",
- "Service_Plan_Name": "MCOMEETADV",
- "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ "Product_Display_Name": "Microsoft 365 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 Business Voice (without Calling Plan) for US",
- "String_Id": "BUSINESS_VOICE_DIRECTROUTING_MED",
- "GUID": "8330dae3-d349-44f7-9cad-1b23c64baabe",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ "Product_Display_Name": "Microsoft 365 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 Business Voice (without Calling Plan)",
- "String_Id": "BUSINESS_VOICE_DIRECTROUTING",
- "GUID": "d52db95a-5ecb-46b6-beb0-190ab5cda4a8",
- "Service_Plan_Name": "MCOMEETADV",
- "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ "Product_Display_Name": "Microsoft 365 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 Business Voice (without Calling Plan)",
- "String_Id": "BUSINESS_VOICE_DIRECTROUTING",
- "GUID": "d52db95a-5ecb-46b6-beb0-190ab5cda4a8",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ "Product_Display_Name": "Microsoft 365 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 Business Voice",
- "String_Id": "BUSINESS_VOICE_MED2",
- "GUID": "a6051f20-9cbc-47d2-930d-419183bf6cf1",
- "Service_Plan_Name": "MCOMEETADV",
- "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ "Product_Display_Name": "Microsoft 365 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 Business Voice",
- "String_Id": "BUSINESS_VOICE_MED2",
- "GUID": "a6051f20-9cbc-47d2-930d-419183bf6cf1",
- "Service_Plan_Name": "MCOPSTN1",
- "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan"
+ "Product_Display_Name": "Microsoft 365 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 Business Voice",
- "String_Id": "BUSINESS_VOICE_MED2",
- "GUID": "a6051f20-9cbc-47d2-930d-419183bf6cf1",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ "Product_Display_Name": "Microsoft 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 Copilot (Education Faculty)",
- "String_Id": "Microsoft_365_Copilot_EDU",
- "GUID": "ad9c22b3-52d7-4e7e-973c-88121ea96436",
- "Service_Plan_Name": "COPILOT_STUDIO_IN_COPILOT_FOR_M365",
- "Service_Plan_Id": "fe6c28b3-d468-44ea-bbd0-a10a5167435c",
- "Service_Plans_Included_Friendly_Names": "Copilot Studio in Copilot for M365"
+ "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 Copilot (Education Faculty)",
- "String_Id": "Microsoft_365_Copilot_EDU",
- "GUID": "ad9c22b3-52d7-4e7e-973c-88121ea96436",
- "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 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 Copilot (Education Faculty)",
- "String_Id": "Microsoft_365_Copilot_EDU",
- "GUID": "ad9c22b3-52d7-4e7e-973c-88121ea96436",
- "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 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 Copilot (Education Faculty)",
- "String_Id": "Microsoft_365_Copilot_EDU",
- "GUID": "ad9c22b3-52d7-4e7e-973c-88121ea96436",
- "Service_Plan_Name": "M365_COPILOT_SHAREPOINT",
- "Service_Plan_Id": "0aedf20c-091d-420b-aadf-30c042609612",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Copilot for SharePoint"
+ "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 Copilot (Education Faculty)",
- "String_Id": "Microsoft_365_Copilot_EDU",
- "GUID": "ad9c22b3-52d7-4e7e-973c-88121ea96436",
- "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 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 Copilot (Education Faculty)",
- "String_Id": "Microsoft_365_Copilot_EDU",
- "GUID": "ad9c22b3-52d7-4e7e-973c-88121ea96436",
- "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 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 Copilot (Education Faculty)",
- "String_Id": "Microsoft_365_Copilot_EDU",
- "GUID": "ad9c22b3-52d7-4e7e-973c-88121ea96436",
- "Service_Plan_Name": "M365_COPILOT_BUSINESS_CHAT",
- "Service_Plan_Id": "3f30311c-6b1e-48a4-ab79-725b469da960",
- "Service_Plans_Included_Friendly_Names": "Microsoft Copilot with Graph-grounded chat"
+ "Product_Display_Name": "Microsoft 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 Copilot (Education Faculty)",
- "String_Id": "Microsoft_365_Copilot_EDU",
- "GUID": "ad9c22b3-52d7-4e7e-973c-88121ea96436",
- "Service_Plan_Name": "M365_COPILOT_CONNECTORS",
- "Service_Plan_Id": "89f1c4c8-0878-40f7-804d-869c9128ab5d",
- "Service_Plans_Included_Friendly_Names": "Power Platform Connectors in Microsoft 365 Copilot"
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
},
{
- "Product_Display_Name": "Microsoft 365 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
- "Service_Plan_Name": "COPILOT_STUDIO_IN_COPILOT_FOR_M365",
- "Service_Plan_Id": "fe6c28b3-d468-44ea-bbd0-a10a5167435c",
- "Service_Plans_Included_Friendly_Names": "Copilot Studio in Copilot for M365"
+ "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 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
- "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 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 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
- "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 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 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
- "Service_Plan_Name": "M365_COPILOT_SHAREPOINT",
- "Service_Plan_Id": "0aedf20c-091d-420b-aadf-30c042609612",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Copilot for SharePoint"
+ "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 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
- "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 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 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
- "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 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 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
- "Service_Plan_Name": "Microsoft_Copilot_for_Sales",
- "Service_Plan_Id": "a2194428-ead1-4fc1-bb81-ab8675125f42",
- "Service_Plans_Included_Friendly_Names": "Microsoft Copilot for Sales"
+ "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 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
- "Service_Plan_Name": "Microsoft_Copilot_for_Sales_PowerAutomate",
- "Service_Plan_Id": "0c1c2af2-6c51-43c7-9c55-fa487ac147ff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Copilot for Sales with Power Automate"
+ "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 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
- "Service_Plan_Name": "M365_COPILOT_BUSINESS_CHAT",
- "Service_Plan_Id": "3f30311c-6b1e-48a4-ab79-725b469da960",
- "Service_Plans_Included_Friendly_Names": "Microsoft Copilot with Graph-grounded chat"
+ "Product_Display_Name": "Microsoft 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 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
- "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 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": "Windows_Autopatch",
+ "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3",
+ "Service_Plans_Included_Friendly_Names": "Windows Autopatch"
},
{
- "Product_Display_Name": "Microsoft 365 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
- "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 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 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
- "Service_Plan_Name": "M365_COPILOT_CONNECTORS",
- "Service_Plan_Id": "89f1c4c8-0878-40f7-804d-869c9128ab5d",
- "Service_Plans_Included_Friendly_Names": "Power Platform Connectors in Microsoft 365 Copilot"
+ "Product_Display_Name": "Microsoft 365 E3 - 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 Copilot for Microsoft 365",
- "String_Id": "M365_Copilot",
- "GUID": "a809996b-059e-42e2-9866-db24b99a9782",
- "Service_Plan_Name": "GRAPH_CONNECTORS_COPILOT",
- "Service_Plan_Id": "82d30987-df9b-4486-b146-198b21d164c7",
- "Service_Plans_Included_Friendly_Names": "Graph Connectors in Microsoft 365 Copilot"
+ "Product_Display_Name": "Microsoft 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 Copilot for Microsoft 365",
- "String_Id": "M365_Copilot",
- "GUID": "a809996b-059e-42e2-9866-db24b99a9782",
- "Service_Plan_Name": "M365_COPILOT_INTELLIGENT_SEARCH",
- "Service_Plan_Id": "931e4a88-a67f-48b5-814f-16a5f1e6028d",
- "Service_Plans_Included_Friendly_Names": "Intelligent Search"
+ "Product_Display_Name": "Microsoft 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 Copilot for Microsoft 365",
- "String_Id": "M365_Copilot",
- "GUID": "a809996b-059e-42e2-9866-db24b99a9782",
- "Service_Plan_Name": "M365_COPILOT_TEAMS",
- "Service_Plan_Id": "b95945de-b3bd-46db-8437-f2beb6ea2347",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Copilot in Microsoft Teams"
+ "Product_Display_Name": "Microsoft 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 Copilot for Microsoft 365",
- "String_Id": "M365_Copilot",
- "GUID": "a809996b-059e-42e2-9866-db24b99a9782",
- "Service_Plan_Name": "M365_COPILOT_APPS",
- "Service_Plan_Id": "a62f8878-de10-42f3-b68f-6149a25ceb97",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Copilot in Productivity Apps"
+ "Product_Display_Name": "Microsoft 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 Copilot for Microsoft 365",
- "String_Id": "M365_Copilot",
- "GUID": "a809996b-059e-42e2-9866-db24b99a9782",
- "Service_Plan_Name": "M365_COPILOT_BUSINESS_CHAT",
- "Service_Plan_Id": "3f30311c-6b1e-48a4-ab79-725b469da960",
- "Service_Plans_Included_Friendly_Names": "Microsoft Copilot with Graph-grounded chat"
+ "Product_Display_Name": "Microsoft 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 Copilot for Microsoft 365",
- "String_Id": "M365_Copilot",
- "GUID": "a809996b-059e-42e2-9866-db24b99a9782",
- "Service_Plan_Name": "M365_COPILOT_CONNECTORS",
- "Service_Plan_Id": "89f1c4c8-0878-40f7-804d-869c9128ab5d",
- "Service_Plans_Included_Friendly_Names": "Power Platform Connectors in Microsoft 365 Copilot"
+ "Product_Display_Name": "Microsoft 365 E3 - 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 Domestic Calling Plan (120 minutes) - US",
- "String_Id": "MCOPSTN5_US",
- "GUID": "d13e9d1b-316a-4946-98c6-362c97a4fdfe",
- "Service_Plan_Name": "PSTN5_US",
- "Service_Plan_Id": "1346d5e6-15a6-4b88-9693-806ff7296a7a",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan - US (120 minutes)"
+ "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",
- "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 - 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",
- "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 - 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",
- "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 - 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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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": "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",
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
"Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
"Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
"Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
},
{
- "Product_Display_Name": "Microsoft 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "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 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
- "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
- "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
- },
- {
- "Product_Display_Name": "Microsoft 365 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",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "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 - 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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "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",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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": "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",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "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",
+ "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",
- "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 - 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",
- "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 - 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",
- "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 - 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",
- "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": "RETIRED - Commercial data protection for Microsoft Copilot"
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "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",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "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",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "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",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "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",
- "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 (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 (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": "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": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
},
{
- "Product_Display_Name": "Microsoft 365 E3 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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": "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 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
- "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 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
- "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 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
"Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
"Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
"Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
},
{
- "Product_Display_Name": "Microsoft 365 E3 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
- "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 E3 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
- "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
- "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
- "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
- "String_Id": "Microsoft_365_E3_(no_Teams)",
- "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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": "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": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ },
{
"Product_Display_Name": "Microsoft 365 E3 (no Teams)",
"String_Id": "Microsoft_365_E3_(no_Teams)",
"GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E3_(no_Teams)",
"GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
- "Service_Plan_Name": "Nucleus",
- "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
- "Service_Plans_Included_Friendly_Names": "Nucleus"
+ "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 (no Teams)",
@@ -15203,17 +15835,33 @@
"Product_Display_Name": "Microsoft 365 E3 (no Teams)",
"String_Id": "Microsoft_365_E3_(no_Teams)",
"GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
- "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"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E3_(no_Teams)",
"GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1"
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
@@ -15227,105 +15875,265 @@
"Product_Display_Name": "Microsoft 365 E3 (no Teams)",
"String_Id": "Microsoft_365_E3_(no_Teams)",
"GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
- "Service_Plan_Name": "POWERAPPS_O365_P2",
- "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E3_(no_Teams)",
"GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
- "Service_Plan_Name": "FLOW_O365_P2",
- "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E3_(no_Teams)",
"GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
- "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"
+ "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 EEA (no Teams)",
- "String_Id": "O365_w/o Teams Bundle_M3",
- "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
+ "Product_Display_Name": "Microsoft 365 E3 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
"Service_Plan_Name": "RMS_S_ENTERPRISE",
"Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
"Service_Plans_Included_Friendly_Names": "Azure Rights Management"
},
{
- "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
- "String_Id": "O365_w/o Teams Bundle_M3",
- "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
+ "Product_Display_Name": "Microsoft 365 E3 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
"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 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 E3 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
+ "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
+ "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "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 (no Teams)",
+ "String_Id": "Microsoft_365_E3_(no_Teams)",
+ "GUID": "dcf0408c-aaec-446c-afd4-43e3683943ea",
+ "Service_Plan_Name": "FORMS_PLAN_E3",
+ "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)"
+ },
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ "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": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
+ "Service_Plan_Name": "KAIZALA_O365_P3",
+ "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
- "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ "Service_Plan_Name": "FORMS_PLAN_E3",
+ "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
- "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
+ "Service_Plan_Name": "MDE_LITE",
+ "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
+ "String_Id": "O365_w/o Teams Bundle_M3",
+ "GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
+ "Service_Plan_Name": "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)",
@@ -15339,81 +16147,81 @@
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "CLIPCHAMP",
- "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472",
- "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp"
+ "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
+ "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "MDE_LITE",
- "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1"
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "FORMS_PLAN_E3",
- "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)"
+ "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": "KAIZALA_O365_P3",
- "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ "Service_Plan_Name": "MYANALYTICS_P2",
+ "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
+ "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3"
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "Service_Plan_Name": "CDS_O365_P2",
+ "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "Nucleus",
- "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
- "Service_Plans_Included_Friendly_Names": "Nucleus"
+ "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)",
@@ -15427,9 +16235,9 @@
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "PROJECT_O365_P2",
- "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
+ "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)",
@@ -15443,81 +16251,81 @@
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
+ "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": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ "Service_Plan_Name": "FLOW_O365_P2",
+ "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "VIVAENGAGE_CORE",
- "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
- "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ "Service_Plan_Name": "POWERAPPS_O365_P2",
+ "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
- "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
- "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "WHITEBOARD_PLAN2",
- "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
+ "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "UNIVERSAL_PRINT_01",
- "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
- "Service_Plans_Included_Friendly_Names": "Universal Print"
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "WIN10_PRO_ENT_SUB",
- "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111",
- "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)"
+ "Service_Plan_Name": "PROJECT_O365_P2",
+ "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "Windows_Autopatch",
- "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3",
- "Service_Plans_Included_Friendly_Names": "Windows Autopatch"
+ "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)",
@@ -15531,209 +16339,209 @@
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ "Service_Plan_Name": "WIN10_PRO_ENT_SUB",
+ "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111",
+ "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "DYN365_CDS_O365_P2",
- "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ "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": "ADALLOM_S_DISCOVERY",
- "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery"
+ "Service_Plan_Name": "WHITEBOARD_PLAN2",
+ "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1"
+ "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": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1"
+ "Service_Plan_Name": "BPOS_S_TODO_2",
+ "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "POWERAPPS_O365_P2",
- "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ "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": "FLOW_O365_P2",
- "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
},
{
"Product_Display_Name": "Microsoft 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o Teams Bundle_M3",
"GUID": "c2fe850d-fbbb-4858-b67d-bd0c6e746da3",
- "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2",
- "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee",
- "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 Extra Features",
- "String_Id": "Microsoft_365_E3_Extra_Features",
- "GUID": "f5b15d67-b99e-406b-90f1-308452f94de6",
- "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS",
- "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02",
- "Service_Plans_Included_Friendly_Names": "Avatars for Teams"
+ "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 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 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 Extra Features",
- "String_Id": "Microsoft_365_E3_Extra_Features",
- "GUID": "f5b15d67-b99e-406b-90f1-308452f94de6",
+ "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License",
+ "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License",
+ "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043",
"Service_Plan_Name": "Bing_Chat_Enterprise",
"Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
"Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
},
{
- "Product_Display_Name": "Microsoft 365 E3 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 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 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 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 Extra Features",
- "String_Id": "Microsoft_365_E3_Extra_Features",
- "GUID": "f5b15d67-b99e-406b-90f1-308452f94de6",
- "Service_Plan_Name": "UNIVERSAL_PRINT_01",
- "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
- "Service_Plans_Included_Friendly_Names": "Universal Print"
+ "Product_Display_Name": "Microsoft 365 E3 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 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": "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 Extra Features",
- "String_Id": "Microsoft_365_E3_Extra_Features",
- "GUID": "f5b15d67-b99e-406b-90f1-308452f94de6",
- "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
- "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
- "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ "Product_Display_Name": "Microsoft 365 E3 EEA (no Teams) - Unattended License",
+ "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License",
+ "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043",
+ "Service_Plan_Name": "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": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
+ "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": "CDS_O365_P2",
- "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ "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": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ "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": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ "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": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ "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": "OFFICESUBSCRIPTION_unattended",
- "Service_Plan_Id": "8d77e2d9-9e28-4450-8431-0def64078fc5",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise (Unattended)"
+ "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": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
- "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ "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": "M365_LIGHTHOUSE_PARTNER_PLAN1",
- "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
+ "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": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "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": "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",
@@ -15747,17 +16555,49 @@
"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"
+ "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": "FORMS_PLAN_E3",
- "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)"
+ "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": "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": "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": "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": "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",
@@ -15767,6 +16607,14 @@
"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": "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",
@@ -15779,2537 +16627,2329 @@
"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"
+ "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": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "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": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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": "Nucleus",
- "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
- "Service_Plans_Included_Friendly_Names": "Nucleus"
+ "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": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ "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": "PROJECT_O365_P2",
- "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
+ "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": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ "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": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "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) - 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"
+ "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": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ "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": "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": "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": "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": "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": "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": "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": "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": "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": "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",
+ "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) - Unattended License",
- "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License",
- "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043",
+ "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) - Unattended License",
- "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License",
- "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043",
+ "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) - Unattended License",
- "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License",
- "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043",
+ "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": "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) (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) - 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) (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) - Unattended License",
- "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License",
- "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043",
+ "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) - 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) (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) - Unattended License",
- "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License",
- "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043",
+ "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": "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",
+ "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) - Unattended License",
- "String_Id": "Microsoft_365_E3_EEA_(no_Teams)_Unattended_License",
- "GUID": "a23dbafb-3396-48b3-ad9c-a304fe206043",
+ "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) - 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) (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) - 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) (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) - 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 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 - 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 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 - 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 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 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "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 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "CDS_O365_P2",
- "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ "Product_Display_Name": "Microsoft 365 E3 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 - 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 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 - 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 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 - 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 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 - 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 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 - 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 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 - 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 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 - 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 Extra Features",
+ "String_Id": "Microsoft_365_E3_Extra_Features",
+ "GUID": "f5b15d67-b99e-406b-90f1-308452f94de6",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
},
{
- "Product_Display_Name": "Microsoft 365 E3 - 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 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 - 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 Extra Features",
+ "String_Id": "Microsoft_365_E3_Extra_Features",
+ "GUID": "f5b15d67-b99e-406b-90f1-308452f94de6",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
},
{
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "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 - 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 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 - 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 Extra Features",
+ "String_Id": "Microsoft_365_E3_Extra_Features",
+ "GUID": "f5b15d67-b99e-406b-90f1-308452f94de6",
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
},
{
- "Product_Display_Name": "Microsoft 365 E3 - 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 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 - 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_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 - 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_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 - 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_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 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "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 for the Web"
+ "Service_Plans_Included_Friendly_Names": "Office Online"
},
{
- "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_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 - 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_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 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "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 - 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_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 - 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_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 - 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_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 - 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_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 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
+ "String_Id": "SPE_E3_USGOV_DOD",
+ "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
+ "Service_Plan_Name": "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 - 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_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 - 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_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 - 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_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 - 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_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 - 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_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 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_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 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "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": "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_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 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "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": "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_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 - 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_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 - 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_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 - 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 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 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 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 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 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 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 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 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 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 E3 (500 seats min)_HUB",
- "String_Id": "Microsoft_365_E3",
- "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
+ "Product_Display_Name": "Microsoft 365 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 E3 (500 seats min)_HUB",
- "String_Id": "Microsoft_365_E3",
- "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "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": "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 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 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 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 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 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 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 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 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 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 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 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": "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": "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": "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": "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 E3 (500 seats min)_HUB",
- "String_Id": "Microsoft_365_E3",
- "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
+ "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
+ "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
},
{
- "Product_Display_Name": "Microsoft Teams EEA",
- "String_Id": "Microsoft_Teams_EEA_New",
- "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
- "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS",
- "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02",
- "Service_Plans_Included_Friendly_Names": "Avatars for Teams"
+ "Product_Display_Name": "Microsoft 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 Teams EEA",
- "String_Id": "Microsoft_Teams_EEA_New",
- "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
- "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS",
- "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8",
- "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)"
+ "Product_Display_Name": "Microsoft 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 Teams EEA",
- "String_Id": "Microsoft_Teams_EEA_New",
- "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
- "Service_Plan_Name": "EXCHANGE_S_DESKLESS",
- "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113",
- "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk"
+ "Product_Display_Name": "Microsoft 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 Teams EEA",
- "String_Id": "Microsoft_Teams_EEA_New",
- "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
- "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
- "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
- "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
+ "Product_Display_Name": "Microsoft 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 Teams EEA",
- "String_Id": "Microsoft_Teams_EEA_New",
- "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "Product_Display_Name": "Microsoft 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 Teams EEA",
- "String_Id": "Microsoft_Teams_EEA_New",
- "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
- "Service_Plan_Name": "FORMS_PLAN_E1",
- "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)"
+ "Product_Display_Name": "Microsoft 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 Teams EEA",
- "String_Id": "Microsoft_Teams_EEA_New",
- "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
},
{
- "Product_Display_Name": "Microsoft Teams EEA",
- "String_Id": "Microsoft_Teams_EEA_New",
- "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ "Product_Display_Name": "Microsoft 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 Teams EEA",
- "String_Id": "Microsoft_Teams_EEA_New",
- "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "Product_Display_Name": "Microsoft 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 Teams EEA",
- "String_Id": "Microsoft_Teams_EEA_New",
- "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ "Product_Display_Name": "Microsoft 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 Teams EEA",
- "String_Id": "Microsoft_Teams_EEA_New",
- "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
- "Service_Plan_Name": "ONEDRIVE_BASIC_P2",
- "Service_Plan_Id": "4495894f-534f-41ca-9d3b-0ebf1220a423",
- "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Basic 2)"
+ "Product_Display_Name": "Microsoft 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 Teams EEA",
- "String_Id": "Microsoft_Teams_EEA_New",
- "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
- "Service_Plan_Name": "MCOIMP",
- "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)"
+ "Product_Display_Name": "Microsoft 365 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 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 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 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 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 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 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 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",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 E3_USGOV_GCCHIGH",
- "String_Id": "SPE_E3_USGOV_GCCHIGH",
- "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
+ "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 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 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 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 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 E3_USGOV_GCCHIGH",
- "String_Id": "SPE_E3_USGOV_GCCHIGH",
- "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
+ "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 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 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 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 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 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 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 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 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 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 (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",
- "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 (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",
- "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 (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",
- "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 (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",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
+ "Product_Display_Name": "Microsoft 365 E5 (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",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "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": "CDS_O365_P3",
"Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
"Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
},
{
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
- "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "CustomerLockboxA_Enterprise",
- "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)"
+ "Product_Display_Name": "Microsoft 365 E5 (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",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "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",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "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",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "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",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
- "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
- "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "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",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "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",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "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",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "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",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "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",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "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",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "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",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "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",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "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",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "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",
- "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",
+ "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",
- "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"
+ "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": "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 (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",
- "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 (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",
- "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 (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",
- "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 (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",
- "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 (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",
- "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 (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",
- "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",
- "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 (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",
- "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 (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",
- "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 (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",
- "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 (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",
- "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 (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",
- "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 (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",
- "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 (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",
- "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 (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",
- "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 (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",
- "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 (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",
- "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 (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",
- "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 (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",
- "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 (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",
- "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 (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",
- "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 (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",
- "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 (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",
- "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 (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",
- "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 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
},
{
- "Product_Display_Name": "Microsoft 365 E5",
- "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 (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",
- "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 (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",
- "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 (no Teams)",
+ "String_Id": "Microsoft_365_E5_(no_Teams)",
+ "GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS",
- "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02",
- "Service_Plans_Included_Friendly_Names": "Avatars for Teams"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "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)"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "CDS_O365_P3",
- "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
- "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "CustomerLockboxA_Enterprise",
- "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "MIP_S_Exchange",
- "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
- "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ "Service_Plan_Name": "PEOPLE_SKILLS_FOUNDATION",
+ "Service_Plan_Id": "13b6da2c-0d84-450e-9f69-a33e221387ca",
+ "Service_Plans_Included_Friendly_Names": "People Skills - Foundation"
},
{
"Product_Display_Name": "Microsoft 365 E5 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "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"
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Commercial data protection for Microsoft Copilot"
},
{
"Product_Display_Name": "Microsoft 365 E5 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
- "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
- "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "Content_Explorer",
- "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
},
{
"Product_Display_Name": "Microsoft 365 E5 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "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"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "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"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "M365_ADVANCED_AUDITING",
- "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "MCOMEETADV",
- "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "M365_AUDIT_PLATFORM",
- "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
- "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ "Service_Plan_Name": "PLACES_CORE",
+ "Service_Plan_Id": "1fe6227d-3e01-46d0-9510-0acad4ff6e94",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Places Core"
},
{
"Product_Display_Name": "Microsoft 365 E5 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "MTP",
- "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "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)"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "CLIPCHAMP",
- "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472",
- "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "COMMUNICATIONS_DLP",
- "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "CUSTOMER_KEY",
- "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
- "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "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)"
+ "Service_Plan_Name": "DATA_INVESTIGATIONS",
+ "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
+ "Service_Plans_Included_Friendly_Names": "Retired - Microsoft Data Investigations"
},
{
"Product_Display_Name": "Microsoft 365 E5 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "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)"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "EXCEL_PREMIUM",
- "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "FORMS_PLAN_E5",
- "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "INFO_GOVERNANCE",
- "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
- "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "INSIDER_RISK",
- "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
- "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT",
- "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34",
- "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management - Exchange"
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
},
{
"Product_Display_Name": "Microsoft 365 E5 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "KAIZALA_STANDALONE",
- "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "MICROSOFT_LOOP",
- "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda",
- "Service_Plans_Included_Friendly_Names": "Microsoft Loop"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "ML_CLASSIFICATION",
- "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
- "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "EXCHANGE_ANALYTICS",
- "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
- "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
+ "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 (no Teams)",
@@ -18323,329 +18963,321 @@
"Product_Display_Name": "Microsoft 365 E5 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "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 (no Teams)",
- "String_Id": "Microsoft_365_E5_(no_Teams)",
- "GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "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"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "Nucleus",
- "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
- "Service_Plans_Included_Friendly_Names": "Nucleus"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "EQUIVIO_ANALYTICS",
- "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "PAM_ENTERPRISE",
- "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
- "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "SAFEDOCS",
- "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
- "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
+ "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
+ "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
},
{
"Product_Display_Name": "Microsoft 365 E5 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "PEOPLE_SKILLS_FOUNDATION",
- "Service_Plan_Id": "13b6da2c-0d84-450e-9f69-a33e221387ca",
- "Service_Plans_Included_Friendly_Names": "People Skills - Foundation"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "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)"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "BI_AZURE_P2",
- "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
- "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "PREMIUM_ENCRYPTION",
- "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
- "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "PROJECT_O365_P3",
- "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "PURVIEW_DISCOVERY",
- "Service_Plan_Id": "c948ea65-2053-4a5a-8a62-9eaaaf11b522",
- "Service_Plans_Included_Friendly_Names": "Purview Discovery"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "RETIRED - Commercial data protection for Microsoft Copilot"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE",
- "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
- "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "DATA_INVESTIGATIONS",
- "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
- "Service_Plans_Included_Friendly_Names": "Retired - Microsoft Data Investigations"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "PLACES_CORE",
- "Service_Plan_Id": "1fe6227d-3e01-46d0-9510-0acad4ff6e94",
- "Service_Plans_Included_Friendly_Names": "RETIRED - Places Core"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "BPOS_S_TODO_3",
- "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
+ "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT",
+ "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management - Exchange"
},
{
"Product_Display_Name": "Microsoft 365 E5 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "VIVAENGAGE_CORE",
- "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
- "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
- "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
- "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "WHITEBOARD_PLAN3",
- "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "WINDEFATP",
- "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
- "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "UNIVERSAL_PRINT_01",
- "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
- "Service_Plans_Included_Friendly_Names": "Universal Print"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "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)"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "Windows_Autopatch",
- "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3",
- "Service_Plans_Included_Friendly_Names": "Windows Autopatch"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
- "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
- "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "RMS_S_PREMIUM2",
- "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "DYN365_CDS_O365_P3",
- "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "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"
+ "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 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ "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 (no Teams)",
@@ -18683,9 +19315,9 @@
"Product_Display_Name": "Microsoft 365 E5 (no Teams)",
"String_Id": "Microsoft_365_E5_(no_Teams)",
"GUID": "18a4bd3f-0b5b-4887-b04f-61dd0ee15f5e",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1"
+ "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 (no Teams)",
@@ -18704,6596 +19336,6212 @@
"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",
+ "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 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 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 EEA (no Teams) with Calling Minutes",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes",
- "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 EEA (no Teams) with Calling Minutes",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes",
- "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3",
+ "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 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 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 EEA (no Teams) with Calling Minutes",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes",
- "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 EEA (no Teams) with Calling Minutes",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes",
- "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3",
+ "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 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 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 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 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 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 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) 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 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 EEA (no Teams) with Calling Minutes",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes",
- "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 EEA (no Teams) with Calling Minutes",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes",
- "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3",
+ "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 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 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 EEA (no Teams) with Calling Minutes",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes",
- "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3",
+ "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 EEA (no Teams) with Calling Minutes",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes",
- "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3",
+ "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 EEA (no Teams) with Calling Minutes",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes",
- "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3",
+ "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 EEA (no Teams) with Calling Minutes",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes",
- "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3",
+ "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 EEA (no Teams) with Calling Minutes",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes",
- "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3",
+ "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 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",
+ "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 EEA (no Teams) with Calling Minutes",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_with_Calling_Minutes",
- "GUID": "6ee4114a-9b2d-4577-9e7a-49fa43d222d3",
+ "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 EEA (no Teams) without Audio Conferencing",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing",
- "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b",
+ "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": "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": "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": "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": "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": "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 EEA (no Teams) without Audio Conferencing",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing",
- "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing",
- "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b",
+ "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 EEA (no Teams) without Audio Conferencing",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing",
- "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b",
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
"Service_Plan_Name": "LOCKBOX_ENTERPRISE",
"Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
"Service_Plans_Included_Friendly_Names": "Customer Lockbox"
},
{
- "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing",
- "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b",
+ "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 EEA (no Teams) without Audio Conferencing",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing",
- "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b",
+ "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 EEA (no Teams) without Audio Conferencing",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing",
- "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b",
+ "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 EEA (no Teams) without Audio Conferencing",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing",
- "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b",
+ "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 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 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 EEA (no Teams) without Audio Conferencing",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing",
- "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b",
+ "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 EEA (no Teams) without Audio Conferencing",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing",
- "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b",
+ "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 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",
+ "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 EEA (no Teams) without Audio Conferencing",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing",
- "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b",
+ "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 EEA (no Teams) without Audio Conferencing",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing",
- "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b",
+ "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 EEA (no Teams) without Audio Conferencing",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing",
- "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b",
+ "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 EEA (no Teams) without Audio Conferencing",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing",
- "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b",
+ "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 EEA (no Teams) without Audio Conferencing",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing",
- "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b",
+ "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 EEA (no Teams) without Audio Conferencing",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing",
- "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b",
+ "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": "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",
+ "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 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 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 EEA (no Teams) without Audio Conferencing",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing",
- "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b",
+ "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 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 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 EEA (no Teams) without Audio Conferencing",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing",
- "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b",
+ "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 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",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 (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 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 (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 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 (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 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 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
- "String_Id": "Microsoft_365_E5",
- "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
"Service_Plan_Name": "Bing_Chat_Enterprise",
"Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
"Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
- "String_Id": "Microsoft_365_E5",
- "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "CDS_O365_P3",
+ "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
"Service_Plan_Name": "LOCKBOX_ENTERPRISE",
"Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
"Service_Plans_Included_Friendly_Names": "Customer Lockbox"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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",
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
"Service_Plan_Name": "MIP_S_Exchange",
"Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
"Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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",
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
"Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX",
"Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757",
"Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "WINDEFATP",
+ "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 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 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 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 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "VIVAENGAGE_CORE",
+ "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
+ "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "BPOS_S_TODO_3",
+ "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 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 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT",
+ "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE",
+ "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "PROJECT_O365_P3",
+ "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "POWERAPPS_O365_P3",
+ "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "SAFEDOCS",
+ "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
+ "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
+ "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "PAM_ENTERPRISE",
+ "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "CustomerLockboxA_Enterprise",
+ "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3",
+ "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "BI_AZURE_P2",
+ "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "FLOW_O365_P3",
+ "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "AAD_PREMIUM_P2",
+ "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "ATA",
+ "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "DYN365_CDS_O365_P3",
+ "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "RMS_S_PREMIUM2",
+ "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 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 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "WIN10_PRO_ENT_SUB",
+ "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111",
+ "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
- "String_Id": "Microsoft_365_E5",
- "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "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 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "MCOMEETADV",
+ "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "MYANALYTICS_P2",
+ "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
+ "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS",
+ "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 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 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "CLIPCHAMP",
+ "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "COMMUNICATIONS_DLP",
+ "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "M365_AUDIT_PLATFORM",
+ "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "STREAM_O365_E5",
+ "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 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 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "RECORDS_MANAGEMENT",
+ "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "EXCHANGE_ANALYTICS",
+ "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
+ "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "ML_CLASSIFICATION",
+ "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "KAIZALA_STANDALONE",
+ "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "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": "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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "FORMS_PLAN_E5",
+ "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "EXCEL_PREMIUM",
+ "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE",
+ "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "DATA_INVESTIGATIONS",
+ "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 EEA (no Teams)",
+ "String_Id": "O365_w/o_Teams_Bundle_M5",
+ "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "Service_Plan_Name": "INSIDER_RISK",
+ "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
},
{
- "Product_Display_Name": "Microsoft 365 E5 (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 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 (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 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 (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 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 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 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 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 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 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 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 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 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 Developer (without Windows and Audio Conferencing)",
- "String_Id": "DEVELOPERPACK_E5",
- "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
+ "Product_Display_Name": "Microsoft 365 E5 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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": "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": "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": "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": "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": "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",
+ "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": "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 EEA (no Teams) (500 seats min)_HUB",
+ "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB",
+ "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c",
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
},
{
- "Product_Display_Name": "Microsoft 365 E5 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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": "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 Compliance",
- "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
- "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "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 Compliance",
- "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
- "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "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 Compliance",
- "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
- "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "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 Compliance",
- "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
- "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "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": "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 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 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 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 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) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "CDS_O365_P3",
- "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
- "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "CustomerLockboxA_Enterprise",
- "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "MTP",
- "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
- "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "CLIPCHAMP",
- "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472",
- "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "COMMUNICATIONS_DLP",
- "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "CUSTOMER_KEY",
- "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
- "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "DATA_INVESTIGATIONS",
- "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "ATP_ENTERPRISE",
- "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "THREAT_INTELLIGENCE",
- "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "EXCEL_PREMIUM",
- "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "FORMS_PLAN_E5",
- "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "INFO_GOVERNANCE",
- "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
- "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "INSIDER_RISK",
- "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
- "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "KAIZALA_STANDALONE",
- "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "ML_CLASSIFICATION",
- "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
- "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "EXCHANGE_ANALYTICS",
- "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
- "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "RECORDS_MANAGEMENT",
- "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
- "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "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) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "STREAM_O365_E5",
- "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "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) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "EQUIVIO_ANALYTICS",
- "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "PAM_ENTERPRISE",
- "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
- "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "SAFEDOCS",
- "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
- "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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": "PROJECT_O365_P3",
"Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
"Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
},
{
- "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT",
- "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34",
- "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "VIVAENGAGE_CORE",
- "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
- "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "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) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "WINDEFATP",
- "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
- "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) without Audio Conferencing",
+ "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing",
+ "GUID": "90277bc7-a6fe-4181-99d8-712b08b8d32b",
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
},
{
- "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "UNIVERSAL_PRINT_01",
- "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
- "Service_Plans_Included_Friendly_Names": "Universal Print"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "WIN10_PRO_ENT_SUB",
- "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111",
- "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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 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) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
- "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
- "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "RMS_S_PREMIUM2",
- "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "DYN365_CDS_O365_P3",
- "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "FLOW_O365_P3",
+ "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
},
{
- "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "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": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1"
},
{
- "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "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": "AAD_PREMIUM_P2",
+ "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2"
},
{
- "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
+ "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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "AAD_PREMIUM_P2",
- "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
- "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "FLOW_O365_P3",
- "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "BI_AZURE_P2",
- "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
- "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ "Product_Display_Name": "Microsoft 365 E5 EEA (no Teams) 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)",
- "String_Id": "O365_w/o_Teams_Bundle_M5",
- "GUID": "3271cf8e-2be5-4a09-a549-70fd05baaa17",
- "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3",
- "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
- "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ "Product_Display_Name": "Microsoft 365 E5 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 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 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 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 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 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 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 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 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 Security",
- "String_Id": "IDENTITY_THREAT_PROTECTION",
- "GUID": "26124093-3d78-432b-b5dc-48bf992543d5",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 with Calling Minutes",
- "String_Id": "SPE_E5_CALLINGMINUTES",
- "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
+ "Product_Display_Name": "Microsoft 365 E5 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 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 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 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 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 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 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 with Calling Minutes",
- "String_Id": "SPE_E5_CALLINGMINUTES",
- "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "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 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 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 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 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 with Calling Minutes",
- "String_Id": "SPE_E5_CALLINGMINUTES",
- "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "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 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 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 with Calling Minutes",
- "String_Id": "SPE_E5_CALLINGMINUTES",
- "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 with Calling Minutes",
- "String_Id": "SPE_E5_CALLINGMINUTES",
- "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "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 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 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 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 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 with Calling Minutes",
- "String_Id": "SPE_E5_CALLINGMINUTES",
- "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 with Calling Minutes",
- "String_Id": "SPE_E5_CALLINGMINUTES",
- "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "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": "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": "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": "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB",
+ "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2",
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
},
{
- "Product_Display_Name": "Microsoft 365 E5 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 without Audio Conferencing",
- "String_Id": "SPE_E5_NOPSTNCONF",
- "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
+ "Product_Display_Name": "Microsoft 365 E5 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 without Audio Conferencing",
- "String_Id": "SPE_E5_NOPSTNCONF",
- "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 without Audio Conferencing",
- "String_Id": "SPE_E5_NOPSTNCONF",
- "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "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 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 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 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 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 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 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 without Audio Conferencing",
- "String_Id": "SPE_E5_NOPSTNCONF",
- "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "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 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 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 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 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 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 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 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 Suite features",
+ "String_Id": "M365_E5_SUITE_COMPONENTS",
+ "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
+ "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
+ "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
+ "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
},
{
- "Product_Display_Name": "Microsoft 365 E5 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 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 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 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 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 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 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 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 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 Suite features",
+ "String_Id": "M365_E5_SUITE_COMPONENTS",
+ "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
},
{
- "Product_Display_Name": "Microsoft 365 E5 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 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 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 Suite features",
+ "String_Id": "M365_E5_SUITE_COMPONENTS",
+ "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
},
{
- "Product_Display_Name": "Microsoft 365 E5 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 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 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 Suite features",
+ "String_Id": "M365_E5_SUITE_COMPONENTS",
+ "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
},
{
- "Product_Display_Name": "Microsoft 365 E5 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 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 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 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 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 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 without Audio Conferencing",
- "String_Id": "SPE_E5_NOPSTNCONF",
- "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "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 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 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 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 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 without Audio Conferencing",
- "String_Id": "SPE_E5_NOPSTNCONF",
- "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "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 without Audio Conferencing",
- "String_Id": "SPE_E5_NOPSTNCONF",
- "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "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 without Audio Conferencing",
- "String_Id": "SPE_E5_NOPSTNCONF",
- "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "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 without Audio Conferencing",
- "String_Id": "SPE_E5_NOPSTNCONF",
- "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "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": "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": "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": "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": "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 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 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 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 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 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 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 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 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 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 without Audio Conferencing",
- "String_Id": "SPE_E5_NOPSTNCONF",
- "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "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": "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": "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": "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 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 without Audio Conferencing",
- "String_Id": "SPE_E5_NOPSTNCONF",
- "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "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 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",
+ "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 without Audio Conferencing",
- "String_Id": "SPE_E5_NOPSTNCONF",
- "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "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 without Audio Conferencing",
- "String_Id": "SPE_E5_NOPSTNCONF",
- "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ {
+ "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 without Audio Conferencing",
- "String_Id": "SPE_E5_NOPSTNCONF",
- "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "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 without Audio Conferencing",
- "String_Id": "SPE_E5_NOPSTNCONF",
- "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "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 without Audio Conferencing",
- "String_Id": "SPE_E5_NOPSTNCONF",
- "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "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 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 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 without Audio Conferencing",
- "String_Id": "SPE_E5_NOPSTNCONF",
- "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "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": "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",
+ "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 without Audio Conferencing",
- "String_Id": "SPE_E5_NOPSTNCONF",
- "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "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 without Audio Conferencing",
- "String_Id": "SPE_E5_NOPSTNCONF",
- "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "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 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 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 without Audio Conferencing",
- "String_Id": "SPE_E5_NOPSTNCONF",
- "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "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 without Audio Conferencing",
- "String_Id": "SPE_E5_NOPSTNCONF",
- "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "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 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",
+ "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 without Audio Conferencing",
- "String_Id": "SPE_E5_NOPSTNCONF",
- "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
- "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3",
- "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
- "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
- "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
- "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
- "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS",
- "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02",
- "Service_Plans_Included_Friendly_Names": "Avatars for Teams"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
- "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
- "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
- "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS",
- "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8",
- "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
- "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
- "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
- "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
- "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
- "Service_Plan_Name": "CDS_O365_P3",
- "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
- "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
- "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
- "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
- "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
- "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
- "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
- "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
- "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
- "Service_Plan_Name": "CustomerLockboxA_Enterprise",
- "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
- "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
- "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
- "Service_Plan_Name": "MIP_S_Exchange",
- "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
- "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
- "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
- "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ "Product_Display_Name": "Microsoft 365 E5 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 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 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 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 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 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 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 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 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 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 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 without Audio Conferencing (500 seats min)_HUB",
- "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
- "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
},
{
- "Product_Display_Name": "Microsoft 365 E5 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 without Audio Conferencing (500 seats min)_HUB",
- "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
- "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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",
+ "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 (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",
+ "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 (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",
+ "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 (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",
+ "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 (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",
+ "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 (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",
+ "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 (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",
+ "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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",
+ "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 (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",
+ "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 (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",
+ "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 (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",
+ "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 (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",
+ "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 (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",
+ "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 (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",
+ "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 (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 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 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 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 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 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 EEA (no Teams) (500 seats min)_HUB",
- "String_Id": "O365_w/o_Teams_Bundle_M5_(500_seats_min)_HUB",
- "GUID": "1e988bf3-8b7c-4731-bec0-4e2a2946600c",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
+ "Product_Display_Name": "Microsoft 365 E5 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
},
{
- "Product_Display_Name": "Microsoft 365 E5 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
},
{
- "Product_Display_Name": "Microsoft 365 E5 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 EEA (no Teams) without Audio Conferencing (500 seats min)_HUB",
- "String_Id": "Microsoft_365_E5_EEA_(no_Teams)_without_Audio_Conferencing_(500_seats_min)_HUB",
- "GUID": "a640eead-25f6-4bec-97e3-23cfd382d7c2",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
+ "Product_Display_Name": "Microsoft 365 E5 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 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",
+ "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 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 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 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 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 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 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 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 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 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 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) 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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",
+ "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": "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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 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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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 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 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_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 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_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 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_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 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",
+ "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 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",
+ "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 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",
+ "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 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_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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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",
+ "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 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_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 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_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 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_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": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ "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": "CDS_O365_P3",
- "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ "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": "LOCKBOX_ENTERPRISE",
- "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ "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",
@@ -25383,6 +25631,30 @@
"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": "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": "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": "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",
@@ -25395,9 +25667,9 @@
"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"
+ "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",
@@ -25407,14 +25679,6 @@
"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",
@@ -25427,9 +25691,9 @@
"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)"
+ "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",
@@ -25467,9 +25731,9 @@
"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"
+ "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",
@@ -25515,169 +25779,105 @@
"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)"
+ "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": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "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": "WINDEFATP",
- "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
+ "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 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 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 E5_USGOV_GCCHIGH",
- "String_Id": "SPE_E5_USGOV_GCCHIGH",
- "GUID": "4eb45c5b-0d19-4e33-b87c-adfc25268f20",
+ "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": "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"
+ "Service_Plans_Included_Friendly_Names": "RMS_S_PREMIUM"
},
{
- "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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_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",
@@ -25783,6 +25983,62 @@
"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_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 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": "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": "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": "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": "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",
@@ -25791,6 +26047,22 @@
"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": "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": "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)",
@@ -25843,9 +26115,9 @@
"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"
+ "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 F1 EEA (no Teams)",
@@ -25859,9 +26131,9 @@
"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)"
+ "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)",
@@ -25871,14 +26143,6 @@
"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)",
@@ -25931,153 +26195,145 @@
"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"
+ "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": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ "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": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
+ "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": "CDS_O365_F1",
- "Service_Plan_Id": "90db65a7-bf11-4904-a79f-ef657605145b",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ "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": "EXCHANGE_S_DESKLESS",
- "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113",
- "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk"
+ "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": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
- "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1"
},
{
"Product_Display_Name": "Microsoft 365 F3",
"String_Id": "SPE_F1",
"GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "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": "FORMS_PLAN_K",
- "Service_Plan_Id": "f07046bd-2a3c-4b96-b0be-dea79d7cbfb8",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1)"
+ "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": "KAIZALA_O365_P1",
- "Service_Plan_Id": "73b2a583-6a59-42e3-8e83-54db46bc3278",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ "Service_Plan_Name": "Windows_Autopatch",
+ "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3",
+ "Service_Plans_Included_Friendly_Names": "Windows Autopatch"
},
{
"Product_Display_Name": "Microsoft 365 F3",
"String_Id": "SPE_F1",
"GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "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": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "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": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "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": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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": "Nucleus",
- "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
- "Service_Plans_Included_Friendly_Names": "Nucleus"
+ "Service_Plan_Name": "VIVAENGAGE_CORE",
+ "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
+ "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
},
{
"Product_Display_Name": "Microsoft 365 F3",
"String_Id": "SPE_F1",
"GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ "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": "OFFICEMOBILE_SUBSCRIPTION",
- "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
- "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365"
+ "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": "PROJECT_O365_F3",
- "Service_Plan_Id": "7f6f28c2-34bb-4d4b-be36-48ca2e77e1ec",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan F)"
+ "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",
@@ -26091,137 +26347,137 @@
"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)"
+ "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": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
+ "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": "BPOS_S_TODO_FIRSTLINE",
- "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)"
+ "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": "VIVAENGAGE_CORE",
- "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
- "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ "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": "VIVA_LEARNING_SEEDED",
- "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
- "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ "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": "WHITEBOARD_FIRSTLINE1",
- "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)"
+ "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": "WIN10_ENT_LOC_F1",
- "Service_Plan_Id": "e041597c-9c7f-4ed9-99b0-2663301576f7",
- "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise E3 (Local Only)"
+ "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": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ "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": "UNIVERSAL_PRINT_01",
- "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
- "Service_Plans_Included_Friendly_Names": "Universal Print"
+ "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": "Windows_Autopatch",
- "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3",
- "Service_Plans_Included_Friendly_Names": "Windows Autopatch"
+ "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": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
- "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
- "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ "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": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
},
{
"Product_Display_Name": "Microsoft 365 F3",
"String_Id": "SPE_F1",
"GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "DYN365_CDS_O365_F1",
- "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "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": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ "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": "ADALLOM_S_DISCOVERY",
- "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery"
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
},
{
"Product_Display_Name": "Microsoft 365 F3",
"String_Id": "SPE_F1",
"GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1"
+ "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": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1"
+ "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",
@@ -26235,33 +26491,33 @@
"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"
+ "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": "FLOW_O365_S1",
- "Service_Plan_Id": "bd91b1a4-9f94-4ecf-b45b-3a65e5c8128a",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3"
+ "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": "POWER_VIRTUAL_AGENTS_O365_F1",
- "Service_Plan_Id": "ba2fdb48-290b-4632-b46a-e4ecc58ac11a",
- "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ "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": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ "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)",
@@ -26271,6 +26527,14 @@
"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": "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)",
@@ -26363,9 +26627,9 @@
"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"
+ "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)",
@@ -26391,6 +26655,14 @@
"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": "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)",
@@ -26447,14 +26719,6 @@
"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)",
@@ -26467,41 +26731,25 @@
"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"
+ "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": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ "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": "ADALLOM_S_DISCOVERY",
- "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery"
+ "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)",
@@ -26551,6 +26799,14 @@
"Service_Plan_Id": "ba2fdb48-290b-4632-b46a-e4ecc58ac11a",
"Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
},
+ {
+ "Product_Display_Name": "Microsoft 365 F3 EEA (no Teams)",
+ "String_Id": "Microsoft_365_F3_EEA_(no_Teams)",
+ "GUID": "f7ee79a7-7aec-4ca4-9fb9-34d6b930ad87",
+ "Service_Plan_Name": "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 GCC",
"String_Id": "M365_F1_GOV",
@@ -26615,14 +26871,6 @@
"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",
@@ -26719,6 +26967,14 @@
"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": "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",
@@ -26731,65 +26987,73 @@
"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"
+ "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",
"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"
+ "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": "EXCHANGE_S_ARCHIVE_ADDON",
- "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793",
- "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving"
+ "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": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ "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": "Content_Explorer",
- "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ "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": "MIP_S_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ "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": "M365_ADVANCED_AUDITING",
- "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ "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": "MICROSOFT_COMMUNICATION_COMPLIANCE",
- "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ "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": "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",
@@ -26803,57 +27067,57 @@
"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"
+ "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": "DATA_INVESTIGATIONS",
- "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ "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": "INFO_GOVERNANCE",
- "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
- "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ "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": "INSIDER_RISK",
- "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
- "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ "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": "ML_CLASSIFICATION",
- "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
- "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ "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": "RECORDS_MANAGEMENT",
- "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
- "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ "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": "EQUIVIO_ANALYTICS",
- "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ "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",
@@ -26875,9 +27139,9 @@
"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"
+ "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",
@@ -26887,77 +27151,69 @@
"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"
+ "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": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ "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": "Content_Explorer",
- "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ "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": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
+ "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": "MIP_S_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ "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 (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"
+ "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": "MICROSOFT_COMMUNICATION_COMPLIANCE",
- "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ "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": "COMMUNICATIONS_DLP",
- "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ "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",
@@ -26971,73 +27227,89 @@
"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"
+ "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": "INSIDER_RISK",
- "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
- "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ "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": "ML_CLASSIFICATION",
- "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
- "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ "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": "RECORDS_MANAGEMENT",
- "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
- "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ "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": "EQUIVIO_ANALYTICS",
- "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ "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": "PREMIUM_ENCRYPTION",
- "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
- "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ "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": "MICROSOFTENDPOINTDLP",
- "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
+ "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": "RMS_S_PREMIUM2",
- "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
+ "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": "ADALLOM_S_STANDALONE_DOD",
- "Service_Plan_Id": "6ebdddb7-8e55-4af2-952b-69e77262f96c",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps for DOD"
+ "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": "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": "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",
@@ -27075,57 +27347,49 @@
"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"
+ "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_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"
+ "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": "MICROSOFT_COMMUNICATION_COMPLIANCE",
- "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ "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": "CUSTOMER_KEY",
- "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
- "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ "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": "INFO_GOVERNANCE",
- "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
- "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ "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": "INSIDER_RISK",
- "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
- "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ "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",
@@ -27139,169 +27403,161 @@
"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"
+ "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": "PREMIUM_ENCRYPTION",
- "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
- "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ "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": "MICROSOFTENDPOINTDLP",
- "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
+ "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": "RMS_S_PREMIUM2",
- "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
+ "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": "ADALLOM_S_STANDALONE",
- "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps"
+ "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": "LOCKBOX_ENTERPRISE_GOV",
- "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government"
+ "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": "BPOS_S_DlpAddOn",
- "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed",
- "Service_Plans_Included_Friendly_Names": "Data Loss Prevention"
+ "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": "EXCHANGE_S_ARCHIVE_ADDON",
- "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793",
- "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving"
+ "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": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ "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": "MIP_S_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ "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": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ "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": "M365_ADVANCED_AUDITING",
- "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ "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": "MICROSOFT_COMMUNICATION_COMPLIANCE",
- "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ "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": "COMMUNICATIONS_DLP",
- "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ "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": "CUSTOMER_KEY",
- "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
- "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ "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": "INFO_GOVERNANCE",
- "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
- "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ "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": "INSIDER_RISK",
- "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
- "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ "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": "ML_CLASSIFICATION",
- "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
- "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ "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": "RECORDS_MANAGEMENT",
- "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
- "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ "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": "EQUIVIO_ANALYTICS_GOV",
- "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government"
+ "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",
@@ -27335,117 +27591,13 @@
"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"
+ "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",
@@ -27507,25 +27659,17 @@
"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"
+ "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": "ML_CLASSIFICATION",
- "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
- "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ "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",
@@ -27551,6 +27695,14 @@
"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": "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",
@@ -27563,33 +27715,49 @@
"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"
+ "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": "WINDEFATP",
- "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
+ "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": "MICROSOFTENDPOINTDLP",
- "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
+ "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": "AAD_PREMIUM_P2",
- "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
- "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P2"
+ "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": "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",
@@ -27607,6 +27775,14 @@
"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": "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",
@@ -27616,1588 +27792,1372 @@
"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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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": "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": "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 GCC G5",
- "String_Id": "M365_G5_GCC",
- "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 GCC G5",
- "String_Id": "M365_G5_GCC",
- "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "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": "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": "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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 GCC G5",
- "String_Id": "M365_G5_GCC",
- "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "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": "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": "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": "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 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"
+ "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": "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",
+ "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 w/o WDATP/CAS Unified",
- "String_Id": "M365_G5_GOV",
- "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d",
+ "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 w/o WDATP/CAS Unified",
- "String_Id": "M365_G5_GOV",
- "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d",
+ "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 w/o WDATP/CAS Unified",
- "String_Id": "M365_G5_GOV",
- "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d",
+ "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 w/o WDATP/CAS Unified",
- "String_Id": "M365_G5_GOV",
- "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d",
+ "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 w/o WDATP/CAS Unified",
- "String_Id": "M365_G5_GOV",
- "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d",
+ "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 w/o WDATP/CAS Unified",
- "String_Id": "M365_G5_GOV",
- "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d",
+ "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 w/o WDATP/CAS Unified",
- "String_Id": "M365_G5_GOV",
- "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d",
+ "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 w/o WDATP/CAS Unified",
- "String_Id": "M365_G5_GOV",
- "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d",
+ "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": "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": "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",
+ "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 w/o WDATP/CAS Unified",
- "String_Id": "M365_G5_GOV",
- "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d",
+ "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 w/o WDATP/CAS Unified",
- "String_Id": "M365_G5_GOV",
- "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d",
+ "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 w/o WDATP/CAS Unified",
- "String_Id": "M365_G5_GOV",
- "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d",
+ "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 w/o WDATP/CAS Unified",
- "String_Id": "M365_G5_GOV",
- "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d",
+ "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 w/o WDATP/CAS Unified",
- "String_Id": "M365_G5_GOV",
- "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d",
+ "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 w/o WDATP/CAS Unified",
- "String_Id": "M365_G5_GOV",
- "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d",
+ "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 w/o WDATP/CAS Unified",
- "String_Id": "M365_G5_GOV",
- "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d",
+ "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 w/o WDATP/CAS Unified",
- "String_Id": "M365_G5_GOV",
- "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d",
+ "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 w/o WDATP/CAS Unified",
- "String_Id": "M365_G5_GOV",
- "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d",
+ "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 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",
+ "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 w/o WDATP/CAS Unified",
- "String_Id": "M365_G5_GOV",
- "GUID": "b0f809d5-a662-4391-a5aa-136e9c565b9d",
+ "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": "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",
+ "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": "MESH_AVATARS_FOR_TEAMS",
- "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02",
- "Service_Plans_Included_Friendly_Names": "Avatars for Teams"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Suite features",
- "String_Id": "M365_E5_SUITE_COMPONENTS",
- "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
- "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS",
- "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8",
- "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Suite features",
- "String_Id": "M365_E5_SUITE_COMPONENTS",
- "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Suite features",
- "String_Id": "M365_E5_SUITE_COMPONENTS",
- "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
- "Service_Plan_Name": "CustomerLockboxA_Enterprise",
- "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Suite features",
- "String_Id": "M365_E5_SUITE_COMPONENTS",
- "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
- "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
- "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
- "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Suite features",
- "String_Id": "M365_E5_SUITE_COMPONENTS",
- "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
- "Service_Plan_Name": "Content_Explorer",
- "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Suite features",
- "String_Id": "M365_E5_SUITE_COMPONENTS",
- "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
- "Service_Plan_Name": "CLIPCHAMP",
- "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472",
- "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Suite features",
- "String_Id": "M365_E5_SUITE_COMPONENTS",
- "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
- "Service_Plan_Name": "INSIDER_RISK",
- "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
- "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Suite features",
- "String_Id": "M365_E5_SUITE_COMPONENTS",
- "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
- "Service_Plan_Name": "MICROSOFT_LOOP",
- "Service_Plan_Id": "c4b8c31a-fb44-4c65-9837-a21f55fcabda",
- "Service_Plans_Included_Friendly_Names": "Microsoft Loop"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Suite features",
- "String_Id": "M365_E5_SUITE_COMPONENTS",
- "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
- "Service_Plan_Name": "ML_CLASSIFICATION",
- "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
- "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Suite features",
- "String_Id": "M365_E5_SUITE_COMPONENTS",
- "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
- "Service_Plan_Name": "SAFEDOCS",
- "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
- "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Suite features",
- "String_Id": "M365_E5_SUITE_COMPONENTS",
- "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
- "Service_Plan_Name": "PURVIEW_DISCOVERY",
- "Service_Plan_Id": "c948ea65-2053-4a5a-8a62-9eaaaf11b522",
- "Service_Plans_Included_Friendly_Names": "Purview Discovery"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Suite features",
- "String_Id": "M365_E5_SUITE_COMPONENTS",
- "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
- "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
- "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Suite features",
- "String_Id": "M365_E5_SUITE_COMPONENTS",
- "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
- "Service_Plan_Name": "UNIVERSAL_PRINT_01",
- "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
- "Service_Plans_Included_Friendly_Names": "Universal Print"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Suite features",
- "String_Id": "M365_E5_SUITE_COMPONENTS",
- "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
- "Service_Plan_Name": "Windows_Autopatch",
- "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3",
- "Service_Plans_Included_Friendly_Names": "Windows Autopatch"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Suite features",
- "String_Id": "M365_E5_SUITE_COMPONENTS",
- "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
- "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
- "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
- "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ "Product_Display_Name": "Microsoft 365 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
},
{
- "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 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 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 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 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 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 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 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 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 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 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 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 G3 - Unattended License for GCC",
- "String_Id": "M365_G3_RPA1_GOV",
- "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0",
+ "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": "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 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 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 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 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 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 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 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 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 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 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 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 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 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 G3 - Unattended License for GCC",
- "String_Id": "M365_G3_RPA1_GOV",
- "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0",
+ "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 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 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 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 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 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 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 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 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 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 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 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 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 G3 - Unattended License for GCC",
- "String_Id": "M365_G3_RPA1_GOV",
- "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0",
+ "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 G3 - Unattended License for GCC",
- "String_Id": "M365_G3_RPA1_GOV",
- "GUID": "5c739a73-651d-4c2c-8a4e-fe4ba12253b0",
+ "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": "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": "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 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 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 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 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 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 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 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 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 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 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 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": "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": "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": "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": "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": "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 Lighthouse",
@@ -29216,84 +29176,76 @@
"Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
},
{
- "Product_Display_Name": "Microsoft Sales Copilot",
- "String_Id": "Microsoft_Viva_Sales",
- "GUID": "3227bcb2-8448-4f81-b3c2-8c2074e15a2a",
- "Service_Plan_Name": "Microsoft_Viva_Sales_PremiumTrial",
- "Service_Plan_Id": "8ba1ff15-7bf6-4620-b65c-ecedb6942766",
- "Service_Plans_Included_Friendly_Names": "Microsoft Sales Copilot Premium & Trial"
- },
- {
- "Product_Display_Name": "Microsoft Sales Copilot",
- "String_Id": "Microsoft_Viva_Sales",
- "GUID": "3227bcb2-8448-4f81-b3c2-8c2074e15a2a",
- "Service_Plan_Name": "Microsoft_Viva_Sales_PowerAutomate",
- "Service_Plan_Id": "a933a62f-c3fb-48e5-a0b7-ac92b94b4420",
- "Service_Plans_Included_Friendly_Names": "Microsoft Sales Copilot Premium with Power Automate"
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "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": "RMS_S_PREMIUM2",
- "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
+ "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": "LOCKBOX_ENTERPRISE",
- "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ "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": "MIP_S_Exchange",
- "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
- "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ "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": "BPOS_S_DlpAddOn",
- "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed",
- "Service_Plans_Included_Friendly_Names": "Data Loss Prevention"
+ "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": "EXCHANGE_S_ARCHIVE_ADDON",
- "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793",
- "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving for Exchange Online"
+ "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": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ "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": "Content_Explorer",
- "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ "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": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Standard"
+ "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",
@@ -29307,89 +29259,97 @@
"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"
+ "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": "M365_ADVANCED_AUDITING",
- "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ "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": "MTP",
- "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ "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": "ADALLOM_S_STANDALONE",
- "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security"
+ "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": "COMMUNICATIONS_DLP",
- "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ "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": "CUSTOMER_KEY",
- "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
- "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ "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": "WINDEFATP",
- "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender For Endpoint"
+ "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": "ATA",
- "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
+ "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": "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": "ATP_ENTERPRISE",
- "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ "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": "THREAT_INTELLIGENCE",
- "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ "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": "MICROSOFTENDPOINTDLP",
- "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
+ "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 Security and Compliance for Firstline Workers",
@@ -29403,25 +29363,25 @@
"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"
+ "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": "PAM_ENTERPRISE",
- "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
- "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ "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 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 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 Business Center",
@@ -29432,156 +29392,156 @@
"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 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 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 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": "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": "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": "DYN365_CDS_VIRAL",
+ "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "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": "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 Copilot for Microsoft 365",
- "String_Id": "Microsoft_365_Copilot",
- "GUID": "639dec6b-bb19-468b-871c-c5c441c4b0cb",
+ "String_Id": "M365_Copilot",
+ "GUID": "a809996b-059e-42e2-9866-db24b99a9782",
"Service_Plan_Name": "M365_COPILOT_BUSINESS_CHAT",
"Service_Plan_Id": "3f30311c-6b1e-48a4-ab79-725b469da960",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Chat"
+ "Service_Plans_Included_Friendly_Names": "Microsoft Copilot with Graph-grounded chat"
},
{
"Product_Display_Name": "Microsoft Copilot for Microsoft 365",
- "String_Id": "Microsoft_365_Copilot",
- "GUID": "639dec6b-bb19-468b-871c-c5c441c4b0cb",
+ "String_Id": "M365_Copilot",
+ "GUID": "a809996b-059e-42e2-9866-db24b99a9782",
+ "Service_Plan_Name": "M365_COPILOT_INTELLIGENT_SEARCH",
+ "Service_Plan_Id": "931e4a88-a67f-48b5-814f-16a5f1e6028d",
+ "Service_Plans_Included_Friendly_Names": "Intelligent Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft Copilot for Microsoft 365",
+ "String_Id": "M365_Copilot",
+ "GUID": "a809996b-059e-42e2-9866-db24b99a9782",
"Service_Plan_Name": "M365_COPILOT_TEAMS",
"Service_Plan_Id": "b95945de-b3bd-46db-8437-f2beb6ea2347",
"Service_Plans_Included_Friendly_Names": "Microsoft 365 Copilot in Microsoft Teams"
},
{
"Product_Display_Name": "Microsoft Copilot for Microsoft 365",
- "String_Id": "Microsoft_365_Copilot",
- "GUID": "639dec6b-bb19-468b-871c-c5c441c4b0cb",
+ "String_Id": "M365_Copilot",
+ "GUID": "a809996b-059e-42e2-9866-db24b99a9782",
"Service_Plan_Name": "M365_COPILOT_APPS",
"Service_Plan_Id": "a62f8878-de10-42f3-b68f-6149a25ceb97",
"Service_Plans_Included_Friendly_Names": "Microsoft 365 Copilot in Productivity Apps"
},
{
"Product_Display_Name": "Microsoft Copilot for Microsoft 365",
- "String_Id": "Microsoft_365_Copilot",
- "GUID": "639dec6b-bb19-468b-871c-c5c441c4b0cb",
+ "String_Id": "M365_Copilot",
+ "GUID": "a809996b-059e-42e2-9866-db24b99a9782",
"Service_Plan_Name": "M365_COPILOT_CONNECTORS",
"Service_Plan_Id": "89f1c4c8-0878-40f7-804d-869c9128ab5d",
"Service_Plans_Included_Friendly_Names": "Power Platform Connectors in Microsoft 365 Copilot"
},
{
- "Product_Display_Name": "Microsoft 365 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
- "Service_Plan_Name": "COPILOT_STUDIO_IN_COPILOT_FOR_M365",
- "Service_Plan_Id": "fe6c28b3-d468-44ea-bbd0-a10a5167435c",
- "Service_Plans_Included_Friendly_Names": "Copilot Studio in Copilot for M365"
+ "Product_Display_Name": "Microsoft Copilot for Microsoft 365",
+ "String_Id": "M365_Copilot",
+ "GUID": "a809996b-059e-42e2-9866-db24b99a9782",
+ "Service_Plan_Name": "GRAPH_CONNECTORS_COPILOT",
+ "Service_Plan_Id": "82d30987-df9b-4486-b146-198b21d164c7",
+ "Service_Plans_Included_Friendly_Names": "Graph Connectors in Microsoft 365 Copilot"
},
{
- "Product_Display_Name": "Microsoft 365 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "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 365 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "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 365 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
- "Service_Plan_Name": "M365_COPILOT_SHAREPOINT",
- "Service_Plan_Id": "0aedf20c-091d-420b-aadf-30c042609612",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Copilot for SharePoint"
+ "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 365 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "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 365 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
- "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 365 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
- "Service_Plan_Name": "Microsoft_Copilot_for_Sales",
- "Service_Plan_Id": "a2194428-ead1-4fc1-bb81-ab8675125f42",
- "Service_Plans_Included_Friendly_Names": "Microsoft Copilot for Sales"
- },
- {
- "Product_Display_Name": "Microsoft 365 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
- "Service_Plan_Name": "Microsoft_Copilot_for_Sales_PowerAutomate",
- "Service_Plan_Id": "0c1c2af2-6c51-43c7-9c55-fa487ac147ff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Copilot for Sales with Power Automate"
- },
- {
- "Product_Display_Name": "Microsoft 365 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
- "Service_Plan_Name": "M365_COPILOT_BUSINESS_CHAT",
- "Service_Plan_Id": "3f30311c-6b1e-48a4-ab79-725b469da960",
- "Service_Plans_Included_Friendly_Names": "Microsoft Copilot with Graph-grounded chat"
- },
- {
- "Product_Display_Name": "Microsoft 365 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
- "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 365 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
- "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 365 Copilot for Sales",
- "String_Id": "Microsoft_Copilot_for_Sales",
- "GUID": "15f2e9fc-b782-4f73-bf51-81d8b7fff6f4",
+ "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 Copilot Studio",
- "String_Id": "Power_Virtual_Agents",
- "GUID": "75564b9c-51e8-431c-b8fe-d472d5a545c8",
- "Service_Plan_Name": "CDS_VIRTUAL_AGENT_BASE_MESSAGES",
- "Service_Plan_Id": "5dd1819f-0de7-487f-985b-c450a4c9cc1d",
- "Service_Plans_Included_Friendly_Names": "Dataverse for Microsoft Copilot Studio"
+ "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 Studio",
@@ -29591,6 +29551,14 @@
"Service_Plan_Id": "7b0640f1-63cc-4f83-b8c6-0a4d78b8b988",
"Service_Plans_Included_Friendly_Names": "Microsoft Copilot Studio – Messages"
},
+ {
+ "Product_Display_Name": "Microsoft Copilot Studio",
+ "String_Id": "Power_Virtual_Agents",
+ "GUID": "75564b9c-51e8-431c-b8fe-d472d5a545c8",
+ "Service_Plan_Name": "CDS_VIRTUAL_AGENT_BASE_MESSAGES",
+ "Service_Plan_Id": "5dd1819f-0de7-487f-985b-c450a4c9cc1d",
+ "Service_Plans_Included_Friendly_Names": "Dataverse for Microsoft Copilot Studio"
+ },
{
"Product_Display_Name": "Microsoft Copilot Studio",
"String_Id": "Power_Virtual_Agents",
@@ -29623,30 +29591,6 @@
"Service_Plan_Id": "4b9ec373-ed29-4192-8a47-c9ab9048b079",
"Service_Plans_Included_Friendly_Names": "Power Automate for Microsoft Copilot Studio"
},
- {
- "Product_Display_Name": "Microsoft Copilot Studio_USGOV_GCCHIGH",
- "String_Id": "Power_Virtual_Agents_USGOV_GCCHIGH",
- "GUID": "84ed7c30-3738-43a0-aa03-cf6c577d8dbb",
- "Service_Plan_Name": "CDS_VIRTUAL_AGENT_BASE_MESSAGES",
- "Service_Plan_Id": "5dd1819f-0de7-487f-985b-c450a4c9cc1d",
- "Service_Plans_Included_Friendly_Names": "CDS_VIRTUAL_AGENT_BASE_MESSAGES"
- },
- {
- "Product_Display_Name": "Microsoft Copilot Studio_USGOV_GCCHIGH",
- "String_Id": "Power_Virtual_Agents_USGOV_GCCHIGH",
- "GUID": "84ed7c30-3738-43a0-aa03-cf6c577d8dbb",
- "Service_Plan_Name": "VIRTUAL_AGENT_BASE_MESSAGES",
- "Service_Plan_Id": "7b0640f1-63cc-4f83-b8c6-0a4d78b8b988",
- "Service_Plans_Included_Friendly_Names": "VIRTUAL_AGENT_BASE_MESSAGES"
- },
- {
- "Product_Display_Name": "Microsoft Copilot Studio_USGOV_GCCHIGH",
- "String_Id": "Power_Virtual_Agents_USGOV_GCCHIGH",
- "GUID": "84ed7c30-3738-43a0-aa03-cf6c577d8dbb",
- "Service_Plan_Name": "FLOW_VIRTUAL_AGENT_BASE_MESSAGES",
- "Service_Plan_Id": "4b9ec373-ed29-4192-8a47-c9ab9048b079",
- "Service_Plans_Included_Friendly_Names": "FLOW_VIRTUAL_AGENT_BASE_MESSAGES"
- },
{
"Product_Display_Name": "Microsoft Copilot Studio User License",
"String_Id": "VIRTUAL_AGENT_USL",
@@ -29675,25 +29619,25 @@
"Product_Display_Name": "Microsoft Copilot Studio User License for GCC",
"String_Id": "VIRTUAL_AGENT_USL_GCC",
"GUID": "f1de227b-f1bd-4959-bd80-b80547095e6d",
- "Service_Plan_Name": "CDS_Virtual_Agent_Usl_Gov",
- "Service_Plan_Id": "bcc0702e-ba97-48d9-ae04-fa8689c53bba",
- "Service_Plans_Included_Friendly_Names": "Dataverse for Virtual Agent USL for GCC"
+ "Service_Plan_Name": "Virtual_Agent_Usl_Gov",
+ "Service_Plan_Id": "00b6f978-853b-4041-9de0-a233d18669aa",
+ "Service_Plans_Included_Friendly_Names": "Virtual Agent for GCC"
},
{
"Product_Display_Name": "Microsoft Copilot Studio User License for GCC",
"String_Id": "VIRTUAL_AGENT_USL_GCC",
"GUID": "f1de227b-f1bd-4959-bd80-b80547095e6d",
- "Service_Plan_Name": "Virtual_Agent_Usl_Gov",
- "Service_Plan_Id": "00b6f978-853b-4041-9de0-a233d18669aa",
- "Service_Plans_Included_Friendly_Names": "Virtual Agent for GCC"
+ "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": "Microsoft Copilot Studio 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"
+ "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": "Microsoft Copilot Studio User License for GCC",
@@ -29707,57 +29651,65 @@
"Product_Display_Name": "Microsoft Copilot Studio 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"
+ "Service_Plan_Name": "CDS_Virtual_Agent_Usl_Gov",
+ "Service_Plan_Id": "bcc0702e-ba97-48d9-ae04-fa8689c53bba",
+ "Service_Plans_Included_Friendly_Names": "Dataverse for Virtual Agent USL for GCC"
},
{
"Product_Display_Name": "Microsoft Copilot Studio 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"
+ "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": "Microsoft Copilot Studio User License for GCC High_USGOV_GCCHIGH",
"String_Id": "VIRTUAL_AGENT_USL_AR_USGOV_GCCHIGH",
"GUID": "470845c0-6884-47e1-89d0-9d6244a77b44",
- "Service_Plan_Name": "Virtual_Agent_Usl_Gov_High",
- "Service_Plan_Id": "7ffee552-ebe8-4725-8678-5c1775c05847",
- "Service_Plans_Included_Friendly_Names": "Virtual Agent for GCC High"
+ "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": "Microsoft Copilot Studio User License for GCC High_USGOV_GCCHIGH",
"String_Id": "VIRTUAL_AGENT_USL_AR_USGOV_GCCHIGH",
"GUID": "470845c0-6884-47e1-89d0-9d6244a77b44",
- "Service_Plan_Name": "CDS_VIRTUAL_AGENT_USL",
- "Service_Plan_Id": "cb867b3c-7f38-4d0d-99ce-e29cd69812c8",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "Service_Plan_Name": "Flow_Virtual_Agent_Usl_Gov_High",
+ "Service_Plan_Id": "aaae1744-dc7a-4811-9dd0-2bf926ff9d80",
+ "Service_Plans_Included_Friendly_Names": "Flow for Virtual Agent for GCC High"
},
{
"Product_Display_Name": "Microsoft Copilot Studio User License for GCC High_USGOV_GCCHIGH",
"String_Id": "VIRTUAL_AGENT_USL_AR_USGOV_GCCHIGH",
"GUID": "470845c0-6884-47e1-89d0-9d6244a77b44",
- "Service_Plan_Name": "FLOW_Virtual_Agent_Base_Gov_High",
- "Service_Plan_Id": "225e52e5-7bbf-4793-8fb1-4307a7a1ae8e",
- "Service_Plans_Included_Friendly_Names": "Flow for Virtual Agent for GCC High"
+ "Service_Plan_Name": "Power_Virtual_Agent_Usl_GCC_High",
+ "Service_Plan_Id": "3fbe8cdf-c735-44bf-bbfa-646724af4bb4",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agent USL for GCC High"
},
{
"Product_Display_Name": "Microsoft Copilot Studio User License for GCC High_USGOV_GCCHIGH",
"String_Id": "VIRTUAL_AGENT_USL_AR_USGOV_GCCHIGH",
"GUID": "470845c0-6884-47e1-89d0-9d6244a77b44",
- "Service_Plan_Name": "Flow_Virtual_Agent_Usl_Gov_High",
- "Service_Plan_Id": "aaae1744-dc7a-4811-9dd0-2bf926ff9d80",
- "Service_Plans_Included_Friendly_Names": "Flow for Virtual Agent for GCC High"
+ "Service_Plan_Name": "Virtual_Agent_Usl_Gov_High",
+ "Service_Plan_Id": "7ffee552-ebe8-4725-8678-5c1775c05847",
+ "Service_Plans_Included_Friendly_Names": "Virtual Agent for GCC High"
},
{
"Product_Display_Name": "Microsoft Copilot Studio User License for GCC High_USGOV_GCCHIGH",
"String_Id": "VIRTUAL_AGENT_USL_AR_USGOV_GCCHIGH",
"GUID": "470845c0-6884-47e1-89d0-9d6244a77b44",
- "Service_Plan_Name": "Power_Virtual_Agent_Usl_GCC_High",
- "Service_Plan_Id": "3fbe8cdf-c735-44bf-bbfa-646724af4bb4",
- "Service_Plans_Included_Friendly_Names": "Power Virtual Agent USL for GCC High"
+ "Service_Plan_Name": "FLOW_Virtual_Agent_Base_Gov_High",
+ "Service_Plan_Id": "225e52e5-7bbf-4793-8fb1-4307a7a1ae8e",
+ "Service_Plans_Included_Friendly_Names": "Flow for Virtual Agent for GCC High"
+ },
+ {
+ "Product_Display_Name": "Microsoft Copilot Studio 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_CCI_BOTS"
},
{
"Product_Display_Name": "Microsoft Copilot Studio Viral Trial",
@@ -29776,116 +29728,76 @@
"Service_Plans_Included_Friendly_Names": "CCIBOTS_PRIVPREV_VIRAL"
},
{
- "Product_Display_Name": "Microsoft Copilot Studio 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_CCI_BOTS"
- },
- {
- "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 Copilot Studio_USGOV_GCCHIGH",
+ "String_Id": "Power_Virtual_Agents_USGOV_GCCHIGH",
+ "GUID": "84ed7c30-3738-43a0-aa03-cf6c577d8dbb",
+ "Service_Plan_Name": "VIRTUAL_AGENT_BASE_MESSAGES",
+ "Service_Plan_Id": "7b0640f1-63cc-4f83-b8c6-0a4d78b8b988",
+ "Service_Plans_Included_Friendly_Names": "VIRTUAL_AGENT_BASE_MESSAGES"
},
{
- "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 Copilot Studio_USGOV_GCCHIGH",
+ "String_Id": "Power_Virtual_Agents_USGOV_GCCHIGH",
+ "GUID": "84ed7c30-3738-43a0-aa03-cf6c577d8dbb",
+ "Service_Plan_Name": "CDS_VIRTUAL_AGENT_BASE_MESSAGES",
+ "Service_Plan_Id": "5dd1819f-0de7-487f-985b-c450a4c9cc1d",
+ "Service_Plans_Included_Friendly_Names": "CDS_VIRTUAL_AGENT_BASE_MESSAGES"
},
{
- "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 Copilot Studio_USGOV_GCCHIGH",
+ "String_Id": "Power_Virtual_Agents_USGOV_GCCHIGH",
+ "GUID": "84ed7c30-3738-43a0-aa03-cf6c577d8dbb",
+ "Service_Plan_Name": "FLOW_VIRTUAL_AGENT_BASE_MESSAGES",
+ "Service_Plan_Id": "4b9ec373-ed29-4192-8a47-c9ab9048b079",
+ "Service_Plans_Included_Friendly_Names": "FLOW_VIRTUAL_AGENT_BASE_MESSAGES"
},
{
"Product_Display_Name": "Microsoft Defender for Business",
"String_Id": "MDE_SMB",
"GUID": "5e1e7702-a2b7-4360-8d07-2f515792896f",
- "Service_Plan_Name": "Intune_Defender",
- "Service_Plan_Id": "1689aade-3d6a-4bfc-b017-46d2672df5ad",
- "Service_Plans_Included_Friendly_Names": "MDE_SecurityManagement"
+ "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 Defender for Business",
"String_Id": "MDE_SMB",
"GUID": "5e1e7702-a2b7-4360-8d07-2f515792896f",
- "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)"
+ "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 Defender for Business",
"String_Id": "MDE_SMB",
"GUID": "5e1e7702-a2b7-4360-8d07-2f515792896f",
- "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)"
+ "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 Defender for Business",
"String_Id": "MDE_SMB",
"GUID": "5e1e7702-a2b7-4360-8d07-2f515792896f",
- "Service_Plan_Name": "MDE_SMB",
- "Service_Plan_Id": "bfc1bbd9-981b-4f71-9b82-17c35fd0e2a4",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Business"
+ "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",
"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"
+ "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",
"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"
+ "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 F2",
@@ -29899,17 +29811,17 @@
"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"
+ "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",
"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"
+ "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 for EDU",
@@ -29923,9 +29835,9 @@
"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"
+ "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 P2_XPLAT",
@@ -29939,57 +29851,33 @@
"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"
+ "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": "CRMPLAN2",
- "Service_Plan_Id": "bf36ca64-95c6-4918-9275-eb9f4ce2c04f",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT DYNAMICS CRM ONLINE BASIC"
+ "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": "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 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 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 Identity",
@@ -30008,12 +29896,12 @@
"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)",
+ "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": "Microsoft Defender for Office 365 (Plan 1) Faculty",
@@ -30031,14 +29919,6 @@
"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 1) Student",
"String_Id": "ATP_ENTERPRISE_STUDENT",
@@ -30056,20 +29936,44 @@
"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",
+ "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)",
+ "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 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) 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"
+ "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",
@@ -30079,6 +29983,14 @@
"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 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 Vulnerability Management",
"String_Id": "TVM_Premium_Standalone",
@@ -30096,20 +30008,20 @@
"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 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 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 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",
@@ -30135,6 +30047,126 @@
"Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
"Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
},
+ {
+ "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": "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 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": "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": "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": "POWERAPPS_DYN_APPS",
+ "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
+ "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
+ },
+ {
+ "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": "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 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 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": "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": "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 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 Governance",
"String_Id": "Microsoft_Entra_ID_Governance",
@@ -30144,20 +30176,140 @@
"Service_Plans_Included_Friendly_Names": "Entra Identity Governance"
},
{
- "Product_Display_Name": "Microsoft Entra Suite Add-on for Microsoft Entra ID P2",
- "String_Id": "Microsoft_Entra_Suite_Step_Up_for_Microsoft_Entra_ID_P2",
- "GUID": "2ef3064c-c95c-426c-96dd-9ffeaa2f2c37",
- "Service_Plan_Name": "Entra_Premium_Internet_Access",
- "Service_Plan_Id": "8d23cb83-ab07-418f-8517-d7aca77307dc",
- "Service_Plans_Included_Friendly_Names": "Microsoft Entra Internet Access"
+ "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 Suite Add-on for Microsoft Entra ID P2",
- "String_Id": "Microsoft_Entra_Suite_Step_Up_for_Microsoft_Entra_ID_P2",
- "GUID": "2ef3064c-c95c-426c-96dd-9ffeaa2f2c37",
- "Service_Plan_Name": "Entra_Premium_Private_Access",
- "Service_Plan_Id": "f057aab1-b184-49b2-85c0-881b02a405c5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Entra Private Access"
+ "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",
+ "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 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 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_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": "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_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 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": "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": "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 Suite Add-on for Microsoft Entra ID P2",
@@ -30175,6 +30327,22 @@
"Service_Plan_Id": "e866a266-3cff-43a3-acca-0c90a7e00c8b",
"Service_Plans_Included_Friendly_Names": "Entra Identity Governance"
},
+ {
+ "Product_Display_Name": "Microsoft Entra Suite Add-on for Microsoft Entra ID P2",
+ "String_Id": "Microsoft_Entra_Suite_Step_Up_for_Microsoft_Entra_ID_P2",
+ "GUID": "2ef3064c-c95c-426c-96dd-9ffeaa2f2c37",
+ "Service_Plan_Name": "Entra_Premium_Private_Access",
+ "Service_Plan_Id": "f057aab1-b184-49b2-85c0-881b02a405c5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Entra Private Access"
+ },
+ {
+ "Product_Display_Name": "Microsoft Entra Suite Add-on for Microsoft Entra ID P2",
+ "String_Id": "Microsoft_Entra_Suite_Step_Up_for_Microsoft_Entra_ID_P2",
+ "GUID": "2ef3064c-c95c-426c-96dd-9ffeaa2f2c37",
+ "Service_Plan_Name": "Entra_Premium_Internet_Access",
+ "Service_Plan_Id": "8d23cb83-ab07-418f-8517-d7aca77307dc",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Entra Internet Access"
+ },
{
"Product_Display_Name": "Microsoft Entra Workload ID",
"String_Id": "Workload_Identities_P2",
@@ -30187,9 +30355,9 @@
"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"
+ "Service_Plan_Name": "PURVIEW_DISCOVERY",
+ "Service_Plan_Id": "c948ea65-2053-4a5a-8a62-9eaaaf11b522",
+ "Service_Plans_Included_Friendly_Names": "Purview Discovery"
},
{
"Product_Display_Name": "Microsoft Fabric (Free)",
@@ -30203,9 +30371,9 @@
"Product_Display_Name": "Microsoft Fabric (Free)",
"String_Id": "POWER_BI_STANDARD",
"GUID": "a403ebcc-fae0-4ca2-8c8c-7a907fd6c235",
- "Service_Plan_Name": "PURVIEW_DISCOVERY",
- "Service_Plan_Id": "c948ea65-2053-4a5a-8a62-9eaaaf11b522",
- "Service_Plans_Included_Friendly_Names": "Purview Discovery"
+ "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) for faculty",
@@ -30227,17 +30395,17 @@
"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"
+ "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": "BI_AZURE_P0",
- "Service_Plan_Id": "2049e525-b859-401b-b2a0-e0a31c4b1fe4",
- "Service_Plans_Included_Friendly_Names": "BI_AZURE_P0"
+ "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 Imagine Academy",
@@ -30259,14 +30427,22 @@
"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"
+ "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",
"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 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"
@@ -30280,60 +30456,140 @@
"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": "INTUNE_A_GOV",
+ "Service_Plan_Id": "d216f254-796f-4dab-bbfa-710686e646b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune G"
+ },
+ {
+ "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 Plan 1 A VL",
+ "String_Id": "INTUNE_A_VL",
+ "GUID": "99fc2803-fa72-42d3-ae78-b055e177d275",
+ "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 Intune Plan 1 A VL",
+ "String_Id": "INTUNE_A_VL",
+ "GUID": "99fc2803-fa72-42d3-ae78-b055e177d275",
+ "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 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 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 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": "AAD_SMB",
+ "Service_Plan_Id": "de377cbc-0019-4ec2-b77c-3f223947e102",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID"
+ },
+ {
+ "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 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 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 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 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 Plan 1 A VL",
- "String_Id": "INTUNE_A_VL",
- "GUID": "99fc2803-fa72-42d3-ae78-b055e177d275",
- "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 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 Plan 1 A VL",
- "String_Id": "INTUNE_A_VL",
- "GUID": "99fc2803-fa72-42d3-ae78-b055e177d275",
- "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 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 Plan 1 A VL_USGOV_GCCHIGH",
- "String_Id": "INTUNE_A_VL_USGOV_GCCHIGH",
- "GUID": "b4288abe-01be-47d9-ad20-311d6e83fc24",
+ "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 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": "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 for Developer",
@@ -30347,25 +30603,49 @@
"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 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": "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 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 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 (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 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 Apps Plan 2 Trial",
@@ -30399,14 +30679,6 @@
"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",
@@ -30431,14 +30703,6 @@
"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",
@@ -30451,110 +30715,14 @@
"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",
+ "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)"
@@ -30563,65 +30731,65 @@
"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"
+ "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": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES",
- "Service_Plan_Id": "56e3d4ca-2e31-4c3f-8d57-89c1d363503b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Relationship Sales solution"
+ "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": "NBENTERPRISE",
- "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6",
- "Service_Plans_Included_Friendly_Names": "Retired - Microsoft Social Engagement"
+ "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": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ "Service_Plan_Name": "Microsoft_Viva_Sales_PremiumTrial",
+ "Service_Plan_Id": "8ba1ff15-7bf6-4620-b65c-ecedb6942766",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium & 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_PremiumTrial",
- "Service_Plan_Id": "8ba1ff15-7bf6-4620-b65c-ecedb6942766",
- "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium & Trial"
+ "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_PowerAutomate",
- "Service_Plan_Id": "a933a62f-c3fb-48e5-a0b7-ac92b94b4420",
- "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium with Power Automate"
+ "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": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ "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": "PROJECT_ESSENTIALS",
- "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
- "Service_Plans_Included_Friendly_Names": "Project Online Essentials"
+ "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",
@@ -30635,17 +30803,33 @@
"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"
+ "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 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"
+ "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 Sales Copilot",
+ "String_Id": "Microsoft_Viva_Sales",
+ "GUID": "3227bcb2-8448-4f81-b3c2-8c2074e15a2a",
+ "Service_Plan_Name": "Microsoft_Viva_Sales_PremiumTrial",
+ "Service_Plan_Id": "8ba1ff15-7bf6-4620-b65c-ecedb6942766",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Sales Copilot Premium & Trial"
+ },
+ {
+ "Product_Display_Name": "Microsoft Sales Copilot",
+ "String_Id": "Microsoft_Viva_Sales",
+ "GUID": "3227bcb2-8448-4f81-b3c2-8c2074e15a2a",
+ "Service_Plan_Name": "Microsoft_Viva_Sales_PowerAutomate",
+ "Service_Plan_Id": "a933a62f-c3fb-48e5-a0b7-ac92b94b4420",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Sales Copilot Premium with Power Automate"
},
{
"Product_Display_Name": "Microsoft Stream",
@@ -30659,7 +30843,7 @@
"Product_Display_Name": "Microsoft Stream",
"String_Id": "STREAM",
"GUID": "1f2f344a-700d-42c9-9427-5cea1d5d7ba6",
- "Service_Plan_Name": "MICROSOFTSTREAM",
+ "Service_Plan_Name": "MICROSOFT STREAM",
"Service_Plan_Id": "acffdce6-c30f-4dc2-81c0-372e33c515ec",
"Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM"
},
@@ -30683,17 +30867,17 @@
"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"
+ "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 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"
+ "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 Sustainability Manager Premium",
@@ -30763,17 +30947,17 @@
"Product_Display_Name": "Microsoft Sustainability Manager USL Essentials",
"String_Id": "Microsoft_Cloud_for_Sustainability_USL",
"GUID": "ece037b4-a52b-4cf8-93ea-649e5d83767a",
- "Service_Plan_Name": "POWER_APPS_FOR_MCS_USL",
- "Service_Plan_Id": "5ffd371c-037a-41a2-98a3-6452f8c5de17",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Cloud for Sustainability USL"
+ "Service_Plan_Name": "POWER_AUTOMATE_FOR_MCS_USL",
+ "Service_Plan_Id": "ccbe468e-7973-442c-8ec4-5fbe16438711",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Cloud for Sustainability USL"
},
{
"Product_Display_Name": "Microsoft Sustainability Manager USL Essentials",
"String_Id": "Microsoft_Cloud_for_Sustainability_USL",
"GUID": "ece037b4-a52b-4cf8-93ea-649e5d83767a",
- "Service_Plan_Name": "POWER_AUTOMATE_FOR_MCS_USL",
- "Service_Plan_Id": "ccbe468e-7973-442c-8ec4-5fbe16438711",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Cloud for Sustainability USL"
+ "Service_Plan_Name": "POWER_APPS_FOR_MCS_USL",
+ "Service_Plan_Id": "5ffd371c-037a-41a2-98a3-6452f8c5de17",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Cloud for Sustainability USL"
},
{
"Product_Display_Name": "Microsoft Sustainability Manager USL Essentials",
@@ -30784,12 +30968,12 @@
"Service_Plans_Included_Friendly_Names": "Exchange Foundation"
},
{
- "Product_Display_Name": "Microsoft Teams Audio Conferencing with dial-out to USA/CAN",
- "String_Id": "Microsoft_Teams_Audio_Conferencing_select_dial_out",
- "GUID": "1c27243e-fb4d-42b1-ae8c-fe25c9616588",
- "Service_Plan_Name": "MCOMEETBASIC",
- "Service_Plan_Id": "9974d6cf-cd24-4ba2-921c-e2aa687da846",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams Audio Conferencing with dial-out to select geographies"
+ "Product_Display_Name": "Microsoft Teams (Free)",
+ "String_Id": "TEAMS_FREE",
+ "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70",
+ "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1",
+ "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3",
+ "Service_Plans_Included_Friendly_Names": "WHITEBOARD (FIRSTLINE)"
},
{
"Product_Display_Name": "Microsoft Teams (Free)",
@@ -30815,14 +30999,6 @@
"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",
@@ -30835,9 +31011,17 @@
"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)"
+ "Service_Plan_Name": "SHAREPOINTDESKLESS",
+ "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT KIOSK"
+ },
+ {
+ "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 Calling Plan pay-as-you-go (country zone 1 - US)",
@@ -30847,6 +31031,142 @@
"Service_Plan_Id": "156a1efe-17cd-4b03-9f17-2eb512298fb3",
"Service_Plans_Included_Friendly_Names": "Microsoft Teams Calling Plan pay-as-you-go - country zone 1"
},
+ {
+ "Product_Display_Name": "Microsoft Teams Calling Plan pay-as-you-go (country zone 1)",
+ "String_Id": "Microsoft_Teams_Calling_Plan_pay_as_you_go_(country_zone_1)",
+ "GUID": "dbd31205-338e-4dec-903d-44402e305e32",
+ "Service_Plan_Name": "MCOSMS_PAYG_1",
+ "Service_Plan_Id": "2b9bf4f4-ac52-42c5-8456-f70ee4924295",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 SMS Pay As You Go"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Calling Plan pay-as-you-go (country zone 1)",
+ "String_Id": "Microsoft_Teams_Calling_Plan_pay_as_you_go_(country_zone_1)",
+ "GUID": "dbd31205-338e-4dec-903d-44402e305e32",
+ "Service_Plan_Name": "MCOPSTN_PAYG_1",
+ "Service_Plan_Id": "156a1efe-17cd-4b03-9f17-2eb512298fb3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams Calling Plan pay-as-you-go - country zone 1"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams 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": "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": "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": "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": "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": "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 Domestic Calling Plan (240 min)",
"String_Id": "MCOPSTN_6",
@@ -30871,6 +31191,206 @@
"Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
"Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government"
},
+ {
+ "Product_Display_Name": "Microsoft Teams EEA",
+ "String_Id": "Microsoft_Teams_EEA_New",
+ "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
+ "Service_Plan_Name": "ONEDRIVE_BASIC_P2",
+ "Service_Plan_Id": "4495894f-534f-41ca-9d3b-0ebf1220a423",
+ "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Basic 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams EEA",
+ "String_Id": "Microsoft_Teams_EEA_New",
+ "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
+ "Service_Plan_Name": "MCOIMP",
+ "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams EEA",
+ "String_Id": "Microsoft_Teams_EEA_New",
+ "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
+ "Service_Plan_Name": "FORMS_PLAN_E1",
+ "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams EEA",
+ "String_Id": "Microsoft_Teams_EEA_New",
+ "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams EEA",
+ "String_Id": "Microsoft_Teams_EEA_New",
+ "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams EEA",
+ "String_Id": "Microsoft_Teams_EEA_New",
+ "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams EEA",
+ "String_Id": "Microsoft_Teams_EEA_New",
+ "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams EEA",
+ "String_Id": "Microsoft_Teams_EEA_New",
+ "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
+ "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS",
+ "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02",
+ "Service_Plans_Included_Friendly_Names": "Avatars for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams EEA",
+ "String_Id": "Microsoft_Teams_EEA_New",
+ "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
+ "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS",
+ "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8",
+ "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams EEA",
+ "String_Id": "Microsoft_Teams_EEA_New",
+ "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
+ "Service_Plan_Name": "EXCHANGE_S_DESKLESS",
+ "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams EEA",
+ "String_Id": "Microsoft_Teams_EEA_New",
+ "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams EEA",
+ "String_Id": "Microsoft_Teams_EEA_New",
+ "GUID": "7e74bd05-2c47-404e-829a-ba95c66fe8e5",
+ "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
+ "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
+ "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Enterprise",
+ "String_Id": "Microsoft_Teams_Enterprise_New",
+ "GUID": "7e31c0d9-9551-471d-836f-32ee72be4a01",
+ "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 Enterprise",
+ "String_Id": "Microsoft_Teams_Enterprise_New",
+ "GUID": "7e31c0d9-9551-471d-836f-32ee72be4a01",
+ "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 Enterprise",
+ "String_Id": "Microsoft_Teams_Enterprise_New",
+ "GUID": "7e31c0d9-9551-471d-836f-32ee72be4a01",
+ "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
+ "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
+ "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Enterprise",
+ "String_Id": "Microsoft_Teams_Enterprise_New",
+ "GUID": "7e31c0d9-9551-471d-836f-32ee72be4a01",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Enterprise",
+ "String_Id": "Microsoft_Teams_Enterprise_New",
+ "GUID": "7e31c0d9-9551-471d-836f-32ee72be4a01",
+ "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 Enterprise",
+ "String_Id": "Microsoft_Teams_Enterprise_New",
+ "GUID": "7e31c0d9-9551-471d-836f-32ee72be4a01",
+ "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 Enterprise",
+ "String_Id": "Microsoft_Teams_Enterprise_New",
+ "GUID": "7e31c0d9-9551-471d-836f-32ee72be4a01",
+ "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS",
+ "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02",
+ "Service_Plans_Included_Friendly_Names": "Avatars for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Enterprise",
+ "String_Id": "Microsoft_Teams_Enterprise_New",
+ "GUID": "7e31c0d9-9551-471d-836f-32ee72be4a01",
+ "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 Enterprise",
+ "String_Id": "Microsoft_Teams_Enterprise_New",
+ "GUID": "7e31c0d9-9551-471d-836f-32ee72be4a01",
+ "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS",
+ "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8",
+ "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Enterprise",
+ "String_Id": "Microsoft_Teams_Enterprise_New",
+ "GUID": "7e31c0d9-9551-471d-836f-32ee72be4a01",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Enterprise",
+ "String_Id": "Microsoft_Teams_Enterprise_New",
+ "GUID": "7e31c0d9-9551-471d-836f-32ee72be4a01",
+ "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 Enterprise",
+ "String_Id": "Microsoft_Teams_Enterprise_New",
+ "GUID": "7e31c0d9-9551-471d-836f-32ee72be4a01",
+ "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 Enterprise",
+ "String_Id": "Microsoft_Teams_Enterprise_New",
+ "GUID": "7e31c0d9-9551-471d-836f-32ee72be4a01",
+ "Service_Plan_Name": "PLACES_CORE",
+ "Service_Plan_Id": "1fe6227d-3e01-46d0-9510-0acad4ff6e94",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Places Core"
+ },
{
"Product_Display_Name": "Microsoft Teams Essentials",
"String_Id": "Teams_Ess",
@@ -30883,65 +31403,65 @@
"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"
+ "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": "FORMS_PLAN_E1",
- "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)"
+ "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 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"
+ "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": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ "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": "ONEDRIVE_BASIC_P2",
- "Service_Plan_Id": "4495894f-534f-41ca-9d3b-0ebf1220a423",
- "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Basic 2)"
+ "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": "MCOIMP",
- "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)"
+ "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 Exploratory",
@@ -30995,9 +31515,9 @@
"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"
+ "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",
@@ -31015,14 +31535,6 @@
"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",
@@ -31071,14 +31583,6 @@
"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",
@@ -31111,13 +31615,37 @@
"Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
"Service_Plans_Included_Friendly_Names": "YAMMER ENTERPRIS"
},
+ {
+ "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": "MCO_TEAMS_IW",
+ "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS"
+ },
{
"Product_Display_Name": "Microsoft Teams Exploratory Dept",
"String_Id": "Microsoft_Teams_Exploratory_Dept",
"GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8",
- "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS",
- "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02",
- "Service_Plans_Included_Friendly_Names": "Avatars for Teams"
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Exploratory Dept",
+ "String_Id": "Microsoft_Teams_Exploratory_Dept",
+ "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8",
+ "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION",
+ "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
+ "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365"
},
{
"Product_Display_Name": "Microsoft Teams Exploratory Dept",
@@ -31203,17 +31731,17 @@
"Product_Display_Name": "Microsoft Teams Exploratory Dept",
"String_Id": "Microsoft_Teams_Exploratory_Dept",
"GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS",
+ "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02",
+ "Service_Plans_Included_Friendly_Names": "Avatars for Teams"
},
{
"Product_Display_Name": "Microsoft Teams Exploratory Dept",
"String_Id": "Microsoft_Teams_Exploratory_Dept",
"GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
},
{
"Product_Display_Name": "Microsoft Teams Exploratory Dept",
@@ -31223,14 +31751,6 @@
"Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
"Service_Plans_Included_Friendly_Names": "Office for the Web"
},
- {
- "Product_Display_Name": "Microsoft Teams Exploratory Dept",
- "String_Id": "Microsoft_Teams_Exploratory_Dept",
- "GUID": "e0dfc8b9-9531-4ec8-94b4-9fec23b05fc8",
- "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION",
- "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
- "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365"
- },
{
"Product_Display_Name": "Microsoft Teams Exploratory Dept",
"String_Id": "Microsoft_Teams_Exploratory_Dept",
@@ -31303,6 +31823,38 @@
"Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813",
"Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
},
+ {
+ "Product_Display_Name": "Microsoft Teams Phone 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 Faculty",
+ "String_Id": "PHONESYSTEM_VIRTUALUSER_FACULTY",
+ "GUID": "0e142028-345e-45da-8d92-8bfd4093bbb9",
+ "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 Phone Standard",
"String_Id": "MCOEV",
@@ -31391,38 +31943,6 @@
"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 Faculty",
- "String_Id": "PHONESYSTEM_VIRTUALUSER_FACULTY",
- "GUID": "0e142028-345e-45da-8d92-8bfd4093bbb9",
- "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",
@@ -31447,14 +31967,6 @@
"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",
@@ -31471,6 +31983,14 @@
"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_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",
@@ -31527,14 +32047,6 @@
"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",
@@ -31576,12 +32088,12 @@
"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 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 without Audio Conferencing",
@@ -31591,6 +32103,14 @@
"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 Pro",
"String_Id": "Microsoft_Teams_Rooms_Pro",
@@ -31707,17 +32227,9 @@
"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"
+ "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",
@@ -31731,9 +32243,17 @@
"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"
+ "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": "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",
@@ -31827,17 +32347,17 @@
"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"
+ "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 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"
+ "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",
@@ -31851,17 +32371,9 @@
"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"
+ "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",
@@ -31875,178 +32387,26 @@
"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)"
+ "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": "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 Faculty",
- "String_Id": "MCOCAP_FACULTY ",
- "GUID": "420c7602-7f70-4895-9394-d3d679ea36fb ",
- "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 Faculty",
- "String_Id": "MCOCAP_FACULTY ",
- "GUID": "420c7602-7f70-4895-9394-d3d679ea36fb ",
- "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 for Faculty",
- "String_Id": "MCOCAP_FACULTY ",
- "GUID": "420c7602-7f70-4895-9394-d3d679ea36fb ",
- "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 for Faculty",
- "String_Id": "MCOCAP_FACULTY ",
- "GUID": "420c7602-7f70-4895-9394-d3d679ea36fb ",
+ "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 Shared Devices for Faculty",
- "String_Id": "MCOCAP_FACULTY ",
- "GUID": "420c7602-7f70-4895-9394-d3d679ea36fb ",
- "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 Faculty",
- "String_Id": "MCOCAP_FACULTY ",
- "GUID": "420c7602-7f70-4895-9394-d3d679ea36fb ",
- "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 Shared Devices for Faculty",
- "String_Id": "MCOCAP_FACULTY ",
- "GUID": "420c7602-7f70-4895-9394-d3d679ea36fb ",
- "Service_Plan_Name": "SPECIALTY_DEVICES",
- "Service_Plan_Id": "cfce7ae3-4b41-4438-999c-c0e91f3b7fb9",
- "Service_Plans_Included_Friendly_Names": "Specialty devices"
- },
- {
- "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",
@@ -32087,14 +32447,6 @@
"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",
@@ -32104,76 +32456,52 @@
"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",
+ "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 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",
+ "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 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"
+ "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": "MCOMEETADV_GOV",
- "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing for Government"
+ "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",
"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"
+ "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": "TEAMS_GOV",
- "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government"
+ "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",
@@ -32187,25 +32515,41 @@
"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"
+ "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": "WHITEBOARD_PLAN3",
- "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ "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": "INTUNE_A_GOV",
- "Service_Plan_Id": "d216f254-796f-4dab-bbfa-710686e646b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune G"
+ "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": "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": "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",
@@ -32235,73 +32579,249 @@
"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"
+ "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": "Teams_Room_Standard",
- "Service_Plan_Id": "92c6b761-01de-457a-9dd9-793a975238f7",
- "Service_Plans_Included_Friendly_Names": "Teams Room Standard"
+ "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",
+ "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": "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": "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 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 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 Faculty",
+ "String_Id": "MCOCAP_FACULTY ",
+ "GUID": "420c7602-7f70-4895-9394-d3d679ea36fb ",
+ "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 Faculty",
+ "String_Id": "MCOCAP_FACULTY ",
+ "GUID": "420c7602-7f70-4895-9394-d3d679ea36fb ",
+ "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 for Faculty",
+ "String_Id": "MCOCAP_FACULTY ",
+ "GUID": "420c7602-7f70-4895-9394-d3d679ea36fb ",
+ "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 for Faculty",
+ "String_Id": "MCOCAP_FACULTY ",
+ "GUID": "420c7602-7f70-4895-9394-d3d679ea36fb ",
+ "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 for Faculty",
+ "String_Id": "MCOCAP_FACULTY ",
+ "GUID": "420c7602-7f70-4895-9394-d3d679ea36fb ",
+ "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 Shared Devices for Faculty",
+ "String_Id": "MCOCAP_FACULTY ",
+ "GUID": "420c7602-7f70-4895-9394-d3d679ea36fb ",
+ "Service_Plan_Name": "SPECIALTY_DEVICES",
+ "Service_Plan_Id": "cfce7ae3-4b41-4438-999c-c0e91f3b7fb9",
+ "Service_Plans_Included_Friendly_Names": "Specialty devices"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Shared Devices for Faculty",
+ "String_Id": "MCOCAP_FACULTY ",
+ "GUID": "420c7602-7f70-4895-9394-d3d679ea36fb ",
+ "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": "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 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 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"
+ "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": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
},
{
"Product_Display_Name": "Microsoft Teams 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"
+ "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": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ "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": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ "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",
@@ -32315,33 +32835,33 @@
"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"
+ "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": "SHAREPOINTDESKLESS",
- "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9",
- "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk"
+ "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": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
+ "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": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ "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 Threat Experts - Experts on Demand",
@@ -32351,6 +32871,14 @@
"Service_Plan_Id": "b83a66d4-f05f-414d-ac0f-ea1c5239c42b",
"Service_Plans_Included_Friendly_Names": "Microsoft Threat Experts - Experts on Demand"
},
+ {
+ "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 Goals",
"String_Id": "Microsoft_Viva_Goals",
@@ -32368,12 +32896,12 @@
"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": "VIVAENGAGE_KNOWLEDGE",
+ "Service_Plan_Id": "c244cc9e-622f-4576-92ea-82e233e44e36",
+ "Service_Plans_Included_Friendly_Names": "Viva Engage Knowledge"
},
{
"Product_Display_Name": "Microsoft Viva Suite",
@@ -32415,14 +32943,6 @@
"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",
@@ -32440,28 +32960,28 @@
"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": "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": "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": "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": "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": "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": "Minecraft Education Faculty",
@@ -32472,28 +32992,28 @@
"Service_Plans_Included_Friendly_Names": "Exchange Foundation"
},
{
- "Product_Display_Name": "Office 365 Multi-Geo Capabilities",
- "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": "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": "Office 365 Multi-Geo Capabilities",
- "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": "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": "Office 365 Multi-Geo Capabilities",
- "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": "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": "Nonprofit Portal",
@@ -32515,73 +33035,73 @@
"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"
+ "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": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ "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": "EducationAnalyticsP1",
- "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
- "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ "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": "EXCHANGE_S_STANDARD",
- "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)"
+ "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": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ "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": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
- "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ "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": "OFFICE_FORMS_PLAN_2",
- "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Commercial data protection for Microsoft Copilot"
},
{
"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"
+ "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": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "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",
@@ -32595,81 +33115,81 @@
"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"
+ "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": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3"
+ "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 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"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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 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"
+ "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": "SHAREPOINTWAC_EDU",
- "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
- "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ "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": "OFFICEMOBILE_SUBSCRIPTION",
- "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
- "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365"
+ "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": "PROJECT_O365_P1",
- "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)"
+ "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 A1 for faculty",
"String_Id": "STANDARDWOFFPACK_FACULTY",
"GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "RETIRED - Commercial data protection for Microsoft Copilot"
+ "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": "SCHOOL_DATA_SYNC_P1",
- "Service_Plan_Id": "c33802dd-1b50-4b9a-8bb9-f13d2cdeadac",
- "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 1)"
+ "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",
@@ -32683,9 +33203,17 @@
"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)"
+ "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": "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",
@@ -32715,9 +33243,9 @@
"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)"
+ "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",
@@ -32737,236 +33265,12 @@
},
{
"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 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",
+ "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 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",
@@ -32979,9 +33283,9 @@
"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": "Azure Rights Management"
+ "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",
@@ -33043,9 +33347,9 @@
"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"
+ "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 A1 for students",
@@ -33055,14 +33359,6 @@
"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",
@@ -33075,57 +33371,57 @@
"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"
+ "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": "SHAREPOINTWAC_EDU",
- "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
- "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ "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 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"
+ "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": "PROJECT_O365_P1",
- "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)"
+ "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": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "RETIRED - Commercial data protection for Microsoft Copilot"
+ "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": "SCHOOL_DATA_SYNC_P1",
- "Service_Plan_Id": "c33802dd-1b50-4b9a-8bb9-f13d2cdeadac",
- "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 1)"
+ "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": "SHAREPOINTSTANDARD_EDU",
- "Service_Plan_Id": "0a4983bb-d3e5-4a09-95d8-b2d0127b3df5",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1) for Education"
+ "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",
@@ -33139,49 +33435,57 @@
"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"
+ "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": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Commercial data protection for Microsoft Copilot"
},
{
"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)"
+ "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": "YAMMER_EDU",
- "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
- "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ "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": "DYN365_CDS_O365_P1",
- "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "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": "POWERAPPS_O365_P2",
- "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ "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": "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",
@@ -33192,116 +33496,308 @@
"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",
+ "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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",
+ "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 students",
- "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
- "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "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": "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": "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": "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": "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": "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": "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": "EXCHANGE_S_STANDARD",
- "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)"
+ "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": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ "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": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ "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": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights"
+ "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": "OFFICE_FORMS_PLAN_2",
- "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
+ "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": "KAIZALA_O365_P2",
- "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 2"
+ "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": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "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": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "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": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "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": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3"
+ "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": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ "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",
@@ -33315,129 +33811,145 @@
"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"
+ "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": "POWERAPPS_O365_P2",
- "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ "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": "FLOW_O365_P2",
- "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ "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": "PROJECT_O365_P1",
- "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)"
+ "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": "SCHOOL_DATA_SYNC_P1",
- "Service_Plan_Id": "c33802dd-1b50-4b9a-8bb9-f13d2cdeadac",
- "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 1)"
+ "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": "SHAREPOINTSTANDARD_EDU",
- "Service_Plan_Id": "0a4983bb-d3e5-4a09-95d8-b2d0127b3df5",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1) for Education"
+ "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": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "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": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
+ "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": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ "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": "WHITEBOARD_PLAN1",
- "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)"
+ "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": "YAMMER_EDU",
- "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
- "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ "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 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "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": "AAD_BASIC_EDU",
"Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
- "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for EDU"
+ "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": "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 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"
+ "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": "CDS_O365_P2",
- "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2"
+ "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": "EducationAnalyticsP1",
- "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
- "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ "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": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ "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",
@@ -33451,33 +33963,41 @@
"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"
+ "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": "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": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
+ "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": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights"
+ "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": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "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",
@@ -33491,9 +34011,9 @@
"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"
+ "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",
@@ -33507,73 +34027,65 @@
"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"
+ "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": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
+ "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": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
+ "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": "SHAREPOINTWAC_EDU",
- "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
- "Service_Plans_Included_Friendly_Names": "Office for the web (Education)"
+ "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": "POWERAPPS_O365_P2",
- "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ "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": "FLOW_O365_P2",
- "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ "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",
@@ -33587,193 +34099,193 @@
"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)"
+ "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": "SCHOOL_DATA_SYNC_P2",
- "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
- "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
+ "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": "SHAREPOINTENTERPRISE_EDU",
- "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
- "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU"
+ "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": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "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": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
+ "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": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ "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": "WHITEBOARD_PLAN2",
- "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
+ "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": "YAMMER_EDU",
- "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
- "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ "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": "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 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 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"
+ "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": "CDS_O365_P2",
- "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2"
+ "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": "EducationAnalyticsP1",
- "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
- "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ "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": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ "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": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ "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": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ "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": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ "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": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights"
+ "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": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "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": "OFFICE_FORMS_PLAN_2",
- "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
+ "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": "KAIZALA_O365_P3",
- "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3"
+ "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": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "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": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "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": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "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": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
+ "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",
@@ -33787,118 +34299,118 @@
"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"
+ "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": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
+ "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": "SHAREPOINTWAC_EDU",
- "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
- "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ "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": "POWERAPPS_O365_P2",
- "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ "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": "FLOW_O365_P2",
- "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ "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": "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"
+ "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": "PROJECT_O365_P2",
- "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
+ "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": "SCHOOL_DATA_SYNC_P2",
- "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
- "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
+ "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": "SHAREPOINTENTERPRISE_EDU",
- "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education"
+ "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": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "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": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
+ "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": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ "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": "WHITEBOARD_PLAN2",
- "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
+ "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": "YAMMER_EDU",
- "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
- "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ "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 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "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"
@@ -33907,49 +34419,49 @@
"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"
+ "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": "CDS_O365_P3",
- "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ "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": "LOCKBOX_ENTERPRISE",
- "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ "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": "MIP_S_Exchange",
- "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
- "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ "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": "EducationAnalyticsP1",
- "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
- "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ "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": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ "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",
@@ -33963,233 +34475,233 @@
"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"
+ "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": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
+ "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": "MIP_S_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ "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": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ "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": "M365_ADVANCED_AUDITING",
- "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ "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": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ "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": "MCOMEETADV",
- "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ "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": "MICROSOFT_COMMUNICATION_COMPLIANCE",
- "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ "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": "MTP",
- "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ "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": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ "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": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "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": "COMMUNICATIONS_DLP",
- "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ "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": "CUSTOMER_KEY",
- "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
- "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ "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": "DATA_INVESTIGATIONS",
- "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ "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": "ATP_ENTERPRISE",
- "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ "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": "THREAT_INTELLIGENCE",
- "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ "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": "EXCEL_PREMIUM",
- "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
+ "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": "OFFICE_FORMS_PLAN_3",
- "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)"
+ "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": "INFO_GOVERNANCE",
- "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
- "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ "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": "KAIZALA_STANDALONE",
- "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ "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": "EXCHANGE_ANALYTICS",
- "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
- "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
+ "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": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "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": "RECORDS_MANAGEMENT",
- "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
- "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ "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": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "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": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "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": "STREAM_O365_E5",
- "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5"
+ "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": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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 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"
+ "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",
@@ -34203,201 +34715,217 @@
"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"
+ "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": "PAM_ENTERPRISE",
- "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
- "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ "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": "SHAREPOINTWAC_EDU",
- "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
- "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ "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": "POWERAPPS_O365_P3",
- "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)"
+ "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": "BI_AZURE_P2",
- "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
- "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ "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": "PREMIUM_ENCRYPTION",
- "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
- "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ "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": "PROJECT_O365_P3",
- "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
+ "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": "COMMUNICATIONS_COMPLIANCE",
- "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
- "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance"
+ "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": "SCHOOL_DATA_SYNC_P2",
- "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
- "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
+ "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": "SHAREPOINTENTERPRISE_EDU",
- "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education"
+ "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": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "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": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
+ "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": "BPOS_S_TODO_3",
- "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
+ "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": "VIVA_LEARNING_SEEDED",
- "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
- "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ "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": "WHITEBOARD_PLAN3",
- "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ "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": "YAMMER_EDU",
- "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
- "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ "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": "DYN365_CDS_O365_P3",
- "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "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": "FLOW_O365_P3",
- "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ "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": "POWER_VIRTUAL_AGENTS_O365_P3",
- "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
- "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ "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": "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": "AAD_BASIC_EDU",
- "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
- "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID Basic for Education"
+ "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": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ "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": "CDS_O365_P3",
- "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ "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": "LOCKBOX_ENTERPRISE",
- "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ "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": "MIP_S_Exchange",
- "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
- "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ "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": "EducationAnalyticsP1",
- "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
- "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ "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": "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",
@@ -34411,57 +34939,57 @@
"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"
+ "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": "Content_Explorer",
- "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ "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": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
+ "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": "MIP_S_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ "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_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ "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": "M365_ADVANCED_AUDITING",
- "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ "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": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ "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",
@@ -34471,6 +34999,14 @@
"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": "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",
@@ -34483,9 +35019,9 @@
"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"
+ "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",
@@ -34499,145 +35035,137 @@
"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"
+ "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": "CUSTOMER_KEY",
- "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
- "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ "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": "DATA_INVESTIGATIONS",
- "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ "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": "ATP_ENTERPRISE",
- "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ "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": "THREAT_INTELLIGENCE",
- "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ "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": "EXCEL_PREMIUM",
- "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
+ "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": "OFFICE_FORMS_PLAN_3",
- "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)"
+ "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": "INFO_GOVERNANCE",
- "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
- "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ "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": "KAIZALA_STANDALONE",
- "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ "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": "EXCHANGE_ANALYTICS",
- "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
- "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
+ "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": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "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": "RECORDS_MANAGEMENT",
- "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
- "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ "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": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "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": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "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": "STREAM_O365_E5",
- "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5"
+ "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": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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",
@@ -34651,194 +35179,210 @@
"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"
+ "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": "SHAREPOINTWAC_EDU",
- "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
- "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ "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": "POWERAPPS_O365_P3",
- "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)"
+ "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": "BI_AZURE_P2",
- "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
- "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ "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": "PREMIUM_ENCRYPTION",
- "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
- "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ "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": "PROJECT_O365_P3",
- "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
+ "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": "COMMUNICATIONS_COMPLIANCE",
- "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
- "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance"
+ "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": "SCHOOL_DATA_SYNC_P2",
- "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
- "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
+ "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": "SHAREPOINTENTERPRISE_EDU",
- "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education"
+ "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": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "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": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
+ "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": "BPOS_S_TODO_3",
- "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
+ "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": "WHITEBOARD_PLAN3",
- "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ "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": "YAMMER_EDU",
- "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
- "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ "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": "DYN365_CDS_O365_P3",
- "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "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": "FLOW_O365_P3",
- "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ "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": "POWER_VIRTUAL_AGENTS_O365_P3",
- "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
- "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
},
{
"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"
+ "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",
"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"
+ "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": "MIP_S_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ "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": "EQUIVIO_ANALYTICS",
- "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ "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": "PAM_ENTERPRISE",
- "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
- "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ "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": "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": "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": "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": "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",
@@ -34911,14 +35455,6 @@
"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",
@@ -34935,166 +35471,6 @@
"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",
@@ -35111,413 +35487,397 @@
"Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
"Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
},
- {
- "Product_Display_Name": "Office 365 Extra File Storage",
- "String_Id": "SHAREPOINTSTORAGE",
- "GUID": "99049c9c-6011-4908-bf17-15f496e6519d",
- "Service_Plan_Name": "SHAREPOINTSTORAGE",
- "Service_Plan_Id": "be5a7ed5-c598-4fcd-a061-5e6724c68a58",
- "Service_Plans_Included_Friendly_Names": "Office 365 Extra File Storage"
- },
{
"Product_Display_Name": "Office 365 E1",
"String_Id": "STANDARDPACK",
"GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
- "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS",
- "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02",
- "Service_Plans_Included_Friendly_Names": "Avatars for Teams"
+ "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": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS",
- "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8",
- "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)"
+ "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": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
+ "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": "CDS_O365_P1",
- "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ "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": "EXCHANGE_S_STANDARD",
- "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)"
+ "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": "MESH_IMMERSIVE_FOR_TEAMS",
- "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
- "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
+ "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": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ "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": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
- "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ "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": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "Service_Plan_Name": "VIVAENGAGE_CORE",
+ "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
+ "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
},
{
"Product_Display_Name": "Office 365 E1",
"String_Id": "STANDARDPACK",
"GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
- "Service_Plan_Name": "FORMS_PLAN_E1",
- "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)"
+ "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": "KAIZALA_O365_P2",
- "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ "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": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "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": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "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": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "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": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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": "Nucleus",
- "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
- "Service_Plans_Included_Friendly_Names": "Nucleus"
+ "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": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ "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": "OFFICEMOBILE_SUBSCRIPTION",
- "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
- "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365"
+ "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": "PROJECT_O365_P1",
- "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)"
+ "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": "SHAREPOINTSTANDARD",
- "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)"
+ "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": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "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": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
+ "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": "BPOS_S_TODO_1",
- "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)"
+ "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": "VIVAENGAGE_CORE",
- "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
- "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
},
{
"Product_Display_Name": "Office 365 E1",
"String_Id": "STANDARDPACK",
"GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
- "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
- "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
- "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ "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": "WHITEBOARD_PLAN1",
- "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)"
+ "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
+ "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
+ "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
},
{
"Product_Display_Name": "Office 365 E1",
"String_Id": "STANDARDPACK",
"GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ "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": "DYN365_CDS_O365_P1",
- "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "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": "RMS_S_BASIC",
- "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service"
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
},
{
"Product_Display_Name": "Office 365 E1",
"String_Id": "STANDARDPACK",
"GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
- "Service_Plan_Name": "STREAM_O365_E1",
- "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E1"
+ "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS",
+ "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8",
+ "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)"
},
{
"Product_Display_Name": "Office 365 E1",
"String_Id": "STANDARDPACK",
"GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
- "Service_Plan_Name": "POWERAPPS_O365_P1",
- "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS",
+ "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02",
+ "Service_Plans_Included_Friendly_Names": "Avatars for Teams"
},
{
"Product_Display_Name": "Office 365 E1",
"String_Id": "STANDARDPACK",
"GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
- "Service_Plan_Name": "FLOW_O365_P1",
- "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ "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": "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 (no Teams)",
- "String_Id": "Office_365_E1_(no_Teams)",
- "GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS",
- "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02",
- "Service_Plans_Included_Friendly_Names": "Avatars for Teams"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "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)"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "CDS_O365_P1",
- "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "MICROSOFT_MYANALYTICS_FULL",
- "Service_Plan_Id": "0403bb98-9d17-4f94-b53e-eca56a7698a6",
- "Service_Plans_Included_Friendly_Names": "DO NOT USE - Microsoft MyAnalytics (Full)"
+ "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS",
+ "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02",
+ "Service_Plans_Included_Friendly_Names": "Avatars for Teams"
},
{
"Product_Display_Name": "Office 365 E1 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "EXCHANGE_S_STANDARD",
- "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "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"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
- "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
- "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
},
{
"Product_Display_Name": "Office 365 E1 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "INSIGHTS_BY_MYANALYTICS",
- "Service_Plan_Id": "b088306e-925b-44ab-baa0-63291c629a91",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics Backend"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "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)"
+ "Service_Plan_Name": "PLACES_CORE",
+ "Service_Plan_Id": "1fe6227d-3e01-46d0-9510-0acad4ff6e94",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Places Core"
},
{
"Product_Display_Name": "Office 365 E1 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Commercial data protection for Microsoft Copilot"
},
{
"Product_Display_Name": "Office 365 E1 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "FORMS_PLAN_E1",
- "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "KAIZALA_O365_P2",
- "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
},
{
"Product_Display_Name": "Office 365 E1 (no Teams)",
@@ -35531,137 +35891,137 @@
"Product_Display_Name": "Office 365 E1 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "Nucleus",
- "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
- "Service_Plans_Included_Friendly_Names": "Nucleus"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION",
- "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
- "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365"
+ "Service_Plan_Name": "PEOPLE_SKILLS_FOUNDATION",
+ "Service_Plan_Id": "13b6da2c-0d84-450e-9f69-a33e221387ca",
+ "Service_Plans_Included_Friendly_Names": "People Skills - Foundation"
},
{
"Product_Display_Name": "Office 365 E1 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "PEOPLE_SKILLS_FOUNDATION",
- "Service_Plan_Id": "13b6da2c-0d84-450e-9f69-a33e221387ca",
- "Service_Plans_Included_Friendly_Names": "People Skills - Foundation"
+ "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS",
+ "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8",
+ "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)"
},
{
"Product_Display_Name": "Office 365 E1 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "PROJECT_O365_P1",
- "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "RETIRED - Commercial data protection for Microsoft Copilot"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "PLACES_CORE",
- "Service_Plan_Id": "1fe6227d-3e01-46d0-9510-0acad4ff6e94",
- "Service_Plans_Included_Friendly_Names": "RETIRED - Places Core"
+ "Service_Plan_Name": "MICROSOFT_MYANALYTICS_FULL",
+ "Service_Plan_Id": "0403bb98-9d17-4f94-b53e-eca56a7698a6",
+ "Service_Plans_Included_Friendly_Names": "DO NOT USE - Microsoft MyAnalytics (Full)"
},
{
"Product_Display_Name": "Office 365 E1 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "SHAREPOINTSTANDARD",
- "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "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 E1 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
+ "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
+ "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
+ "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
},
{
"Product_Display_Name": "Office 365 E1 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "BPOS_S_TODO_1",
- "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "VIVAENGAGE_CORE",
- "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
- "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ "Service_Plan_Name": "INSIGHTS_BY_MYANALYTICS",
+ "Service_Plan_Id": "b088306e-925b-44ab-baa0-63291c629a91",
+ "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics Backend"
},
{
"Product_Display_Name": "Office 365 E1 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
- "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
- "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "WHITEBOARD_PLAN1",
- "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "DYN365_CDS_O365_P1",
- "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "RMS_S_BASIC",
- "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service"
+ "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 (no Teams)",
@@ -35675,137 +36035,137 @@
"Product_Display_Name": "Office 365 E1 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "POWERAPPS_O365_P1",
- "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "Service_Plan_Name": "FLOW_O365_P1",
- "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ "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 (no Teams)",
"String_Id": "Office_365_E1_(no_Teams)",
"GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
- "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"
+ "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": "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 (no Teams)",
+ "String_Id": "Office_365_E1_(no_Teams)",
+ "GUID": "f8ced641-8e17-4dc5-b014-f5a2d53f6ac8",
+ "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": "EXCHANGE_S_STANDARD",
- "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)"
+ "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": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ "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": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
- "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ "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": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "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": "FORMS_PLAN_E1",
- "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)"
+ "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": "KAIZALA_O365_P2",
- "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ "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": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "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": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "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": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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": "Nucleus",
- "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
- "Service_Plans_Included_Friendly_Names": "Nucleus"
+ "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": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1",
+ "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
},
{
"Product_Display_Name": "Office 365 E1 EEA (no Teams)",
"String_Id": "Office_365_w/o_Teams_Bundle_E1",
"GUID": "b57282e3-65bd-4252-9502-c0eae1e5ab7f",
- "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION",
- "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
- "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365"
+ "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)",
@@ -35819,177 +36179,185 @@
"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)"
+ "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": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "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": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
+ "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": "BPOS_S_TODO_1",
- "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)"
+ "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": "VIVAENGAGE_CORE",
- "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
- "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ "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": "VIVA_LEARNING_SEEDED",
- "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
- "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ "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": "WHITEBOARD_PLAN1",
- "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)"
+ "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": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ "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": "DYN365_CDS_O365_P1",
- "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "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": "RMS_S_BASIC",
- "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service"
+ "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": "STREAM_O365_E1",
- "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E1"
+ "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": "POWERAPPS_O365_P1",
- "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ "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": "FLOW_O365_P1",
- "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ "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": "POWER_VIRTUAL_AGENTS_O365_P1",
- "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813",
- "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ "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": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
},
{
"Product_Display_Name": "Office 365 E1_USGOV_GCCHIGH",
"String_Id": "STANDARDPACK_USGOV_GCCHIGH",
"GUID": "f698ca06-024f-4562-b029-9cb1f1e02646",
- "Service_Plan_Name": "CDS_O365_P1",
- "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ "Service_Plan_Name": "FLOW_O365_P1_GCCHIGH",
+ "Service_Plan_Id": "e923bad8-588e-44d5-acd0-b226daa7b4de",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for GCCHigh"
},
{
"Product_Display_Name": "Office 365 E1_USGOV_GCCHIGH",
"String_Id": "STANDARDPACK_USGOV_GCCHIGH",
"GUID": "f698ca06-024f-4562-b029-9cb1f1e02646",
- "Service_Plan_Name": "EXCHANGE_S_STANDARD",
- "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)"
+ "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_USGOV_GCCHIGH",
"String_Id": "STANDARDPACK_USGOV_GCCHIGH",
"GUID": "f698ca06-024f-4562-b029-9cb1f1e02646",
- "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"
+ "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_USGOV_GCCHIGH",
"String_Id": "STANDARDPACK_USGOV_GCCHIGH",
"GUID": "f698ca06-024f-4562-b029-9cb1f1e02646",
- "Service_Plan_Name": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ "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_USGOV_GCCHIGH",
"String_Id": "STANDARDPACK_USGOV_GCCHIGH",
"GUID": "f698ca06-024f-4562-b029-9cb1f1e02646",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "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_USGOV_GCCHIGH",
"String_Id": "STANDARDPACK_USGOV_GCCHIGH",
"GUID": "f698ca06-024f-4562-b029-9cb1f1e02646",
- "Service_Plan_Name": "FORMS_PLAN_E1_AR_GCCHIGH",
- "Service_Plan_Id": "9c37c053-dfe3-4421-b6d4-bac8b86d42bd",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1) for GCCHigh"
+ "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_USGOV_GCCHIGH",
"String_Id": "STANDARDPACK_USGOV_GCCHIGH",
"GUID": "f698ca06-024f-4562-b029-9cb1f1e02646",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "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_USGOV_GCCHIGH",
"String_Id": "STANDARDPACK_USGOV_GCCHIGH",
"GUID": "f698ca06-024f-4562-b029-9cb1f1e02646",
- "Service_Plan_Name": "MICROSOFT_SEARCH_GCCH",
- "Service_Plan_Id": "fc9f7921-4ca5-42c6-8533-1b84c4ee496b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search for Arlington"
+ "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_USGOV_GCCHIGH",
@@ -36003,65 +36371,65 @@
"Product_Display_Name": "Office 365 E1_USGOV_GCCHIGH",
"String_Id": "STANDARDPACK_USGOV_GCCHIGH",
"GUID": "f698ca06-024f-4562-b029-9cb1f1e02646",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ "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_USGOV_GCCHIGH",
"String_Id": "STANDARDPACK_USGOV_GCCHIGH",
"GUID": "f698ca06-024f-4562-b029-9cb1f1e02646",
- "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION",
- "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
- "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365"
+ "Service_Plan_Name": "FORMS_PLAN_E1_AR_GCCHIGH",
+ "Service_Plan_Id": "9c37c053-dfe3-4421-b6d4-bac8b86d42bd",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1) for GCCHigh"
},
{
"Product_Display_Name": "Office 365 E1_USGOV_GCCHIGH",
"String_Id": "STANDARDPACK_USGOV_GCCHIGH",
"GUID": "f698ca06-024f-4562-b029-9cb1f1e02646",
- "Service_Plan_Name": "SHAREPOINTSTANDARD",
- "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)"
+ "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_USGOV_GCCHIGH",
"String_Id": "STANDARDPACK_USGOV_GCCHIGH",
"GUID": "f698ca06-024f-4562-b029-9cb1f1e02646",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "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_USGOV_GCCHIGH",
"String_Id": "STANDARDPACK_USGOV_GCCHIGH",
"GUID": "f698ca06-024f-4562-b029-9cb1f1e02646",
- "Service_Plan_Name": "DYN365_CDS_O365_P1",
- "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "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 E1_USGOV_GCCHIGH",
"String_Id": "STANDARDPACK_USGOV_GCCHIGH",
"GUID": "f698ca06-024f-4562-b029-9cb1f1e02646",
- "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"
+ "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_USGOV_GCCHIGH",
"String_Id": "STANDARDPACK_USGOV_GCCHIGH",
"GUID": "f698ca06-024f-4562-b029-9cb1f1e02646",
- "Service_Plan_Name": "POWERAPPS_O365_P1_GCCHIGH",
- "Service_Plan_Id": "3913e44e-824e-490c-a182-82785d769b45",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for GCCHigh"
+ "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 E1_USGOV_GCCHIGH",
"String_Id": "STANDARDPACK_USGOV_GCCHIGH",
"GUID": "f698ca06-024f-4562-b029-9cb1f1e02646",
- "Service_Plan_Name": "FLOW_O365_P1_GCCHIGH",
- "Service_Plan_Id": "e923bad8-588e-44d5-acd0-b226daa7b4de",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for GCCHigh"
+ "Service_Plan_Name": "POWERAPPS_O365_P1_GCCHIGH",
+ "Service_Plan_Id": "3913e44e-824e-490c-a182-82785d769b45",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for GCCHigh"
},
{
"Product_Display_Name": "Office 365 E2",
@@ -36079,22 +36447,6 @@
"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",
@@ -36107,17 +36459,17 @@
"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)"
+ "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": "POWERAPPS_O365_P1",
- "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365"
+ "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",
@@ -36175,173 +36527,189 @@
"Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
"Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE"
},
+ {
+ "Product_Display_Name": "Office 365 E2",
+ "String_Id": "STANDARDWOFFPACK",
+ "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
+ "Service_Plan_Name": "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": "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": "MESH_AVATARS_FOR_TEAMS",
- "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02",
- "Service_Plans_Included_Friendly_Names": "Avatars for Teams"
+ "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": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS",
- "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8",
- "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)"
+ "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": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ "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": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
+ "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": "CDS_O365_P2",
- "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ "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": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ "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": "MESH_IMMERSIVE_FOR_TEAMS",
- "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
- "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
+ "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": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
+ "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": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ "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": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ "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": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ "Service_Plan_Name": "MESH_AVATARS_FOR_TEAMS",
+ "Service_Plan_Id": "dcf9d2f4-772e-4434-b757-77a453cfbc02",
+ "Service_Plans_Included_Friendly_Names": "Avatars for Teams"
},
{
"Product_Display_Name": "Office 365 E3",
"String_Id": "ENTERPRISEPACK",
"GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
- "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS",
+ "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8",
+ "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)"
},
{
"Product_Display_Name": "Office 365 E3",
"String_Id": "ENTERPRISEPACK",
"GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
},
{
"Product_Display_Name": "Office 365 E3",
"String_Id": "ENTERPRISEPACK",
"GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "FORMS_PLAN_E3",
- "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)"
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "Commercial data protection for Microsoft Copilot"
},
{
"Product_Display_Name": "Office 365 E3",
"String_Id": "ENTERPRISEPACK",
"GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "KAIZALA_O365_P3",
- "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ "Service_Plan_Name": "CDS_O365_P2",
+ "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
},
{
"Product_Display_Name": "Office 365 E3",
"String_Id": "ENTERPRISEPACK",
"GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "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": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
+ "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
+ "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
},
{
"Product_Display_Name": "Office 365 E3",
"String_Id": "ENTERPRISEPACK",
"GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "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": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3"
+ "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": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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",
@@ -36355,89 +36723,89 @@
"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"
+ "Service_Plan_Name": "DYN365_CDS_O365_P2",
+ "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
},
{
"Product_Display_Name": "Office 365 E3",
"String_Id": "ENTERPRISEPACK",
"GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "PROJECT_O365_P2",
- "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
+ "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": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ "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": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "Service_Plan_Name": "KAIZALA_O365_P3",
+ "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
},
{
"Product_Display_Name": "Office 365 E3",
"String_Id": "ENTERPRISEPACK",
"GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
+ "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": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ "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": "VIVAENGAGE_CORE",
- "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
- "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ "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": "VIVA_LEARNING_SEEDED",
- "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
- "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3"
},
{
"Product_Display_Name": "Office 365 E3",
"String_Id": "ENTERPRISEPACK",
"GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "WHITEBOARD_PLAN2",
- "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
+ "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": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
},
{
"Product_Display_Name": "Office 365 E3",
"String_Id": "ENTERPRISEPACK",
"GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "DYN365_CDS_O365_P2",
- "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "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",
@@ -36451,9 +36819,9 @@
"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"
+ "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",
@@ -36475,57 +36843,57 @@
"Product_Display_Name": "Office 365 E3 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "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)"
+ "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 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ "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 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "CDS_O365_P2",
- "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ "Service_Plan_Name": "CLIPCHAMP",
+ "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp"
},
{
"Product_Display_Name": "Office 365 E3 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ "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 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "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"
+ "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 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
- "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
- "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
+ "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 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
+ "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 (no Teams)",
@@ -36539,57 +36907,49 @@
"Product_Display_Name": "Office 365 E3 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "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 (no Teams)",
- "String_Id": "Office_365_E3_(no_Teams)",
- "GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
+ "Service_Plan_Name": "MESH_IMMERSIVE_FOR_TEAMS",
+ "Service_Plan_Id": "f0ff6ac6-297d-49cd-be34-6dfef97f0c28",
+ "Service_Plans_Included_Friendly_Names": "Immersive spaces for Teams"
},
{
"Product_Display_Name": "Office 365 E3 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "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)"
+ "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 E3 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "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 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "CLIPCHAMP",
- "Service_Plan_Id": "a1ace008-72f3-4ea0-8dac-33b3a23a2472",
- "Service_Plans_Included_Friendly_Names": "Microsoft Clipchamp"
+ "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 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "FORMS_PLAN_E3",
- "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)"
+ "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 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "KAIZALA_O365_P3",
- "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ "Service_Plan_Name": "MESH_AVATARS_ADDITIONAL_FOR_TEAMS",
+ "Service_Plan_Id": "3efbd4ed-8958-4824-8389-1321f8730af8",
+ "Service_Plans_Included_Friendly_Names": "Avatars for Teams (additional)"
},
{
"Product_Display_Name": "Office 365 E3 (no Teams)",
@@ -36603,17 +36963,17 @@
"Product_Display_Name": "Office 365 E3 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "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 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "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 (no Teams)",
@@ -36627,65 +36987,65 @@
"Product_Display_Name": "Office 365 E3 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "Nucleus",
- "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
- "Service_Plans_Included_Friendly_Names": "Nucleus"
+ "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 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ "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 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "PLACES_CORE",
- "Service_Plan_Id": "1fe6227d-3e01-46d0-9510-0acad4ff6e94",
- "Service_Plans_Included_Friendly_Names": "Places Core"
+ "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 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "PROJECT_O365_P2",
- "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
+ "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 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "Bing_Chat_Enterprise",
- "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
- "Service_Plans_Included_Friendly_Names": "RETIRED - Commercial data protection for Microsoft Copilot"
+ "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 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ "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 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "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 (no Teams)",
@@ -36699,65 +37059,73 @@
"Product_Display_Name": "Office 365 E3 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ "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 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "VIVAENGAGE_CORE",
- "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
- "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ "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 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
- "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
- "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ "Service_Plan_Name": "Bing_Chat_Enterprise",
+ "Service_Plan_Id": "0d0c0d31-fae7-41f2-b909-eaf4d7f26dba",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Commercial data protection for Microsoft Copilot"
},
{
"Product_Display_Name": "Office 365 E3 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "WHITEBOARD_PLAN2",
- "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
+ "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 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ "Service_Plan_Name": "PLACES_CORE",
+ "Service_Plan_Id": "1fe6227d-3e01-46d0-9510-0acad4ff6e94",
+ "Service_Plans_Included_Friendly_Names": "Places Core"
},
{
"Product_Display_Name": "Office 365 E3 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "DYN365_CDS_O365_P2",
- "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "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 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "POWERAPPS_O365_P2",
- "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
},
{
"Product_Display_Name": "Office 365 E3 (no Teams)",
"String_Id": "Office_365_E3_(no_Teams)",
"GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
- "Service_Plan_Name": "FLOW_O365_P2",
- "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ "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 (no Teams)",
+ "String_Id": "Office_365_E3_(no_Teams)",
+ "GUID": "46c3a859-c90d-40b3-9551-6178a48d5c18",
+ "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 (no Teams)",
@@ -36767,6 +37135,118 @@
"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": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "TEAMS1"
+ },
+ {
+ "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": "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": "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": "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": "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": "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": "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 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",
@@ -36843,297 +37323,177 @@
"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"
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2",
+ "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
},
{
"Product_Display_Name": "Office 365 E3 EEA (no Teams)",
"String_Id": "O365_w/o_Teams_Bundle_E3",
"GUID": "d711d25a-a21c-492f-bd19-aae1e8ebaf30",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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": "Nucleus",
- "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
- "Service_Plans_Included_Friendly_Names": "Nucleus"
+ "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": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ "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": "PROJECT_O365_P2",
- "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
+ "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": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ "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": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "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": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
+ "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": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ "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": "VIVAENGAGE_CORE",
- "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
- "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ "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": "VIVA_LEARNING_SEEDED",
- "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
- "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ "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": "WHITEBOARD_PLAN2",
- "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
+ "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": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ "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": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ "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": "DYN365_CDS_O365_P2",
- "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "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": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3"
+ "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": "POWERAPPS_O365_P2",
- "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ "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": "FLOW_O365_P2",
- "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ "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": "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"
+ "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_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 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_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"
+ "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",
@@ -37147,17 +37507,17 @@
"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)"
+ "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": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus"
+ "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",
@@ -37183,77 +37543,85 @@
"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_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_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)"
+ "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": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights"
+ "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": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "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": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
+ "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": "TEAMS_AR_GCCHIGH",
- "Service_Plan_Id": "9953b155-8aef-4c56-92f3-72b0487fce41",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams for GCCHigh (AR)"
+ "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": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus"
+ "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": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office Online"
+ "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": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)"
+ "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": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "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 E4",
@@ -37271,14 +37639,6 @@
"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",
@@ -37392,124 +37752,124 @@
"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 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 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"
+ "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": "LOCKBOX_ENTERPRISE",
- "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ "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": "MIP_S_Exchange",
- "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
- "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ "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": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ "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": "GRAPH_CONNECTORS_SEARCH_INDEX",
- "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757",
- "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index"
+ "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": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ "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": "Content_Explorer",
- "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ "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": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Standard"
+ "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": "MIP_S_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ "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": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ "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": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ "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": "MICROSOFT_COMMUNICATION_COMPLIANCE",
- "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
- "Service_Plans_Included_Friendly_Names": "M365 Communication Compliance"
+ "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": "M365_ADVANCED_AUDITING",
- "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ "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": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
+ "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",
@@ -37523,201 +37883,201 @@
"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"
+ "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": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ "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": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Microsoft Entra Rights"
+ "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": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "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": "COMMUNICATIONS_DLP",
- "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ "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": "CUSTOMER_KEY",
- "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
- "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ "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": "DATA_INVESTIGATIONS",
- "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ "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": "ATP_ENTERPRISE",
- "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ "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": "THREAT_INTELLIGENCE",
- "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ "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": "EXCEL_PREMIUM",
- "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
+ "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": "FORMS_PLAN_E5",
- "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)"
+ "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": "INFO_GOVERNANCE",
- "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
- "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ "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": "KAIZALA_STANDALONE",
- "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala"
+ "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": "EXCHANGE_ANALYTICS",
- "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
- "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
+ "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": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "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": "RECORDS_MANAGEMENT",
- "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
- "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ "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": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "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": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "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": "STREAM_O365_E5",
- "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E5 SKU"
+ "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": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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": "EQUIVIO_ANALYTICS",
- "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ "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": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
+ "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": "PAM_ENTERPRISE",
- "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
- "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ "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": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the web"
+ "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",
@@ -37731,233 +38091,233 @@
"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"
+ "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": "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"
+ "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": "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": "POWERAPPS_O365_P3",
- "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
- "Service_Plans_Included_Friendly_Names": "PowerApps for Office 365 Plan 3"
+ "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": "PREMIUM_ENCRYPTION",
- "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
- "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ "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": "PROJECT_O365_P3",
- "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
+ "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": "COMMUNICATIONS_COMPLIANCE",
- "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications Compliance"
+ "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": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ "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": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "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": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
+ "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": "BPOS_S_TODO_3",
- "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
+ "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": "VIVAENGAGE_CORE",
- "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
- "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ "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": "VIVA_LEARNING_SEEDED",
- "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
- "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ "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": "WHITEBOARD_PLAN3",
- "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ "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": "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"
+ "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": "CDS_O365_P3",
- "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ "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": "LOCKBOX_ENTERPRISE",
- "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ "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)",
"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)"
+ "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": "MIP_S_Exchange",
- "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
- "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ "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": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ "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": "GRAPH_CONNECTORS_SEARCH_INDEX",
- "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757",
- "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index"
+ "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": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ "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": "Content_Explorer",
- "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ "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": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
+ "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": "MIP_S_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ "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": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ "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": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ "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": "M365_ADVANCED_AUDITING",
- "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ "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": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
+ "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)",
@@ -37971,209 +38331,209 @@
"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"
+ "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": "MTP",
- "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ "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": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
- "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ "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": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ "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": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "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": "COMMUNICATIONS_DLP",
- "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ "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": "CUSTOMER_KEY",
- "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
- "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ "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": "DATA_INVESTIGATIONS",
- "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ "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": "ATP_ENTERPRISE",
- "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ "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": "THREAT_INTELLIGENCE",
- "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ "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": "EXCEL_PREMIUM",
- "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
+ "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": "FORMS_PLAN_E5",
- "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)"
+ "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": "INFO_GOVERNANCE",
- "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
- "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ "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": "KAIZALA_STANDALONE",
- "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ "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": "EXCHANGE_ANALYTICS",
- "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
- "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
+ "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": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "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": "RECORDS_MANAGEMENT",
- "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
- "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ "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": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "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": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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": "Nucleus",
- "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
- "Service_Plans_Included_Friendly_Names": "Nucleus"
+ "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": "EQUIVIO_ANALYTICS",
- "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ "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": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ "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": "PAM_ENTERPRISE",
- "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
- "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ "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": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ "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": "POWERAPPS_O365_P3",
- "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)"
+ "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)",
@@ -38187,233 +38547,241 @@
"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)"
+ "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": "COMMUNICATIONS_COMPLIANCE",
- "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
- "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance"
+ "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": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ "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": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "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": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
+ "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": "BPOS_S_TODO_3",
- "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
+ "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": "VIVAENGAGE_CORE",
- "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
- "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ "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": "VIVA_LEARNING_SEEDED",
- "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
- "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ "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": "WHITEBOARD_PLAN3",
- "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ "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": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ "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": "DYN365_CDS_O365_P3",
- "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "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": "STREAM_O365_E5",
- "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5"
+ "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": "FLOW_O365_P3",
- "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ "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": "BI_AZURE_P2",
- "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
- "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ "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": "POWER_VIRTUAL_AGENTS_O365_P3",
- "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
- "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ "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": "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": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ "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": "CDS_O365_P3",
- "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ "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": "LOCKBOX_ENTERPRISE",
- "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ "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": "CustomerLockboxA_Enterprise",
- "Service_Plan_Id": "3ec18638-bd4c-4d3b-8905-479ed636b83e",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox (A)"
+ "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": "MIP_S_Exchange",
- "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
- "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ "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": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ "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": "GRAPH_CONNECTORS_SEARCH_INDEX",
- "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757",
- "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index"
+ "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": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ "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": "Content_Explorer",
- "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ "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": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
+ "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": "MIP_S_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ "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": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ "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": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ "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_ADVANCED_AUDITING",
- "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ "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",
@@ -38427,209 +38795,209 @@
"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"
+ "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": "MTP",
- "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ "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_LIGHTHOUSE_CUSTOMER_PLAN1",
- "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ "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": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ "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": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "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": "COMMUNICATIONS_DLP",
- "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ "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": "CUSTOMER_KEY",
- "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
- "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ "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": "DATA_INVESTIGATIONS",
- "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ "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": "ATP_ENTERPRISE",
- "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ "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": "THREAT_INTELLIGENCE",
- "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ "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": "EXCEL_PREMIUM",
- "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
+ "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": "FORMS_PLAN_E5",
- "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)"
+ "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": "INFO_GOVERNANCE",
- "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
- "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ "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": "KAIZALA_STANDALONE",
- "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ "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": "EXCHANGE_ANALYTICS",
- "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
- "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
+ "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": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "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": "RECORDS_MANAGEMENT",
- "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
- "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ "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": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "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": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "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": "STREAM_O365_E5",
- "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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": "Nucleus",
- "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
- "Service_Plans_Included_Friendly_Names": "Nucleus"
+ "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": "EQUIVIO_ANALYTICS",
- "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ "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": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ "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": "PAM_ENTERPRISE",
- "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
- "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ "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": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ "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",
@@ -38643,521 +39011,521 @@
"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"
+ "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": "PREMIUM_ENCRYPTION",
- "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
- "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ "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": "PROJECT_O365_P3",
- "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
+ "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": "COMMUNICATIONS_COMPLIANCE",
- "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
- "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance"
+ "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": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ "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": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "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": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
+ "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": "BPOS_S_TODO_3",
- "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
+ "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": "VIVAENGAGE_CORE",
- "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
- "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ "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": "VIVA_LEARNING_SEEDED",
- "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
- "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ "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": "WHITEBOARD_PLAN3",
- "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ "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": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ "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": "DYN365_CDS_O365_P3",
- "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "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": "FLOW_O365_P3",
- "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ "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": "POWER_VIRTUAL_AGENTS_O365_P3",
- "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
- "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ "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": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ "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": "CDS_O365_P3",
- "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ "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": "LOCKBOX_ENTERPRISE",
- "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ "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": "MIP_S_Exchange",
- "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
- "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ "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": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ "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": "GRAPH_CONNECTORS_SEARCH_INDEX",
- "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757",
- "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index"
+ "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": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ "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": "Content_Explorer",
- "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ "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": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
+ "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": "MIP_S_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ "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": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ "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": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ "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": "M365_ADVANCED_AUDITING",
- "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ "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": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ "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": "MICROSOFT_COMMUNICATION_COMPLIANCE",
- "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ "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": "MTP",
- "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ "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": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ "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": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "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": "COMMUNICATIONS_DLP",
- "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ "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": "CUSTOMER_KEY",
- "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
- "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ "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": "DATA_INVESTIGATIONS",
- "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ "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": "ATP_ENTERPRISE",
- "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ "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": "THREAT_INTELLIGENCE",
- "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ "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": "EXCEL_PREMIUM",
- "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
+ "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": "FORMS_PLAN_E5",
- "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)"
+ "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": "INFO_GOVERNANCE",
- "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
- "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ "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": "KAIZALA_STANDALONE",
- "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ "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": "EXCHANGE_ANALYTICS",
- "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
- "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
+ "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": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "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": "RECORDS_MANAGEMENT",
- "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
- "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ "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": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "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": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ "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": "STREAM_O365_E5",
- "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5"
+ "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": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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": "Nucleus",
- "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
- "Service_Plans_Included_Friendly_Names": "Nucleus"
+ "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": "EQUIVIO_ANALYTICS",
- "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ "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": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ "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": "PAM_ENTERPRISE",
- "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
- "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ "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": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ "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": "POWERAPPS_O365_P3",
- "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)"
+ "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": "BI_AZURE_P2",
- "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
- "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ "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": "PREMIUM_ENCRYPTION",
- "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
- "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ "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": "PROJECT_O365_P3",
- "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
+ "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": "COMMUNICATIONS_COMPLIANCE",
- "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
- "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance"
+ "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": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ "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": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "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": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
+ "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": "BPOS_S_TODO_3",
- "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
+ "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": "VIVA_LEARNING_SEEDED",
- "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
- "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ "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",
@@ -39171,33 +39539,57 @@
"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"
+ "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": "DYN365_CDS_O365_P3",
- "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "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": "FLOW_O365_P3",
- "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ "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": "POWER_VIRTUAL_AGENTS_O365_P3",
- "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
- "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ "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 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 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": "Office 365 F3",
@@ -39211,65 +39603,65 @@
"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"
+ "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": "EXCHANGE_S_DESKLESS",
- "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113",
- "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk"
+ "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": "RMS_S_BASIC",
- "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service"
+ "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": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "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": "FORMS_PLAN_K",
- "Service_Plan_Id": "f07046bd-2a3c-4b96-b0be-dea79d7cbfb8",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1)"
+ "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": "KAIZALA_O365_P1",
- "Service_Plan_Id": "73b2a583-6a59-42e3-8e83-54db46bc3278",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 1"
+ "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": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "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": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "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",
@@ -39283,81 +39675,73 @@
"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"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ "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": "OFFICEMOBILE_SUBSCRIPTION",
- "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
- "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365"
+ "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": "POWERAPPS_O365_S1",
- "Service_Plan_Id": "e0287f9f-e222-4f98-9a83-f379e249159a",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3"
+ "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": "FLOW_O365_S1",
- "Service_Plan_Id": "bd91b1a4-9f94-4ecf-b45b-3a65e5c8128a",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3"
+ "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": "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"
+ "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": "PROJECT_O365_F3",
- "Service_Plan_Id": "7f6f28c2-34bb-4d4b-be36-48ca2e77e1ec",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan F)"
+ "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": "SHAREPOINTDESKLESS",
- "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9",
- "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk"
+ "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",
@@ -39407,45 +39791,69 @@
"Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
"Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
},
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "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": "CDS_O365_F1",
- "Service_Plan_Id": "90db65a7-bf11-4904-a79f-ef657605145b",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ "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": "EXCHANGE_S_DESKLESS",
- "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113",
- "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk"
+ "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": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
- "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ "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": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "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": "FORMS_PLAN_K",
- "Service_Plan_Id": "f07046bd-2a3c-4b96-b0be-dea79d7cbfb8",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1)"
+ "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": "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": "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)",
@@ -39467,73 +39875,65 @@
"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"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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": "Nucleus",
- "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
- "Service_Plans_Included_Friendly_Names": "Nucleus"
+ "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": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ "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": "OFFICEMOBILE_SUBSCRIPTION",
- "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
- "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365"
+ "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": "PROJECT_O365_F3",
- "Service_Plan_Id": "7f6f28c2-34bb-4d4b-be36-48ca2e77e1ec",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan F)"
+ "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": "SHAREPOINTDESKLESS",
- "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9",
- "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk"
+ "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": "MCOIMP",
- "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)"
+ "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)",
@@ -39547,9 +39947,9 @@
"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)"
+ "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)",
@@ -39607,14 +40007,6 @@
"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)",
@@ -39635,49 +40027,49 @@
"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"
+ "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": "EXCHANGE_S_DESKLESS",
- "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113",
- "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk"
+ "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": "FORMS_PLAN_K_AR_GCCHIGH",
- "Service_Plan_Id": "59fb5884-fdec-40bf-aa7f-89e2bae79a7a",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1) for GCCHigh"
+ "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": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ "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 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"
+ "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": "TEAMS_AR_GCCHIGH",
- "Service_Plan_Id": "9953b155-8aef-4c56-92f3-72b0487fce41",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams for GCCHigh"
+ "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",
@@ -39691,113 +40083,113 @@
"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"
+ "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": "SHAREPOINTDESKLESS",
- "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9",
- "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk"
+ "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": "MCOIMP",
- "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)"
+ "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": "DYN365_CDS_O365_F1",
- "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "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": "STREAM_O365_K",
- "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 F3"
+ "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": "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"
+ "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": "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"
+ "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 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"
+ "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": "CDS_O365_P1_GCC",
- "Service_Plan_Id": "959e5dec-6522-4d44-8349-132c27c3795a",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P1 GCC"
+ "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": "EXCHANGE_S_STANDARD_GOV",
- "Service_Plan_Id": "e9b4930a-925f-45e2-ac2a-3f7788ca6fdd",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1) for Government"
+ "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": "FORMS_GOV_E1",
- "Service_Plan_Id": "f4cba850-4f34-4fd2-a341-0fddfdce1e8f",
- "Service_Plans_Included_Friendly_Names": "Forms for Government (Plan E1)"
+ "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": "MYANALYTICS_P2_GOV",
- "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics for Government"
+ "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": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "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": "STREAM_O365_E1_GOV",
- "Service_Plan_Id": "15267263-5986-449d-ac5c-124f3b49b2d6",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 for Government (E1)"
+ "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",
@@ -39811,57 +40203,57 @@
"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"
+ "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": "PROJECTWORKMANAGEMENT_GOV",
- "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51",
- "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government"
+ "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": "SHAREPOINTWAC_GOV",
- "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec",
- "Service_Plans_Included_Friendly_Names": "Office for the Web for Government"
+ "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": "OFFICEMOBILE_SUBSCRIPTION_GOV",
- "Service_Plan_Id": "4ccb60ee-9523-48fd-8f63-4b090f1ad77a",
- "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365 for GCC"
+ "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": "POWERAPPS_O365_P1_GOV",
- "Service_Plan_Id": "c42aa49a-f357-45d5-9972-bc29df885fee",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government"
+ "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": "FLOW_O365_P1_GOV",
- "Service_Plan_Id": "ad6c8870-6356-474c-901c-64d7da8cea48",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government"
+ "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": "SharePoint Plan 1G",
- "Service_Plan_Id": "f9c43823-deb4-46a8-aa65-8b551f0c4f8a",
- "Service_Plans_Included_Friendly_Names": "SharePoint Plan 1G"
+ "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 G1 GCC",
@@ -39875,33 +40267,41 @@
"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)"
+ "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": "WHITEBOARD_PLAN1",
- "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)"
+ "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 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"
+ "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": "EXCHANGE_S_ENTERPRISE_GOV",
- "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government"
+ "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": "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",
@@ -39915,81 +40315,81 @@
"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"
+ "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": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ "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": "MYANALYTICS_P2_GOV",
- "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics for Government"
+ "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": "OFFICESUBSCRIPTION_GOV",
- "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise G"
+ "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": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "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": "FORMS_GOV_E3",
- "Service_Plan_Id": "24af5f65-d0f3-467b-9f78-ea798c4aeffc",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E3)"
+ "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": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "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": "TEAMS_GOV",
- "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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": "PROJECTWORKMANAGEMENT_GOV",
- "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51",
- "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government"
+ "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",
@@ -40003,81 +40403,73 @@
"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"
+ "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": "MCOSTANDARD_GOV",
- "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government"
+ "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": "STREAM_O365_E3_GOV",
- "Service_Plan_Id": "2c1ada27-dbaa-46f9-bda6-ecb94445f758",
- "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E3)"
+ "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": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ "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": "WHITEBOARD_PLAN2",
- "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
+ "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": "RMS_S_ENTERPRISE_GOV",
- "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ "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": "DYN365_CDS_O365_P2_GCC",
- "Service_Plan_Id": "06162da2-ebf9-4954-99a0-00fee96f95cc",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "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": "POWERAPPS_O365_P2_GOV",
- "Service_Plan_Id": "0a20c815-5e81-4727-9bdc-2b5a117850c3",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government"
+ "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": "FLOW_O365_P2_GOV",
- "Service_Plan_Id": "c537f360-6a00-4ace-a7f5-9128d0ac1e4b",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government"
+ "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",
@@ -40099,89 +40491,89 @@
"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"
+ "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": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
+ "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": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ "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": "MYANALYTICS_P2_GOV",
- "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics for Government"
+ "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": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "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": "FORMS_GOV_E3",
- "Service_Plan_Id": "24af5f65-d0f3-467b-9f78-ea798c4aeffc",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E3)"
+ "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": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "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": "TEAMS_GOV",
- "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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": "Nucleus",
- "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
- "Service_Plans_Included_Friendly_Names": "Nucleus"
+ "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": "PROJECTWORKMANAGEMENT_GOV",
- "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51",
- "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government"
+ "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",
@@ -40195,433 +40587,433 @@
"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"
+ "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": "PROJECT_O365_P2_GOV",
- "Service_Plan_Id": "e7d09ae4-099a-4c34-a2a2-3e166e95c44a",
- "Service_Plans_Included_Friendly_Names": "Project for Government (Plan E3)"
+ "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": "SHAREPOINTENTERPRISE_GOV",
- "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692",
- "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G"
+ "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": "MCOSTANDARD_GOV",
- "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government"
+ "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": "STREAM_O365_E3_GOV",
- "Service_Plan_Id": "2c1ada27-dbaa-46f9-bda6-ecb94445f758",
- "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E3)"
+ "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": "RMS_S_ENTERPRISE_GOV",
- "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ "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": "DYN365_CDS_O365_P2_GCC",
- "Service_Plan_Id": "06162da2-ebf9-4954-99a0-00fee96f95cc",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "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": "POWERAPPS_O365_P2_GOV",
- "Service_Plan_Id": "0a20c815-5e81-4727-9bdc-2b5a117850c3",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government"
+ "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": "FLOW_O365_P2_GOV",
- "Service_Plan_Id": "c537f360-6a00-4ace-a7f5-9128d0ac1e4b",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government"
+ "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": "CDS_O365_P3_GCC",
- "Service_Plan_Id": "bce5e5ca-c2fd-4d53-8ee2-58dfffed4c10",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ "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": "LOCKBOX_ENTERPRISE_GOV",
- "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government"
+ "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": "MIP_S_Exchange",
- "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
- "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ "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": "EXCHANGE_S_ENTERPRISE_GOV",
- "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government"
+ "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": "GRAPH_CONNECTORS_SEARCH_INDEX",
- "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757",
- "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index"
+ "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": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ "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": "Content_Explorer",
- "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ "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": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
+ "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": "MIP_S_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ "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": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ "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": "M365_ADVANCED_AUDITING",
- "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ "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": "OFFICESUBSCRIPTION_GOV",
- "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise G"
+ "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": "MCOMEETADV_GOV",
- "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing for Government"
+ "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": "MICROSOFT_COMMUNICATION_COMPLIANCE",
- "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ "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": "MTP",
- "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ "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": "MCOEV_GOV",
- "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government"
+ "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": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "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": "COMMUNICATIONS_DLP",
- "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ "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": "CUSTOMER_KEY",
- "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
- "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ "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": "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"
+ "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": "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"
+ "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": "FORMS_GOV_E5",
- "Service_Plan_Id": "843da3a8-d2cc-4e7a-9e90-dc46019f964c",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E5)"
+ "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 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"
+ "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": "EXCHANGE_ANALYTICS_GOV",
- "Service_Plan_Id": "208120d1-9adb-4daf-8c22-816bd5d237e7",
- "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics for Government (Full)"
+ "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": "RECORDS_MANAGEMENT",
- "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
- "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ "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": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ "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": "TEAMS_GOV",
- "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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": "EQUIVIO_ANALYTICS_GOV",
- "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government"
+ "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": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ "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": "PROJECTWORKMANAGEMENT_GOV",
- "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51",
- "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government"
+ "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": "SHAREPOINTWAC_GOV",
- "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec",
- "Service_Plans_Included_Friendly_Names": "Office for the Web for Government"
+ "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": "BI_AZURE_P_2_GOV",
- "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76",
- "Service_Plans_Included_Friendly_Names": "Power BI Pro for Government"
+ "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": "PREMIUM_ENCRYPTION",
- "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
- "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ "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": "PROJECT_O365_P3_GOV",
- "Service_Plan_Id": "9b7c50ec-cd50-44f2-bf48-d72de6f90717",
- "Service_Plans_Included_Friendly_Names": "Project for Government (Plan E5)"
+ "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": "SHAREPOINTENTERPRISE_GOV",
- "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692",
- "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G"
+ "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": "MCOSTANDARD_GOV",
- "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government"
+ "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": "STREAM_O365_E5_GOV",
- "Service_Plan_Id": "92c2089d-9a53-49fe-b1a6-9e6bdf959547",
- "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E5)"
+ "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": "BPOS_S_TODO_3",
- "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
+ "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": "WHITEBOARD_PLAN3",
- "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ "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": "RMS_S_ENTERPRISE_GOV",
- "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ "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": "DYN365_CDS_O365_P3_GCC",
- "Service_Plan_Id": "a7d3fb37-b6df-4085-b509-50810d991a39",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "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": "POWERAPPS_O365_P3_GOV",
- "Service_Plan_Id": "0eacfc38-458a-40d3-9eab-9671258f1a3e",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government"
+ "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": "FLOW_O365_P3_GOV",
- "Service_Plan_Id": "8055d84a-c172-42eb-b997-6c2ae4628246",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government"
+ "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": "CDS_O365_P3_GCC",
- "Service_Plan_Id": "bce5e5ca-c2fd-4d53-8ee2-58dfffed4c10",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ "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",
@@ -40635,9 +41027,9 @@
"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"
+ "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",
@@ -40651,9 +41043,9 @@
"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"
+ "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",
@@ -40667,145 +41059,145 @@
"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"
+ "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": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
+ "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": "MIP_S_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ "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": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ "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": "M365_ADVANCED_AUDITING",
- "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ "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": "OFFICESUBSCRIPTION_GOV",
- "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise G"
+ "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": "MICROSOFT_COMMUNICATION_COMPLIANCE",
- "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ "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": "MTP",
- "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ "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": "MCOEV_GOV",
- "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government"
+ "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": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "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": "COMMUNICATIONS_DLP",
- "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ "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": "CUSTOMER_KEY",
- "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
- "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ "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": "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"
+ "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": "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"
+ "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": "FORMS_GOV_E5",
- "Service_Plan_Id": "843da3a8-d2cc-4e7a-9e90-dc46019f964c",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E5)"
+ "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": "INFO_GOVERNANCE",
- "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
- "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ "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": "EXCHANGE_ANALYTICS_GOV",
- "Service_Plan_Id": "208120d1-9adb-4daf-8c22-816bd5d237e7",
- "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics for Government (Full)"
+ "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": "RECORDS_MANAGEMENT",
- "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
- "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ "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",
@@ -40819,177 +41211,177 @@
"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"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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": "EQUIVIO_ANALYTICS_GOV",
- "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government"
+ "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": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ "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": "PROJECTWORKMANAGEMENT_GOV",
- "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51",
- "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government"
+ "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": "SHAREPOINTWAC_GOV",
- "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec",
- "Service_Plans_Included_Friendly_Names": "Office for the Web for Government"
+ "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": "BI_AZURE_P_2_GOV",
- "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76",
- "Service_Plans_Included_Friendly_Names": "Power BI Pro for Government"
+ "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": "PREMIUM_ENCRYPTION",
- "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
- "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ "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": "PROJECT_O365_P3_GOV",
- "Service_Plan_Id": "9b7c50ec-cd50-44f2-bf48-d72de6f90717",
- "Service_Plans_Included_Friendly_Names": "Project for Government (Plan E5)"
+ "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": "SHAREPOINTENTERPRISE_GOV",
- "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692",
- "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G"
+ "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": "MCOSTANDARD_GOV",
- "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government"
+ "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": "STREAM_O365_E5_GOV",
- "Service_Plan_Id": "92c2089d-9a53-49fe-b1a6-9e6bdf959547",
- "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E5)"
+ "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": "BPOS_S_TODO_3",
- "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
+ "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": "WHITEBOARD_PLAN3",
- "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ "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": "RMS_S_ENTERPRISE_GOV",
- "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ "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": "DYN365_CDS_O365_P3_GCC",
- "Service_Plan_Id": "a7d3fb37-b6df-4085-b509-50810d991a39",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ "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": "POWERAPPS_O365_P3_GOV",
- "Service_Plan_Id": "0eacfc38-458a-40d3-9eab-9671258f1a3e",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government"
+ "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": "FLOW_O365_P3_GOV",
- "Service_Plan_Id": "8055d84a-c172-42eb-b997-6c2ae4628246",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government"
+ "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": "CDS_O365_P3_GCC",
- "Service_Plan_Id": "bce5e5ca-c2fd-4d53-8ee2-58dfffed4c10",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ "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": "LOCKBOX_ENTERPRISE_GOV",
- "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government"
+ "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": "MIP_S_Exchange",
- "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
- "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ "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": "EXCHANGE_S_ENTERPRISE_GOV",
- "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government"
+ "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",
@@ -41003,33 +41395,33 @@
"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"
+ "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": "Content_Explorer",
- "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ "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": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
+ "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_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ "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",
@@ -41043,113 +41435,113 @@
"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"
+ "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": "OFFICESUBSCRIPTION_GOV",
- "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise G"
+ "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": "MCOMEETADV_GOV",
- "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing for Government"
+ "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": "MICROSOFT_COMMUNICATION_COMPLIANCE",
- "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ "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": "MTP",
- "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ "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": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ "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": "COMMUNICATIONS_DLP",
- "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ "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": "CUSTOMER_KEY",
- "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
- "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ "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": "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"
+ "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": "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"
+ "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": "FORMS_GOV_E5",
- "Service_Plan_Id": "843da3a8-d2cc-4e7a-9e90-dc46019f964c",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E5)"
+ "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": "INFO_GOVERNANCE",
- "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
- "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ "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": "EXCHANGE_ANALYTICS_GOV",
- "Service_Plan_Id": "208120d1-9adb-4daf-8c22-816bd5d237e7",
- "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics for Government (Full)"
+ "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": "RECORDS_MANAGEMENT",
- "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
- "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ "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",
@@ -41163,81 +41555,81 @@
"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"
+ "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": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ "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": "EQUIVIO_ANALYTICS_GOV",
- "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government"
+ "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": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ "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": "PROJECTWORKMANAGEMENT_GOV",
- "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51",
- "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government"
+ "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": "SHAREPOINTWAC_GOV",
- "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec",
- "Service_Plans_Included_Friendly_Names": "Office for the Web for Government"
+ "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": "PREMIUM_ENCRYPTION",
- "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
- "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ "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": "PROJECT_O365_P3_GOV",
- "Service_Plan_Id": "9b7c50ec-cd50-44f2-bf48-d72de6f90717",
- "Service_Plans_Included_Friendly_Names": "Project for Government (Plan E5)"
+ "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": "SHAREPOINTENTERPRISE_GOV",
- "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692",
- "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G"
+ "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": "MCOSTANDARD_GOV",
- "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government"
+ "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",
@@ -41299,57 +41691,81 @@
"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"
+ "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": "MCOSTANDARD_MIDMARKET",
- "Service_Plan_Id": "b2669e95-76ef-4e7e-a367-002f60a39f3e",
- "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2) FOR MIDSIZ"
+ "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": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION"
+ "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": "SHAREPOINTENTERPRISE_MIDMARKET",
- "Service_Plan_Id": "6b5b6a67-fc72-4a1f-a2b5-beecf05de761",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT PLAN 1"
+ "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 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"
+ "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": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
+ "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": "YAMMER_MIDSIZE",
- "Service_Plan_Id": "41bf139a-4e60-409f-9346-a1361efc6dfb",
- "Service_Plans_Included_Friendly_Names": "YAMMER_MIDSIZE"
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION"
+ },
+ {
+ "Product_Display_Name": "Office 365 Multi-Geo Capabilities",
+ "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": "Office 365 Multi-Geo Capabilities",
+ "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": "Office 365 Multi-Geo Capabilities",
+ "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": "Office 365 Small Business",
@@ -41427,97 +41843,97 @@
"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"
+ "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": "FLOW_FOR_PROJECT_GCC",
- "Service_Plan_Id": "7251de8f-ecfb-481e-bcff-4af4f1a4573c",
+ "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": "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"
+ "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": "OFFICEMOBILE_SUBSCRIPTION_GOV",
- "Service_Plan_Id": "4ccb60ee-9523-48fd-8f63-4b090f1ad77a",
- "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365 for GCC"
+ "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": "PROJECT_CLIENT_SUBSCRIPTION_GOV",
- "Service_Plan_Id": "45c6831b-ad74-4c7f-bd03-7c2b3fa39067",
- "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client"
+ "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_PROFESSIONAL_FOR_GOV",
- "Service_Plan_Id": "49c7bc16-7004-4df6-8cd5-4ec48b7e9ea0",
- "Service_Plans_Included_Friendly_Names": "Project P3 for GOV"
+ "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": "SHAREPOINTENTERPRISE_GOV",
- "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692",
- "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G"
+ "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": "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"
+ "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": "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)"
+ "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": "ONEDRIVESTANDARD",
- "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30",
- "Service_Plans_Included_Friendly_Names": "ONEDRIVESTANDARD"
+ "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": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
+ "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": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
+ "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 2)",
@@ -41536,172 +41952,124 @@
"Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
},
{
- "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & 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 & Flow GCC Test - O365 & 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 & Flow GCC Test - O365 & 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 & Flow GCC Test - O365 & 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 & Flow GCC Test - O365 & 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 & Flow GCC Test - O365 & 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 & Flow GCC Test - O365 & 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": "AI Builder capacity Per User add-on"
+ "Product_Display_Name": "Planner and 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": "PowerApps & Flow GCC Test - O365 & 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": "Planner and 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": "PowerApps & Flow GCC Test - O365 & 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": "Planner and 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": "PowerApps & Flow GCC Test - O365 & 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": "Planner and 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": "PowerApps & Flow GCC Test - O365 & 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": "Planner and 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": "PowerApps & Flow GCC Test - O365 & 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": "Planner and 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": "PowerApps & Flow GCC Test - O365 & 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": "Planner and 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": "PowerApps & Flow GCC Test - O365 & 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": "Planner and 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": "PowerApps & Flow GCC Test - O365 & 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": "Planner 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": "PowerApps & Flow GCC Test - O365 & 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": "Planner 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": "PowerApps & Flow GCC Test - O365 & 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": "Planner 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": "PowerApps & Flow GCC Test - O365 & 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": "Planner 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": "PowerApps & Flow GCC Test - O365 & 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": "Planner 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": "PowerApps & Flow GCC Test - O365 & 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": "Planner 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": "PowerApps & Flow GCC Test - O365 & 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": "POWERAPPSFREE",
+ "Service_Plan_Id": "e61a2945-1d4e-4523-b6e7-30ba39d20f32",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT POWERAPPS"
},
{
"Product_Display_Name": "Power Apps and Logic Flows",
@@ -41727,38 +42095,6 @@
"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",
@@ -41771,9 +42107,9 @@
"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"
+ "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 BD Only for GCC",
@@ -41787,41 +42123,41 @@
"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"
+ "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 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"
+ "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": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ "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",
"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"
+ "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": "Flow_Per_APP",
- "Service_Plan_Id": "c539fa36-a64e-479a-82e1-e40ff2aa83ee",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per App Plan"
+ "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 (1 app or portal)",
@@ -41863,6 +42199,14 @@
"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": "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",
@@ -41879,14 +42223,6 @@
"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",
@@ -41899,17 +42235,17 @@
"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"
+ "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": "CDSAICAPACITY_PERAPP",
- "Service_Plan_Id": "5d7a2e9a-4ee5-4f1c-bc9f-abc481bf39d8",
- "Service_Plans_Included_Friendly_Names": "AI Builder capacity Per App add-on"
+ "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",
@@ -41923,25 +42259,25 @@
"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"
+ "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": "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"
+ "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": "EXCHANGE_S_FOUNDATION_GOV",
- "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government"
+ "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",
@@ -41955,17 +42291,17 @@
"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"
+ "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": "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"
+ "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 BD Only",
@@ -41975,6 +42311,22 @@
"Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941",
"Service_Plans_Included_Friendly_Names": "Power Pages Internal User"
},
+ {
+ "Product_Display_Name": "Power Apps Per User BD Only",
+ "String_Id": "POWERAPPS_PER_USER_BD_ONLY",
+ "GUID": "2ced8a00-3ed1-4295-ab7c-57170ff28e58",
+ "Service_Plan_Name": "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 BD Only",
+ "String_Id": "POWERAPPS_PER_USER_BD_ONLY",
+ "GUID": "2ced8a00-3ed1-4295-ab7c-57170ff28e58",
+ "Service_Plan_Name": "POWERAPPS_PER_USER",
+ "Service_Plan_Id": "ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86",
+ "Service_Plans_Included_Friendly_Names": "Power Apps per User Plan"
+ },
{
"Product_Display_Name": "Power Apps Per User BD Only",
"String_Id": "POWERAPPS_PER_USER_BD_ONLY",
@@ -41992,28 +42344,132 @@
"Service_Plans_Included_Friendly_Names": "CDS Power Apps Per User Custom"
},
{
- "Product_Display_Name": "Power Apps Per User BD Only",
- "String_Id": "POWERAPPS_PER_USER_BD_ONLY",
- "GUID": "2ced8a00-3ed1-4295-ab7c-57170ff28e58",
- "Service_Plan_Name": "POWERAPPS_PER_USER",
- "Service_Plan_Id": "ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86",
- "Service_Plans_Included_Friendly_Names": "Power Apps per User Plan"
+ "Product_Display_Name": "Power Apps 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": "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)",
+ "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) 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 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": "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 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 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": "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": "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",
+ "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": "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 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 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 Per User BD Only",
- "String_Id": "POWERAPPS_PER_USER_BD_ONLY",
- "GUID": "2ced8a00-3ed1-4295-ab7c-57170ff28e58",
- "Service_Plan_Name": "Flow_PowerApps_PerUser",
- "Service_Plan_Id": "dc789ed8-0170-4b65-a415-eb77d5bb350a",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per User Plan"
+ "Product_Display_Name": "Power Apps 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 Premium",
"String_Id": "POWERAPPS_PER_USER",
"GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579",
- "Service_Plan_Name": "Power_Pages_Internal_User",
- "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941",
- "Service_Plans_Included_Friendly_Names": "Power Pages Internal User"
+ "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": "Power Apps Premium",
@@ -42039,14 +42495,6 @@
"Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2",
"Service_Plans_Included_Friendly_Names": "Common Data Service"
},
- {
- "Product_Display_Name": "Power Apps Premium",
- "String_Id": "POWERAPPS_PER_USER",
- "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579",
- "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": "Power Apps Premium",
"String_Id": "POWERAPPS_PER_USER",
@@ -42063,6 +42511,14 @@
"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 Premium",
+ "String_Id": "POWERAPPS_PER_USER",
+ "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579",
+ "Service_Plan_Name": "Power_Pages_Internal_User",
+ "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941",
+ "Service_Plans_Included_Friendly_Names": "Power Pages Internal User"
+ },
{
"Product_Display_Name": "Power Apps Premium embedded",
"String_Id": "POWERAPPS_PER_USER_ISVEMB",
@@ -42131,9 +42587,9 @@
"Product_Display_Name": "Power Apps Premium 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"
+ "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": "Power Apps Premium for Government",
@@ -42147,162 +42603,10 @@
"Product_Display_Name": "Power Apps Premium 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",
@@ -42375,14 +42679,6 @@
"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",
@@ -42399,6 +42695,14 @@
"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 for Government",
"String_Id": "FLOW_PER_USER_GCC",
@@ -42451,9 +42755,9 @@
"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"
+ "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 Premium for Government",
@@ -42467,9 +42771,9 @@
"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"
+ "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 Process",
@@ -42575,6 +42879,38 @@
"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 EM1",
+ "String_Id": "PBI_PREMIUM_EM1_ADDON",
+ "GUID": "bc757c42-5622-4583-a483-a9e537fcb71c",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION PBI_PREMIUM_EM1_ADDON",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power BI Premium EM1",
+ "String_Id": "PBI_PREMIUM_EM1_ADDON",
+ "GUID": "bc757c42-5622-4583-a483-a9e537fcb71c",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION PBI_PREMIUM_EM1_ADDON",
+ "Service_Plan_Id": "a64b30ba-f310-4065-b444-2670ef146db0",
+ "Service_Plans_Included_Friendly_Names": "Power BI Premium EM1"
+ },
+ {
+ "Product_Display_Name": "Power BI Premium EM2",
+ "String_Id": "PBI_PREMIUM_EM2_ADDON",
+ "GUID": "8ecbd3c1-b108-437c-a859-e3c125e3f83f",
+ "Service_Plan_Name": "PBI_PREMIUM_EM2_ADDON",
+ "Service_Plan_Id": "4e29abd1-ba96-44c0-8a72-e24e4fe9956e",
+ "Service_Plans_Included_Friendly_Names": "Power BI Premium EM2"
+ },
+ {
+ "Product_Display_Name": "Power BI Premium EM2",
+ "String_Id": "PBI_PREMIUM_EM2_ADDON",
+ "GUID": "8ecbd3c1-b108-437c-a859-e3c125e3f83f",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
{
"Product_Display_Name": "Power BI Premium P1",
"String_Id": "PBI_PREMIUM_P1_ADDON",
@@ -42611,9 +42947,9 @@
"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"
+ "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",
@@ -42627,9 +42963,9 @@
"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"
+ "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 Add-On",
@@ -42675,17 +43011,17 @@
"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"
+ "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_P3",
- "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c",
- "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User"
+ "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",
@@ -42699,9 +43035,9 @@
"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"
+ "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",
@@ -42715,17 +43051,17 @@
"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"
+ "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 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"
+ "Service_Plan_Name": "BI_AZURE_P_2_GOV",
+ "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro for Government"
},
{
"Product_Display_Name": "Power BI Premium Per User for Government",
@@ -42739,25 +43075,25 @@
"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"
+ "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",
"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"
+ "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": "BI_AZURE_P2",
- "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
- "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ "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",
@@ -42779,17 +43115,17 @@
"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"
+ "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": "BI_AZURE_P2",
- "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
- "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ "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",
@@ -42823,38 +43159,6 @@
"Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76",
"Service_Plans_Included_Friendly_Names": "Power BI Pro for Government"
},
- {
- "Product_Display_Name": "Power BI Premium EM2",
- "String_Id": "PBI_PREMIUM_EM2_ADDON",
- "GUID": "8ecbd3c1-b108-437c-a859-e3c125e3f83f",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Power BI Premium EM2",
- "String_Id": "PBI_PREMIUM_EM2_ADDON",
- "GUID": "8ecbd3c1-b108-437c-a859-e3c125e3f83f",
- "Service_Plan_Name": "PBI_PREMIUM_EM2_ADDON",
- "Service_Plan_Id": "4e29abd1-ba96-44c0-8a72-e24e4fe9956e",
- "Service_Plans_Included_Friendly_Names": "Power BI Premium EM2"
- },
- {
- "Product_Display_Name": "Power BI Premium EM1",
- "String_Id": "PBI_PREMIUM_EM1_ADDON",
- "GUID": "bc757c42-5622-4583-a483-a9e537fcb71c",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION PBI_PREMIUM_EM1_ADDON",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Power BI Premium EM1",
- "String_Id": "PBI_PREMIUM_EM1_ADDON",
- "GUID": "bc757c42-5622-4583-a483-a9e537fcb71c",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION PBI_PREMIUM_EM1_ADDON",
- "Service_Plan_Id": "a64b30ba-f310-4065-b444-2670ef146db0",
- "Service_Plans_Included_Friendly_Names": "Power BI Premium EM1"
- },
{
"Product_Display_Name": "Power Pages authenticated users T1 100 users/per site/month capacity pack",
"String_Id": "Power_Pages_authenticated_users_T1_100_users/per_site/month_capacity_pack",
@@ -42871,14 +43175,6 @@
"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 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",
@@ -42888,9 +43184,9 @@
"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_GCC",
- "String_Id": "Power_Pages_authenticated_users_T1_100_users/per_site/month_capacity_pack_GCC",
- "GUID": "27cb5f12-2e3f-4997-a649-45298673e6a1",
+ "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"
@@ -42903,6 +43199,14 @@
"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_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_USGOV_DOD",
"String_Id": "Power_Pages_authenticated_users_T1_100_users/per_site/month_capacity_pack_USGOV_DOD",
@@ -42923,225 +43227,129 @@
"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 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 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",
+ "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 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",
+ "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 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",
+ "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_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",
+ "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 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 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",
+ "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 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",
+ "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 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",
+ "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 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 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 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",
+ "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 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 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 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"
+ "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 Pages vTrial for Makers",
@@ -43155,17 +43363,17 @@
"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"
+ "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 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"
+ "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",
@@ -43179,17 +43387,17 @@
"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"
+ "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 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"
+ "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 for GCC",
@@ -43203,17 +43411,9 @@
"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"
+ "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 User License",
@@ -43232,12 +43432,12 @@
"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",
+ "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 for GCC",
@@ -43263,13 +43463,21 @@
"Service_Plan_Id": "0bdd5466-65c3-470a-9fa6-f679b48286b0",
"Service_Plans_Included_Friendly_Names": "Power 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": "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 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"
+ "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": "Power Virtual Agents Viral Trial",
@@ -43283,33 +43491,233 @@
"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"
+ "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": "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": "PowerApps & Flow GCC Test - O365 & 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": "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": "PowerApps & Flow GCC Test - O365 & 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": "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": "PowerApps & Flow GCC Test - O365 & 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 & Flow GCC Test - O365 & 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 & Flow GCC Test - O365 & 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 & Flow GCC Test - O365 & 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 & Flow GCC Test - O365 & 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": "AI Builder capacity Per User add-on"
+ },
+ {
+ "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & 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 & Flow GCC Test - O365 & 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 & Flow GCC Test - O365 & 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 & Flow GCC Test - O365 & 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 & Flow GCC Test - O365 & 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 & Flow GCC Test - O365 & 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 & Flow GCC Test - O365 & 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 & Flow GCC Test - O365 & 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 & Flow GCC Test - O365 & 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 & Flow GCC Test - O365 & 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 & Flow GCC Test - O365 & 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 & Flow GCC Test - O365 & 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 & Flow GCC Test - O365 & 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": "PowerApps & Flow GCC Test - O365 & 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 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": "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": "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 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": "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": "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": "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": "Privacy Management - risk for EDU",
@@ -43359,6 +43767,14 @@
"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": "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",
@@ -43375,14 +43791,6 @@
"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",
@@ -43531,9 +43939,9 @@
"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"
+ "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)",
@@ -43547,9 +43955,9 @@
"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)"
+ "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",
@@ -43600,132 +44008,60 @@
"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",
+ "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 (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 (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 (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 (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 (50) for EDU",
- "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_EDU_V2",
- "GUID": "ed45d397-7d61-4110-acc0-95674917bb14",
+ "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 (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 (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) 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 (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 (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"
+ "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)",
@@ -43739,9 +44075,9 @@
"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)"
+ "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",
@@ -43795,9 +44131,9 @@
"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"
+ "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",
@@ -43811,17 +44147,17 @@
"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)"
+ "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": "MIP_S_EXCHANGE_CO",
- "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b",
- "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level"
+ "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",
@@ -43835,9 +44171,105 @@
"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)"
+ "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": "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_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": "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": "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_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": "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 – 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",
+ "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": "Project for Office 365",
@@ -43847,22 +44279,6 @@
"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",
@@ -43896,28 +44312,28 @@
"Service_Plans_Included_Friendly_Names": "Sway"
},
{
- "Product_Display_Name": "Project Online Essentials for Faculty",
- "String_Id": "PROJECTESSENTIALS_FACULTY",
- "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6",
+ "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 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",
+ "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 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"
+ "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",
@@ -43939,9 +44355,25 @@
"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"
+ "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": "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": "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 GCC",
@@ -43975,6 +44407,14 @@
"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": "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",
@@ -43995,14 +44435,14 @@
"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)"
+ "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",
- "String_Id": "PROJECTPREMIUM",
- "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a",
+ "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"
@@ -44027,25 +44467,17 @@
"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"
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "SWAY"
},
{
"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"
+ "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",
@@ -44096,52 +44528,12 @@
"Service_Plans_Included_Friendly_Names": "SWAY"
},
{
- "Product_Display_Name": "Planner 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": "Planner 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": "Planner 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": "Planner Plan 1",
- "String_Id": "PROJECT_P1",
- "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be",
+ "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": "Planner 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": "Planner 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"
+ "Service_Plans_Included_Friendly_Names": "Project Online Essentials"
},
{
"Product_Display_Name": "Project Plan 1 (for Department)",
@@ -44167,14 +44559,6 @@
"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",
@@ -44192,65 +44576,25 @@
"Service_Plans_Included_Friendly_Names": "SHAREPOINT STANDARD"
},
{
- "Product_Display_Name": "Planner and 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": "Planner and 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": "Planner and 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": "Planner and 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": "Planner and 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": "Planner and Project Plan 3",
- "String_Id": "PROJECTPROFESSIONAL",
- "GUID": "53818b1b-4a27-454b-8896-0dba576410e6",
+ "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": "Planner and Project Plan 3",
- "String_Id": "PROJECTPROFESSIONAL",
- "GUID": "53818b1b-4a27-454b-8896-0dba576410e6",
+ "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": "Planner and Project Plan 3",
- "String_Id": "PROJECTPROFESSIONAL",
- "GUID": "53818b1b-4a27-454b-8896-0dba576410e6",
+ "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)"
@@ -44259,9 +44603,9 @@
"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"
+ "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)",
@@ -44275,17 +44619,17 @@
"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"
+ "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": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ "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)",
@@ -44295,37 +44639,13 @@
"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"
+ "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",
@@ -44335,22 +44655,6 @@
"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",
@@ -44383,6 +44687,22 @@
"Service_Plan_Id": "fa200448-008c-4acb-abd4-ea106ed2199d",
"Service_Plans_Included_Friendly_Names": "Power Automate for Project"
},
+ {
+ "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": "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 GCC",
"String_Id": "PROJECTPROFESSIONAL_GOV",
@@ -44439,6 +44759,14 @@
"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": "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",
@@ -44455,14 +44783,6 @@
"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",
@@ -44479,14 +44799,6 @@
"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",
@@ -44511,6 +44823,22 @@
"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": "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_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",
@@ -44543,14 +44871,6 @@
"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",
@@ -44563,9 +44883,9 @@
"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"
+ "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",
@@ -44573,23 +44893,15 @@
"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"
+ "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": "SHAREPOINT_PROJECT_EDU",
- "Service_Plan_Id": "664a2fed-6c7a-468e-af35-d61740f0ec90",
- "Service_Plans_Included_Friendly_Names": "Project Online Service for Education"
+ "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",
@@ -44603,9 +44915,9 @@
"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"
+ "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",
@@ -44619,9 +44931,17 @@
"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"
+ "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": "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",
@@ -44629,15 +44949,15 @@
"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"
+ "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": "Project Online for Education",
- "Service_Plan_Id": "664a2fed-6c7a-468e-af35-d61740f0ec90",
- "Service_Plans_Included_Friendly_Names": "Project Online for Education"
+ "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",
@@ -44651,9 +44971,9 @@
"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"
+ "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",
@@ -44675,65 +44995,57 @@
"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"
+ "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": "SHAREPOINTWAC_GOV",
- "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec",
- "Service_Plans_Included_Friendly_Names": "Office for the Web for Government"
+ "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": "PROJECT_CLIENT_SUBSCRIPTION_GOV",
- "Service_Plan_Id": "45c6831b-ad74-4c7f-bd03-7c2b3fa39067",
- "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client"
+ "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 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"
+ "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": "PROJECT_PROFESSIONAL_FOR_GOV",
- "Service_Plan_Id": "49c7bc16-7004-4df6-8cd5-4ec48b7e9ea0",
- "Service_Plans_Included_Friendly_Names": "Project P3 for GOV"
+ "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": "SHAREPOINTENTERPRISE_GOV",
- "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692",
- "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G"
+ "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": "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"
+ "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 without Project Client for Faculty",
@@ -44776,9 +45088,9 @@
"Service_Plans_Included_Friendly_Names": "Sway"
},
{
- "Product_Display_Name": "Rights Management Adhoc",
- "String_Id": "RIGHTSMANAGEMENT_ADHOC",
- "GUID": "8c4ce438-32a7-4ac5-91a6-e22ae08d9c8b",
+ "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"
@@ -44791,6 +45103,14 @@
"Service_Plan_Id": "7a39d7dd-e456-4e09-842a-0204ee08187b",
"Service_Plans_Included_Friendly_Names": "Rights Management Adhoc"
},
+ {
+ "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 Service Basic Content Protection",
"String_Id": "RMSBASIC",
@@ -44855,6 +45175,14 @@
"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": "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": "SharePoint Syntex",
"String_Id": "Intelligent_Content_Services",
@@ -44871,14 +45199,6 @@
"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",
@@ -44935,6 +45255,22 @@
"Service_Plan_Id": "6b340437-d6f9-4dc5-8cc2-99163f7f83d6",
"Service_Plans_Included_Friendly_Names": "MCOPSTN3"
},
+ {
+ "Product_Display_Name": "Skype Meeting Video Interop for Skype for Business",
+ "String_Id": "VIDEO_INTEROP",
+ "GUID": "610b16c2-bc9b-4b6b-b59f-0168123049ad",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Skype Meeting Video Interop for Skype for Business",
+ "String_Id": "VIDEO_INTEROP",
+ "GUID": "610b16c2-bc9b-4b6b-b59f-0168123049ad",
+ "Service_Plan_Name": "VIDEO_INTEROP",
+ "Service_Plan_Id": "4f0142e8-8fb8-44a7-8ef8-665425d93888",
+ "Service_Plans_Included_Friendly_Names": "Skype Meeting Video Interop for Skype for Business"
+ },
{
"Product_Display_Name": "Teams Phone Mobile",
"String_Id": "Operator_Connect_Mobile",
@@ -44959,6 +45295,14 @@
"Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
"Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
},
+ {
+ "Product_Display_Name": "Teams Premium (for Departments)",
+ "String_Id": "Teams_Premium_(for_Departments)",
+ "GUID": "52ea0e27-ae73-4983-a08f-13561ebdb823",
+ "Service_Plan_Name": "TEAMSPRO_WEBINAR",
+ "Service_Plan_Id": "78b58230-ec7e-4309-913c-93a45cc4735b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Webinar"
+ },
{
"Product_Display_Name": "Teams Premium (for Departments)",
"String_Id": "Teams_Premium_(for_Departments)",
@@ -45015,133 +45359,125 @@
"Service_Plan_Id": "711413d0-b36e-4cd4-93db-0a50a4ab7ea3",
"Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Virtual Appointments"
},
- {
- "Product_Display_Name": "Teams Premium (for Departments)",
- "String_Id": "Teams_Premium_(for_Departments)",
- "GUID": "52ea0e27-ae73-4983-a08f-13561ebdb823",
- "Service_Plan_Name": "TEAMSPRO_WEBINAR",
- "Service_Plan_Id": "78b58230-ec7e-4309-913c-93a45cc4735b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Webinar"
- },
{
"Product_Display_Name": "Teams Premium for Faculty",
"String_Id": "Teams_Premium_for_Faculty",
"GUID": "960a972f-d017-4a17-8f64-b42c8035bc7d",
- "Service_Plan_Name": "MICROSOFT_ECDN",
- "Service_Plan_Id": "85704d55-2e73-47ee-93b4-4b8ea14db92b",
- "Service_Plans_Included_Friendly_Names": "Microsoft eCDN"
+ "Service_Plan_Name": "QUEUES_APP",
+ "Service_Plan_Id": "ab2d4fb5-f80a-4bf1-a11d-7f1da254041b",
+ "Service_Plans_Included_Friendly_Names": "Queues app for Microsoft Teams"
},
{
"Product_Display_Name": "Teams Premium for Faculty",
"String_Id": "Teams_Premium_for_Faculty",
"GUID": "960a972f-d017-4a17-8f64-b42c8035bc7d",
- "Service_Plan_Name": "TEAMSPRO_MGMT",
- "Service_Plan_Id": "0504111f-feb8-4a3c-992a-70280f9a2869",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Intelligent"
+ "Service_Plan_Name": "TEAMSPRO_WEBINAR",
+ "Service_Plan_Id": "78b58230-ec7e-4309-913c-93a45cc4735b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Webinar"
},
{
"Product_Display_Name": "Teams Premium for Faculty",
"String_Id": "Teams_Premium_for_Faculty",
"GUID": "960a972f-d017-4a17-8f64-b42c8035bc7d",
- "Service_Plan_Name": "TEAMSPRO_CUST",
- "Service_Plan_Id": "cc8c0802-a325-43df-8cba-995d0c6cb373",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Personalized"
+ "Service_Plan_Name": "MCO_VIRTUAL_APPT",
+ "Service_Plan_Id": "711413d0-b36e-4cd4-93db-0a50a4ab7ea3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Virtual Appointments"
},
{
"Product_Display_Name": "Teams Premium for Faculty",
"String_Id": "Teams_Premium_for_Faculty",
"GUID": "960a972f-d017-4a17-8f64-b42c8035bc7d",
- "Service_Plan_Name": "TEAMSPRO_PROTECTION",
- "Service_Plan_Id": "f8b44f54-18bb-46a3-9658-44ab58712968",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Secure"
+ "Service_Plan_Name": "TEAMSPRO_VIRTUALAPPT",
+ "Service_Plan_Id": "9104f592-f2a7-4f77-904c-ca5a5715883f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Virtual Appointment"
},
{
"Product_Display_Name": "Teams Premium for Faculty",
"String_Id": "Teams_Premium_for_Faculty",
"GUID": "960a972f-d017-4a17-8f64-b42c8035bc7d",
- "Service_Plan_Name": "TEAMSPRO_VIRTUALAPPT",
- "Service_Plan_Id": "9104f592-f2a7-4f77-904c-ca5a5715883f",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Virtual Appointment"
+ "Service_Plan_Name": "TEAMSPRO_PROTECTION",
+ "Service_Plan_Id": "f8b44f54-18bb-46a3-9658-44ab58712968",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Secure"
},
{
"Product_Display_Name": "Teams Premium for Faculty",
"String_Id": "Teams_Premium_for_Faculty",
"GUID": "960a972f-d017-4a17-8f64-b42c8035bc7d",
- "Service_Plan_Name": "MCO_VIRTUAL_APPT",
- "Service_Plan_Id": "711413d0-b36e-4cd4-93db-0a50a4ab7ea3",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Virtual Appointments"
+ "Service_Plan_Name": "TEAMSPRO_MGMT",
+ "Service_Plan_Id": "0504111f-feb8-4a3c-992a-70280f9a2869",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Intelligent"
},
{
"Product_Display_Name": "Teams Premium for Faculty",
"String_Id": "Teams_Premium_for_Faculty",
"GUID": "960a972f-d017-4a17-8f64-b42c8035bc7d",
- "Service_Plan_Name": "TEAMSPRO_WEBINAR",
- "Service_Plan_Id": "78b58230-ec7e-4309-913c-93a45cc4735b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Webinar"
+ "Service_Plan_Name": "MICROSOFT_ECDN",
+ "Service_Plan_Id": "85704d55-2e73-47ee-93b4-4b8ea14db92b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft eCDN"
},
{
"Product_Display_Name": "Teams Premium for Faculty",
"String_Id": "Teams_Premium_for_Faculty",
"GUID": "960a972f-d017-4a17-8f64-b42c8035bc7d",
- "Service_Plan_Name": "QUEUES_APP",
- "Service_Plan_Id": "ab2d4fb5-f80a-4bf1-a11d-7f1da254041b",
- "Service_Plans_Included_Friendly_Names": "Queues app for Microsoft Teams"
+ "Service_Plan_Name": "TEAMSPRO_CUST",
+ "Service_Plan_Id": "cc8c0802-a325-43df-8cba-995d0c6cb373",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Personalized"
},
{
"Product_Display_Name": "Teams 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"
+ "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": "MCOMEETADV",
- "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ "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": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
},
{
"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"
+ "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": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ "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": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ "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": "WHITEBOARD_PLAN3",
- "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
},
{
"Product_Display_Name": "TELSTRA Calling for O365",
@@ -45151,22 +45487,6 @@
"Service_Plan_Id": "7861360b-dc3b-4eba-a3fc-0d323a035746",
"Service_Plans_Included_Friendly_Names": "AUSTRALIA CALLING PLAN"
},
- {
- "Product_Display_Name": "Universal Print",
- "String_Id": "UNIVERSAL_PRINT",
- "GUID": "9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Viva Learning",
- "String_Id": "VIVA_LEARNING",
- "GUID": "c9d442fc-21fb-4bd7-89e0-a710d74987f6",
- "Service_Plan_Name": "VIVA_LEARNING_PREMIUM",
- "Service_Plan_Id": "7162bd38-edae-4022-83a7-c5837f951759",
- "Service_Plans_Included_Friendly_Names": "Viva Learning"
- },
{
"Product_Display_Name": "Universal Print",
"String_Id": "UNIVERSAL_PRINT",
@@ -45176,13 +45496,21 @@
"Service_Plans_Included_Friendly_Names": "Universal Print"
},
{
- "Product_Display_Name": "Visio Plan 1",
- "String_Id": "VISIO_PLAN1_DEPT",
- "GUID": "ca7f3140-d88c-455b-9a1c-7f0679e31a76",
+ "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": "Visio 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 Plan 1",
"String_Id": "VISIO_PLAN1_DEPT",
@@ -45199,6 +45527,30 @@
"Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f",
"Service_Plans_Included_Friendly_Names": "Visio web app"
},
+ {
+ "Product_Display_Name": "Visio 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 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 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 2",
"String_Id": "VISIO_PLAN2_DEPT",
@@ -45231,62 +45583,6 @@
"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 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 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 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 Plan 2",
"String_Id": "VISIOCLIENT",
@@ -45320,12 +45616,36 @@
"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 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": "Visio Plan 2 for GCC",
@@ -45339,9 +45659,9 @@
"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"
+ "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",
@@ -45352,36 +45672,44 @@
"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",
+ "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_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 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_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 Plan 2 for Faculty",
- "String_Id": "VISIOCLIENT_FACULTY",
- "GUID": "bf95fd32-576a-4742-8d7a-6dc4940b9532",
+ "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 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": "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": "Viva Goals User-led",
@@ -45391,6 +45719,14 @@
"Service_Plan_Id": "b44c6eaf-5c9f-478c-8f16-8cea26353bfb",
"Service_Plans_Included_Friendly_Names": "Viva Goals"
},
+ {
+ "Product_Display_Name": "Viva Learning",
+ "String_Id": "VIVA_LEARNING",
+ "GUID": "c9d442fc-21fb-4bd7-89e0-a710d74987f6",
+ "Service_Plan_Name": "VIVA_LEARNING_PREMIUM",
+ "Service_Plan_Id": "7162bd38-edae-4022-83a7-c5837f951759",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning"
+ },
{
"Product_Display_Name": "Viva Topics",
"String_Id": "TOPIC_EXPERIENCES",
@@ -45407,62 +45743,6 @@
"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",
@@ -45499,17 +45779,17 @@
"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"
+ "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": "UNIVERSAL_PRINT_01",
- "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
- "Service_Plans_Included_Friendly_Names": "Universal Print"
+ "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",
@@ -45531,17 +45811,9 @@
"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"
+ "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",
@@ -45563,33 +45835,33 @@
"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"
+ "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_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 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 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"
+ "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",
"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"
+ "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",
@@ -45603,18 +45875,82 @@
"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"
+ "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": "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_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 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": "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": "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 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": "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",
"String_Id": "WIN10_VDA_E5",
@@ -45664,84 +46000,84 @@
"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 (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 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 (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 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 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 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 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 E3 VDA",
- "String_Id": "E3_VDA_only",
- "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550",
+ "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 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 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 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 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 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 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": "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 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 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 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 365 Business 1 vCPU 2 GB 64 GB",
@@ -45811,38 +46147,30 @@
"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"
+ "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": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
- "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ "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 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)"
+ "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": "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"
@@ -45851,9 +46179,9 @@
"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)"
+ "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 4 GB 64 GB",
@@ -45867,14 +46195,14 @@
"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"
+ "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",
+ "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"
@@ -45891,9 +46219,9 @@
"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)"
+ "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",
@@ -45904,20 +46232,20 @@
"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 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 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)"
+ "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 2 vCPU 8 GB 256 GB",
@@ -45931,14 +46259,14 @@
"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"
+ "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",
+ "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"
@@ -45947,17 +46275,17 @@
"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)"
+ "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": "M365_LIGHTHOUSE_PARTNER_PLAN1",
- "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
+ "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",
@@ -45967,6 +46295,14 @@
"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",
+ "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 (with Windows Hybrid Benefit)",
"String_Id": "CPC_B_4C_16RAM_128GB_WHB",
@@ -45987,17 +46323,17 @@
"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"
+ "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_CUSTOMER_PLAN1",
- "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ "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",
@@ -46019,17 +46355,9 @@
"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)"
+ "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 4 vCPU 16 GB 512 GB",
@@ -46043,14 +46371,14 @@
"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"
+ "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",
+ "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"
@@ -46079,6 +46407,14 @@
"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 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 256 GB",
"String_Id": "CPC_B_8C_32RAM_256GB",
@@ -46143,70 +46479,6 @@
"Service_Plan_Id": "4229a0b4-7f34-4835-b068-6dc8d10be57c",
"Service_Plans_Included_Friendly_Names": "Windows 365 Business 8 vCPU 32 GB 512 GB"
},
- {
- "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 512 GB",
- "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_512_GB",
- "GUID": "93d9955a-ec70-44d5-8faa-a194492390f7",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 512 GB",
- "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_512_GB",
- "GUID": "93d9955a-ec70-44d5-8faa-a194492390f7",
- "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
- "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
- },
- {
- "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 512 GB",
- "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_512_GB",
- "GUID": "93d9955a-ec70-44d5-8faa-a194492390f7",
- "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
- "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
- },
- {
- "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 512 GB",
- "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_512_GB",
- "GUID": "93d9955a-ec70-44d5-8faa-a194492390f7",
- "Service_Plan_Name": "CPC_B_16C_64GB_512GB",
- "Service_Plan_Id": "cbbedc49-52d5-4fd6-82ac-a5bc51634dc3",
- "Service_Plans_Included_Friendly_Names": "Windows 365 Business 16 vCPU, 64 GB, 512 GB"
- },
- {
- "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 1 TB",
- "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_1_TB",
- "GUID": "24be3cd7-82ca-41a5-94a7-4903373cdcae",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 1 TB",
- "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_1_TB",
- "GUID": "24be3cd7-82ca-41a5-94a7-4903373cdcae",
- "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
- "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
- },
- {
- "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 1 TB",
- "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_1_TB",
- "GUID": "24be3cd7-82ca-41a5-94a7-4903373cdcae",
- "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
- "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
- },
- {
- "Product_Display_Name": "Windows 365 Business 16 vCPU, 64 GB, 1 TB",
- "String_Id": "Windows_365_Business_16_vCPU,_64_GB,_1_TB",
- "GUID": "24be3cd7-82ca-41a5-94a7-4903373cdcae",
- "Service_Plan_Name": "CPC_B_16C_64GB_1TB",
- "Service_Plan_Id": "37c961db-2cfd-4e13-b81e-b0059ce10e34",
- "Service_Plans_Included_Friendly_Names": "Windows 365 Business 16 vCPU, 64 GB, 1 TB"
- },
{
"Product_Display_Name": "Windows 365 Enterprise 1 vCPU 2 GB 64 GB",
"String_Id": "CPC_E_1C_2GB_64GB",
@@ -46223,22 +46495,6 @@
"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",
@@ -46275,17 +46531,33 @@
"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"
+ "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 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"
+ "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 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 8 GB 128 GB",
@@ -46307,17 +46579,17 @@
"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"
+ "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": "CPC_2",
- "Service_Plan_Id": "3efff3fe-528a-4fc5-b1ba-845802cc764f",
- "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB"
+ "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",
@@ -46419,17 +46691,17 @@
"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"
+ "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 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"
+ "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",
@@ -46447,14 +46719,6 @@
"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",
@@ -46471,6 +46735,14 @@
"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 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 8 GB 128 GB",
"String_Id": "Windows_365_S_2vCPU_8GB_128GB",
@@ -46559,44 +46831,20 @@
"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"
+ "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"
},
{
"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"
+ "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"
}
]
diff --git a/src/data/RiskyPermissions.json b/src/data/RiskyPermissions.json
new file mode 100644
index 000000000000..b102431dd26a
--- /dev/null
+++ b/src/data/RiskyPermissions.json
@@ -0,0 +1,483 @@
+[
+ {
+ "api": "Microsoft Graph",
+ "id": "9e3f62cf-ca93-4989-b6ce-bf83c28f9fe8",
+ "name": "RoleManagement.ReadWrite.Directory",
+ "type": "Application",
+ "risk": "Critical",
+ "reason": "Abuse: assign Global Administrator (or any directory role) to any principal. Critical: direct tenant admin with no intermediate hop."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "06b708a9-e830-4db3-a914-8e69da51d44f",
+ "name": "AppRoleAssignment.ReadWrite.All",
+ "type": "Application",
+ "risk": "Critical",
+ "reason": "Abuse: grant any app role (including RoleManagement or Mail.Send) to any SP—including self. Critical: universal permission escalation."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "1bfefb4e-e0b5-418b-a88f-73c46d2cc8e9",
+ "name": "Application.ReadWrite.All",
+ "type": "Application",
+ "risk": "Critical",
+ "reason": "Abuse: rotate credentials and redirect URIs on any app—become that app in the tenant. Critical: impersonation of arbitrary first- and third-party apps."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "8e8e4742-1d95-4f68-9d56-6ee75648c72a",
+ "name": "DelegatedPermissionGrant.ReadWrite.All",
+ "type": "Application",
+ "risk": "Critical",
+ "reason": "Abuse: create AllPrincipals or broad delegated grants for arbitrary scopes. Critical: tenant-wide consent equivalent without per-user phishing."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "7e05723c-0bb0-42da-be95-ae9f08a6e53c",
+ "name": "Domain.ReadWrite.All",
+ "type": "Application",
+ "risk": "Critical",
+ "reason": "Abuse: alter or add domains in the tenant. Critical: tenant takeover risk."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "01c0a623-fc9b-48e9-b794-0756f8e8f067",
+ "name": "Policy.ReadWrite.ConditionalAccess",
+ "type": "Application",
+ "risk": "Critical",
+ "reason": "Abuse: add exclusions, weaken MFA, or block admins from signing in. Critical: defeats tenant-wide access controls."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "854d9ab1-6657-4ec8-be45-823027bcd009",
+ "name": "PrivilegedAccess.ReadWrite.AzureAD",
+ "type": "Application",
+ "risk": "Critical",
+ "reason": "Abuse: approve or materialize privileged role assignments via PIM. Critical: GA-equivalent without standing assignment."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "e330c4f0-4170-414e-a55a-2f022ec2b57b",
+ "name": "DeviceManagementRBAC.ReadWrite.All",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: grant Intune admin roles or widen scope tags to own account. High: full device-estate control short of Entra GA."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "274d0592-d1b6-44bd-af1d-26d259bcb43a",
+ "name": "RoleManagement.ReadWrite.CloudPC",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: own Cloud PC RBAC—compromise Windows 365 admin plane. High: major segment, not entire Entra directory."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "0c5e8a55-87a6-4556-93ab-adc52c4d862d",
+ "name": "DeviceManagementRBAC.ReadWrite.All",
+ "type": "Delegated",
+ "risk": "Low",
+ "reason": "Abuse: same Intune RBAC writes but only in user-delegated context. Low: requires already-privileged sign-in; AllPrincipals here is a weak signal."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "501d06f8-07b8-4f18-b5c6-c191a4af7a82",
+ "name": "RoleManagement.ReadWrite.CloudPC",
+ "type": "Delegated",
+ "risk": "Low",
+ "reason": "Abuse: Cloud PC RBAC changes as the signed-in user. Low: bounded by users existing Cloud PC admin rights; rare as org-wide grant."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "19dbc75e-c2e2-444c-a770-ec69d8559fc7",
+ "name": "Directory.ReadWrite.All",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: create users, reset attributes, manipulate groups—often chains to GA via role-assignable groups or owned objects. High: below direct RoleManagement but still org-wide write."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "618b6020-bca8-4de6-99f6-ef445fa4d857",
+ "name": "PrivilegedEligibilitySchedule.ReadWrite.AzureADGroup",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: make identities eligible for privileged groups—path to Azure RBAC or app access via group. High: not directory-role assignment but strong pivot."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "dbaae8cf-10b5-4b86-a4a1-f871c94c6695",
+ "name": "GroupMember.ReadWrite.All",
+ "type": "Application",
+ "risk": "Low",
+ "reason": "Abuse: add self or ally to any group—dangerous only if exploitable privileged groups exist. Low: permission is extremely common; signal is hygiene, not inherent tier-0."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "50483e42-d915-4231-9639-7fdb7fd190e5",
+ "name": "UserAuthenticationMethod.ReadWrite.All",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: strip or add MFA methods for any user—silent takeover of chosen accounts. High: targeted, not tenant-wide admin, but no user cooperation needed."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "e2a3a72e-5f79-4c64-b1b1-878b674786c9",
+ "name": "Mail.ReadWrite",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: read, delete, or alter all mail in every mailbox—evidence destruction and mass exfil. High: no send-as-anyone (see Mail.Send) but write scope across all mailboxes."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "b633e1c5-b582-4048-a93e-9f11b44c7e96",
+ "name": "Mail.Send",
+ "type": "Application",
+ "risk": "Critical",
+ "reason": "Abuse: send as any mailbox with tenant mail trust. Critical: BEC and phishing at arbitrary scale without compromised user passwords."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "6918b873-d17a-4cd1-b314-35f528134491",
+ "name": "Contacts.ReadWrite",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: create or overwrite contacts in every mailbox—spoof display names, phone numbers, and SMTP addresses so users trust forged senders or call attacker numbers. High: social engineering without Mail.Send."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "810c84a8-4a9e-49e6-bf7d-12d183f40d01",
+ "name": "Mail.Read",
+ "type": "Application",
+ "risk": "Low",
+ "reason": "Abuse: copy all mail app-only—total confidentiality breach. Low: identical technical blast radius as many backup/DLP products; alert alone is low-fidelity without app reputation."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "741f803b-c850-494e-b5df-cde7c675a1ca",
+ "name": "User.ReadWrite.All",
+ "type": "Application",
+ "risk": "Medium",
+ "reason": "Abuse: password reset and profile takeover for any user. Medium: catastrophic if abused but routinely required by IDM/provisioning; narrower than directory-role grant."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "7ab1d382-f21e-4acd-a863-ba3e13f7da61",
+ "name": "Directory.Read.All",
+ "type": "Application",
+ "risk": "Low",
+ "reason": "Abuse: full tenant enumeration for targeting. Low: read-only; nearly every SaaS integration requests it—weak discriminator for malicious apps."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "b2620db1-3bf7-4c5b-9cb9-576d29eac736",
+ "name": "eDiscovery.ReadWrite.All",
+ "type": "Application",
+ "risk": "Critical",
+ "reason": "Abuse: alter holds, cases, review sets—spoliation and access to highest-sensitivity legal data. Critical: write on legal pipeline plus massive content exposure."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "50180013-6191-4d1e-a373-e590ff4e66af",
+ "name": "eDiscovery.Read.All",
+ "type": "Application",
+ "risk": "Medium",
+ "reason": "Abuse: read investigation and hold-adjacent content—sensitive exfil. Medium: no hold tampering; fewer vendors than Mail.Read but still specialized category."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "294ce7c9-31ba-490a-ad7d-97a7d075e4ed",
+ "name": "Chat.ReadWrite.All",
+ "type": "Application",
+ "risk": "Medium",
+ "reason": "Abuse: read or modify all Teams 1:1/group chats app-only. Medium: broad collaboration compromise; Microsoft may gate some APIs—below mail/send for typical abuse economics."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "6b7d71aa-70aa-4810-a8d9-5d9fb2830017",
+ "name": "Chat.Read.All",
+ "type": "Application",
+ "risk": "Medium",
+ "reason": "Abuse: exfiltrate all private and group Teams chats. Medium: read-only; retention and compliance vendors legitimately drive volume."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "7b2449af-6ccd-4f4d-9f78-e550c193f0d1",
+ "name": "ChannelMessage.Read.All",
+ "type": "Application",
+ "risk": "Medium",
+ "reason": "Abuse: read every Teams channel message—org-wide comms and IP exfil. Medium: supervision/archiving vendors; no write path."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "45bbb07e-7321-4fd7-a8f6-3ff27e6a81c8",
+ "name": "CallRecords.Read.All",
+ "type": "Application",
+ "risk": "Low",
+ "reason": "Abuse: map who called whom and when—metadata surveillance. Low: no content; CDR and contact-center integrations normalize this permission."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "b0afded3-3588-46d8-8b3d-9842eff778da",
+ "name": "AuditLog.Read.All",
+ "type": "Application",
+ "risk": "Low",
+ "reason": "Abuse: learn defender actions and admin activity to evade detection. Low: SIEM exports need it; read-only and ubiquitous on security tooling."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "dd98c7f5-2d42-42d3-a0e4-633161547251",
+ "name": "ThreatHunting.Read.All",
+ "type": "Application",
+ "risk": "Medium",
+ "reason": "Abuse: run KQL across M365 Defender corpus—mailbox, device, and identity telemetry harvest. Medium: exceeds most integrations; MDR/MSSP-typical, not commodity SaaS."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "5b07b0dd-2377-4e44-a38d-703f09a0dc3c",
+ "name": "DeviceManagementManagedDevices.PrivilegedOperations.All",
+ "type": "Application",
+ "risk": "Critical",
+ "reason": "Abuse: remote wipe, PIN reset, or lockout on all Intune devices—business continuity destruction. Critical: device fleet availability, not just data theft."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "5ac13192-7ace-4fcf-b828-1a26f28068ee",
+ "name": "DeviceManagementServiceConfig.ReadWrite.All",
+ "type": "Application",
+ "risk": "Medium",
+ "reason": "Abuse: enroll attacker hardware (e.g. Autopilot import), change enrollment boundaries. Medium: serious device-trust impact but standard for UEM onboarding products."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "01d4889c-1287-42c6-ac1f-5d1e02578ef6",
+ "name": "Files.Read.All",
+ "type": "Application",
+ "risk": "Low",
+ "reason": "Abuse: read every file in SharePoint and OneDrive. Low: same capability as many backup and search products—low signal without vendor context."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "75359482-378d-4052-8f01-80520e7db3cd",
+ "name": "Files.ReadWrite.All",
+ "type": "Application",
+ "risk": "Critical",
+ "reason": "Abuse: delete or encrypt all tenant documents—ransomware analogue. Critical: tenant-wide file integrity and availability."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "a82116e5-55eb-4c41-a434-62fe8a61c773",
+ "name": "Sites.FullControl.All",
+ "type": "Application",
+ "risk": "Critical",
+ "reason": "Abuse: script, admin, and content control on every site—superset of file R/W. Critical: SharePoint tenant compromise."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "9492366f-7969-46a4-8d15-ed1a20078fff",
+ "name": "Sites.ReadWrite.All",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: read/write all list items and documents without full site-admin shell. High: mass exfil and tamper; one step below FullControl for some attack paths."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "0c0bf378-bf22-4481-8f81-9e89a9b4960a",
+ "name": "Sites.Manage.All",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: destroy or recreate lists/libraries tenant-wide—availability and structure sabotage. High: often paired with data attacks."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "19b94e34-907c-4f43-bde9-38b1909ed408",
+ "name": "SharePointTenantSettings.ReadWrite.All",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: loosen sharing, guest, or OneDrive policies—opens data exfil channels. High: policy-layer, not direct file read."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "f12eb8d6-28e3-46e6-b2c0-b7e4dc69fc95",
+ "name": "TermStore.ReadWrite.All",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: corrupt managed metadata—breaks classification, search, and retention semantics. High: integrity across content estate."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "332a536c-c7ef-4017-ab91-336970924f0d",
+ "name": "Sites.Read.All",
+ "type": "Application",
+ "risk": "Low",
+ "reason": "Abuse: read all site and list content—document exfil via Graph sites API. Low: overlaps Files.Read.All use cases; noisy for alerting."
+ },
+ {
+ "api": "SharePoint Online",
+ "id": "a82116e5-55eb-4c41-a434-62fe8a61c773",
+ "name": "Sites.FullControl.All",
+ "type": "Application",
+ "risk": "Critical",
+ "reason": "Abuse: native SPO/REST full control on all site collections—same impact as Graph Sites.FullControl on SP resource. Critical."
+ },
+ {
+ "api": "SharePoint Online",
+ "id": "9492366f-7969-46a4-8d15-ed1a20078fff",
+ "name": "Sites.ReadWrite.All",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: app-only R/W all sites via SharePoint API—parallel to Graph Sites.ReadWrite. High."
+ },
+ {
+ "api": "SharePoint Online",
+ "id": "0c0bf378-bf22-4481-8f81-9e89a9b4960a",
+ "name": "Sites.Manage.All",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: structural destruction across all sites via SPO resource. High."
+ },
+ {
+ "api": "SharePoint Online",
+ "id": "f12eb8d6-28e3-46e6-b2c0-b7e4dc69fc95",
+ "name": "TermStore.ReadWrite.All",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: tenant term store rewrite via SPO resource—metadata integrity. High."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "292d869f-3427-49a8-9dab-8c70152b74e9",
+ "name": "Organization.ReadWrite.All",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: change tenant branding, partner relationships, and org metadata—phishing lures and trust abuse. High: not direct GA but broad org-level write."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "be74164b-cff1-491c-8741-e671cb536e13",
+ "name": "Policy.ReadWrite.ApplicationConfiguration",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: alter token lifetime, claims mapping, HRD, and issuance policies—authentication and token-trust manipulation. High: tier-0-adjacent; cited in consent and federation abuse research."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "338163d7-f101-4c92-94ba-ca46fe52447c",
+ "name": "Policy.ReadWrite.CrossTenantAccess",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: change cross-tenant access defaults—expand guest/B2B trust surface. High: lateral movement into partner tenants or inbound abuse."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "09850681-111b-4a89-9bed-3f2cae46d706",
+ "name": "User.Invite.All",
+ "type": "Application",
+ "risk": "Medium",
+ "reason": "Abuse: invite arbitrary B2B guests—persistence and lateral access. Medium: powerful but common on collaboration portals; volume-based risk."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "5eb59dd3-1da2-4329-8733-9dabdc435916",
+ "name": "AdministrativeUnit.ReadWrite.All",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: redefine scoped admin boundaries and membership—segment RBAC takeover. High: fewer vendors than GroupMember; meaningful policy impact."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "d903a879-88e0-4c09-b0c9-82f6a1333f84",
+ "name": "SecurityEvents.ReadWrite.All",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: modify security events—evasion and blind defenders. High: integrity of SecOps pipeline."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "34bf0e97-1971-4929-b999-9e2442d941d7",
+ "name": "SecurityIncident.ReadWrite.All",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: alter M365 Defender incidents—close or corrupt case workflow. High: SOC integrity."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "656f6061-f9fe-4807-9708-6a2e0934df76",
+ "name": "IdentityRiskyUser.ReadWrite.All",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: dismiss risky-user state—clears ID Protection signals for compromised accounts. High: direct impact on identity SOC."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "9241abd9-d0e6-425a-bd4f-47ba86e767a4",
+ "name": "DeviceManagementConfiguration.ReadWrite.All",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: deploy malicious Intune compliance or configuration profiles to all scoped devices. High: device compromise at scale short of wipe."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "243333ab-4d21-40cb-a475-36241daa0842",
+ "name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "type": "Application",
+ "risk": "Medium",
+ "reason": "Abuse: read or alter managed device inventory and properties. Medium: excludes wipe/passcode reset but broad device recon and tamper."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "65319a09-a2be-469d-8782-f6b07debf789",
+ "name": "IdentityUserFlow.ReadWrite.All",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: change B2C/CIAM user flows—authentication UX and logic tampering. High: where External ID flows are used."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "b8bb2037-6e08-44ac-a4ea-4674e010e2a4",
+ "name": "OnlineMeetings.ReadWrite.All",
+ "type": "Application",
+ "risk": "Medium",
+ "reason": "Abuse: create or hijack meetings as the app—meeting phishing and join-link abuse. Medium: cited in OAuth/consent abuse alongside mail and calendar."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "a7a681dc-756e-4909-b988-f160edc6655f",
+ "name": "Calls.AccessMedia.All",
+ "type": "Application",
+ "risk": "Critical",
+ "reason": "Abuse: access live call media streams app-only—wiretap-class eavesdropping. Critical: confidentiality of voice/video."
+ },
+ {
+ "api": "Microsoft Graph",
+ "id": "de89b5e4-5b8f-48eb-8925-29c2b33bd8bd",
+ "name": "CustomSecAttributeAssignment.ReadWrite.All",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: rewrite security attribute assignments—ABAC and access-control decisions based on attributes can be subverted. High: niche but high impact where CSAs gate access."
+ },
+ {
+ "api": "Exchange Online",
+ "id": "ef54d2bf-783f-4e0f-bca1-3210c0444d99",
+ "name": "Calendars.ReadWrite.All",
+ "type": "Application",
+ "risk": "High",
+ "reason": "Abuse: read/write every mailbox calendar on EXO resource—meeting intel, invite injection, availability exfil. High: OAuth abuse surface per Microsoft/defender guidance."
+ },
+ {
+ "api": "Exchange Online",
+ "id": "f9156939-25cd-4ba8-abfe-7fabcf003749",
+ "name": "MailboxSettings.ReadWrite",
+ "type": "Application",
+ "risk": "Medium",
+ "reason": "Abuse: alter forwarding, OOF, locale, and mailbox settings tenant-wide—persistence and mail redirection without Mail.Send. Medium: common on EXO tooling."
+ },
+ {
+ "api": "Exchange Online",
+ "id": "dc50a0fb-09a3-484d-be87-e023b12c6440",
+ "name": "Exchange.ManageAsApp",
+ "type": "Application",
+ "risk": "Critical",
+ "reason": "Abuse: full Exchange org administration as app—mail flow, RBAC, mailboxes, transport. Critical: mail-plane tier-0; no Graph equivalent granularity."
+ }
+]
+
diff --git a/src/data/alerts.json b/src/data/alerts.json
index 7e93eb047e8b..33396fa152bf 100644
--- a/src/data/alerts.json
+++ b/src/data/alerts.json
@@ -26,6 +26,20 @@
{
"name": "SmtpAuthSuccess",
"label": "Alert on SMTP AUTH usage with success, helps to phase out SMTP AUTH (Entra P1 Required)",
+ "requiresInput": true,
+ "inputType": "number",
+ "inputLabel": "Days to look back (default: 7, max: 30)",
+ "inputName": "SmtpAuthSuccessDays",
+ "validators": {
+ "min": {
+ "value": 7,
+ "message": "Days must be at least 7"
+ },
+ "max": {
+ "value": 30,
+ "message": "Days cannot exceed 30"
+ }
+ },
"recommendedRunInterval": "1d"
},
{
@@ -229,9 +243,14 @@
"inputs": [
{
"inputType": "number",
- "inputLabel": "Minimum age in hours (default: 0)",
+ "inputLabel": "Age threshold in hours (default: 0)",
"inputName": "VulnerabilityAgeHours"
},
+ {
+ "inputType": "switch",
+ "inputLabel": "Only alert on items newer than threshold (prevents duplicate alerts)",
+ "inputName": "NewerThanMode"
+ },
{
"inputType": "autoComplete",
"inputLabel": "Minimum CVSS severity",
@@ -288,7 +307,7 @@
}
],
"recommendedRunInterval": "4h",
- "description": "Monitors for software vulnerabilities based on age, CVSS severity, and exploitability level. Filter by minimum CVSS score (low=0+, medium=4+, high=7+, critical=9+) and select which exploitability levels to include. Requires Defender for Endpoint/Business."
+ "description": "Monitors for software vulnerabilities based on age, CVSS severity, and exploitability level. By default alerts on items older than the threshold; enable 'newer than' mode to only receive alerts for recent vulnerabilities and prevent duplicates. Filter by minimum CVSS score (low=0+, medium=4+, high=7+, critical=9+) and select which exploitability levels to include. Requires Defender for Endpoint/Business."
},
{
"name": "UnusedLicenses",
@@ -324,6 +343,16 @@
"label": "Alert on expiring application certificates",
"recommendedRunInterval": "1d"
},
+ {
+ "name": "LongLivedAppCredentials",
+ "label": "Alert on long-lived app registration secrets or certificates",
+ "recommendedRunInterval": "1d",
+ "requiresInput": true,
+ "inputType": "number",
+ "inputLabel": "Maximum allowed credential lifetime in months (1-24)",
+ "inputName": "InputValue",
+ "description": "Checks app registrations for client secrets or certificates that are valid longer than the Microsoft UI currently allows. Set a threshold from 1 to 24 months."
+ },
{
"name": "ApnCertExpiry",
"label": "Alert on expiring APN certificates",
@@ -394,6 +423,12 @@
"label": "Alert on licensed users with any administrator roles",
"recommendedRunInterval": "7d"
},
+ {
+ "name": "RoleEscalableGroups",
+ "label": "Alert on groups or nested groups assigned to a role that could be used for privilege escalation",
+ "recommendedRunInterval": "1d",
+ "description": "Scans for groups, including nested groups, that are assigned to directory roles and are not role assignable, which allows group owners or group admins to add more users to the group and gain access to a potentially privileged role."
+ },
{
"name": "HuntressRogueApps",
"label": "Alert on Huntress Rogue Apps detected",
@@ -551,5 +586,11 @@
}
],
"description": "Monitors Secure Score and alerts when it falls below the specified threshold (absolute or percent value). Helps identify security gaps and areas for improvement."
+ },
+ {
+ "name": "TenantAccess",
+ "label": "Alert on tenant accessibility issues (Graph, Exchange, GDAP roles)",
+ "recommendedRunInterval": "1d",
+ "description": "Proactively monitors tenant accessibility by testing Graph API connectivity, GDAP role assignments, and Exchange Online access. Alerts when tenants have lost permissions, removed GDAP consent, or are missing required roles. Helps identify tenants that need a permission refresh or offboarding."
}
]
diff --git a/src/data/standards.json b/src/data/standards.json
index fe08f2fcbb45..0ede8237c3bf 100644
--- a/src/data/standards.json
+++ b/src/data/standards.json
@@ -1034,6 +1034,11 @@
"name": "standards.DisableSelfServiceLicenses.Exclusions",
"label": "License Ids to exclude from this standard",
"required": false
+ },
+ {
+ "type": "switch",
+ "name": "standards.DisableSelfServiceLicenses.DisableTrials",
+ "label": "Disable starting trials on behalf of your organization"
}
],
"label": "Disable Self Service Licensing",
@@ -1762,6 +1767,38 @@
"powershellEquivalent": "Rotate-DkimSigningConfig",
"recommendedBy": ["CIS", "CIPP"]
},
+ {
+ "name": "standards.EnableExchangeCloudManagement",
+ "cat": "Exchange Standards",
+ "tag": [],
+ "helpText": "Configures cloud-based management of Exchange attributes for directory-synced users with remote mailboxes in Exchange Online. This allows you to enable or disable management of Exchange attributes directly in the cloud without requiring an on-premises Exchange server. More information can be found [here](https://learn.microsoft.com/da-dk/exchange/hybrid-deployment/enable-exchange-attributes-cloud-management).",
+ "docsDescription": "Configures the IsExchangeCloudManaged property for mailboxes, allowing Exchange attributes (aliases, mailbox flags, custom attributes, etc.) to be managed directly in Exchange Online or revert back to on-premises management. This feature helps organizations retire their last on-premises Exchange server in hybrid deployments while maintaining the ability to manage recipient attributes. Identity attributes (names, UPN) remain managed on-premises via Active Directory. More information can be found [here](https://learn.microsoft.com/da-dk/exchange/hybrid-deployment/enable-exchange-attributes-cloud-management).",
+ "executiveText": "Configures cloud-based management of Exchange mailbox attributes for hybrid organizations. When enabled, eliminates the dependency on on-premises Exchange servers for attribute management. This modernizes email administration, reduces infrastructure complexity, and allows direct management of mailbox properties through cloud portals and PowerShell. When disabled, returns management to on-premises Exchange servers.",
+ "addedComponent": [
+ {
+ "type": "autoComplete",
+ "multiple": false,
+ "name": "standards.EnableExchangeCloudManagement.state",
+ "label": "Cloud Management State",
+ "options": [
+ {
+ "label": "Cloud Management",
+ "value": true
+ },
+ {
+ "label": "On-Premises Management",
+ "value": false
+ }
+ ]
+ }
+ ],
+ "label": "Configure Exchange Cloud Management for Remote/On-Premises Mailboxes",
+ "impact": "Low Impact",
+ "impactColour": "info",
+ "addedDate": "2026-03-28",
+ "powershellEquivalent": "Set-Mailbox -Identity user@domain.com -IsExchangeCloudManaged $true or $false",
+ "recommendedBy": ["Microsoft", "CIPP"]
+ },
{
"name": "standards.AddDKIM",
"cat": "Exchange Standards",
@@ -4779,7 +4816,7 @@
}
]
},
- {
+ {
"type": "switch",
"name": "standards.TeamsGlobalMeetingPolicy.AllowPSTNUsersToBypassLobby",
"label": "Allow dial-in users to bypass lobby"
@@ -5106,10 +5143,7 @@
"condition": {
"field": "standards.TeamsFederationConfiguration.DomainControl.value",
"compareType": "isOneOf",
- "compareValue": [
- "AllowSpecificExternal",
- "BlockSpecificExternal"
- ]
+ "compareValue": ["AllowSpecificExternal", "BlockSpecificExternal"]
}
}
],
@@ -5592,7 +5626,7 @@
"name": "transportRuleTemplate",
"label": "Select Transport Rule Template",
"api": {
- "url": "/api/ListTransportRulesTemplates",
+ "url": "/api/ListTransportRulesTemplates?noJson=true",
"labelField": "name",
"valueField": "GUID",
"queryKey": "ListTransportRulesTemplates"
@@ -5757,6 +5791,36 @@
}
]
},
+ {
+ "name": "standards.TenantAllowBlockListTemplate",
+ "label": "Tenant Allow/Block List Template",
+ "cat": "Exchange Standards",
+ "disabledFeatures": {
+ "report": false,
+ "warn": false,
+ "remediate": false
+ },
+ "impact": "Medium Impact",
+ "addedDate": "2026-04-02",
+ "helpText": "Deploy tenant allow/block list entries from a saved template.",
+ "executiveText": "Deploys standardized tenant allow/block list entries across tenants. These templates ensure consistent email filtering rules are applied, managing which senders, URLs, file hashes, and IP addresses are allowed or blocked across the organization.",
+ "addedComponent": [
+ {
+ "type": "autoComplete",
+ "name": "TenantAllowBlockListTemplate",
+ "required": false,
+ "multiple": true,
+ "label": "Select Tenant Allow/Block List Template",
+ "api": {
+ "url": "/api/ListTenantAllowBlockListTemplates",
+ "labelField": "templateName",
+ "valueField": "GUID",
+ "queryKey": "ListTenantAllowBlockListTemplates",
+ "showRefresh": true
+ }
+ }
+ ]
+ },
{
"name": "standards.MailboxRecipientLimits",
"cat": "Exchange Standards",
@@ -5847,15 +5911,21 @@
"name": "standards.DeployCheckChromeExtension",
"cat": "Intune Standards",
"tag": [],
- "helpText": "Deploys the Check Chrome extension via Intune OMA-URI custom policies for both Chrome and Edge browsers with configurable settings. Chrome ID: benimdeioplgkhanklclahllklceahbe, Edge ID: knepjpocdagponkonnbggpcnhnaikajg",
- "docsDescription": "Creates Intune OMA-URI custom policies that automatically install and configure the Check Chrome extension on managed devices for both Google Chrome and Microsoft Edge browsers. This ensures the extension is deployed consistently across all corporate devices with customizable settings.",
- "executiveText": "Automatically deploys the Check browser extension across all company devices with configurable security and branding settings, ensuring consistent security monitoring and compliance capabilities. This extension provides enhanced security features and monitoring tools that help protect against threats while maintaining user productivity.",
+ "helpText": "Deploys the Check by CyberDrain browser extension via a Win32 script app in Intune for both Chrome and Edge browsers with configurable settings. Chrome ID: benimdeioplgkhanklclahllklceahbe, Edge ID: knepjpocdagponkonnbggpcnhnaikajg",
+ "docsDescription": "Creates an Intune Win32 script application that writes registry keys to install and configure the Check by CyberDrain browser extension on managed devices for both Google Chrome and Microsoft Edge browsers. Uses a PowerShell detection script to enforce configuration drift — when settings change in CIPP the app is automatically redeployed.",
+ "executiveText": "Automatically deploys the Check by CyberDrain browser extension across all company devices with configurable security and branding settings, ensuring consistent security monitoring and compliance capabilities. This extension provides enhanced security features and monitoring tools that help protect against threats while maintaining user productivity.",
"addedComponent": [
+ {
+ "type": "switch",
+ "name": "standards.DeployCheckChromeExtension.showNotifications",
+ "label": "Show notifications",
+ "defaultValue": true
+ },
{
"type": "switch",
"name": "standards.DeployCheckChromeExtension.enableValidPageBadge",
"label": "Enable valid page badge",
- "defaultValue": true
+ "defaultValue": false
},
{
"type": "switch",
@@ -5863,6 +5933,12 @@
"label": "Enable page blocking",
"defaultValue": true
},
+ {
+ "type": "switch",
+ "name": "standards.DeployCheckChromeExtension.forceToolbarPin",
+ "label": "Force pin extension to toolbar",
+ "defaultValue": false
+ },
{
"type": "switch",
"name": "standards.DeployCheckChromeExtension.enableCippReporting",
@@ -5874,13 +5950,14 @@
"name": "standards.DeployCheckChromeExtension.customRulesUrl",
"label": "Custom Rules URL",
"placeholder": "https://YOUR-CIPP-SERVER-URL/rules.json",
+ "helperText": "Enter the URL for custom rules if you have them. This should point to a JSON file with the same structure as the rules.json used for CIPP reporting.",
"required": false
},
{
"type": "number",
"name": "standards.DeployCheckChromeExtension.updateInterval",
"label": "Update interval (hours)",
- "defaultValue": 12
+ "defaultValue": 24
},
{
"type": "switch",
@@ -5888,6 +5965,45 @@
"label": "Enable debug logging",
"defaultValue": false
},
+ {
+ "type": "switch",
+ "name": "standards.DeployCheckChromeExtension.enableGenericWebhook",
+ "label": "Enable generic webhook",
+ "defaultValue": false
+ },
+ {
+ "type": "textField",
+ "name": "standards.DeployCheckChromeExtension.webhookUrl",
+ "label": "Webhook URL",
+ "placeholder": "https://webhook.example.com/endpoint",
+ "required": false
+ },
+ {
+ "type": "autoComplete",
+ "multiple": true,
+ "creatable": true,
+ "required": false,
+ "name": "standards.DeployCheckChromeExtension.webhookEvents",
+ "label": "Webhook Events",
+ "placeholder": "e.g. pageBlocked, pageAllowed"
+ },
+ {
+ "type": "autoComplete",
+ "multiple": true,
+ "creatable": true,
+ "required": false,
+ "freeSolo": true,
+ "name": "standards.DeployCheckChromeExtension.urlAllowlist",
+ "label": "URL Allowlist",
+ "placeholder": "e.g. https://example.com/*",
+ "helperText": "Enter URLs to allowlist in the extension. Press enter to add each URL. Wildcards are allowed. This should be used for sites that are being blocked by the extension but are known to be safe."
+ },
+ {
+ "type": "switch",
+ "name": "standards.DeployCheckChromeExtension.domainSquattingEnabled",
+ "label": "Enable domain squatting detection",
+ "defaultValue": true
+ },
{
"type": "textField",
"name": "standards.DeployCheckChromeExtension.companyName",
@@ -5895,6 +6011,13 @@
"placeholder": "YOUR-COMPANY",
"required": false
},
+ {
+ "type": "textField",
+ "name": "standards.DeployCheckChromeExtension.companyURL",
+ "label": "Company URL",
+ "placeholder": "https://yourcompany.com",
+ "required": false
+ },
{
"type": "textField",
"name": "standards.DeployCheckChromeExtension.productName",
@@ -5909,11 +6032,32 @@
"placeholder": "support@yourcompany.com",
"required": false
},
+ {
+ "type": "textField",
+ "name": "standards.DeployCheckChromeExtension.supportUrl",
+ "label": "Support URL",
+ "placeholder": "https://support.yourcompany.com",
+ "required": false
+ },
+ {
+ "type": "textField",
+ "name": "standards.DeployCheckChromeExtension.privacyPolicyUrl",
+ "label": "Privacy Policy URL",
+ "placeholder": "https://yourcompany.com/privacy",
+ "required": false
+ },
+ {
+ "type": "textField",
+ "name": "standards.DeployCheckChromeExtension.aboutUrl",
+ "label": "About URL",
+ "placeholder": "https://yourcompany.com/about",
+ "required": false
+ },
{
"type": "textField",
"name": "standards.DeployCheckChromeExtension.primaryColor",
"label": "Primary Color",
- "placeholder": "#0044CC",
+ "placeholder": "#F77F00",
"required": false
},
{
@@ -5925,7 +6069,7 @@
},
{
"name": "AssignTo",
- "label": "Who should this policy be assigned to?",
+ "label": "Who should this app be assigned to?",
"type": "radio",
"options": [
{
@@ -5957,11 +6101,11 @@
"label": "Enter the custom group name if you selected 'Assign to Custom Group'. Wildcards are allowed."
}
],
- "label": "Deploy Check Chrome Extension",
+ "label": "Deploy Check by CyberDrain Browser Extension",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2025-09-18",
- "powershellEquivalent": "New-GraphPostRequest -uri 'https://graph.microsoft.com/beta/deviceManagement/configurationPolicies'",
+ "powershellEquivalent": "Add-CIPPW32ScriptApplication",
"recommendedBy": ["CIPP"]
},
{
@@ -6028,5 +6172,217 @@
"impactColour": "info",
"addedDate": "2025-11-19",
"powershellEquivalent": "New-GraphPostRequest to /beta/security/secureScoreControlProfiles/{id}"
+ },
+ {
+ "name": "standards.ColleagueImpersonationAlert",
+ "cat": "Exchange Standards",
+ "tag": ["Exchange", "Security", "Transport Rules"],
+ "helpText": "Creates/updates 5x Exchange Online transport rules (A-E, F-J, K-O, P-T, U-Z) that prepend an HTML disclaimer banner to inbound emails where the sender display name matches a mailbox in the organisation. Accepted tenant domains are always exempt automatically. Inactive users are removed and enabled users are added. Any manually configured sender or domain exemptions already present on existing rules are preserved.",
+ "docsDescription": "Creates five Exchange Online transport rules grouped by the first letter of user display names (A-E, F-J, K-O, P-T, U-Z). Each rule fires when an external sender's From header matches a display name in that group, prepends a configurable HTML warning banner, and skips emails from accepted organisational domains. Any manually configured sender or domain exemptions on existing rules are preserved when the standard runs. The disclaimer HTML is fully customisable via the standard settings.",
+ "executiveText": "Protects staff from display-name impersonation attacks by injecting a visible warning banner on emails that appear to come from a colleague but originate externally. Rules are maintained automatically across all letter groups and updated whenever the standard runs.",
+ "addedComponent": [
+ {
+ "type": "heading",
+ "label": "Alert Banner (HTML)",
+ "required": false
+ },
+ {
+ "type": "textField",
+ "name": "standards.ColleagueImpersonationAlert.disclaimerHtml",
+ "label": "Disclaimer HTML – Paste the full HTML for the warning banner",
+ "required": true
+ },
+ {
+ "type": "heading",
+ "label": "Keyword Exclusions (Exclude certain users by keywords)",
+ "required": false
+ },
+ {
+ "type": "autoComplete",
+ "name": "standards.ColleagueImpersonationAlert.excludedMailboxes",
+ "label": "Exclude mailboxes by keywords for example any Displayname starting with (Leaver)",
+ "multiple": true,
+ "creatable": true,
+ "required": false
+ },
+ {
+ "type": "heading",
+ "label": "Exempt Senders (Email Accounts)",
+ "required": false
+ },
+ {
+ "type": "autoComplete",
+ "name": "standards.ColleagueImpersonationAlert.additionalExemptSenders",
+ "label": "Additional exempt sender addresses",
+ "multiple": true,
+ "creatable": true,
+ "required": false
+ }
+ ],
+ "label": "Colleague Impersonation Alert Transport Rules",
+ "impact": "Medium Impact",
+ "impactColour": "warning",
+ "addedDate": "2026-03-22",
+ "powershellEquivalent": "New-TransportRule / Set-TransportRule",
+ "recommendedBy": []
+ },
+ {
+ "name": "standards.DefenderCompliancePolicy",
+ "cat": "Defender Standards",
+ "tag": ["defender_mde_connector", "defender_intune_compliance"],
+ "helpText": "Configures the Microsoft Defender for Endpoint connector with Intune, enabling compliance evaluation for mobile and desktop platforms (Android, iOS, macOS, Windows). Controls which platforms connect to MDE and whether devices are blocked when partner data is missing.",
+ "docsDescription": "Configures the Microsoft Defender for Endpoint mobile threat defense connector with Intune. This enables compliance evaluation across platforms (Android, iOS/iPadOS, macOS, Windows) and controls settings like blocking unsupported OS versions, requiring partner data for compliance, and enabling mobile application management. The connector must be enabled before platform-specific compliance policies can evaluate device risk from MDE.",
+ "executiveText": "Establishes the critical link between Microsoft Defender for Endpoint and Intune, enabling security risk data from MDE to be used in device compliance policies. This ensures that only devices meeting your organization's security standards can access corporate resources, providing a foundational layer of Zero Trust security across all platforms.",
+ "addedComponent": [
+ {
+ "type": "switch",
+ "name": "standards.DefenderCompliancePolicy.ConnectAndroid",
+ "label": "Connect Android devices to MDE",
+ "defaultValue": false
+ },
+ {
+ "type": "switch",
+ "name": "standards.DefenderCompliancePolicy.ConnectAndroidCompliance",
+ "label": "Connect Android 6.0.0+ (App-based MAM)",
+ "defaultValue": false
+ },
+ {
+ "type": "switch",
+ "name": "standards.DefenderCompliancePolicy.androidDeviceBlockedOnMissingPartnerData",
+ "label": "Block Android if partner data unavailable",
+ "defaultValue": false
+ },
+ {
+ "type": "switch",
+ "name": "standards.DefenderCompliancePolicy.ConnectIos",
+ "label": "Connect iOS/iPadOS devices to MDE",
+ "defaultValue": false
+ },
+ {
+ "type": "switch",
+ "name": "standards.DefenderCompliancePolicy.ConnectIosCompliance",
+ "label": "Connect iOS 13.0+ (App-based MAM)",
+ "defaultValue": false
+ },
+ {
+ "type": "switch",
+ "name": "standards.DefenderCompliancePolicy.appSync",
+ "label": "Enable App Sync for iOS",
+ "defaultValue": false
+ },
+ {
+ "type": "switch",
+ "name": "standards.DefenderCompliancePolicy.iosDeviceBlockedOnMissingPartnerData",
+ "label": "Block iOS if partner data unavailable",
+ "defaultValue": false
+ },
+ {
+ "type": "switch",
+ "name": "standards.DefenderCompliancePolicy.allowPartnerToCollectIosCertificateMetadata",
+ "label": "Collect certificate metadata from iOS",
+ "defaultValue": false
+ },
+ {
+ "type": "switch",
+ "name": "standards.DefenderCompliancePolicy.allowPartnerToCollectIosPersonalCertificateMetadata",
+ "label": "Collect personal certificate metadata from iOS",
+ "defaultValue": false
+ },
+ {
+ "type": "switch",
+ "name": "standards.DefenderCompliancePolicy.ConnectMac",
+ "label": "Connect macOS devices to MDE",
+ "defaultValue": false
+ },
+ {
+ "type": "switch",
+ "name": "standards.DefenderCompliancePolicy.macDeviceBlockedOnMissingPartnerData",
+ "label": "Block macOS if partner data unavailable",
+ "defaultValue": false
+ },
+ {
+ "type": "switch",
+ "name": "standards.DefenderCompliancePolicy.ConnectWindows",
+ "label": "Connect Windows 10.0.15063+ to MDE",
+ "defaultValue": false
+ },
+ {
+ "type": "switch",
+ "name": "standards.DefenderCompliancePolicy.windowsMobileApplicationManagementEnabled",
+ "label": "Connect Windows (MAM)",
+ "defaultValue": false
+ },
+ {
+ "type": "switch",
+ "name": "standards.DefenderCompliancePolicy.windowsDeviceBlockedOnMissingPartnerData",
+ "label": "Block Windows if partner data unavailable",
+ "defaultValue": false
+ },
+ {
+ "type": "switch",
+ "name": "standards.DefenderCompliancePolicy.BlockunsupportedOS",
+ "label": "Block unsupported OS versions",
+ "defaultValue": false
+ },
+ {
+ "type": "switch",
+ "name": "standards.DefenderCompliancePolicy.AllowMEMEnforceCompliance",
+ "label": "Allow MEM enforcement of compliance",
+ "defaultValue": false
+ }
+ ],
+ "label": "Defender for Endpoint - Intune Compliance Connector",
+ "impact": "High Impact",
+ "impactColour": "danger",
+ "addedDate": "2026-04-02",
+ "powershellEquivalent": "Graph API - deviceManagement/mobileThreatDefenseConnectors",
+ "recommendedBy": []
+ },
+ {
+ "name": "standards.GlobalQuarantineSettings",
+ "cat": "Exchange Standards",
+ "tag": [],
+ "helpText": "Configures the Global Quarantine Policy settings including sender name, custom subject, disclaimer, from address, and org branding.",
+ "docsDescription": "Configures the Global Quarantine Policy branding and notification settings for the tenant. This includes the quarantine notification sender display name, custom subject line, disclaimer text, the from address used for notifications, and whether to use org branding. Notification frequency is managed separately by the GlobalQuarantineNotifications standard.",
+ "executiveText": "Ensures quarantine notification emails are branded and configured consistently, so end users receive clear, professional alerts about quarantined messages and know how to request release.",
+ "addedComponent": [
+ {
+ "type": "textField",
+ "name": "standards.GlobalQuarantineSettings.SenderName",
+ "label": "Sender Display Name (e.g. Contoso-Office365Alerts)",
+ "helperText": "Will be overridden if an active sender address with an existing display name is used.",
+ "required": false
+ },
+ {
+ "type": "textField",
+ "name": "standards.GlobalQuarantineSettings.CustomSubject",
+ "label": "Subject",
+ "required": false
+ },
+ {
+ "type": "textField",
+ "name": "standards.GlobalQuarantineSettings.CustomDisclaimer",
+ "label": "Disclaimer (max 200 characters)",
+ "required": false
+ },
+ {
+ "type": "textField",
+ "name": "standards.GlobalQuarantineSettings.FromAddress",
+ "label": "Specify Sender Address (must be an internal mailbox)",
+ "required": false
+ },
+ {
+ "type": "switch",
+ "name": "standards.GlobalQuarantineSettings.OrganizationBrandingEnabled",
+ "label": "Use Organization Branding (logo)",
+ "helperText": "Requires branding to be configured in the Microsoft 365 admin centre."
+ }
+ ],
+ "label": "Configure Global Quarantine Notification Settings",
+ "impact": "Low Impact",
+ "impactColour": "info",
+ "addedDate": "2026-04-02",
+ "powershellEquivalent": "Set-QuarantinePolicy (GlobalQuarantinePolicy)",
+ "recommendedBy": []
}
]
diff --git a/src/layouts/TabbedLayout.jsx b/src/layouts/TabbedLayout.jsx
index b268d6680cd5..a085b528b45c 100644
--- a/src/layouts/TabbedLayout.jsx
+++ b/src/layouts/TabbedLayout.jsx
@@ -1,22 +1,22 @@
-import { usePathname, useRouter } from "next/navigation";
-import { Box, Divider, Stack, Tab, Tabs } from "@mui/material";
-import { useSearchParams } from "next/navigation";
+import { usePathname, useRouter } from 'next/navigation'
+import { Box, Divider, Stack, Tab, Tabs } from '@mui/material'
+import { useSearchParams } from 'next/navigation'
export const TabbedLayout = (props) => {
- const { tabOptions, children } = props;
- const router = useRouter();
- const pathname = usePathname();
- const searchParams = useSearchParams();
+ const { tabOptions, children } = props
+ const router = useRouter()
+ const pathname = usePathname()
+ const searchParams = useSearchParams()
const handleTabsChange = (event, value) => {
// Preserve existing query parameters when changing tabs
- const currentParams = new URLSearchParams(searchParams.toString());
- const queryString = currentParams.toString();
- const newPath = queryString ? `${value}?${queryString}` : value;
- router.push(newPath);
- };
+ const currentParams = new URLSearchParams(searchParams.toString())
+ const queryString = currentParams.toString()
+ const newPath = queryString ? `${value}?${queryString}` : value
+ router.push(newPath)
+ }
- const currentTab = tabOptions.find((option) => option.path === pathname);
+ const currentTab = tabOptions.find((option) => option.path === pathname)
return (
{
{
{children}
- );
-};
+ )
+}
diff --git a/src/layouts/config.js b/src/layouts/config.js
index 4f8be5c348c7..ec6a017bf71b 100644
--- a/src/layouts/config.js
+++ b/src/layouts/config.js
@@ -1,1001 +1,1052 @@
-import { BuildingOfficeIcon, HomeIcon, UsersIcon, WrenchIcon } from "@heroicons/react/24/outline";
+import { BuildingOfficeIcon, HomeIcon, UsersIcon, WrenchIcon } from '@heroicons/react/24/outline'
import {
CloudOutlined,
HomeRepairService,
Laptop,
MailOutline,
ShieldOutlined,
-} from "@mui/icons-material";
-import { SvgIcon } from "@mui/material";
+} from '@mui/icons-material'
+import { SvgIcon } from '@mui/material'
export const nativeMenuItems = [
{
- title: "Dashboard",
- path: "/",
+ title: 'Dashboard',
+ path: '/',
icon: (
),
- permissions: ["CIPP.Core.*"],
+ permissions: ['CIPP.Core.*'],
},
{
- title: "Identity Management",
- type: "header",
+ title: 'Identity Management',
+ type: 'header',
icon: (
),
- permissions: ["Identity.*"],
+ permissions: ['Identity.*'],
items: [
{
- title: "Administration",
- permissions: ["Identity.User.*"],
+ title: 'Administration',
+ permissions: ['Identity.User.*'],
items: [
{
- title: "Users",
- path: "/identity/administration/users",
- permissions: ["Identity.User.*"],
+ title: 'Users',
+ path: '/identity/administration/users',
+ permissions: ['Identity.User.*'],
},
{
- title: "Risky Users",
- path: "/identity/administration/risky-users",
- permissions: ["Identity.User.*"],
+ title: 'Risky Users',
+ path: '/identity/administration/risky-users',
+ permissions: ['Identity.User.*'],
},
{
- title: "Groups",
- path: "/identity/administration/groups",
- permissions: ["Identity.Group.*"],
+ title: 'Groups',
+ path: '/identity/administration/groups',
+ permissions: ['Identity.Group.*'],
},
{
- title: "Group Templates",
- path: "/identity/administration/group-templates",
- permissions: ["Identity.Group.*"],
- scope: "global",
+ title: 'Group Templates',
+ path: '/identity/administration/group-templates',
+ permissions: ['Identity.Group.*'],
+ scope: 'global',
},
{
- title: "Devices",
- path: "/identity/administration/devices",
- permissions: ["Identity.Device.*"],
+ title: 'Devices',
+ path: '/identity/administration/devices',
+ permissions: ['Identity.Device.*'],
},
{
- title: "Deleted Items",
- path: "/identity/administration/deleted-items",
- permissions: ["Identity.User.*"],
+ title: 'Deleted Items',
+ path: '/identity/administration/deleted-items',
+ permissions: ['Identity.User.*'],
},
{
- title: "Roles",
- path: "/identity/administration/roles",
- permissions: ["Identity.Role.*"],
+ title: 'Roles',
+ path: '/identity/administration/roles',
+ permissions: ['Identity.Role.*'],
},
{
- title: "JIT Admin",
- path: "/identity/administration/jit-admin",
- permissions: ["Identity.Role.*"],
+ title: 'JIT Admin',
+ path: '/identity/administration/jit-admin',
+ permissions: ['Identity.Role.*'],
},
{
- title: "JIT Admin Templates",
- path: "/identity/administration/jit-admin-templates",
- permissions: ["Identity.Role.*"],
- scope: "global",
+ title: 'JIT Admin Templates',
+ path: '/identity/administration/jit-admin-templates',
+ permissions: ['Identity.Role.*'],
+ scope: 'global',
},
{
- title: "Vacation Mode",
- path: "/identity/administration/vacation-mode",
- permissions: ["Identity.User.*"],
+ title: 'Vacation Mode',
+ path: '/identity/administration/vacation-mode',
+ permissions: ['Identity.User.*'],
},
{
- title: "Offboarding Wizard",
- path: "/identity/administration/offboarding-wizard",
- permissions: ["Identity.User.*"],
+ title: 'Offboarding Wizard',
+ path: '/identity/administration/offboarding-wizard',
+ permissions: ['Identity.User.*'],
},
],
},
{
- title: "Reports",
+ title: 'Reports',
permissions: [
- "Identity.User.*",
- "Identity.Group.*",
- "Identity.Device.*",
- "Identity.Role.*",
- "Identity.AuditLog.*",
+ 'Identity.User.*',
+ 'Identity.Group.*',
+ 'Identity.Device.*',
+ 'Identity.Role.*',
+ 'Identity.AuditLog.*',
],
items: [
{
- title: "MFA Report",
- path: "/identity/reports/mfa-report",
- permissions: ["Identity.User.*"],
+ title: 'MFA Report',
+ path: '/identity/reports/mfa-report',
+ permissions: ['Identity.User.*'],
},
{
- title: "Inactive Users",
- path: "/identity/reports/inactive-users-report",
- permissions: ["Identity.User.*"],
+ title: 'Inactive Users',
+ path: '/identity/reports/inactive-users-report',
+ permissions: ['Identity.User.*'],
},
{
- title: "Sign-in Report",
- path: "/identity/reports/signin-report",
- permissions: ["Identity.User.*"],
+ title: 'Sign-in Report',
+ path: '/identity/reports/signin-report',
+ permissions: ['Identity.User.*'],
},
{
- title: "AAD Connect Report",
- path: "/identity/reports/azure-ad-connect-report",
- permissions: ["Identity.User.*"],
+ title: 'AAD Connect Report',
+ path: '/identity/reports/azure-ad-connect-report',
+ permissions: ['Identity.User.*'],
},
{
- title: "Risk Detections",
- path: "/identity/reports/risk-detections",
- permissions: ["Identity.User.*"],
+ title: 'Risk Detections',
+ path: '/identity/reports/risk-detections',
+ permissions: ['Identity.User.*'],
},
],
},
],
},
{
- title: "Tenant Administration",
- type: "header",
+ title: 'Tenant Administration',
+ type: 'header',
icon: (
),
- permissions: ["Tenant.*", "Identity.AuditLog.*", "CIPP.Backup.*", "Scheduler.Billing.*"],
+ permissions: ['Tenant.*', 'Identity.AuditLog.*', 'CIPP.Backup.*', 'Scheduler.Billing.*'],
items: [
{
- title: "Administration",
- permissions: ["Tenant.Administration.*"],
+ title: 'Administration',
+ permissions: ['Tenant.Administration.*'],
items: [
{
- title: "Tenants",
- path: "/tenant/administration/tenants",
- permissions: ["Tenant.Administration.*"],
- scope: "global",
+ title: 'Tenants',
+ path: '/tenant/administration/tenants',
+ permissions: ['Tenant.Administration.*'],
+ scope: 'global',
},
{
- title: "Alert Configuration",
- path: "/tenant/administration/alert-configuration",
- permissions: ["Tenant.Alert.*"],
- scope: "global",
+ title: 'Alert Configuration',
+ path: '/tenant/administration/alert-configuration',
+ permissions: ['Tenant.Alert.*'],
+ scope: 'global',
},
{
- title: "Audit Logs",
- path: "/tenant/administration/audit-logs",
- permissions: ["Identity.AuditLog.*"],
+ title: 'Audit Logs',
+ path: '/tenant/administration/audit-logs',
+ permissions: ['Identity.AuditLog.*'],
},
{
- title: "Applications",
- path: "/tenant/administration/applications/enterprise-apps",
- permissions: ["Tenant.Application.*"],
+ title: 'Applications',
+ path: '/tenant/administration/applications/enterprise-apps',
+ permissions: ['Tenant.Application.*'],
},
{
- title: "Secure Score",
- path: "/tenant/administration/securescore",
- permissions: ["Tenant.Administration.*"],
+ title: 'Secure Score',
+ path: '/tenant/administration/securescore',
+ permissions: ['Tenant.Administration.*'],
},
{
- title: "App Consent Requests",
- path: "/tenant/administration/app-consent-requests",
- permissions: ["Tenant.Application.*"],
+ title: 'App Consent Requests',
+ path: '/tenant/administration/app-consent-requests',
+ permissions: ['Tenant.Application.*'],
},
{
- title: "Authentication Methods",
- path: "/tenant/administration/authentication-methods",
- permissions: ["Tenant.Config.*"],
+ title: 'Authentication Methods',
+ path: '/tenant/administration/authentication-methods',
+ permissions: ['Tenant.Config.*'],
},
{
- title: "Partner Relationships",
- path: "/tenant/administration/partner-relationships",
- permissions: ["Tenant.Relationship.*"],
+ title: 'Partner Relationships',
+ path: '/tenant/administration/partner-relationships',
+ permissions: ['Tenant.Relationship.*'],
},
{
- title: "Domains",
- path: "/tenant/administration/domains",
- permissions: ["Tenant.Administration.*"],
+ title: 'Domains',
+ path: '/tenant/administration/domains',
+ permissions: ['Tenant.Administration.*'],
},
],
},
{
- title: "GDAP Management",
- path: "/tenant/gdap-management",
- permissions: ["Tenant.Relationship.*"],
- scope: "global",
+ title: 'GDAP Management',
+ path: '/tenant/gdap-management',
+ permissions: ['Tenant.Relationship.*'],
+ scope: 'global',
},
{
- title: "Standards & Drift",
+ title: 'Standards & Drift',
permissions: [
- "Tenant.Standards.*",
- "Tenant.BestPracticeAnalyser.*",
- "Tenant.DomainAnalyser.*",
+ 'Tenant.Standards.*',
+ 'Tenant.BestPracticeAnalyser.*',
+ 'Tenant.DomainAnalyser.*',
],
items: [
{
- title: "Standards Management",
- path: "/tenant/standards/alignment",
- permissions: ["Tenant.Standards.*"],
- scope: "global",
+ title: 'Standards Management',
+ path: '/tenant/standards/alignment',
+ permissions: ['Tenant.Standards.*'],
+ scope: 'global',
},
{
- title: "Best Practice Analyser",
- path: "/tenant/standards/bpa-report",
- permissions: ["Tenant.BestPracticeAnalyser.*"],
- scope: "global",
+ title: 'Best Practice Analyser',
+ path: '/tenant/standards/bpa-report',
+ permissions: ['Tenant.BestPracticeAnalyser.*'],
+ scope: 'global',
},
{
- title: "Domains Analyser",
- path: "/tenant/standards/domains-analyser",
- permissions: ["Tenant.DomainAnalyser.*"],
- scope: "global",
+ title: 'Domains Analyser',
+ path: '/tenant/standards/domains-analyser',
+ permissions: ['Tenant.DomainAnalyser.*'],
+ scope: 'global',
},
],
},
{
- title: "Conditional Access",
- permissions: ["Tenant.ConditionalAccess.*"],
+ title: 'Conditional Access',
+ permissions: ['Tenant.ConditionalAccess.*'],
items: [
{
- title: "CA Policies",
- path: "/tenant/conditional/list-policies",
- permissions: ["Tenant.ConditionalAccess.*"],
+ title: 'CA Policies',
+ path: '/tenant/conditional/list-policies',
+ permissions: ['Tenant.ConditionalAccess.*'],
},
{
- title: "CA Vacation Mode",
- path: "/tenant/conditional/deploy-vacation",
- permissions: ["Tenant.ConditionalAccess.*"],
+ title: 'CA Vacation Mode',
+ path: '/tenant/conditional/deploy-vacation',
+ permissions: ['Tenant.ConditionalAccess.*'],
},
{
- title: "CA Templates",
- path: "/tenant/conditional/list-template",
- permissions: ["Tenant.ConditionalAccess.*"],
- scope: "global",
+ title: 'CA Templates',
+ path: '/tenant/conditional/list-template',
+ permissions: ['Tenant.ConditionalAccess.*'],
+ scope: 'global',
},
{
- title: "Named Locations",
- path: "/tenant/conditional/list-named-locations",
- permissions: ["Tenant.ConditionalAccess.*"],
+ title: 'Named Locations',
+ path: '/tenant/conditional/list-named-locations',
+ permissions: ['Tenant.ConditionalAccess.*'],
},
],
},
{
- title: "Reports",
- permissions: ["Tenant.Administration.*", "Scheduler.Billing.*", "Tenant.Application.*"],
+ title: 'Reports',
+ permissions: ['Tenant.Administration.*', 'Scheduler.Billing.*', 'Tenant.Application.*'],
items: [
{
- title: "Licence Report",
- path: "/tenant/reports/list-licenses",
- permissions: ["Tenant.Administration.*"],
+ title: 'Licence Report',
+ path: '/tenant/reports/list-licenses',
+ permissions: ['Tenant.Administration.*'],
},
{
- title: "Sherweb Licence Report",
- path: "/tenant/reports/list-csp-licenses",
- permissions: ["Tenant.Directory.*"],
+ title: 'Sherweb Licence Report',
+ path: '/tenant/reports/list-csp-licenses',
+ permissions: ['Tenant.Directory.*'],
},
{
- title: "Consented Applications",
- path: "/tenant/reports/application-consent",
- permissions: ["Tenant.Application.*"],
+ title: 'Consented Applications',
+ path: '/tenant/reports/application-consent',
+ permissions: ['Tenant.Application.*'],
+ },
+ {
+ title: 'Graph / Office Reports',
+ path: '/tenant/reports/graph-office-reports',
+ permissions: ['Tenant.Reports.*'],
},
],
},
{
- title: "Manage Tenant",
- path: "/tenant/manage/edit",
- permissions: ["Tenant.Administration.*"],
+ title: 'Manage Tenant',
+ path: '/tenant/manage/edit',
+ permissions: ['Tenant.Administration.*'],
},
],
},
{
- title: "Security & Compliance",
- type: "header",
+ title: 'Security & Compliance',
+ type: 'header',
icon: (
),
permissions: [
- "Security.Incident.*",
- "Security.Alert.*",
- "Tenant.DeviceCompliance.*",
- "Security.SafeLinksPolicy.*",
+ 'Security.Incident.*',
+ 'Security.Alert.*',
+ 'Tenant.DeviceCompliance.*',
+ 'Security.SafeLinksPolicy.*',
],
items: [
{
- title: "Incidents & Alerts",
- permissions: ["Security.Incident.*"],
+ title: 'Incidents & Alerts',
+ permissions: ['Security.Incident.*'],
items: [
{
- title: "Incidents",
- path: "/security/incidents/list-incidents",
- permissions: ["Security.Incident.*"],
+ title: 'Incidents',
+ path: '/security/incidents/list-incidents',
+ permissions: ['Security.Incident.*'],
},
{
- title: "Alerts",
- path: "/security/incidents/list-alerts",
- permissions: ["Security.Alert.*"],
+ title: 'Alerts',
+ path: '/security/incidents/list-alerts',
+ permissions: ['Security.Alert.*'],
},
{
- title: "MDO Alerts",
- path: "/security/incidents/list-mdo-alerts",
- permissions: ["Security.Alert.*"],
+ title: 'MDO Alerts',
+ path: '/security/incidents/list-mdo-alerts',
+ permissions: ['Security.Alert.*'],
},
{
- title: "Check Alerts",
- path: "/security/incidents/list-check-alerts",
- permissions: ["Security.Alert.*"],
+ title: 'Check Alerts',
+ path: '/security/incidents/list-check-alerts',
+ permissions: ['Security.Alert.*'],
},
],
},
{
- title: "Defender",
- permissions: ["Security.Alert.*"],
+ title: 'Defender',
+ permissions: ['Security.Alert.*'],
items: [
{
- title: "Defender Status",
- path: "/security/defender/list-defender",
- permissions: ["Security.Alert.*"],
+ title: 'Defender Status',
+ path: '/security/defender/list-defender',
+ permissions: ['Security.Alert.*'],
},
{
- title: "Defender Deployment",
- path: "/security/defender/deployment",
- permissions: ["Security.Alert.*"],
+ title: 'Defender Deployment',
+ path: '/security/defender/deployment',
+ permissions: ['Security.Alert.*'],
},
{
- title: "Vulnerabilities",
- path: "/security/defender/list-defender-tvm",
- permissions: ["Security.Alert.*"],
+ title: 'Vulnerabilities',
+ path: '/security/defender/list-defender-tvm',
+ permissions: ['Security.Alert.*'],
},
],
},
{
- title: "Reports",
- permissions: ["Tenant.DeviceCompliance.*"],
+ title: 'Reports',
+ permissions: ['Tenant.DeviceCompliance.*', 'Security.Defender.*'],
items: [
{
- title: "Device Compliance",
- path: "/security/reports/list-device-compliance",
- permissions: ["Tenant.DeviceCompliance.*"],
+ title: 'Device Compliance',
+ path: '/security/reports/list-device-compliance',
+ permissions: ['Tenant.DeviceCompliance.*'],
+ },
+ {
+ title: 'MDE Onboarding',
+ path: '/security/reports/mde-onboarding',
+ permissions: ['Security.Defender.*'],
},
],
},
{
- title: "Safe Links",
- permissions: ["Security.SafeLinksPolicy.*"],
+ title: 'Safe Links',
+ permissions: ['Security.SafeLinksPolicy.*'],
items: [
{
- title: "Safe Links Policies",
- path: "/security/safelinks/safelinks",
- permissions: ["Security.SafeLinksPolicy.*"],
+ title: 'Safe Links Policies',
+ path: '/security/safelinks/safelinks',
+ permissions: ['Security.SafeLinksPolicy.*'],
},
{
- title: "Safe Links Templates",
- path: "/security/safelinks/safelinks-template",
- permissions: ["Security.SafeLinksPolicy.*"],
- scope: "global",
+ title: 'Safe Links Templates',
+ path: '/security/safelinks/safelinks-template',
+ permissions: ['Security.SafeLinksPolicy.*'],
+ scope: 'global',
},
],
},
],
},
{
- title: "Intune",
- type: "header",
+ title: 'Intune',
+ type: 'header',
icon: (
),
permissions: [
- "Endpoint.Application.*",
- "Endpoint.Autopilot.*",
- "Endpoint.MEM.*",
- "Endpoint.Device.*",
- "Endpoint.Device.Read",
+ 'Endpoint.Application.*',
+ 'Endpoint.Autopilot.*',
+ 'Endpoint.MEM.*',
+ 'Endpoint.Device.*',
+ 'Endpoint.Device.Read',
],
items: [
{
- title: "Applications",
- permissions: ["Endpoint.Application.*"],
+ title: 'Applications',
+ permissions: ['Endpoint.Application.*'],
items: [
{
- title: "Applications",
- path: "/endpoint/applications/list",
- permissions: ["Endpoint.Application.*"],
+ title: 'Applications',
+ path: '/endpoint/applications/list',
+ permissions: ['Endpoint.Application.*'],
+ },
+ {
+ title: 'Application Queue',
+ path: '/endpoint/applications/queue',
+ permissions: ['Endpoint.Application.*'],
},
{
- title: "Application Queue",
- path: "/endpoint/applications/queue",
- permissions: ["Endpoint.Application.*"],
+ title: 'Application Templates',
+ path: '/endpoint/applications/templates',
+ permissions: ['Endpoint.Application.*'],
},
],
},
{
- title: "Autopilot",
- permissions: ["Endpoint.Autopilot.*"],
+ title: 'Autopilot',
+ permissions: ['Endpoint.Autopilot.*'],
items: [
{
- title: "Autopilot Devices",
- path: "/endpoint/autopilot/list-devices",
- permissions: ["Endpoint.Autopilot.*"],
+ title: 'Autopilot Devices',
+ path: '/endpoint/autopilot/list-devices',
+ permissions: ['Endpoint.Autopilot.*'],
},
{
- title: "Add Autopilot Device",
- path: "/endpoint/autopilot/add-device",
- permissions: ["Endpoint.Autopilot.*"],
+ title: 'Add Autopilot Device',
+ path: '/endpoint/autopilot/add-device',
+ permissions: ['Endpoint.Autopilot.*'],
},
{
- title: "Profiles",
- path: "/endpoint/autopilot/list-profiles",
- permissions: ["Endpoint.Autopilot.*"],
+ title: 'Profiles',
+ path: '/endpoint/autopilot/list-profiles',
+ permissions: ['Endpoint.Autopilot.*'],
},
{
- title: "Status Pages",
- path: "/endpoint/autopilot/list-status-pages",
- permissions: ["Endpoint.Autopilot.*"],
+ title: 'Status Pages',
+ path: '/endpoint/autopilot/list-status-pages',
+ permissions: ['Endpoint.Autopilot.*'],
},
],
},
{
- title: "Device Management",
- permissions: ["Endpoint.MEM.*"],
+ title: 'Device Management',
+ permissions: ['Endpoint.MEM.*'],
items: [
{
- title: "Devices",
- path: "/endpoint/MEM/devices",
- permissions: ["Endpoint.Device.*"],
+ title: 'Devices',
+ path: '/endpoint/MEM/devices',
+ permissions: ['Endpoint.Device.*'],
},
{
- title: "Configuration Policies",
- path: "/endpoint/MEM/list-policies",
- permissions: ["Endpoint.MEM.*"],
+ title: 'Configuration Policies',
+ path: '/endpoint/MEM/list-policies',
+ permissions: ['Endpoint.MEM.*'],
},
{
- title: "Compliance Policies",
- path: "/endpoint/MEM/list-compliance-policies",
- permissions: ["Endpoint.MEM.*"],
+ title: 'Compliance Policies',
+ path: '/endpoint/MEM/list-compliance-policies',
+ permissions: ['Endpoint.MEM.*'],
},
{
- title: "App Policies",
- path: "/endpoint/MEM/list-appprotection-policies",
- permissions: ["Endpoint.MEM.*"],
+ title: 'App Policies',
+ path: '/endpoint/MEM/list-appprotection-policies',
+ permissions: ['Endpoint.MEM.*'],
},
{
- title: "Policy Templates",
- path: "/endpoint/MEM/list-templates",
- permissions: ["Endpoint.MEM.*"],
- scope: "global",
+ title: 'Policy Templates',
+ path: '/endpoint/MEM/list-templates',
+ permissions: ['Endpoint.MEM.*'],
+ scope: 'global',
},
{
- title: "Reusable Settings",
- path: "/endpoint/MEM/reusable-settings",
- permissions: ["Endpoint.MEM.*"],
+ title: 'Reusable Settings',
+ path: '/endpoint/MEM/reusable-settings',
+ permissions: ['Endpoint.MEM.*'],
},
{
- title: "Reusable Settings Templates",
- path: "/endpoint/MEM/reusable-settings-templates",
- permissions: ["Endpoint.MEM.*"],
- scope: "global",
+ title: 'Reusable Settings Templates',
+ path: '/endpoint/MEM/reusable-settings-templates',
+ permissions: ['Endpoint.MEM.*'],
+ scope: 'global',
},
{
- title: "Assignment Filters",
- path: "/endpoint/MEM/assignment-filters",
- permissions: ["Endpoint.MEM.*"],
+ title: 'Assignment Filters',
+ path: '/endpoint/MEM/assignment-filters',
+ permissions: ['Endpoint.MEM.*'],
},
{
- title: "Assignment Filter Templates",
- path: "/endpoint/MEM/assignment-filter-templates",
- permissions: ["Endpoint.MEM.*"],
- scope: "global",
+ title: 'Assignment Filter Templates',
+ path: '/endpoint/MEM/assignment-filter-templates',
+ permissions: ['Endpoint.MEM.*'],
+ scope: 'global',
},
{
- title: "Scripts",
- path: "/endpoint/MEM/list-scripts",
- permissions: ["Endpoint.MEM.*"],
+ title: 'Scripts',
+ path: '/endpoint/MEM/list-scripts',
+ permissions: ['Endpoint.MEM.*'],
},
],
},
{
- title: "Reports",
- permissions: ["Endpoint.Device.*", "Endpoint.Autopilot.*", "Endpoint.MEM.*"],
+ title: 'Reports',
+ permissions: ['Endpoint.Device.*', 'Endpoint.Autopilot.*', 'Endpoint.MEM.*'],
items: [
{
- title: "Analytics Device Score",
- path: "/endpoint/reports/analyticsdevicescore",
- permissions: ["Endpoint.Device.*"],
+ title: 'Analytics Device Score',
+ path: '/endpoint/reports/analyticsdevicescore',
+ permissions: ['Endpoint.Device.*'],
},
{
- title: "Work from anywhere",
- path: "/endpoint/reports/workfromanywhere",
- permissions: ["Endpoint.Device.*"],
+ title: 'Work from anywhere',
+ path: '/endpoint/reports/workfromanywhere',
+ permissions: ['Endpoint.Device.*'],
},
{
- title: "Autopilot Deployments",
- path: "/endpoint/reports/autopilot-deployment",
- permissions: ["Endpoint.Autopilot.*"],
+ title: 'Autopilot Deployments',
+ path: '/endpoint/reports/autopilot-deployment',
+ permissions: ['Endpoint.Autopilot.*'],
},
{
- title: "Discovered Apps",
- path: "/endpoint/reports/detected-apps",
- permissions: ["Endpoint.MEM.*"],
+ title: 'Discovered Apps',
+ path: '/endpoint/reports/detected-apps',
+ permissions: ['Endpoint.MEM.*'],
},
],
},
],
},
{
- title: "Teams & SharePoint",
- type: "header",
+ title: 'Teams & SharePoint',
+ type: 'header',
icon: (
),
permissions: [
- "Sharepoint.Site.*",
- "Sharepoint.Admin.*",
- "Teams.Group.*",
- "Teams.Activity.*",
- "Teams.Voice.*",
+ 'Sharepoint.Site.*',
+ 'Sharepoint.Admin.*',
+ 'Teams.Group.*',
+ 'Teams.Activity.*',
+ 'Teams.Voice.*',
],
items: [
{
- title: "OneDrive",
- path: "/teams-share/onedrive",
- permissions: ["Sharepoint.Site.*"],
+ title: 'OneDrive',
+ path: '/teams-share/onedrive',
+ permissions: ['Sharepoint.Site.*'],
},
{
- title: "SharePoint",
- path: "/teams-share/sharepoint",
- permissions: ["Sharepoint.Admin.*"],
+ title: 'SharePoint',
+ path: '/teams-share/sharepoint',
+ permissions: ['Sharepoint.Admin.*'],
},
{
- title: "Teams",
- permissions: ["Teams.Group.*"],
+ title: 'Teams',
+ permissions: ['Teams.Group.*'],
items: [
{
- title: "Teams",
- path: "/teams-share/teams/list-team",
- permissions: ["Teams.Group.*"],
+ title: 'Teams',
+ path: '/teams-share/teams/list-team',
+ permissions: ['Teams.Group.*'],
},
{
- title: "Teams Activity",
- path: "/teams-share/teams/teams-activity",
- permissions: ["Teams.Activity.*"],
+ title: 'Teams Activity',
+ path: '/teams-share/teams/teams-activity',
+ permissions: ['Teams.Activity.*'],
},
{
- title: "Business Voice",
- path: "/teams-share/teams/business-voice",
- permissions: ["Teams.Voice.*"],
+ title: 'Business Voice',
+ path: '/teams-share/teams/business-voice',
+ permissions: ['Teams.Voice.*'],
},
],
},
],
},
{
- title: "Email & Exchange",
- type: "header",
+ title: 'Email & Exchange',
+ type: 'header',
icon: (
),
permissions: [
- "Exchange.Mailbox.*",
- "Exchange.Contact.*",
- "Exchange.SpamFilter.*",
- "Exchange.TransportRule.*",
- "Exchange.Connector.*",
- "Exchange.ConnectionFilter.*",
- "Exchange.Equipment.*",
- "Exchange.Room.*",
- "Exchange.SafeLinks.*",
- "Exchange.Group.*",
- "Exchange.RetentionPolicies.*",
+ 'Exchange.Mailbox.*',
+ 'Exchange.Contact.*',
+ 'Exchange.SpamFilter.*',
+ 'Exchange.TransportRule.*',
+ 'Exchange.Connector.*',
+ 'Exchange.ConnectionFilter.*',
+ 'Exchange.Equipment.*',
+ 'Exchange.Room.*',
+ 'Exchange.SafeLinks.*',
+ 'Exchange.Group.*',
+ 'Exchange.RetentionPolicies.*',
],
items: [
{
- title: "Administration",
- permissions: ["Exchange.Mailbox.*"],
+ title: 'Administration',
+ permissions: ['Exchange.Mailbox.*'],
items: [
{
- title: "Mailboxes",
- path: "/email/administration/mailboxes",
- permissions: ["Exchange.Mailbox.*"],
+ title: 'Mailboxes',
+ path: '/email/administration/mailboxes',
+ permissions: ['Exchange.Mailbox.*'],
},
{
- title: "Deleted Mailboxes",
- path: "/email/administration/deleted-mailboxes",
- permissions: ["Exchange.Mailbox.*"],
+ title: 'Deleted Mailboxes',
+ path: '/email/administration/deleted-mailboxes',
+ permissions: ['Exchange.Mailbox.*'],
},
{
- title: "Mailbox Rules",
- path: "/email/administration/mailbox-rules",
- permissions: ["Exchange.Mailbox.*"],
+ title: 'Mailbox Rules',
+ path: '/email/administration/mailbox-rules',
+ permissions: ['Exchange.Mailbox.*'],
},
{
- title: "Contacts",
- path: "/email/administration/contacts",
- permissions: ["Exchange.Contact.*"],
+ title: 'Contacts',
+ path: '/email/administration/contacts',
+ permissions: ['Exchange.Contact.*'],
},
{
- title: "Contact Templates",
- path: "/email/administration/contacts-template",
- permissions: ["Exchange.Contact.*"],
- scope: "global",
+ title: 'Contact Templates',
+ path: '/email/administration/contacts-template',
+ permissions: ['Exchange.Contact.*'],
+ scope: 'global',
},
{
- title: "Quarantine",
- path: "/email/administration/quarantine",
- permissions: ["Exchange.SpamFilter.*"],
+ title: 'Quarantine',
+ path: '/email/administration/quarantine',
+ permissions: ['Exchange.SpamFilter.*'],
},
{
- title: "Restricted Users",
- path: "/email/administration/restricted-users",
- permissions: ["Exchange.Mailbox.*"],
+ title: 'Restricted Users',
+ path: '/email/administration/restricted-users',
+ permissions: ['Exchange.Mailbox.*'],
},
{
- title: "Tenant Allow/Block Lists",
- path: "/email/administration/tenant-allow-block-lists",
- permissions: ["Exchange.SpamFilter.*"],
+ title: 'Tenant Allow/Block Lists',
+ path: '/email/administration/tenant-allow-block-lists',
+ permissions: ['Exchange.SpamFilter.*'],
},
{
- title: "Retention Policies & Tags",
- path: "/email/administration/exchange-retention/policies",
- permissions: ["Exchange.RetentionPolicies.*"],
+ title: 'Allow/Block List Templates',
+ path: '/email/administration/tenant-allow-block-list-templates',
+ permissions: ['Exchange.SpamFilter.*'],
+ scope: 'global',
+ },
+ {
+ title: 'Retention Policies & Tags',
+ path: '/email/administration/exchange-retention/policies',
+ permissions: ['Exchange.RetentionPolicies.*'],
},
],
},
{
- title: "Transport",
- permissions: ["Exchange.TransportRule.*"],
+ title: 'Transport',
+ permissions: ['Exchange.TransportRule.*'],
items: [
{
- title: "Transport rules",
- path: "/email/transport/list-rules",
- permissions: ["Exchange.TransportRule.*"],
+ title: 'Transport rules',
+ path: '/email/transport/list-rules',
+ permissions: ['Exchange.TransportRule.*'],
},
{
- title: "Transport Templates",
- path: "/email/transport/list-templates",
- permissions: ["Exchange.TransportRule.*"],
- scope: "global",
+ title: 'Transport Templates',
+ path: '/email/transport/list-templates',
+ permissions: ['Exchange.TransportRule.*'],
+ scope: 'global',
},
{
- title: "Connectors",
- path: "/email/transport/list-connectors",
- permissions: ["Exchange.Connector.*"],
+ title: 'Connectors',
+ path: '/email/transport/list-connectors',
+ permissions: ['Exchange.Connector.*'],
},
{
- title: "Connector Templates",
- path: "/email/transport/list-connector-templates",
- permissions: ["Exchange.Connector.*"],
- scope: "global",
+ title: 'Connector Templates',
+ path: '/email/transport/list-connector-templates',
+ permissions: ['Exchange.Connector.*'],
+ scope: 'global',
},
],
},
{
- title: "Spamfilter",
- permissions: ["Exchange.SpamFilter.*"],
+ title: 'Spamfilter',
+ permissions: ['Exchange.SpamFilter.*'],
items: [
{
- title: "Spamfilter",
- path: "/email/spamfilter/list-spamfilter",
- permissions: ["Exchange.SpamFilter.*"],
+ title: 'Spamfilter',
+ path: '/email/spamfilter/list-spamfilter',
+ permissions: ['Exchange.SpamFilter.*'],
},
{
- title: "Spamfilter templates",
- path: "/email/spamfilter/list-templates",
- permissions: ["Exchange.SpamFilter.*"],
- scope: "global",
+ title: 'Spamfilter templates',
+ path: '/email/spamfilter/list-templates',
+ permissions: ['Exchange.SpamFilter.*'],
+ scope: 'global',
},
{
- title: "Connection filter",
- path: "/email/spamfilter/list-connectionfilter",
- permissions: ["Exchange.ConnectionFilter.*"],
+ title: 'Connection filter',
+ path: '/email/spamfilter/list-connectionfilter',
+ permissions: ['Exchange.ConnectionFilter.*'],
},
{
- title: "Connection filter templates",
- path: "/email/spamfilter/list-connectionfilter-templates",
- permissions: ["Exchange.ConnectionFilter.*"],
- scope: "global",
+ title: 'Connection filter templates',
+ path: '/email/spamfilter/list-connectionfilter-templates',
+ permissions: ['Exchange.ConnectionFilter.*'],
+ scope: 'global',
},
{
- title: "Quarantine Policies",
- path: "/email/spamfilter/list-quarantine-policies",
- permissions: ["Exchange.SpamFilter.*"],
+ title: 'Quarantine Policies',
+ path: '/email/spamfilter/list-quarantine-policies',
+ permissions: ['Exchange.SpamFilter.*'],
},
],
},
{
- title: "Resource Management",
- permissions: ["Exchange.Equipment.*"],
+ title: 'Resource Management',
+ permissions: ['Exchange.Equipment.*'],
items: [
{
- title: "Equipment",
- path: "/email/resources/management/equipment",
- permissions: ["Exchange.Equipment.*"],
+ title: 'Equipment',
+ path: '/email/resources/management/equipment',
+ permissions: ['Exchange.Equipment.*'],
},
{
- title: "Rooms",
- path: "/email/resources/management/list-rooms",
- permissions: ["Exchange.Room.*"],
+ title: 'Rooms',
+ path: '/email/resources/management/list-rooms',
+ permissions: ['Exchange.Room.*'],
},
{
- title: "Room Lists",
- path: "/email/resources/management/room-lists",
- permissions: ["Exchange.Room.*"],
+ title: 'Room Lists',
+ path: '/email/resources/management/room-lists',
+ permissions: ['Exchange.Room.*'],
},
],
},
{
- title: "Reports",
+ title: 'Reports',
permissions: [
- "Exchange.Mailbox.*",
- "Exchange.SpamFilter.*",
- "Exchange.SafeLinks.*",
- "Exchange.Group.*",
+ 'Exchange.Mailbox.*',
+ 'Exchange.SpamFilter.*',
+ 'Exchange.SafeLinks.*',
+ 'Exchange.Group.*',
],
items: [
{
- title: "Mailbox Statistics",
- path: "/email/reports/mailbox-statistics",
- permissions: ["Exchange.Mailbox.*"],
+ title: 'Mailbox Statistics',
+ path: '/email/reports/mailbox-statistics',
+ permissions: ['Exchange.Mailbox.*'],
},
{
- title: "Mailbox Activity",
- path: "/email/reports/mailbox-activity",
- permissions: ["Exchange.Mailbox.*"],
+ title: 'Mailbox Activity',
+ path: '/email/reports/mailbox-activity',
+ permissions: ['Exchange.Mailbox.*'],
},
{
- title: "Mailbox Client Access Settings",
- path: "/email/reports/mailbox-cas-settings",
- permissions: ["Exchange.Mailbox.*"],
+ title: 'Mailbox Client Access Settings',
+ path: '/email/reports/mailbox-cas-settings',
+ permissions: ['Exchange.Mailbox.*'],
},
{
- title: "Mailbox Permissions",
- path: "/email/reports/mailbox-permissions",
- permissions: ["Exchange.Mailbox.*"],
+ title: 'Mailbox Permissions',
+ path: '/email/reports/mailbox-permissions',
+ permissions: ['Exchange.Mailbox.*'],
},
{
- title: "Calendar Permissions",
- path: "/email/reports/calendar-permissions",
- permissions: ["Exchange.Mailbox.*"],
+ title: 'Calendar Permissions',
+ path: '/email/reports/calendar-permissions',
+ permissions: ['Exchange.Mailbox.*'],
},
{
- title: "Mailbox Forwarding",
- path: "/email/reports/mailbox-forwarding",
- permissions: ["Exchange.Mailbox.*"],
+ title: 'Mailbox Forwarding',
+ path: '/email/reports/mailbox-forwarding',
+ permissions: ['Exchange.Mailbox.*'],
},
{
- title: "Anti-Phishing Filters",
- path: "/email/reports/antiphishing-filters",
- permissions: ["Exchange.SpamFilter.*"],
+ title: 'Anti-Phishing Filters',
+ path: '/email/reports/antiphishing-filters',
+ permissions: ['Exchange.SpamFilter.*'],
},
{
- title: "Malware Filters",
- path: "/email/reports/malware-filters",
- permissions: ["Exchange.SpamFilter.*"],
+ title: 'Malware Filters',
+ path: '/email/reports/malware-filters',
+ permissions: ['Exchange.SpamFilter.*'],
},
{
- title: "Safe Attachments Filters",
- path: "/email/reports/safeattachments-filters",
- permissions: ["Exchange.SafeLinks.*"],
+ title: 'Safe Attachments Filters',
+ path: '/email/reports/safeattachments-filters',
+ permissions: ['Exchange.SafeLinks.*'],
},
{
- title: "Shared Mailbox with Enabled Account",
- path: "/email/reports/SharedMailboxEnabledAccount",
- permissions: ["Exchange.Mailbox.*"],
+ title: 'Shared Mailbox with Enabled Account',
+ path: '/email/reports/SharedMailboxEnabledAccount',
+ permissions: ['Exchange.Mailbox.*'],
},
{
- title: "Global Address List",
- path: "/email/reports/global-address-list",
- permissions: ["Exchange.Group.*"],
+ title: 'ActiveSync Devices',
+ path: '/email/reports/activesync-devices',
+ permissions: ['Exchange.Mailbox.*'],
+ },
+ {
+ title: 'Global Address List',
+ path: '/email/reports/global-address-list',
+ permissions: ['Exchange.Group.*'],
},
],
},
],
},
{
- title: "Tools",
- type: "header",
+ title: 'Tools',
+ type: 'header',
icon: (
),
permissions: [
- "CIPP.*",
- "Tenant.Administration.*",
- "Tenant.Application.*",
- "Tenant.DomainAnalyser.*",
- "Exchange.Mailbox.*",
- "CIPP.Scheduler.*",
+ 'CIPP.*',
+ 'Tenant.Administration.*',
+ 'Tenant.Application.*',
+ 'Tenant.DomainAnalyser.*',
+ 'Exchange.Mailbox.*',
+ 'Endpoint.MEM.*',
+ 'CIPP.Scheduler.*',
],
items: [
{
- title: "Tenant Tools",
- permissions: ["Tenant.Administration.*"],
+ title: 'Tenant Tools',
+ permissions: ['Tenant.Administration.*'],
items: [
{
- title: "Graph Explorer",
- path: "/tenant/tools/graph-explorer",
- permissions: ["Tenant.Administration.*"],
+ title: 'Graph Explorer',
+ path: '/tenant/tools/graph-explorer',
+ permissions: ['Tenant.Administration.*'],
},
{
- title: "Application Approval",
- path: "/tenant/tools/appapproval",
- permissions: ["Tenant.Application.*"],
+ title: 'Tenant Lookup',
+ path: '/tenant/tools/tenantlookup',
+ permissions: ['Tenant.Administration.*'],
+ scope: 'global',
},
{
- title: "Tenant Lookup",
- path: "/tenant/tools/tenantlookup",
- permissions: ["Tenant.Administration.*"],
- scope: "global",
+ title: 'Application Approval',
+ path: '/tenant/tools/appapproval',
+ permissions: ['Tenant.Application.*'],
},
{
- title: "IP Database",
- path: "/tenant/tools/geoiplookup",
- permissions: ["CIPP.Core.*"],
- scope: "global",
+ title: 'Individual Domain Check',
+ path: '/tenant/tools/individual-domains',
+ permissions: ['Tenant.DomainAnalyser.*'],
+ scope: 'global',
},
-
{
- title: "Individual Domain Check",
- path: "/tenant/tools/individual-domains",
- permissions: ["Tenant.DomainAnalyser.*"],
- scope: "global",
+ title: 'IP Database',
+ path: '/tenant/tools/geoiplookup',
+ permissions: ['CIPP.Core.*'],
+ scope: 'global',
},
],
},
{
- title: "Email Tools",
- permissions: ["Exchange.Mailbox.*"],
+ title: 'Email Tools',
+ permissions: ['Exchange.Mailbox.*'],
items: [
{
- title: "Message Trace",
- path: "/email/tools/message-trace",
- permissions: ["Exchange.Mailbox.*"],
+ title: 'Message Trace',
+ path: '/email/tools/message-trace',
+ permissions: ['Exchange.Mailbox.*'],
},
{
- title: "Mailbox Restores",
- path: "/email/tools/mailbox-restores",
- permissions: ["Exchange.Mailbox.*"],
+ title: 'Message Viewer',
+ path: '/email/tools/message-viewer',
+ permissions: ['Exchange.Mailbox.*'],
},
{
- title: "Message Viewer",
- path: "/email/tools/message-viewer",
- permissions: ["Exchange.Mailbox.*"],
+ title: 'Mailbox Restores',
+ path: '/email/tools/mailbox-restores',
+ permissions: ['Exchange.Mailbox.*'],
},
],
},
{
- title: "Dark Web Tools",
- permissions: ["CIPP.Core.*"],
+ title: 'Intune Tools',
+ permissions: ['Endpoint.MEM.*'],
items: [
{
- title: "Tenant Breach Lookup",
- path: "/tools/tenantbreachlookup",
- permissions: ["CIPP.Core.*"],
- scope: "global",
+ title: 'Compare Policies',
+ path: '/endpoint/MEM/compare-policies',
+ permissions: ['Endpoint.MEM.*'],
+ scope: 'global',
+ },
+ ],
+ },
+ {
+ title: 'Dark Web Tools',
+ permissions: ['CIPP.Core.*'],
+ items: [
+ {
+ title: 'Tenant Breach Lookup',
+ path: '/tools/tenantbreachlookup',
+ permissions: ['CIPP.Core.*'],
+ scope: 'global',
},
{
- title: "Breach Lookup",
- path: "/tools/breachlookup",
- permissions: ["CIPP.Core.*"],
- scope: "global",
+ title: 'Breach Lookup',
+ path: '/tools/breachlookup',
+ permissions: ['CIPP.Core.*'],
+ scope: 'global',
},
],
},
{
- title: "Template Library",
- path: "/tools/templatelib",
- roles: ["editor", "admin", "superadmin"],
- permissions: ["CIPP.Core.*"],
- scope: "global",
+ title: 'Report Builder',
+ path: '/tools/report-builder/generated',
+ roles: ['admin', 'superadmin'],
+ permissions: ['CIPP.Core.*'],
+ scope: 'global',
+ },
+ {
+ title: 'Custom Tests',
+ path: '/tools/custom-tests',
+ roles: ['admin', 'superadmin'],
+ permissions: ['CIPP.Tests.*'],
+ scope: 'global',
+ },
+ {
+ title: 'Template Library',
+ path: '/tools/templatelib',
+ roles: ['editor', 'admin', 'superadmin'],
+ permissions: ['CIPP.Core.*'],
+ scope: 'global',
},
{
- title: "Community Repositories",
- path: "/tools/community-repos",
- roles: ["editor", "admin", "superadmin"],
- permissions: ["CIPP.Core.*"],
- scope: "global",
+ title: 'Community Repositories',
+ path: '/tools/community-repos',
+ roles: ['editor', 'admin', 'superadmin'],
+ permissions: ['CIPP.Core.*'],
+ scope: 'global',
},
{
- title: "Scheduler",
- path: "/cipp/scheduler",
- roles: ["editor", "admin", "superadmin"],
- permissions: ["CIPP.Scheduler.*"],
- scope: "global",
+ title: 'Scheduler',
+ path: '/cipp/scheduler',
+ roles: ['editor', 'admin', 'superadmin'],
+ permissions: ['CIPP.Scheduler.*'],
},
],
},
{
- title: "CIPP",
- type: "header",
+ title: 'CIPP',
+ type: 'header',
icon: (
),
permissions: [
- "CIPP.*", // Pattern matching - matches any CIPP permission
+ 'CIPP.*', // Pattern matching - matches any CIPP permission
],
items: [
{
- title: "Application Settings",
- path: "/cipp/settings",
- roles: ["admin", "superadmin"],
- permissions: ["CIPP.AppSettings.*"],
- scope: "global",
+ title: 'Application Settings',
+ path: '/cipp/settings',
+ roles: ['admin', 'superadmin'],
+ permissions: ['CIPP.AppSettings.*'],
+ scope: 'global',
},
{
- title: "Logbook",
- path: "/cipp/logs",
- roles: ["editor", "admin", "superadmin"],
- permissions: ["CIPP.Core.*"],
- scope: "global",
+ title: 'Logbook',
+ path: '/cipp/logs',
+ roles: ['editor', 'admin', 'superadmin'],
+ permissions: ['CIPP.Core.*'],
+ scope: 'global',
},
{
- title: "Setup Wizard",
- path: "/onboardingv2",
- roles: ["admin", "superadmin"],
- permissions: ["CIPP.AppSettings.*"],
- scope: "global",
+ title: 'Setup Wizard',
+ path: '/onboardingv2',
+ roles: ['admin', 'superadmin'],
+ permissions: ['CIPP.AppSettings.*'],
+ scope: 'global',
},
{
- title: "Integrations",
- path: "/cipp/integrations",
- roles: ["admin", "superadmin"],
- permissions: ["CIPP.Extension.*"],
- scope: "global",
+ title: 'Integrations',
+ path: '/cipp/integrations',
+ roles: ['admin', 'superadmin'],
+ permissions: ['CIPP.Extension.*'],
+ scope: 'global',
},
{
- title: "Custom Data",
- path: "/cipp/custom-data/directory-extensions",
- roles: ["admin", "superadmin"],
- permissions: ["CIPP.AppSettings.*"],
- scope: "global",
+ title: 'Custom Data',
+ path: '/cipp/custom-data/directory-extensions',
+ roles: ['admin', 'superadmin'],
+ permissions: ['CIPP.AppSettings.*'],
+ scope: 'global',
},
{
- title: "Advanced",
- roles: ["superadmin"],
- permissions: ["CIPP.SuperAdmin.*"],
+ title: 'Advanced',
+ roles: ['superadmin'],
+ permissions: ['CIPP.SuperAdmin.*'],
items: [
{
- title: "Super Admin",
- path: "/cipp/super-admin/tenant-mode",
- roles: ["superadmin"],
- permissions: ["CIPP.SuperAdmin.*"],
- scope: "global",
+ title: 'Super Admin',
+ path: '/cipp/advanced/super-admin/tenant-mode',
+ roles: ['superadmin'],
+ permissions: ['CIPP.SuperAdmin.*'],
+ scope: 'global',
},
{
- title: "Exchange Cmdlets",
- path: "/cipp/advanced/exchange-cmdlets",
- roles: ["superadmin"],
- permissions: ["CIPP.SuperAdmin.*"],
- scope: "global",
+ title: 'Exchange Cmdlets',
+ path: '/cipp/advanced/exchange-cmdlets',
+ roles: ['superadmin'],
+ permissions: ['CIPP.SuperAdmin.*'],
+ scope: 'global',
},
{
- title: "Timers",
- path: "/cipp/advanced/timers",
- roles: ["superadmin"],
- permissions: ["CIPP.SuperAdmin.*"],
- scope: "global",
+ title: 'Timers',
+ path: '/cipp/advanced/timers',
+ roles: ['superadmin'],
+ permissions: ['CIPP.SuperAdmin.*'],
+ scope: 'global',
},
{
- title: "Table Maintenance",
- path: "/cipp/advanced/table-maintenance",
- roles: ["superadmin"],
- permissions: ["CIPP.SuperAdmin.*"],
- scope: "global",
+ title: 'Table Maintenance',
+ path: '/cipp/advanced/table-maintenance',
+ roles: ['superadmin'],
+ permissions: ['CIPP.SuperAdmin.*'],
+ scope: 'global',
},
{
- title: "Diagnostics",
- path: "/cipp/advanced/diagnostics",
- roles: ["superadmin"],
- permissions: ["CIPP.SuperAdmin.*"],
- scope: "global",
+ title: 'Diagnostics',
+ path: '/cipp/advanced/diagnostics',
+ roles: ['superadmin'],
+ permissions: ['CIPP.SuperAdmin.*'],
+ scope: 'global',
},
],
},
],
},
-];
+]
diff --git a/src/layouts/side-nav-bookmarks.js b/src/layouts/side-nav-bookmarks.js
index 88dd739a05ca..04f4a978609a 100644
--- a/src/layouts/side-nav-bookmarks.js
+++ b/src/layouts/side-nav-bookmarks.js
@@ -460,9 +460,15 @@ export const SideNavBookmarks = ({ collapse = false }) => {
textOverflow: "ellipsis",
minHeight: "24px",
display: "flex",
- alignItems: "center",
+ flexDirection: "column",
+ justifyContent: "center",
}}
>
+ {bookmark.category && (
+
+ {bookmark.category}
+
+ )}
{bookmark.label}
diff --git a/src/layouts/side-nav-item.js b/src/layouts/side-nav-item.js
index 7b18d6ddc738..1958f87a7a29 100644
--- a/src/layouts/side-nav-item.js
+++ b/src/layouts/side-nav-item.js
@@ -14,6 +14,7 @@ import { useSettings } from "../hooks/use-settings";
export const SideNavItem = (props) => {
const {
active = false,
+ category = "",
children,
collapse = false,
depth = 0,
@@ -46,10 +47,10 @@ export const SideNavItem = (props) => {
? bookmarks.filter((bookmark) => bookmark.path !== path)
: bookmarks.length >= 50
? bookmarks
- : [...bookmarks, { label: title, path }]
+ : [...bookmarks, { label: title, path, category: category || "" }]
);
},
- [isBookmarked, bookmarks, setBookmarks, path, title]
+ [isBookmarked, bookmarks, setBookmarks, path, title, category]
);
// Dynamic spacing and font sizing based on depth
diff --git a/src/layouts/side-nav.js b/src/layouts/side-nav.js
index 4f2b1a1f6e76..5bf56cd672d6 100644
--- a/src/layouts/side-nav.js
+++ b/src/layouts/side-nav.js
@@ -38,10 +38,13 @@ const markOpenItems = (items, pathname) => {
});
};
-const renderItems = ({ collapse = false, depth = 0, items, pathname }) =>
- items.reduce((acc, item) => reduceChildRoutes({ acc, collapse, depth, item, pathname }), []);
+const renderItems = ({ collapse = false, depth = 0, items, pathname, category = "" }) =>
+ items.reduce(
+ (acc, item) => reduceChildRoutes({ acc, collapse, depth, item, pathname, category }),
+ []
+ );
-const reduceChildRoutes = ({ acc, collapse, depth, item, pathname }) => {
+const reduceChildRoutes = ({ acc, collapse, depth, item, pathname, category }) => {
const checkPath = !!(item.path && pathname);
const exactMatch = checkPath && pathname === item.path;
// Special handling for root path "/" to avoid matching all paths
@@ -49,6 +52,7 @@ const reduceChildRoutes = ({ acc, collapse, depth, item, pathname }) => {
const hasChildren = item.items && item.items.length > 0;
const isActive = exactMatch || (partialMatch && !hasChildren);
+ const currentCategory = depth === 0 && item.type === "header" ? item.title : category;
if (hasChildren) {
acc.push(
@@ -64,6 +68,7 @@ const reduceChildRoutes = ({ acc, collapse, depth, item, pathname }) => {
scope={item.scope}
title={item.title}
type={item.type}
+ category={currentCategory}
>
{
depth: depth + 1,
items: item.items,
pathname,
+ category: currentCategory,
})}
- ,
+
);
} else {
acc.push(
@@ -95,7 +101,8 @@ const reduceChildRoutes = ({ acc, collapse, depth, item, pathname }) => {
path={item.path}
scope={item.scope}
title={item.title}
- />,
+ category={currentCategory}
+ />
);
}
diff --git a/src/layouts/top-nav.js b/src/layouts/top-nav.js
index 3c8eb4c65dd2..4fe373bb2623 100644
--- a/src/layouts/top-nav.js
+++ b/src/layouts/top-nav.js
@@ -2,9 +2,11 @@ import { useCallback, useEffect, useMemo, useRef, useState } from "react";
import NextLink from "next/link";
import PropTypes from "prop-types";
import Bars3Icon from "@heroicons/react/24/outline/Bars3Icon";
+import MagnifyingGlassIcon from "@heroicons/react/24/outline/MagnifyingGlassIcon";
import MoonIcon from "@heroicons/react/24/outline/MoonIcon";
import SunIcon from "@heroicons/react/24/outline/SunIcon";
import BookmarkIcon from "@mui/icons-material/Bookmark";
+import TravelExploreIcon from "@mui/icons-material/TravelExplore";
import DragIndicatorIcon from "@mui/icons-material/DragIndicator";
import KeyboardArrowUpIcon from "@mui/icons-material/KeyboardArrowUp";
import KeyboardArrowDownIcon from "@mui/icons-material/KeyboardArrowDown";
@@ -17,6 +19,9 @@ import LockOpenIcon from "@mui/icons-material/LockOpen";
import {
Box,
Divider,
+ Dialog,
+ DialogContent,
+ DialogTitle,
IconButton,
Stack,
SvgIcon,
@@ -35,13 +40,12 @@ import { AccountPopover } from "./account-popover";
import { CippTenantSelector } from "../components/CippComponents/CippTenantSelector";
import { NotificationsPopover } from "./notifications-popover";
import { useDialog } from "../hooks/use-dialog";
-import { MagnifyingGlassIcon } from "@heroicons/react/24/outline";
-import { CippCentralSearch } from "../components/CippComponents/CippCentralSearch";
+import { CippUniversalSearchV2 } from "../components/CippCards/CippUniversalSearchV2";
const TOP_NAV_HEIGHT = 64;
export const TopNav = (props) => {
- const searchDialog = useDialog();
+ const universalSearchDialog = useDialog();
const { onNavOpen } = props;
const settings = useSettings();
const { bookmarks, setBookmarks } = useUserBookmarks();
@@ -64,6 +68,8 @@ export const TopNav = (props) => {
const [animatingPair, setAnimatingPair] = useState(null);
const [flashSort, setFlashSort] = useState(false);
const [flashLock, setFlashLock] = useState(false);
+ const [universalSearchKey, setUniversalSearchKey] = useState(0);
+ const [universalSearchDefaultType, setUniversalSearchDefaultType] = useState("Users");
const itemRefs = useRef({});
const touchDragRef = useRef({ startIdx: null, overIdx: null });
const tenantSelectorRef = useRef(null);
@@ -194,25 +200,34 @@ export const TopNav = (props) => {
const popoverOpen = Boolean(anchorEl);
const popoverId = popoverOpen ? "bookmark-popover" : undefined;
- const openSearch = useCallback(() => {
- searchDialog.handleOpen();
- }, [searchDialog.handleOpen]);
+ const openUniversalSearch = useCallback((defaultType = "Users") => {
+ setUniversalSearchDefaultType(defaultType);
+ universalSearchDialog.handleOpen();
+ }, [universalSearchDialog.handleOpen]);
+
+ const closeUniversalSearch = useCallback(() => {
+ universalSearchDialog.handleClose();
+ setUniversalSearchKey((prev) => prev + 1);
+ }, [universalSearchDialog.handleClose]);
useEffect(() => {
const handleKeyDown = (event) => {
if ((event.metaKey || event.ctrlKey) && event.altKey && event.key === "k") {
event.preventDefault();
tenantSelectorRef.current?.focus();
+ } else if ((event.metaKey || event.ctrlKey) && event.shiftKey && event.key === "K") {
+ event.preventDefault();
+ openUniversalSearch("Users");
} else if ((event.metaKey || event.ctrlKey) && event.key === "k") {
event.preventDefault();
- openSearch();
+ openUniversalSearch("Pages");
}
};
window.addEventListener("keydown", handleKeyDown);
return () => {
window.removeEventListener("keydown", handleKeyDown);
};
- }, [openSearch]);
+ }, [openUniversalSearch]);
return (
{
{
)}
+ {!mdDown && (
+ openUniversalSearch("Users")}
+ title="Open Universal Search (Ctrl/Cmd+Shift+K)"
+ >
+
+
+ )}
{!mdDown && (
@@ -277,11 +302,17 @@ export const TopNav = (props) => {
)}
- openSearch()}>
-
-
-
-
+ {!mdDown && (
+ openUniversalSearch("Pages")}
+ title="Open Page Search (Ctrl/Cmd+K)"
+ >
+
+
+
+
+ )}
{showPopoverBookmarks && (
<>
@@ -570,7 +601,33 @@ export const TopNav = (props) => {
>
)}
-
+
- import("@tanstack/react-query-devtools/build/modern/production.js").then((d) => ({
+ import('@tanstack/react-query-devtools/build/modern/production.js').then((d) => ({
default: d.ReactQueryDevtools,
}))
-);
-TimeAgo.addDefaultLocale(en);
+)
+TimeAgo.addDefaultLocale(en)
-const queryClient = new QueryClient();
-const clientSideEmotionCache = createEmotionCache();
+const queryClient = new QueryClient()
+const clientSideEmotionCache = createEmotionCache()
const App = (props) => {
- const { Component, emotionCache = clientSideEmotionCache, pageProps } = props;
- const getLayout = Component.getLayout ?? ((page) => page);
- const preferredTheme = useMediaPredicate("(prefers-color-scheme: dark)") ? "dark" : "light";
- const pathname = usePathname();
- const route = useRouter();
- const [_0x8h9i, _0x2j3k] = useState(false); // toRemove
-
- const [dateLocale, setDateLocale] = useState(enUS);
+ const { Component, emotionCache = clientSideEmotionCache, pageProps } = props
+ const getLayout = Component.getLayout ?? ((page) => page)
+ const preferredTheme = useMediaPredicate('(prefers-color-scheme: dark)') ? 'dark' : 'light'
+ const pathname = usePathname()
+ const route = useRouter()
+ const [dateLocale, setDateLocale] = useState(enUS)
useEffect(() => {
- if (typeof window === "undefined") return;
+ if (typeof window === 'undefined') return
- const language = navigator.language || navigator.userLanguage || "en-US";
- const baseLang = language.split("-")[0];
+ const language = navigator.language || navigator.userLanguage || 'en-US'
+ const baseLang = language.split('-')[0]
const localeMap = {
// English variants
en: enUS,
- "en-US": enUS,
- "en-GB": enGB,
- "en-AU": enAU,
- "en-NZ": enNZ,
+ 'en-US': enUS,
+ 'en-GB': enGB,
+ 'en-AU': enAU,
+ 'en-NZ': enNZ,
// Western Europe
nl: nl,
- "nl-NL": nl,
+ 'nl-NL': nl,
fr: fr,
- "fr-FR": fr,
+ 'fr-FR': fr,
de: de,
- "de-DE": de,
+ 'de-DE': de,
es: es,
- "es-ES": es,
+ 'es-ES': es,
it: it,
- "it-IT": it,
+ 'it-IT': it,
pt: pt,
- "pt-PT": pt,
- "pt-BR": pt,
+ 'pt-PT': pt,
+ 'pt-BR': pt,
// Scandinavia / Nordics
sv: sv,
- "sv-SE": sv,
+ 'sv-SE': sv,
da: da,
- "da-DK": da,
+ 'da-DK': da,
nb: nb,
- "nb-NO": nb,
+ 'nb-NO': nb,
fi: fi,
- "fi-FI": fi,
+ 'fi-FI': fi,
is: is,
- "is-IS": is,
+ 'is-IS': is,
// Eastern Europe
pl: pl,
- "pl-PL": pl,
+ 'pl-PL': pl,
cs: cs,
- "cs-CZ": cs,
+ 'cs-CZ': cs,
sk: sk,
- "sk-SK": sk,
+ 'sk-SK': sk,
hu: hu,
- "hu-HU": hu,
+ 'hu-HU': hu,
ro: ro,
- "ro-RO": ro,
+ 'ro-RO': ro,
ru: ru,
- "ru-RU": ru,
- };
-
- const resolvedLocale = localeMap[language] || localeMap[baseLang] || enUS;
- setDateLocale(resolvedLocale);
- }, []);
+ 'ru-RU': ru,
+ }
- const excludeQueryKeys = ["authmeswa", "alertsDashboard"];
+ const resolvedLocale = localeMap[language] || localeMap[baseLang] || enUS
+ setDateLocale(resolvedLocale)
+ }, [])
- const _0x4f2d = [1772236800, 1772391599]; // toRemove
- const _0x2e1f = () => {
- // toRemove
- const _0x1a2b = Date.now() / 1000; // toRemove
- return _0x1a2b >= _0x4f2d[0] && _0x1a2b <= _0x4f2d[1]; // toRemove
- };
+ const excludeQueryKeys = ['authmeswa', 'alertsDashboard']
// 👇 Persist TanStack Query cache to localStorage
useEffect(() => {
- if (typeof window !== "undefined") {
+ if (typeof window !== 'undefined') {
const localStoragePersister = createSyncStoragePersister({
storage: window.localStorage,
- });
+ })
persistQueryClient({
queryClient,
persister: localStoragePersister,
maxAge: 1000 * 60 * 60 * 24, // 24 hours
staleTime: 1000 * 60 * 5, // optional: 5 minutes
- buster: "v1",
+ buster: 'v1',
dehydrateOptions: {
shouldDehydrateQuery: (query) => {
- const queryIsReadyForPersistence = query.state.status === "success";
+ const queryIsReadyForPersistence = query.state.status === 'success'
if (queryIsReadyForPersistence) {
- const { queryKey } = query;
+ const { queryKey } = query
// Check if queryKey exists and has elements before accessing index 0
if (!queryKey || !queryKey.length) {
- return false;
+ return false
}
- const queryKeyString = String(queryKey[0] || "");
+ const queryKeyString = String(queryKey[0] || '')
const excludeFromPersisting = excludeQueryKeys.some((key) =>
queryKeyString.includes(key)
- );
- return !excludeFromPersisting;
+ )
+ return !excludeFromPersisting
}
- return queryIsReadyForPersistence;
+ return queryIsReadyForPersistence
},
},
- });
- }
- }, []);
-
- useEffect(() => {
- // toRemove
- if (_0x8h9i) {
- // toRemove
- const _0x3c4d = Array.from(document.querySelectorAll("*")).filter((_0x5e6f) => {
- // toRemove
- const _0x7g8h = document.querySelector('[aria-label="Navigation SpeedDial"]'); // toRemove
- return !_0x7g8h?.contains(_0x5e6f); // toRemove
- });
-
- _0x3c4d.forEach((_0x9i0j, _0x1k2l) => {
- // toRemove
- const _0x3m4n = Math.random() * 10 - 5; // toRemove
- const _0x5o6p = Math.random() * 10 - 5; // toRemove
- const _0x7q8r = Math.random() * 10 - 5; // toRemove
- const _0x9s0t = Math.random() * 0.5; // toRemove
- const _0x1u2v = 0.3 + Math.random() * 0.4; // toRemove
-
- const _0x3w4x = `_${_0x1k2l}`; // toRemove
- const _0x5y6z = document.styleSheets[0]; // toRemove
- _0x5y6z.insertRule(
- ` // toRemove
- @keyframes ${_0x3w4x} { // toRemove
- 0% { transform: translate(0, 0) rotate(0deg); } // toRemove
- 25% { transform: translate(${_0x3m4n}px, ${_0x5o6p}px) rotate(${_0x7q8r}deg); } // toRemove
- 50% { transform: translate(0, 0) rotate(0deg); } // toRemove
- 75% { transform: translate(${-_0x3m4n}px, ${_0x5o6p}px) rotate(${-_0x7q8r}deg); } // toRemove
- 100% { transform: translate(0, 0) rotate(0deg); } // toRemove
- }
- `,
- _0x5y6z.cssRules.length
- ); // toRemove
-
- _0x9i0j.style.animation = `${_0x3w4x} ${_0x1u2v}s infinite ${_0x9s0t}s`; // toRemove
- });
-
- const _0x1a2b = setTimeout(() => {
- // toRemove
- _0x2j3k(false); // toRemove
- _0x3c4d.forEach((_0x5e6f) => {
- // toRemove
- _0x5e6f.style.animation = ""; // toRemove
- });
- const _0x7g8h = document.styleSheets[0]; // toRemove
- while (_0x7g8h.cssRules.length > 0) {
- // toRemove
- _0x7g8h.deleteRule(0); // toRemove
- }
- }, 5000); // toRemove
-
- return () => {
- // toRemove
- clearTimeout(_0x1a2b); // toRemove
- _0x3c4d.forEach((_0x5e6f) => {
- // toRemove
- _0x5e6f.style.animation = ""; // toRemove
- });
- const _0x7g8h = document.styleSheets[0]; // toRemove
- while (_0x7g8h.cssRules.length > 0) {
- // toRemove
- _0x7g8h.deleteRule(0); // toRemove
- }
- };
+ })
}
- }, [_0x8h9i]); // toRemove
+ }, [])
const speedDialActions = [
- ...(_0x2e1f()
- ? [
- {
- // toRemove
- id: "_", // toRemove
- icon: , // toRemove
- name: String.fromCharCode(
- 68,
- 111,
- 32,
- 116,
- 104,
- 101,
- 32,
- 72,
- 97,
- 114,
- 108,
- 101,
- 109,
- 32,
- 83,
- 104,
- 97,
- 107,
- 101,
- 33
- ), // toRemove
- onClick: () => _0x2j3k(true), // toRemove
- },
- ]
- : []), // toRemove
{
// add clear cache action that removes the persisted query cache from local storage and reloads the page
- id: "clearCache",
+ id: 'clearCache',
icon: ,
- name: "Clear Cache and Reload",
+ name: 'Clear Cache and Reload',
onClick: () => {
// Clear the TanStack Query cache
- queryClient.clear();
+ queryClient.clear()
// Remove persisted cache from localStorage
- if (typeof window !== "undefined") {
+ if (typeof window !== 'undefined') {
// Remove the persisted query cache keys
Object.keys(localStorage).forEach((key) => {
- if (key.startsWith("REACT_QUERY_OFFLINE_CACHE")) {
- localStorage.removeItem(key);
+ if (key.startsWith('REACT_QUERY_OFFLINE_CACHE')) {
+ localStorage.removeItem(key)
}
- });
+ })
}
// Force refresh the page to bypass browser cache and reload JavaScript
- window.location.reload(true);
+ window.location.reload(true)
},
},
{
- id: "license",
+ id: 'license',
icon: ,
- name: "License",
- href: "/license",
- onClick: () => route.push("/license"),
+ name: 'License',
+ href: '/license',
+ onClick: () => route.push('/license'),
},
{
- id: "bug-report",
+ id: 'bug-report',
icon: ,
- name: "Report Bug",
- href: "https://github.com/KelvinTegelaar/CIPP/issues/new?template=bug.yml",
+ name: 'Report Bug',
+ href: 'https://github.com/KelvinTegelaar/CIPP/issues/new?template=bug.yml',
onClick: () =>
- window.open("https://github.com/KelvinTegelaar/CIPP/issues/new?template=bug.yml", "_blank"),
+ window.open('https://github.com/KelvinTegelaar/CIPP/issues/new?template=bug.yml', '_blank'),
},
{
- id: "feature-request",
+ id: 'feature-request',
icon: ,
- name: "Request Feature",
- href: "https://github.com/KelvinTegelaar/CIPP/issues/new?template=feature.yml",
+ name: 'Request Feature',
+ href: 'https://github.com/KelvinTegelaar/CIPP/issues/new?template=feature.yml',
onClick: () =>
window.open(
- "https://github.com/KelvinTegelaar/CIPP/issues/new?template=feature.yml",
- "_blank"
+ 'https://github.com/KelvinTegelaar/CIPP/issues/new?template=feature.yml',
+ '_blank'
),
},
{
- id: "discord",
+ id: 'discord',
icon: (
),
- name: "Join the Discord!",
- href: "https://discord.gg/cyberdrain",
- onClick: () => window.open("https://discord.gg/cyberdrain", "_blank"),
+ name: 'Join the Discord!',
+ href: 'https://discord.gg/cyberdrain',
+ onClick: () => window.open('https://discord.gg/cyberdrain', '_blank'),
},
{
- id: "documentation",
+ id: 'documentation',
icon: ,
- name: "Check the Documentation",
+ name: 'Check the Documentation',
href: `https://docs.cipp.app/user-documentation${pathname}`,
- onClick: () => window.open(`https://docs.cipp.app/user-documentation${pathname}`, "_blank"),
+ onClick: () => window.open(`https://docs.cipp.app/user-documentation${pathname}`, '_blank'),
},
- ];
+ ]
return (
@@ -368,14 +260,14 @@ const App = (props) => {
{(settings) => {
// Create theme even while initializing to avoid blank screen
const theme = createTheme({
- colorPreset: "orange",
- direction: settings.direction || "ltr",
+ colorPreset: 'orange',
+ direction: settings.direction || 'ltr',
paletteMode:
- settings.currentTheme?.value !== "browser"
- ? settings.currentTheme?.value || "light"
+ settings.currentTheme?.value !== 'browser'
+ ? settings.currentTheme?.value || 'light'
: preferredTheme,
- contrast: "high",
- });
+ contrast: 'high',
+ })
return (
<>
@@ -407,7 +299,7 @@ const App = (props) => {
) : null}
>
- );
+ )
}}
@@ -415,7 +307,7 @@ const App = (props) => {
- );
-};
+ )
+}
-export default App;
+export default App
diff --git a/src/pages/cipp/super-admin/cipp-roles/add.js b/src/pages/cipp/advanced/super-admin/cipp-roles/add.js
similarity index 68%
rename from src/pages/cipp/super-admin/cipp-roles/add.js
rename to src/pages/cipp/advanced/super-admin/cipp-roles/add.js
index 4f140837d2cd..5d6f994deb46 100644
--- a/src/pages/cipp/super-admin/cipp-roles/add.js
+++ b/src/pages/cipp/advanced/super-admin/cipp-roles/add.js
@@ -1,6 +1,6 @@
-import { Layout as DashboardLayout } from "../../../../layouts/index.js";
-import CippPageCard from "../../../../components/CippCards/CippPageCard";
-import { CippRoleAddEdit } from "../../../../components/CippSettings/CippRoleAddEdit";
+import { Layout as DashboardLayout } from "../../../../../layouts/index.js";
+import CippPageCard from "../../../../../components/CippCards/CippPageCard";
+import { CippRoleAddEdit } from "../../../../../components/CippSettings/CippRoleAddEdit";
import { CardContent, Stack, Alert } from "@mui/material";
const AddRolePage = () => {
diff --git a/src/pages/cipp/super-admin/cipp-roles/edit.js b/src/pages/cipp/advanced/super-admin/cipp-roles/edit.js
similarity index 74%
rename from src/pages/cipp/super-admin/cipp-roles/edit.js
rename to src/pages/cipp/advanced/super-admin/cipp-roles/edit.js
index cfb95f8be947..0c2a4aeaae89 100644
--- a/src/pages/cipp/super-admin/cipp-roles/edit.js
+++ b/src/pages/cipp/advanced/super-admin/cipp-roles/edit.js
@@ -1,7 +1,7 @@
import { useRouter } from "next/router";
-import { Layout as DashboardLayout } from "../../../../layouts/index.js";
-import CippPageCard from "../../../../components/CippCards/CippPageCard";
-import { CippRoleAddEdit } from "../../../../components/CippSettings/CippRoleAddEdit";
+import { Layout as DashboardLayout } from "../../../../../layouts/index.js";
+import CippPageCard from "../../../../../components/CippCards/CippPageCard";
+import { CippRoleAddEdit } from "../../../../../components/CippSettings/CippRoleAddEdit";
import { CardContent, Stack, Alert } from "@mui/material";
const EditRolePage = () => {
diff --git a/src/pages/cipp/super-admin/cipp-roles/index.js b/src/pages/cipp/advanced/super-admin/cipp-roles/index.js
similarity index 74%
rename from src/pages/cipp/super-admin/cipp-roles/index.js
rename to src/pages/cipp/advanced/super-admin/cipp-roles/index.js
index 594dc13be696..b759ddfa29b6 100644
--- a/src/pages/cipp/super-admin/cipp-roles/index.js
+++ b/src/pages/cipp/advanced/super-admin/cipp-roles/index.js
@@ -1,8 +1,8 @@
-import { TabbedLayout } from "../../../../layouts/TabbedLayout";
-import { Layout as DashboardLayout } from "../../../../layouts/index.js";
+import { TabbedLayout } from "../../../../../layouts/TabbedLayout";
+import { Layout as DashboardLayout } from "../../../../../layouts/index.js";
import tabOptions from "../tabOptions";
-import CippPageCard from "../../../../components/CippCards/CippPageCard";
-import CippRoles from "../../../../components/CippSettings/CippRoles";
+import CippPageCard from "../../../../../components/CippCards/CippPageCard";
+import CippRoles from "../../../../../components/CippSettings/CippRoles";
import { CardContent, Stack, Alert } from "@mui/material";
const Page = () => {
diff --git a/src/pages/cipp/advanced/super-admin/function-offloading.js b/src/pages/cipp/advanced/super-admin/function-offloading.js
new file mode 100644
index 000000000000..55d812b60fde
--- /dev/null
+++ b/src/pages/cipp/advanced/super-admin/function-offloading.js
@@ -0,0 +1,164 @@
+import { TabbedLayout } from "../../../../layouts/TabbedLayout";
+import { Layout as DashboardLayout } from "../../../../layouts/index.js";
+import tabOptions from "./tabOptions";
+import CippTablePage from "../../../../components/CippComponents/CippTablePage";
+import { Alert, Button, FormControlLabel, Link, Stack, Switch, Typography } from "@mui/material";
+import { Grid } from "@mui/system";
+import { ApiGetCall, ApiPostCall } from "../../../../api/ApiCall";
+import { useEffect, useState } from "react";
+import NextLink from "next/link";
+import { TrashIcon } from "@heroicons/react/24/outline";
+import { CippApiResults } from "../../../../components/CippComponents/CippApiResults";
+
+const Page = () => {
+ const pageTitle = "Function Offloading";
+ const [offloadFunctions, setOffloadFunctions] = useState(false);
+ const [isDirty, setIsDirty] = useState(false);
+
+ const execOffloadFunctions = ApiGetCall({
+ url: "/api/ExecOffloadFunctions?Action=ListCurrent",
+ queryKey: "execOffloadFunctionsSettings",
+ });
+
+ const updateOffloadFunctions = ApiPostCall({
+ relatedQueryKeys: ["execOffloadFunctions", "execOffloadFunctionsSettings"],
+ });
+
+ const deleteOffloadEntry = ApiPostCall({
+ urlFromData: true,
+ relatedQueryKeys: ["execOffloadFunctions", "execOffloadFunctionsSettings"],
+ });
+
+ const handleDeleteOffloadEntry = (row) => {
+ const entity = {
+ RowKey: row.Name,
+ PartitionKey: "Version",
+ };
+
+ deleteOffloadEntry.mutate({
+ url: "/api/ExecAzBobbyTables",
+ data: {
+ FunctionName: "Remove-AzDataTableEntity",
+ TableName: "Version",
+ Parameters: {
+ Entity: entity,
+ Force: true,
+ },
+ },
+ });
+ };
+
+ useEffect(() => {
+ if (execOffloadFunctions.isSuccess) {
+ setOffloadFunctions(Boolean(execOffloadFunctions.data?.OffloadFunctions));
+ setIsDirty(false);
+ }
+ }, [execOffloadFunctions.isSuccess, execOffloadFunctions.data]);
+
+ const handleSave = () => {
+ updateOffloadFunctions.mutate({
+ url: "/api/ExecOffloadFunctions",
+ data: {
+ OffloadFunctions: offloadFunctions,
+ },
+ });
+ };
+
+ const canEnable =
+ execOffloadFunctions?.data?.OffloadFunctions || execOffloadFunctions?.data?.CanEnable;
+
+ return (
+
+ {
+ setOffloadFunctions(event.target.checked);
+ setIsDirty(true);
+ }}
+ disabled={execOffloadFunctions.isFetching || !canEnable}
+ />
+ }
+ label="Enable Function Offloading"
+ />
+
+
+ }
+ title={pageTitle}
+ tenantInTitle={false}
+ apiUrl="/api/ExecOffloadFunctions?Action=ListCurrent"
+ apiDataKey="Version"
+ queryKey="execOffloadFunctions"
+ simpleColumns={["Name", "Version", "Default"]}
+ actions={[
+ {
+ label: "Delete Offloading Entry",
+ icon: ,
+ url: "/api/ExecAzBobbyTables",
+ type: "POST",
+ customFunction: handleDeleteOffloadEntry,
+ confirmText:
+ "Are you sure you want to delete the offloaded function entry for [Name]? This does not delete the function app from Azure, this must be done first or it will register again.",
+ condition: (row) => row.Default !== true,
+ },
+ ]}
+ tableFilter={
+
+
+
+ This mode enables offloading some of the more processor intensive functions to a
+ separate function app. This can be useful in environments where the CIPP server is
+ under heavy load. Please review{" "}
+
+ our documentation
+ {" "}
+ for more information on how to configure this for your environment.
+
+
+
+
+ If you are self-hosted, you must deploy the additional function app(s) to your CIPP
+ resource group and enable CI/CD or all background tasks will fail.
+
+
+ {execOffloadFunctions.data?.Alerts?.length > 0 && (
+
+ {execOffloadFunctions.data?.Alerts.map((alert, index) => (
+
+ {alert}
+
+ ))}
+
+ )}
+
+
+
+
+
+ }
+ >
+
+ );
+};
+
+Page.getLayout = (page) => (
+
+ {page}
+
+);
+
+export default Page;
diff --git a/src/pages/cipp/super-admin/jit-admin-settings.js b/src/pages/cipp/advanced/super-admin/jit-admin-settings.js
similarity index 93%
rename from src/pages/cipp/super-admin/jit-admin-settings.js
rename to src/pages/cipp/advanced/super-admin/jit-admin-settings.js
index c2f7766e670e..fa6401e9b7c3 100644
--- a/src/pages/cipp/super-admin/jit-admin-settings.js
+++ b/src/pages/cipp/advanced/super-admin/jit-admin-settings.js
@@ -1,12 +1,12 @@
-import { TabbedLayout } from "../../../layouts/TabbedLayout";
-import { Layout as DashboardLayout } from "../../../layouts/index.js";
+import { TabbedLayout } from "../../../../layouts/TabbedLayout";
+import { Layout as DashboardLayout } from "../../../../layouts/index.js";
import tabOptions from "./tabOptions";
-import CippFormPage from "../../../components/CippFormPages/CippFormPage";
+import CippFormPage from "../../../../components/CippFormPages/CippFormPage";
import { useForm } from "react-hook-form";
import { Typography, Alert } from "@mui/material";
import { Grid } from "@mui/system";
-import CippFormComponent from "../../../components/CippComponents/CippFormComponent";
-import { ApiGetCall } from "../../../api/ApiCall";
+import CippFormComponent from "../../../../components/CippComponents/CippFormComponent";
+import { ApiGetCall } from "../../../../api/ApiCall";
import { useEffect } from "react";
const Page = () => {
diff --git a/src/pages/cipp/super-admin/sam-app-permissions.js b/src/pages/cipp/advanced/super-admin/sam-app-permissions.js
similarity index 84%
rename from src/pages/cipp/super-admin/sam-app-permissions.js
rename to src/pages/cipp/advanced/super-admin/sam-app-permissions.js
index 90bb414701df..3930c51811ff 100644
--- a/src/pages/cipp/super-admin/sam-app-permissions.js
+++ b/src/pages/cipp/advanced/super-admin/sam-app-permissions.js
@@ -1,10 +1,10 @@
-import { TabbedLayout } from "../../../layouts/TabbedLayout";
-import { Layout as DashboardLayout } from "../../../layouts/index.js";
+import { TabbedLayout } from "../../../../layouts/TabbedLayout";
+import { Layout as DashboardLayout } from "../../../../layouts/index.js";
import tabOptions from "./tabOptions";
import { useForm } from "react-hook-form";
-import { ApiGetCall, ApiPostCall } from "../../../api/ApiCall";
-import CippAppPermissionBuilder from "../../../components/CippComponents/CippAppPermissionBuilder";
-import CippPageCard from "../../../components/CippCards/CippPageCard";
+import { ApiGetCall, ApiPostCall } from "../../../../api/ApiCall";
+import CippAppPermissionBuilder from "../../../../components/CippComponents/CippAppPermissionBuilder";
+import CippPageCard from "../../../../components/CippCards/CippPageCard";
import { Alert, CardContent, Skeleton, Stack, Typography } from "@mui/material";
import { WarningAmberOutlined } from "@mui/icons-material";
diff --git a/src/pages/cipp/super-admin/sam-app-roles.js b/src/pages/cipp/advanced/super-admin/sam-app-roles.js
similarity index 84%
rename from src/pages/cipp/super-admin/sam-app-roles.js
rename to src/pages/cipp/advanced/super-admin/sam-app-roles.js
index b48efc3dcf9a..03764c9e927b 100644
--- a/src/pages/cipp/super-admin/sam-app-roles.js
+++ b/src/pages/cipp/advanced/super-admin/sam-app-roles.js
@@ -1,15 +1,15 @@
-import { TabbedLayout } from "../../../layouts/TabbedLayout";
-import { Layout as DashboardLayout } from "../../../layouts/index.js";
+import { TabbedLayout } from "../../../../layouts/TabbedLayout";
+import { Layout as DashboardLayout } from "../../../../layouts/index.js";
import tabOptions from "./tabOptions";
-import CippFormPage from "../../../components/CippFormPages/CippFormPage";
+import CippFormPage from "../../../../components/CippFormPages/CippFormPage";
import { Alert, CardContent, Stack, Typography } from "@mui/material";
import { WarningAmberOutlined } from "@mui/icons-material";
import { useForm } from "react-hook-form";
-import { ApiGetCall, ApiGetCallWithPagination } from "../../../api/ApiCall";
+import { ApiGetCall, ApiGetCallWithPagination } from "../../../../api/ApiCall";
import { useEffect } from "react";
-import CippFormComponent from "../../../components/CippComponents/CippFormComponent";
-import GDAPRoles from "../../../data/GDAPRoles";
-import { CippFormTenantSelector } from "../../../components/CippComponents/CippFormTenantSelector";
+import CippFormComponent from "../../../../components/CippComponents/CippFormComponent";
+import GDAPRoles from "../../../../data/GDAPRoles";
+import { CippFormTenantSelector } from "../../../../components/CippComponents/CippFormTenantSelector";
const Page = () => {
const pageTitle = "SAM App Roles";
diff --git a/src/pages/cipp/advanced/super-admin/tabOptions.json b/src/pages/cipp/advanced/super-admin/tabOptions.json
new file mode 100644
index 000000000000..672df76996c6
--- /dev/null
+++ b/src/pages/cipp/advanced/super-admin/tabOptions.json
@@ -0,0 +1,26 @@
+[
+ {
+ "label": "Tenant Mode",
+ "path": "/cipp/advanced/super-admin/tenant-mode"
+ },
+ {
+ "label": "Function Offloading",
+ "path": "/cipp/advanced/super-admin/function-offloading"
+ },
+ {
+ "label": "Time Settings",
+ "path": "/cipp/advanced/super-admin/time-settings"
+ },
+ {
+ "label": "CIPP Roles",
+ "path": "/cipp/advanced/super-admin/cipp-roles"
+ },
+ {
+ "label": "SAM App Roles",
+ "path": "/cipp/advanced/super-admin/sam-app-roles"
+ },
+ {
+ "label": "SAM App Permissions",
+ "path": "/cipp/advanced/super-admin/sam-app-permissions"
+ }
+]
diff --git a/src/pages/cipp/super-admin/tenant-mode.js b/src/pages/cipp/advanced/super-admin/tenant-mode.js
similarity index 87%
rename from src/pages/cipp/super-admin/tenant-mode.js
rename to src/pages/cipp/advanced/super-admin/tenant-mode.js
index ea4468ce1ff5..43174776a30e 100644
--- a/src/pages/cipp/super-admin/tenant-mode.js
+++ b/src/pages/cipp/advanced/super-admin/tenant-mode.js
@@ -1,12 +1,12 @@
-import { TabbedLayout } from "../../../layouts/TabbedLayout";
-import { Layout as DashboardLayout } from "../../../layouts/index.js";
+import { TabbedLayout } from "../../../../layouts/TabbedLayout";
+import { Layout as DashboardLayout } from "../../../../layouts/index.js";
import tabOptions from "./tabOptions";
-import CippFormPage from "../../../components/CippFormPages/CippFormPage";
+import CippFormPage from "../../../../components/CippFormPages/CippFormPage";
import { useForm } from "react-hook-form";
import { Typography } from "@mui/material";
import { Grid } from "@mui/system";
-import CippFormComponent from "../../../components/CippComponents/CippFormComponent";
-import { ApiGetCall } from "../../../api/ApiCall";
+import CippFormComponent from "../../../../components/CippComponents/CippFormComponent";
+import { ApiGetCall } from "../../../../api/ApiCall";
import { useEffect } from "react";
import Link from "next/link";
diff --git a/src/pages/cipp/advanced/super-admin/time-settings.js b/src/pages/cipp/advanced/super-admin/time-settings.js
new file mode 100644
index 000000000000..0639bf84c7be
--- /dev/null
+++ b/src/pages/cipp/advanced/super-admin/time-settings.js
@@ -0,0 +1,99 @@
+import { TabbedLayout } from '../../../../layouts/TabbedLayout'
+import { Layout as DashboardLayout } from '../../../../layouts/index.js'
+import { useForm } from 'react-hook-form'
+import { Grid } from '@mui/system'
+import CippFormComponent from '../../../../components/CippComponents/CippFormComponent'
+import { ApiGetCall } from '../../../../api/ApiCall'
+import { useEffect } from 'react'
+import CippFormPage from '../../../../components/CippFormPages/CippFormPage'
+import { useTimezones } from '../../../../hooks/use-timezones'
+import tabOptions from './tabOptions'
+import { Alert, Typography } from '@mui/material'
+
+const Page = () => {
+ const pageTitle = 'Time Settings'
+
+ const formControl = useForm({
+ mode: 'onChange',
+ defaultValues: {
+ Timezone: { label: 'UTC', value: 'UTC' },
+ },
+ })
+
+ // Get timezone and backend info
+ const backendInfo = ApiGetCall({
+ url: '/api/ExecBackendURLs',
+ queryKey: 'backendInfo',
+ })
+
+ const { timezones, loading: timezonesLoading } = useTimezones()
+
+ useEffect(() => {
+ if (backendInfo.isSuccess && backendInfo.data) {
+ const tzStr = backendInfo.data?.Results?.Timezone || 'UTC'
+ const tzOption = (timezones || []).find(
+ (o) => o?.value === tzStr || o?.alternativeName === tzStr
+ ) || {
+ label: tzStr,
+ value: tzStr,
+ }
+ formControl.reset({ Timezone: tzOption })
+ }
+ }, [backendInfo.isSuccess, backendInfo.data, timezones])
+
+ return (
+
+
+
+
+ Configure the timezone for CIPP. This setting will determine which timezone is used when
+ background tasks run. If no timezone is selected, UTC will be used by default.
+
+
+
+ {!backendInfo.isSuccess && (
+
+ Loading backend information...
+
+ )}
+
+ {timezonesLoading && (
+
+ Loading timezones...
+
+ )}
+
+ {backendInfo.isSuccess && (
+
+
+
+ )}
+
+
+ )
+}
+
+Page.getLayout = (page) => (
+
+ {page}
+
+)
+
+export default Page
diff --git a/src/pages/cipp/integrations/configure.js b/src/pages/cipp/integrations/configure.js
index 330e03d55b13..578317466c54 100644
--- a/src/pages/cipp/integrations/configure.js
+++ b/src/pages/cipp/integrations/configure.js
@@ -13,7 +13,7 @@ import CippIntegrationSettings from "../../../components/CippIntegrations/CippIn
import { Layout as DashboardLayout } from "../../../layouts/index.js";
import { useForm } from "react-hook-form";
import { useSettings } from "../../../hooks/use-settings";
-import { ApiGetCall } from "../../../api/ApiCall";
+import { ApiGetCall, ApiPostCall } from "../../../api/ApiCall";
import { useRouter } from "next/router";
import extensions from "../../../data/Extensions.json";
import { useEffect } from "react";
@@ -74,6 +74,9 @@ const Page = () => {
const actionSyncResults = ApiGetCall({
...syncQuery,
});
+ const clearHIBPKey = ApiPostCall({
+ relatedQueryKeys: ["Integrations"],
+ });
const handleIntegrationSync = () => {
setSyncQuery({
url: "/api/ExecExtensionSync",
@@ -191,6 +194,23 @@ const Page = () => {
)}
+ {extension?.id === "HIBP" && (
+
+
+
+ )}
{extension?.links && (
<>
{extension.links.map((link, index) => (
@@ -208,6 +228,7 @@ const Page = () => {
+
diff --git a/src/pages/cipp/integrations/index.js b/src/pages/cipp/integrations/index.js
index e6ae38f8de12..60ee764853b4 100644
--- a/src/pages/cipp/integrations/index.js
+++ b/src/pages/cipp/integrations/index.js
@@ -1,4 +1,4 @@
-import { Layout as DashboardLayout } from "../../../layouts/index.js";
+import { Layout as DashboardLayout } from '../../../layouts/index.js'
import {
Box,
Button,
@@ -10,28 +10,28 @@ import {
Skeleton,
Stack,
Typography,
-} from "@mui/material";
-import extensions from "../../../data/Extensions";
-import { Sync } from "@mui/icons-material";
-import { useSettings } from "../../../hooks/use-settings";
-import { ApiGetCall } from "../../../api/ApiCall";
-import Link from "next/link";
-import { Grid } from "@mui/system";
-import { CippHead } from "../../../components/CippComponents/CippHead";
+} from '@mui/material'
+import extensions from '../../../data/Extensions'
+import { Sync } from '@mui/icons-material'
+import { useSettings } from '../../../hooks/use-settings'
+import { ApiGetCall } from '../../../api/ApiCall'
+import Link from 'next/link'
+import { Grid } from '@mui/system'
+import { CippHead } from '../../../components/CippComponents/CippHead'
const Page = () => {
- const settings = useSettings();
- const preferredTheme = settings.currentTheme?.value;
+ const settings = useSettings()
+ const preferredTheme = settings.currentTheme?.value
const integrations = ApiGetCall({
- url: "/api/ListExtensionsConfig",
- queryKey: "Integrations",
+ url: '/api/ListExtensionsConfig',
+ queryKey: 'Integrations',
refetchOnMount: false,
refetchOnReconnect: false,
- });
+ })
return (
-
+
{
{extensions.map((extension) => {
- var logo = extension.logo;
- if (preferredTheme === "dark" && extension?.logoDark) {
- logo = extension.logoDark;
+ var logo = extension.logo
+ if (preferredTheme === 'dark' && extension?.logoDark) {
+ logo = extension.logoDark
}
- var integrationConfig = integrations?.data?.[extension.id];
- var isEnabled = integrationConfig?.Enabled || extension.id === "cippapi";
- var status = "Unconfigured";
+ var integrationConfig = integrations?.data?.[extension.id]
+ var isEnabled = integrationConfig?.Enabled || extension.id === 'cippapi'
+ var status = 'Unconfigured'
if (integrationConfig && !isEnabled) {
- status = "Disabled";
- } else if ((integrationConfig && isEnabled) || extension.id === "cippapi") {
- status = "Enabled";
+ status = 'Disabled'
+ } else if ((integrationConfig && isEnabled) || extension.id === 'cippapi') {
+ status = 'Enabled'
}
return (
@@ -73,31 +73,29 @@ const Page = () => {
{extension?.logo && (
@@ -112,8 +110,8 @@ const Page = () => {
{integrations.isSuccess ? (
{
)}
- {integrations.isSuccess ? status : "Loading"}
+ {integrations.isSuccess ? status : 'Loading'}
- );
+ )
})}
- );
-};
+ )
+}
-Page.getLayout = (page) => {page};
+Page.getLayout = (page) => {page}
-export default Page;
+export default Page
diff --git a/src/pages/cipp/scheduler/index.js b/src/pages/cipp/scheduler/index.js
index 73b2396f5171..446f7ca0593f 100644
--- a/src/pages/cipp/scheduler/index.js
+++ b/src/pages/cipp/scheduler/index.js
@@ -66,7 +66,6 @@ const Page = () => {
>
}
- tenantInTitle={false}
title="Scheduled Tasks"
apiUrl={
showHiddenJobs ? `/api/ListScheduledItems?ShowHidden=true` : `/api/ListScheduledItems`
diff --git a/src/pages/cipp/settings/licenses.js b/src/pages/cipp/settings/licenses.js
index b5816cadde66..d734f7eac437 100644
--- a/src/pages/cipp/settings/licenses.js
+++ b/src/pages/cipp/settings/licenses.js
@@ -2,11 +2,16 @@ import tabOptions from "./tabOptions";
import { TabbedLayout } from "../../../layouts/TabbedLayout";
import { Layout as DashboardLayout } from "../../../layouts/index.js";
import { CippTablePage } from "../../../components/CippComponents/CippTablePage.jsx";
-import { Button, SvgIcon, Stack } from "@mui/material";
+import { Button, SvgIcon, Stack, Box } from "@mui/material";
import { TrashIcon } from "@heroicons/react/24/outline";
import { Add, RestartAlt } from "@mui/icons-material";
import { CippApiDialog } from "../../../components/CippComponents/CippApiDialog";
import { useDialog } from "../../../hooks/use-dialog";
+import CippFormComponent from "../../../components/CippComponents/CippFormComponent";
+import { CippFormCondition } from "../../../components/CippComponents/CippFormCondition";
+import M365LicensesDefault from "../../../data/M365Licenses.json";
+import M365LicensesAdditional from "../../../data/M365Licenses-additional.json";
+import { useMemo, useCallback } from "react";
const Page = () => {
const pageTitle = "Excluded Licenses";
@@ -15,6 +20,34 @@ const Page = () => {
const resetDialog = useDialog();
const simpleColumns = ["Product_Display_Name", "GUID"];
+ const allLicenseOptions = useMemo(() => {
+ const allLicenses = [...M365LicensesDefault, ...M365LicensesAdditional];
+ const uniqueLicenses = new Map();
+
+ allLicenses.forEach((license) => {
+ if (license.GUID && license.Product_Display_Name) {
+ if (!uniqueLicenses.has(license.GUID)) {
+ uniqueLicenses.set(license.GUID, {
+ label: license.Product_Display_Name,
+ value: license.GUID,
+ });
+ }
+ }
+ });
+
+ const options = Array.from(uniqueLicenses.values());
+ const nameCounts = {};
+ options.forEach((opt) => {
+ nameCounts[opt.label] = (nameCounts[opt.label] || 0) + 1;
+ });
+
+ return options
+ .map((opt) =>
+ nameCounts[opt.label] > 1 ? { ...opt, label: `${opt.label} (${opt.value})` } : opt
+ )
+ .sort((a, b) => a.label.localeCompare(b.label));
+ }, []);
+
const actions = [
{
label: "Delete Exclusion",
@@ -65,6 +98,21 @@ const Page = () => {
actions: actions,
};
+ const addExclusionFormatter = useCallback((row, action, formData) => {
+ if (formData.advancedMode) {
+ return {
+ Action: "AddExclusion",
+ GUID: formData.GUID,
+ SKUName: formData.SKUName,
+ };
+ }
+ return {
+ Action: "AddExclusion",
+ GUID: formData.selectedLicense?.value,
+ SKUName: formData.selectedLicense?.label,
+ };
+ }, []);
+
return (
<>
{
+ >
+ {({ formHook }) => (
+ <>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ >
+ )}
+
{
data: { Name: "Name", TenantFilter: "customerId" },
confirmText: "Select the cache type to refresh for [displayName]:",
multiPost: false,
+ allowResubmit: true,
hideBulk: true,
fields: [
{
@@ -101,7 +102,7 @@ const Page = () => {
},
],
customDataformatter: (rowData, actionData, formData) => {
- const tenantFilter = rowData?.customerId || rowData?.defaultDomainName || "";
+ const tenantFilter = rowData?.defaultDomainName || rowData?.customerId || "";
const cacheTypeName = formData.Name?.value || formData.Name || "";
return {
Name: cacheTypeName,
diff --git a/src/pages/cipp/snooze-alert.js b/src/pages/cipp/snooze-alert.js
new file mode 100644
index 000000000000..ff0249a4869c
--- /dev/null
+++ b/src/pages/cipp/snooze-alert.js
@@ -0,0 +1,120 @@
+import { useEffect, useState } from 'react'
+import { useRouter } from 'next/router'
+import { Layout as DashboardLayout } from '../../layouts/index.js'
+import { Box, Typography, CircularProgress, Alert, Button, Stack } from '@mui/material'
+import { ApiPostCall } from '../../api/ApiCall'
+import { CippApiResults } from '../../components/CippComponents/CippApiResults'
+import CippPageCard from '../../components/CippCards/CippPageCard'
+
+const VALID_DURATIONS = [7, 14, 30, -1]
+
+const durationLabel = (d) => {
+ if (d === -1) return 'forever'
+ return `${d} days`
+}
+
+const Page = () => {
+ const router = useRouter()
+ const { cmdlet, tenant, data, duration } = router.query
+ const [submitted, setSubmitted] = useState(false)
+ const [parseError, setParseError] = useState(null)
+
+ const snoozeRequest = ApiPostCall({
+ relatedQueryKeys: ['ListSnoozedAlerts'],
+ })
+
+ useEffect(() => {
+ if (!router.isReady) return
+ if (submitted) return
+
+ if (!cmdlet || !tenant || !data || !duration) {
+ setParseError('Missing required parameters (cmdlet, tenant, data, duration).')
+ return
+ }
+
+ const durationNum = parseInt(duration, 10)
+ if (!VALID_DURATIONS.includes(durationNum)) {
+ setParseError(`Invalid duration: ${duration}. Must be 7, 14, 30, or -1.`)
+ return
+ }
+
+ let alertItem
+ try {
+ alertItem = JSON.parse(data)
+ } catch {
+ setParseError('Failed to parse alert data from URL.')
+ return
+ }
+
+ setSubmitted(true)
+ snoozeRequest.mutate({
+ url: '/api/ExecSnoozeAlert',
+ data: {
+ CmdletName: cmdlet,
+ TenantFilter: tenant,
+ AlertItem: alertItem,
+ Duration: durationNum,
+ },
+ })
+ }, [router.isReady, cmdlet, tenant, data, duration])
+
+ const preview = (() => {
+ if (!data) return null
+ try {
+ const item = JSON.parse(data)
+ return item.UserPrincipalName || item.Message || item.DisplayName || null
+ } catch {
+ return null
+ }
+ })()
+
+ return (
+
+ {parseError ? (
+
+ {parseError}
+
+ ) : !submitted ? (
+
+
+ Processing snooze request...
+
+ ) : (
+
+ {preview && (
+
+
+ {preview}
+
+
+ )}
+ {tenant && (
+
+ Tenant: {tenant}
+
+ )}
+ {duration && (
+
+ Duration: {durationLabel(parseInt(duration, 10))}
+
+ )}
+
+
+
+
+
+ )}
+
+ )
+}
+
+Page.getLayout = (page) => {page}
+
+export default Page
diff --git a/src/pages/cipp/super-admin/function-offloading.js b/src/pages/cipp/super-admin/function-offloading.js
deleted file mode 100644
index ee4ed7fa6d05..000000000000
--- a/src/pages/cipp/super-admin/function-offloading.js
+++ /dev/null
@@ -1,148 +0,0 @@
-import { TabbedLayout } from "../../../layouts/TabbedLayout";
-import { Layout as DashboardLayout } from "../../../layouts/index.js";
-import tabOptions from "./tabOptions";
-import CippFormPage from "../../../components/CippFormPages/CippFormPage";
-import { useForm } from "react-hook-form";
-import { Alert, Link } from "@mui/material";
-import { Grid } from "@mui/system";
-import CippFormComponent from "../../../components/CippComponents/CippFormComponent";
-import { ApiGetCall, ApiPostCall } from "../../../api/ApiCall";
-import { useEffect } from "react";
-import NextLink from "next/link";
-import { CippDataTable } from "../../../components/CippTable/CippDataTable";
-import { TrashIcon } from "@heroicons/react/24/outline";
-
-const Page = () => {
- const pageTitle = "Function Offloading";
-
- const formControl = useForm({
- mode: "onChange",
- defaultValues: {
- OffloadFunctions: false,
- },
- });
-
- const execOffloadFunctions = ApiGetCall({
- url: "/api/ExecOffloadFunctions?Action=ListCurrent",
- queryKey: "execOffloadFunctions",
- });
-
- const deleteOffloadEntry = ApiPostCall({
- urlFromData: true,
- relatedQueryKeys: ["execOffloadFunctions"],
- });
-
- const handleDeleteOffloadEntry = (row) => {
- const entity = {
- RowKey: row.Name,
- PartitionKey: "Version",
- };
-
- deleteOffloadEntry.mutate({
- url: "/api/ExecAzBobbyTables",
- data: {
- FunctionName: "Remove-AzDataTableEntity",
- TableName: "Version",
- Parameters: {
- Entity: entity,
- Force: true,
- },
- },
- });
- };
-
- useEffect(() => {
- if (execOffloadFunctions.isSuccess) {
- formControl.reset({
- OffloadFunctions: execOffloadFunctions.data?.OffloadFunctions,
- });
- }
- }, [execOffloadFunctions.isSuccess, execOffloadFunctions.data]);
-
- return (
-
-
-
- This mode enables offloading some of the more processor intensive functions to a separate
- function app. This can be useful in environments where the CIPP server is under heavy
- load. Please review{" "}
-
- our documentation
- {" "}
- for more information on how to configure this for your environment.
-
- If you are self-hosted, you must deploy the additional function app(s) to your CIPP
- resource group and enable CI/CD or all background tasks will fail.
-
-
-
- ,
- url: "/api/ExecAzBobbyTables",
- type: "POST",
- customFunction: handleDeleteOffloadEntry,
- confirmText:
- "Are you sure you want to delete the offloaded function entry for [Name]? This does not delete the function app from Azure, this must be done first or it will register again.",
- condition: (row) => row.Default !== true,
- },
- ]}
- />
-
- {execOffloadFunctions.data?.Alerts?.length > 0 && (
-
- {execOffloadFunctions.data?.Alerts.map((alert, index) => (
-
- {alert}
-
- ))}
-
- )}
-
-
-
-
-
- );
-};
-
-Page.getLayout = (page) => (
-
- {page}
-
-);
-
-export default Page;
diff --git a/src/pages/cipp/super-admin/tabOptions.json b/src/pages/cipp/super-admin/tabOptions.json
deleted file mode 100644
index aa8a260e614a..000000000000
--- a/src/pages/cipp/super-admin/tabOptions.json
+++ /dev/null
@@ -1,26 +0,0 @@
-[
- {
- "label": "Tenant Mode",
- "path": "/cipp/super-admin/tenant-mode"
- },
- {
- "label": "Function Offloading",
- "path": "/cipp/super-admin/function-offloading"
- },
- {
- "label": "Time Settings",
- "path": "/cipp/super-admin/time-settings"
- },
- {
- "label": "CIPP Roles",
- "path": "/cipp/super-admin/cipp-roles"
- },
- {
- "label": "SAM App Roles",
- "path": "/cipp/super-admin/sam-app-roles"
- },
- {
- "label": "SAM App Permissions",
- "path": "/cipp/super-admin/sam-app-permissions"
- }
-]
diff --git a/src/pages/cipp/super-admin/time-settings.js b/src/pages/cipp/super-admin/time-settings.js
deleted file mode 100644
index 10245f89f3e2..000000000000
--- a/src/pages/cipp/super-admin/time-settings.js
+++ /dev/null
@@ -1,168 +0,0 @@
-import { TabbedLayout } from "../../../layouts/TabbedLayout";
-import { Layout as DashboardLayout } from "../../../layouts/index.js";
-import { useForm } from "react-hook-form";
-import { Alert, Typography } from "@mui/material";
-import { Grid } from "@mui/system";
-import CippFormComponent from "../../../components/CippComponents/CippFormComponent";
-import { ApiGetCall } from "../../../api/ApiCall";
-import { useEffect, useMemo } from "react";
-import CippFormPage from "../../../components/CippFormPages/CippFormPage";
-import { useTimezones } from "../../../hooks/use-timezones";
-import tabOptions from "./tabOptions";
-
-const Page = () => {
- const pageTitle = "Time Settings";
-
- const formControl = useForm({
- mode: "onChange",
- defaultValues: {
- Timezone: { label: "UTC", value: "UTC" },
- BusinessHoursStart: { label: "09:00", value: "09:00" },
- },
- });
-
- // Get timezone and backend info
- const backendInfo = ApiGetCall({
- url: "/api/ExecBackendURLs",
- queryKey: "backendInfo",
- });
-
- const { timezones, loading: timezonesLoading } = useTimezones();
- const isFlexConsumption = backendInfo.data?.Results?.SKU === "FlexConsumption";
-
- // Generate business hours options (00:00 to 23:00 in hourly increments)
- const businessHoursOptions = useMemo(() => {
- const hours = [];
- for (let i = 0; i < 24; i++) {
- const hour = i.toString().padStart(2, "0");
- hours.push({
- label: `${hour}:00`,
- value: `${hour}:00`,
- });
- }
- return hours;
- }, []);
-
- useEffect(() => {
- if (backendInfo.isSuccess && backendInfo.data) {
- const tzStr = backendInfo.data?.Results?.Timezone || "UTC";
- const tzOption = (timezones || []).find(
- (o) => o?.value === tzStr || o?.alternativeName === tzStr
- ) || {
- label: tzStr,
- value: tzStr,
- };
-
- const startStr = backendInfo.data?.Results?.BusinessHoursStart || "09:00";
- const startOption = businessHoursOptions.find((o) => o.value === startStr) || {
- label: startStr,
- value: startStr,
- };
-
- formControl.reset({
- Timezone: tzOption,
- BusinessHoursStart: startOption,
- });
- }
- }, [backendInfo.isSuccess, backendInfo.data, timezones, businessHoursOptions]);
-
- return (
-
-
-
-
- Configure the timezone for CIPP operations and scheduling. If you are using a Flex
- Consumption App Service Plan, you can also configure business hours to optimize
- performance and cost.
-
-
-
- {!backendInfo.isSuccess && (
-
- Loading backend information...
-
- )}
-
- {timezonesLoading && (
-
- Loading timezones...
-
- )}
-
- {backendInfo.isSuccess && (
- <>
-
-
-
-
- {isFlexConsumption && (
- <>
-
-
-
- Flex Consumption Business Hours
-
- Business hours are used to optimize Flex Consumption instance scheduling. Set
- the start time for your business hours. CIPP will maintain higher instance
- availability during a 10-hour window from the start time for better performance.
- Outside of this window, instances may scale down to reduce costs.
-
-
-
-
-
-
- >
- )}
-
- {!isFlexConsumption && (
-
-
-
- App Service Plan: {backendInfo.data?.SKU || "Unknown"}
-
- Business hours configuration is only available for Flex Consumption App Service
- Plans.
-
-
- )}
- >
- )}
-
-
- );
-};
-
-Page.getLayout = (page) => (
-
- {page}
-
-);
-
-export default Page;
diff --git a/src/pages/dashboardv1.js b/src/pages/dashboardv1.js
index a2054d962e5e..8e45642518cd 100644
--- a/src/pages/dashboardv1.js
+++ b/src/pages/dashboardv1.js
@@ -21,11 +21,13 @@ const Page = () => {
const [domainVisible, setDomainVisible] = useState(false);
const organization = ApiGetCall({
- url: "/api/ListOrg",
- queryKey: `${currentTenant}-ListOrg`,
- data: { tenantFilter: currentTenant },
+ url: "/api/ListGraphRequest",
+ queryKey: `${currentTenant}-ListGraphRequest-organization`,
+ data: { tenantFilter: currentTenant, Endpoint: "organization" },
});
+ const organizationRecord = organization.data?.Results?.[0];
+
const dashboard = ApiGetCall({
url: "/api/ListuserCounts",
data: { tenantFilter: currentTenant },
@@ -68,12 +70,12 @@ const Page = () => {
// Top bar data
const tenantInfo = [
- { name: "Tenant Name", data: organization.data?.displayName },
+ { name: "Tenant Name", data: organizationRecord?.displayName },
{
name: "Tenant ID",
data: (
<>
-
+
>
),
},
@@ -83,7 +85,7 @@ const Page = () => {
<>
domain.isDefault === true)?.name
+ organizationRecord?.verifiedDomains?.find((domain) => domain.isDefault === true)?.name
}
type="chip"
/>
@@ -92,7 +94,7 @@ const Page = () => {
},
{
name: "AD Sync Enabled",
- data: getCippFormatting(organization.data?.onPremisesSyncEnabled, "dirsync"),
+ data: getCippFormatting(organizationRecord?.onPremisesSyncEnabled, "dirsync"),
},
];
@@ -369,14 +371,14 @@ const Page = () => {
showDivider={false}
copyItems={true}
isFetching={organization.isFetching}
- propertyItems={organization.data?.verifiedDomains
+ propertyItems={organizationRecord?.verifiedDomains
?.slice(0, domainVisible ? undefined : 3)
.map((domain, idx) => ({
label: "",
value: domain.name,
}))}
actionButton={
- organization.data?.verifiedDomains?.length > 3 && (
+ organizationRecord?.verifiedDomains?.length > 3 && (
@@ -417,7 +419,7 @@ const Page = () => {
propertyItems={[
{
label: "Services",
- value: organization.data?.assignedPlans
+ value: organizationRecord?.assignedPlans
?.filter(
(plan) =>
plan.capabilityStatus === "Enabled" &&
diff --git a/src/pages/dashboardv2/custom/index.js b/src/pages/dashboardv2/custom/index.js
new file mode 100644
index 000000000000..aae13a0922e2
--- /dev/null
+++ b/src/pages/dashboardv2/custom/index.js
@@ -0,0 +1,111 @@
+import { Container, Box, Alert } from '@mui/material'
+import { TabbedLayout } from '../../../layouts/TabbedLayout'
+import { Layout as DashboardLayout } from '../../../layouts/index.js'
+import tabOptions from '../tabOptions'
+import { useSettings } from '../../../hooks/use-settings'
+import { ApiGetCall } from '../../../api/ApiCall.jsx'
+import { CippDataTable } from '../../../components/CippTable/CippDataTable'
+import { CippTestDetailOffCanvas } from '../../../components/CippTestDetail/CippTestDetailOffCanvas'
+import { CippReportToolbar } from '../../../components/CippComponents/CippReportToolbar'
+import { CippHead } from '../../../components/CippComponents/CippHead.jsx'
+import { useRouter } from 'next/router'
+
+const Page = () => {
+ const settings = useSettings()
+ const { currentTenant } = settings
+ const router = useRouter()
+ const selectedReport =
+ router.isReady && !router.query.reportId ? 'ztna' : router.query.reportId || 'ztna'
+
+ const testsApi = ApiGetCall({
+ url: '/api/ListTests',
+ data: { tenantFilter: currentTenant, reportId: selectedReport },
+ queryKey: `${currentTenant}-ListTests-${selectedReport}`,
+ waiting: !!currentTenant && !!selectedReport,
+ })
+
+ const reportsApi = ApiGetCall({
+ url: '/api/ListTestReports',
+ queryKey: 'ListTestReports',
+ })
+ const reportDescription = reportsApi.data?.find((r) => r.id === selectedReport)?.description
+
+ const customTests = testsApi.data?.TestResults?.filter((test) => test.TestType === 'Custom') || []
+
+ const offCanvas = {
+ size: 'lg',
+ children: (row) => ,
+ }
+
+ const filters = [
+ {
+ filterName: 'Passed',
+ value: [{ id: 'Status', value: 'Passed' }],
+ type: 'column',
+ },
+ {
+ filterName: 'Failed',
+ value: [{ id: 'Status', value: 'Failed' }],
+ type: 'column',
+ },
+ {
+ filterName: 'Investigate',
+ value: [{ id: 'Status', value: 'Investigate' }],
+ type: 'column',
+ },
+ {
+ filterName: 'Skipped',
+ value: [{ id: 'Status', value: 'Skipped' }],
+ type: 'column',
+ },
+ {
+ filterName: 'High Risk',
+ value: [{ id: 'Risk', value: 'High' }],
+ type: 'column',
+ },
+ {
+ filterName: 'Medium Risk',
+ value: [{ id: 'Risk', value: 'Medium' }],
+ type: 'column',
+ },
+ {
+ filterName: 'Low Risk',
+ value: [{ id: 'Risk', value: 'Low' }],
+ type: 'column',
+ },
+ ]
+
+ return (
+
+
+
+
+
+ {reportDescription && (
+
+ {reportDescription}
+
+ )}
+
+
+ )
+}
+
+Page.getLayout = (page) => (
+
+ {page}
+
+)
+
+export default Page
diff --git a/src/pages/dashboardv2/devices/index.js b/src/pages/dashboardv2/devices/index.js
index b3766dcf6c4c..49c8ca0028a6 100644
--- a/src/pages/dashboardv2/devices/index.js
+++ b/src/pages/dashboardv2/devices/index.js
@@ -1,145 +1,114 @@
-import React from "react";
-import {
- Container,
- Typography,
- Card,
- CardContent,
- CardHeader,
- Box,
- Stack,
- Chip,
-} from "@mui/material";
-import { TabbedLayout } from "../../../layouts/TabbedLayout";
-import { Layout as DashboardLayout } from "../../../layouts/index.js";
-import tabOptions from "../tabOptions";
-import { useSettings } from "../../../hooks/use-settings";
-import { ApiGetCall } from "../../../api/ApiCall.jsx";
-import { CippDataTable } from "../../../components/CippTable/CippDataTable";
-import { CippTestDetailOffCanvas } from "../../../components/CippTestDetail/CippTestDetailOffCanvas";
-import { useRouter } from "next/router";
+import React from 'react'
+import { Container, Box, Alert } from '@mui/material'
+import { TabbedLayout } from '../../../layouts/TabbedLayout'
+import { Layout as DashboardLayout } from '../../../layouts/index.js'
+import tabOptions from '../tabOptions'
+import { useSettings } from '../../../hooks/use-settings'
+import { ApiGetCall } from '../../../api/ApiCall.jsx'
+import { CippDataTable } from '../../../components/CippTable/CippDataTable'
+import { CippTestDetailOffCanvas } from '../../../components/CippTestDetail/CippTestDetailOffCanvas'
+import { CippReportToolbar } from '../../../components/CippComponents/CippReportToolbar'
+import { CippHead } from '../../../components/CippComponents/CippHead.jsx'
+import { useRouter } from 'next/router'
const Page = () => {
- const settings = useSettings();
- const { currentTenant } = settings;
- const router = useRouter();
+ const settings = useSettings()
+ const { currentTenant } = settings
+ const router = useRouter()
// Only use default if router is ready and reportId is still not present
const selectedReport =
- router.isReady && !router.query.reportId ? "ztna" : router.query.reportId || "ztna";
+ router.isReady && !router.query.reportId ? 'ztna' : router.query.reportId || 'ztna'
const testsApi = ApiGetCall({
- url: "/api/ListTests",
+ url: '/api/ListTests',
data: { tenantFilter: currentTenant, reportId: selectedReport },
queryKey: `${currentTenant}-ListTests-${selectedReport}`,
waiting: !!currentTenant && !!selectedReport,
- });
+ })
- const DevicesTests =
- testsApi.data?.TestResults?.filter((test) => test.TestType === "Devices") || [];
-
- const getStatusColor = (status) => {
- switch (status?.toLowerCase()) {
- case "passed":
- return "success";
- case "failed":
- return "error";
- case "investigate":
- return "warning";
- case "skipped":
- return "default";
- default:
- return "default";
- }
- };
+ const reportsApi = ApiGetCall({
+ url: '/api/ListTestReports',
+ queryKey: 'ListTestReports',
+ })
+ const reportDescription = reportsApi.data?.find((r) => r.id === selectedReport)?.description
- const getRiskColor = (risk) => {
- switch (risk?.toLowerCase()) {
- case "high":
- return "error";
- case "medium":
- return "warning";
- case "low":
- return "info";
- default:
- return "default";
- }
- };
-
- const getImpactColor = (impact) => {
- switch (impact?.toLowerCase()) {
- case "high":
- return "error";
- case "medium":
- return "warning";
- case "low":
- return "info";
- default:
- return "default";
- }
- };
+ const DevicesTests =
+ testsApi.data?.TestResults?.filter((test) => test.TestType === 'Devices') || []
const offCanvas = {
- size: "lg",
+ size: 'lg',
children: (row) => ,
- };
+ }
const filters = [
{
- filterName: "Passed",
- value: [{ id: "Status", value: "Passed" }],
- type: "column",
+ filterName: 'Passed',
+ value: [{ id: 'Status', value: 'Passed' }],
+ type: 'column',
},
{
- filterName: "Failed",
- value: [{ id: "Status", value: "Failed" }],
- type: "column",
+ filterName: 'Failed',
+ value: [{ id: 'Status', value: 'Failed' }],
+ type: 'column',
},
{
- filterName: "Investigate",
- value: [{ id: "Status", value: "Investigate" }],
- type: "column",
+ filterName: 'Investigate',
+ value: [{ id: 'Status', value: 'Investigate' }],
+ type: 'column',
},
{
- filterName: "Skipped",
- value: [{ id: "Status", value: "Skipped" }],
- type: "column",
+ filterName: 'Skipped',
+ value: [{ id: 'Status', value: 'Skipped' }],
+ type: 'column',
},
{
- filterName: "High Risk",
- value: [{ id: "Risk", value: "High" }],
- type: "column",
+ filterName: 'High Risk',
+ value: [{ id: 'Risk', value: 'High' }],
+ type: 'column',
},
{
- filterName: "Medium Risk",
- value: [{ id: "Risk", value: "Medium" }],
- type: "column",
+ filterName: 'Medium Risk',
+ value: [{ id: 'Risk', value: 'Medium' }],
+ type: 'column',
},
{
- filterName: "Low Risk",
- value: [{ id: "Risk", value: "Low" }],
- type: "column",
+ filterName: 'Low Risk',
+ value: [{ id: 'Risk', value: 'Low' }],
+ type: 'column',
},
- ];
+ ]
return (
-
+
+
+
+
+
+ {reportDescription && (
+
+ {reportDescription}
+
+ )}
- );
-};
+ )
+}
Page.getLayout = (page) => (
{page}
-);
+)
-export default Page;
+export default Page
diff --git a/src/pages/dashboardv2/identity/index.js b/src/pages/dashboardv2/identity/index.js
index bdc4f0e8ddb4..0d460ab7dddd 100644
--- a/src/pages/dashboardv2/identity/index.js
+++ b/src/pages/dashboardv2/identity/index.js
@@ -1,94 +1,113 @@
-import { Container } from "@mui/material";
-import { TabbedLayout } from "../../../layouts/TabbedLayout";
-import { Layout as DashboardLayout } from "../../../layouts/index.js";
-import tabOptions from "../tabOptions";
-import { useSettings } from "../../../hooks/use-settings";
-import { ApiGetCall } from "../../../api/ApiCall.jsx";
-import { CippDataTable } from "../../../components/CippTable/CippDataTable";
-import { CippTestDetailOffCanvas } from "../../../components/CippTestDetail/CippTestDetailOffCanvas";
-import { useRouter } from "next/router";
+import { Container, Box, Alert } from '@mui/material'
+import { TabbedLayout } from '../../../layouts/TabbedLayout'
+import { Layout as DashboardLayout } from '../../../layouts/index.js'
+import tabOptions from '../tabOptions'
+import { useSettings } from '../../../hooks/use-settings'
+import { ApiGetCall } from '../../../api/ApiCall.jsx'
+import { CippDataTable } from '../../../components/CippTable/CippDataTable'
+import { CippTestDetailOffCanvas } from '../../../components/CippTestDetail/CippTestDetailOffCanvas'
+import { CippReportToolbar } from '../../../components/CippComponents/CippReportToolbar'
+import { CippHead } from '../../../components/CippComponents/CippHead.jsx'
+import { useRouter } from 'next/router'
const Page = () => {
- const settings = useSettings();
- const { currentTenant } = settings;
- const router = useRouter();
+ const settings = useSettings()
+ const { currentTenant } = settings
+ const router = useRouter()
// Only use default if router is ready and reportId is still not present
const selectedReport =
- router.isReady && !router.query.reportId ? "ztna" : router.query.reportId || "ztna";
+ router.isReady && !router.query.reportId ? 'ztna' : router.query.reportId || 'ztna'
const testsApi = ApiGetCall({
- url: "/api/ListTests",
+ url: '/api/ListTests',
data: { tenantFilter: currentTenant, reportId: selectedReport },
queryKey: `${currentTenant}-ListTests-${selectedReport}`,
waiting: !!currentTenant && !!selectedReport,
- });
+ })
+
+ const reportsApi = ApiGetCall({
+ url: '/api/ListTestReports',
+ queryKey: 'ListTestReports',
+ })
+ const reportDescription = reportsApi.data?.find((r) => r.id === selectedReport)?.description
const identityTests =
- testsApi.data?.TestResults?.filter((test) => test.TestType === "Identity") || [];
+ testsApi.data?.TestResults?.filter((test) => test.TestType === 'Identity') || []
const offCanvas = {
- size: "lg",
+ size: 'lg',
children: (row) => ,
- };
+ }
const filters = [
{
- filterName: "Passed",
- value: [{ id: "Status", value: "Passed" }],
- type: "column",
+ filterName: 'Passed',
+ value: [{ id: 'Status', value: 'Passed' }],
+ type: 'column',
},
{
- filterName: "Failed",
- value: [{ id: "Status", value: "Failed" }],
- type: "column",
+ filterName: 'Failed',
+ value: [{ id: 'Status', value: 'Failed' }],
+ type: 'column',
},
{
- filterName: "Investigate",
- value: [{ id: "Status", value: "Investigate" }],
- type: "column",
+ filterName: 'Investigate',
+ value: [{ id: 'Status', value: 'Investigate' }],
+ type: 'column',
},
{
- filterName: "Skipped",
- value: [{ id: "Status", value: "Skipped" }],
- type: "column",
+ filterName: 'Skipped',
+ value: [{ id: 'Status', value: 'Skipped' }],
+ type: 'column',
},
{
- filterName: "High Risk",
- value: [{ id: "Risk", value: "High" }],
- type: "column",
+ filterName: 'High Risk',
+ value: [{ id: 'Risk', value: 'High' }],
+ type: 'column',
},
{
- filterName: "Medium Risk",
- value: [{ id: "Risk", value: "Medium" }],
- type: "column",
+ filterName: 'Medium Risk',
+ value: [{ id: 'Risk', value: 'Medium' }],
+ type: 'column',
},
{
- filterName: "Low Risk",
- value: [{ id: "Risk", value: "Low" }],
- type: "column",
+ filterName: 'Low Risk',
+ value: [{ id: 'Risk', value: 'Low' }],
+ type: 'column',
},
- ];
+ ]
return (
-
+
+
+
+
+
+ {reportDescription && (
+
+ {reportDescription}
+
+ )}
- );
-};
+ )
+}
Page.getLayout = (page) => (
{page}
-);
+)
-export default Page;
+export default Page
diff --git a/src/pages/dashboardv2/index.js b/src/pages/dashboardv2/index.js
index fcb983b4e36d..0ea9653e3680 100644
--- a/src/pages/dashboardv2/index.js
+++ b/src/pages/dashboardv2/index.js
@@ -1,124 +1,107 @@
-import { Box, Card, CardContent, Container, Button, Tooltip } from "@mui/material";
-import { useState, useEffect } from "react";
-import { useRouter } from "next/router";
-import { useForm, useWatch } from "react-hook-form";
-import { Grid } from "@mui/system";
-import { useSettings } from "../../hooks/use-settings";
-import { ApiGetCall } from "../../api/ApiCall.jsx";
-import Portals from "../../data/portals";
-import { BulkActionsMenu } from "../../components/bulk-actions-menu.js";
-import { ExecutiveReportButton } from "../../components/ExecutiveReportButton.js";
-import { CippUniversalSearchV2 } from "../../components/CippCards/CippUniversalSearchV2.jsx";
-import { TabbedLayout } from "../../layouts/TabbedLayout";
-import { Layout as DashboardLayout } from "../../layouts/index.js";
-import tabOptions from "./tabOptions";
-import { dashboardDemoData } from "../../data/dashboardv2-demo-data";
-import { SecureScoreCard } from "../../components/CippComponents/SecureScoreCard";
-import { MFACard } from "../../components/CippComponents/MFACard";
-import { AuthMethodCard } from "../../components/CippComponents/AuthMethodCard";
-import { LicenseCard } from "../../components/CippComponents/LicenseCard";
-import { TenantInfoCard } from "../../components/CippComponents/TenantInfoCard";
-import { TenantMetricsGrid } from "../../components/CippComponents/TenantMetricsGrid";
-import { AssessmentCard } from "../../components/CippComponents/AssessmentCard";
-import { CippApiDialog } from "../../components/CippComponents/CippApiDialog";
-import { CippAddTestReportDrawer } from "../../components/CippComponents/CippAddTestReportDrawer";
-import CippFormComponent from "../../components/CippComponents/CippFormComponent";
import {
- Devices as DevicesIcon,
- CheckCircle as CheckCircleIcon,
- Work as BriefcaseIcon,
- Assessment as AssessmentIcon,
- Refresh as RefreshIcon,
-} from "@mui/icons-material";
+ Box,
+ Container,
+ Button,
+ Menu,
+ MenuItem,
+ ListItemIcon,
+ ListItemText,
+ SvgIcon,
+} from '@mui/material'
+import Link from 'next/link'
+import { useEffect, useState } from 'react'
+import { useRouter } from 'next/router'
+import { Grid, useMediaQuery } from '@mui/system'
+import { useSettings } from '../../hooks/use-settings'
+import { ApiGetCall } from '../../api/ApiCall.jsx'
+import Portals from '../../data/portals'
+import { BulkActionsMenu } from '../../components/bulk-actions-menu.js'
+import { ExecutiveReportButton } from '../../components/ExecutiveReportButton.js'
+import { TabbedLayout } from '../../layouts/TabbedLayout'
+import { Layout as DashboardLayout } from '../../layouts/index.js'
+import tabOptions from './tabOptions'
+import { dashboardDemoData } from '../../data/dashboardv2-demo-data'
+import { SecureScoreCard } from '../../components/CippComponents/SecureScoreCard'
+import { MFACard } from '../../components/CippComponents/MFACard'
+import { AuthMethodCard } from '../../components/CippComponents/AuthMethodCard'
+import { LicenseCard } from '../../components/CippComponents/LicenseCard'
+import { TenantInfoCard } from '../../components/CippComponents/TenantInfoCard'
+import { TenantMetricsGrid } from '../../components/CippComponents/TenantMetricsGrid'
+import { AssessmentCard } from '../../components/CippComponents/AssessmentCard'
+import { CippReportToolbar } from '../../components/CippComponents/CippReportToolbar'
+import { Assessment as AssessmentIcon } from '@mui/icons-material'
+import ChevronDownIcon from '@heroicons/react/24/outline/ChevronDownIcon'
+import { CippHead } from '../../components/CippComponents/CippHead.jsx'
const Page = () => {
- const settings = useSettings();
- const router = useRouter();
- const { currentTenant } = settings;
- const [portalMenuItems, setPortalMenuItems] = useState([]);
- const [deleteDialog, setDeleteDialog] = useState({ open: false });
- const [refreshDialog, setRefreshDialog] = useState({ open: false });
-
+ const settings = useSettings()
+ const router = useRouter()
+ const { currentTenant } = settings
+ const [portalMenuItems, setPortalMenuItems] = useState([])
+ const isWide = useMediaQuery('(min-width:1513px)')
+ const [reportsMenuAnchor, setReportsMenuAnchor] = useState(null)
// Get reportId from query params or default to "ztna"
// Only use default if router is ready and reportId is still not present
const selectedReport =
- router.isReady && !router.query.reportId ? "ztna" : router.query.reportId || "ztna";
-
- const formControl = useForm({
- mode: "onChange",
- });
+ router.isReady && !router.query.reportId ? 'ztna' : router.query.reportId || 'ztna'
- const reportIdValue = useWatch({ control: formControl.control });
-
- // Fetch available reports
+ // Fetch available reports (shared cache with CippReportToolbar)
const reportsApi = ApiGetCall({
- url: "/api/ListTestReports",
- queryKey: "ListTestReports",
- });
-
- const reports = reportsApi.data || [];
+ url: '/api/ListTestReports',
+ queryKey: 'ListTestReports',
+ })
- // Update form when selectedReport changes (from URL)
- useEffect(() => {
- if (selectedReport && router.isReady && reports.length > 0) {
- const matchingReport = reports.find((r) => r.id === selectedReport);
- if (matchingReport) {
- formControl.setValue("reportId", {
- value: matchingReport.id,
- label: matchingReport.name,
- });
- }
- }
- }, [selectedReport, router.isReady, reports]);
-
- // Update URL when form value changes (e.g., user selects different report from dropdown)
- useEffect(() => {
- console.log("reportIdValue changed:", reportIdValue);
- if (reportIdValue?.reportId?.value && reportIdValue.reportId.value !== selectedReport) {
- router.push(
- {
- pathname: router.pathname,
- query: { ...router.query, reportId: reportIdValue.reportId.value },
- },
- undefined,
- { shallow: true },
- );
- }
- }, [reportIdValue]);
+ const reports = reportsApi.data || []
const organization = ApiGetCall({
- url: "/api/ListOrg",
- queryKey: `${currentTenant}-ListOrg`,
- data: { tenantFilter: currentTenant },
- });
+ url: '/api/ListGraphRequest',
+ queryKey: `${currentTenant}-ListGraphRequest-organization`,
+ data: { tenantFilter: currentTenant, Endpoint: 'organization' },
+ })
+
+ const organizationRecord = organization.data?.Results?.[0]
const testsApi = ApiGetCall({
- url: "/api/ListTests",
+ url: '/api/ListTests',
data: { tenantFilter: currentTenant, reportId: selectedReport },
queryKey: `${currentTenant}-ListTests-${selectedReport}`,
waiting: !!currentTenant && !!selectedReport,
- });
+ })
const currentTenantInfo = ApiGetCall({
- url: "/api/listTenants",
+ url: '/api/listTenants',
data: { AllTenantSelector: true },
- queryKey: "TenantSelector",
+ queryKey: 'TenantSelector',
refetchOnMount: false,
refetchOnReconnect: false,
keepPreviousData: true,
- });
+ })
const reportData =
testsApi.isSuccess && testsApi.data?.TenantCounts
? {
ExecutedAt: testsApi.data?.LatestReportTimeStamp || null,
- TenantName: organization.data?.displayName || "",
- Domain: currentTenant || "",
+ TenantName: organizationRecord?.displayName || '',
+ Domain: currentTenant || '',
TestResultSummary: {
IdentityPassed: testsApi.data.TestCounts?.Identity?.Passed || 0,
+ IdentityFailed: testsApi.data.TestCounts?.Identity?.Failed || 0,
+ IdentitySkipped: testsApi.data.TestCounts?.Identity?.Skipped || 0,
+ IdentityInformational: testsApi.data.TestCounts?.Identity?.Informational || 0,
+ IdentityNeedsAttention: testsApi.data.TestCounts?.Identity?.NeedsAttention || 0,
IdentityTotal: testsApi.data.TestCounts?.Identity?.Total || 0,
DevicesPassed: testsApi.data.TestCounts?.Devices?.Passed || 0,
+ DevicesFailed: testsApi.data.TestCounts?.Devices?.Failed || 0,
+ DevicesSkipped: testsApi.data.TestCounts?.Devices?.Skipped || 0,
+ DevicesInformational: testsApi.data.TestCounts?.Devices?.Informational || 0,
+ DevicesNeedsAttention: testsApi.data.TestCounts?.Devices?.NeedsAttention || 0,
DevicesTotal: testsApi.data.TestCounts?.Devices?.Total || 0,
+ CustomPassed: testsApi.data.TestCounts?.Custom?.Passed || 0,
+ CustomFailed: testsApi.data.TestCounts?.Custom?.Failed || 0,
+ CustomSkipped: testsApi.data.TestCounts?.Custom?.Skipped || 0,
+ CustomInformational: testsApi.data.TestCounts?.Custom?.Informational || 0,
+ CustomNeedsAttention: testsApi.data.TestCounts?.Custom?.NeedsAttention || 0,
+ CustomTotal: testsApi.data.TestCounts?.Custom?.Total || 0,
DataPassed: 0,
DataTotal: 0,
},
@@ -139,7 +122,7 @@ const Page = () => {
DeviceOverview: dashboardDemoData.TenantInfo.DeviceOverview,
},
}
- : dashboardDemoData;
+ : dashboardDemoData
// Function to filter portals based on user preferences
const getFilteredPortals = () => {
@@ -155,178 +138,189 @@ const Page = () => {
Compliance_Portal: true,
Power_Platform_Portal: true,
Power_BI_Portal: true,
- };
+ }
- let portalLinks;
+ let portalLinks
if (settings.UserSpecificSettings?.portalLinks) {
- portalLinks = { ...defaultLinks, ...settings.UserSpecificSettings.portalLinks };
+ portalLinks = { ...defaultLinks, ...settings.UserSpecificSettings.portalLinks }
} else if (settings.portalLinks) {
- portalLinks = { ...defaultLinks, ...settings.portalLinks };
+ portalLinks = { ...defaultLinks, ...settings.portalLinks }
} else {
- portalLinks = defaultLinks;
+ portalLinks = defaultLinks
}
// Filter the portals based on user settings
return Portals.filter((portal) => {
- const settingKey = portal.name;
- return settingKey ? portalLinks[settingKey] === true : true;
- });
- };
+ const settingKey = portal.name
+ return settingKey ? portalLinks[settingKey] === true : true
+ })
+ }
useEffect(() => {
if (currentTenantInfo.isSuccess) {
const tenantLookup = currentTenantInfo.data?.find(
- (tenant) => tenant.defaultDomainName === currentTenant,
- );
+ (tenant) => tenant.defaultDomainName === currentTenant
+ )
// Get filtered portals based on user preferences
- const filteredPortals = getFilteredPortals();
+ const filteredPortals = getFilteredPortals()
const menuItems = filteredPortals.map((portal) => ({
label: portal.label,
- target: "_blank",
+ target: '_blank',
link: portal.url.replace(portal.variable, tenantLookup?.[portal.variable]),
icon: portal.icon,
- }));
- setPortalMenuItems(menuItems);
+ }))
+ setPortalMenuItems(menuItems)
}
}, [
currentTenantInfo.isSuccess,
currentTenant,
settings.portalLinks,
settings.UserSpecificSettings,
- ]);
+ ])
const formatNumber = (num) => {
- if (!num && num !== 0) return "0";
+ if (!num && num !== 0) return '0'
if (num >= 1000) {
- return (num / 1000).toFixed(1) + "K";
+ return (num / 1000).toFixed(1) + 'K'
}
- return num.toLocaleString();
- };
+ return num.toLocaleString()
+ }
return (
-
- {/* Universal Search */}
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
+
+ {isWide ? (
+ <>
+
+
+
+
}
- disabled
sx={{
- fontWeight: "bold",
- textTransform: "none",
+ width: '100%',
+ minWidth: 0,
+ whiteSpace: 'nowrap',
+ overflow: 'hidden',
+ textOverflow: 'ellipsis',
+ fontWeight: 'bold',
+ textTransform: 'none',
borderRadius: 2,
- boxShadow: "0 2px 8px rgba(0,0,0,0.15)",
- transition: "all 0.2s ease-in-out",
+ boxShadow: '0 2px 8px rgba(0,0,0,0.15)',
+ transition: 'all 0.2s ease-in-out',
}}
>
- Report Builder
+
+ Report Builder
+
-
-
-
-
+
+ >
+ ) : (
+ <>
+
+
+
+
+ >
+ )}
+
-
-
-
-
- ({
- label: r.name,
- value: r.id,
- description: r.description,
- }))}
- placeholder="Choose a report"
- />
-
-
-
-
-
-
+
+
{/* Tenant Overview Section - 3 Column Layout */}
-
+
{/* Column 1: Tenant Information */}
-
+
{/* Column 2: Tenant Metrics - 2x3 Grid */}
@@ -339,28 +333,33 @@ const Page = () => {
{/* Column 3: Assessment Results */}
-
+ r.id === selectedReport)?.name}
+ description={reports.find((r) => r.id === selectedReport)?.description}
+ />
{/* Identity Section - 2 Column Grid */}
-
-
+
+
{/* Left Column */}
-
+
@@ -368,19 +367,19 @@ const Page = () => {
{/* Right Column */}
-
+
@@ -388,45 +387,14 @@ const Page = () => {
-
- {/* Delete Report Dialog */}
-
-
- {/* Refresh Data Dialog */}
-
- );
-};
+ )
+}
Page.getLayout = (page) => (
{page}
-);
+)
-export default Page;
+export default Page
diff --git a/src/pages/dashboardv2/tabOptions.json b/src/pages/dashboardv2/tabOptions.json
index 952c392e5c89..752f38c9d419 100644
--- a/src/pages/dashboardv2/tabOptions.json
+++ b/src/pages/dashboardv2/tabOptions.json
@@ -11,6 +11,10 @@
"label": "Devices",
"path": "/dashboardv2/devices"
},
+ {
+ "label": "Custom",
+ "path": "/dashboardv2/custom"
+ },
{
"label": "Previous Dashboard Experience",
"path": "/dashboardv1"
diff --git a/src/pages/email/administration/mailboxes/index.js b/src/pages/email/administration/mailboxes/index.js
index 65f190eff94f..bb3d72bb40fe 100644
--- a/src/pages/email/administration/mailboxes/index.js
+++ b/src/pages/email/administration/mailboxes/index.js
@@ -1,85 +1,85 @@
-import { Layout as DashboardLayout } from "../../../../layouts/index.js";
-import { CippTablePage } from "../../../../components/CippComponents/CippTablePage.jsx";
-import CippExchangeActions from "../../../../components/CippComponents/CippExchangeActions";
-import { CippHVEUserDrawer } from "../../../../components/CippComponents/CippHVEUserDrawer.jsx";
-import { CippSharedMailboxDrawer } from "../../../../components/CippComponents/CippSharedMailboxDrawer.jsx";
-import { Sync, Info } from "@mui/icons-material";
-import { Button, SvgIcon, IconButton, Tooltip } from "@mui/material";
-import { useSettings } from "../../../../hooks/use-settings";
-import { Stack } from "@mui/system";
-import { useDialog } from "../../../../hooks/use-dialog";
-import { CippApiDialog } from "../../../../components/CippComponents/CippApiDialog";
-import { useState } from "react";
-import { CippQueueTracker } from "../../../../components/CippTable/CippQueueTracker";
+import { Layout as DashboardLayout } from '../../../../layouts/index.js'
+import { CippTablePage } from '../../../../components/CippComponents/CippTablePage.jsx'
+import CippExchangeActions from '../../../../components/CippComponents/CippExchangeActions'
+import { CippHVEUserDrawer } from '../../../../components/CippComponents/CippHVEUserDrawer.jsx'
+import { CippSharedMailboxDrawer } from '../../../../components/CippComponents/CippSharedMailboxDrawer.jsx'
+import { Sync, CloudDone, Bolt } from '@mui/icons-material'
+import { Button, SvgIcon, Tooltip, Chip } from '@mui/material'
+import { useSettings } from '../../../../hooks/use-settings'
+import { Stack } from '@mui/system'
+import { useDialog } from '../../../../hooks/use-dialog'
+import { CippApiDialog } from '../../../../components/CippComponents/CippApiDialog'
+import { useState, useEffect } from 'react'
+import { CippQueueTracker } from '../../../../components/CippTable/CippQueueTracker'
const Page = () => {
- const pageTitle = "Mailboxes";
- const currentTenant = useSettings().currentTenant;
- const syncDialog = useDialog();
- const [syncQueueId, setSyncQueueId] = useState(null);
+ const pageTitle = 'Mailboxes'
+ const currentTenant = useSettings().currentTenant
+ const syncDialog = useDialog()
+ const [syncQueueId, setSyncQueueId] = useState(null)
- const isAllTenants = currentTenant === "AllTenants";
+ const isAllTenants = currentTenant === 'AllTenants'
+ const [useReportDB, setUseReportDB] = useState(true)
- const apiData = {
- UseReportDB: true,
- };
+ useEffect(() => {
+ setUseReportDB(true)
+ }, [currentTenant])
// Define off-canvas details
const offCanvas = {
- extendedInfoFields: ["displayName", "UPN", "AdditionalEmailAddresses", "recipientTypeDetails"],
+ extendedInfoFields: ['displayName', 'UPN', 'AdditionalEmailAddresses', 'recipientTypeDetails'],
actions: CippExchangeActions(),
- };
+ }
const filterList = [
{
- filterName: "View User Mailboxes",
- value: [{ id: "recipientTypeDetails", value: "UserMailbox" }],
- type: "column",
+ filterName: 'View User Mailboxes',
+ value: [{ id: 'recipientTypeDetails', value: 'UserMailbox' }],
+ type: 'column',
},
{
- filterName: "View Shared Mailboxes",
- value: [{ id: "recipientTypeDetails", value: "SharedMailbox" }],
- type: "column",
+ filterName: 'View Shared Mailboxes',
+ value: [{ id: 'recipientTypeDetails', value: 'SharedMailbox' }],
+ type: 'column',
},
{
- filterName: "View Room Mailboxes",
- value: [{ id: "recipientTypeDetails", value: "RoomMailbox" }],
- type: "column",
+ filterName: 'View Room Mailboxes',
+ value: [{ id: 'recipientTypeDetails', value: 'RoomMailbox' }],
+ type: 'column',
},
{
- filterName: "View Equipment Mailboxes",
- value: [{ id: "recipientTypeDetails", value: "EquipmentMailbox" }],
- type: "column",
+ filterName: 'View Equipment Mailboxes',
+ value: [{ id: 'recipientTypeDetails', value: 'EquipmentMailbox' }],
+ type: 'column',
},
- ];
+ ]
// Simplified columns for the table
const simpleColumns = isAllTenants
? [
- "Tenant", // Tenant
- "displayName", // Display Name
- "recipientTypeDetails", // Recipient Type Details
- "UPN", // User Principal Name
- "primarySmtpAddress", // Primary Email Address
- "AdditionalEmailAddresses", // Additional Email Addresses
- "CacheTimestamp", // Cache Timestamp
+ 'Tenant', // Tenant
+ 'displayName', // Display Name
+ 'recipientTypeDetails', // Recipient Type Details
+ 'UPN', // User Principal Name
+ 'primarySmtpAddress', // Primary Email Address
+ 'AdditionalEmailAddresses', // Additional Email Addresses
+ 'CacheTimestamp', // Cache Timestamp
]
: [
- "displayName", // Display Name
- "recipientTypeDetails", // Recipient Type Details
- "UPN", // User Principal Name
- "primarySmtpAddress", // Primary Email Address
- "AdditionalEmailAddresses", // Additional Email Addresses
- "CacheTimestamp", // Cache Timestamp
- ];
+ 'displayName', // Display Name
+ 'recipientTypeDetails', // Recipient Type Details
+ 'UPN', // User Principal Name
+ 'primarySmtpAddress', // Primary Email Address
+ 'AdditionalEmailAddresses', // Additional Email Addresses
+ 'CacheTimestamp', // Cache Timestamp
+ ]
return (
<>
{
-
-
-
-
-
-
-
+
+ : }
+ label={useReportDB ? 'Cached' : 'Live'}
+ color="primary"
+ size="small"
+ onClick={isAllTenants ? undefined : () => setUseReportDB((prev) => !prev)}
+ clickable={!isAllTenants}
+ disabled={isAllTenants}
+ variant="outlined"
+ />
+
+
}
/>
@@ -117,25 +139,25 @@ const Page = () => {
title="Sync Mailboxes"
fields={[]}
api={{
- type: "GET",
- url: "/api/ExecCIPPDBCache",
+ type: 'GET',
+ url: '/api/ExecCIPPDBCache',
confirmText: `Run mailboxes cache sync for ${currentTenant}? This will update mailbox data immediately.`,
- relatedQueryKeys: [`ListMailboxes-${currentTenant}`],
+ relatedQueryKeys: [`ListMailboxes-${currentTenant}-true`],
data: {
- Name: "Mailboxes",
- Types: "None",
+ Name: 'Mailboxes',
+ Types: 'None',
},
onSuccess: (response) => {
if (response?.Metadata?.QueueId) {
- setSyncQueueId(response.Metadata.QueueId);
+ setSyncQueueId(response.Metadata.QueueId)
}
},
}}
/>
>
- );
-};
+ )
+}
-Page.getLayout = (page) => {page};
+Page.getLayout = (page) => {page}
-export default Page;
+export default Page
diff --git a/src/pages/email/administration/tenant-allow-block-list-templates/index.js b/src/pages/email/administration/tenant-allow-block-list-templates/index.js
new file mode 100644
index 000000000000..85de23ce2ec4
--- /dev/null
+++ b/src/pages/email/administration/tenant-allow-block-list-templates/index.js
@@ -0,0 +1,55 @@
+import { Layout as DashboardLayout } from '../../../../layouts/index.js'
+import { CippTablePage } from '../../../../components/CippComponents/CippTablePage.jsx'
+import { Delete } from '@mui/icons-material'
+import CippJsonView from '../../../../components/CippFormPages/CippJSONView'
+import { CippTenantAllowBlockListTemplateDrawer } from '../../../../components/CippComponents/CippTenantAllowBlockListTemplateDrawer.jsx'
+
+const Page = () => {
+ const pageTitle = 'Tenant Allow/Block List Templates'
+
+ const actions = [
+ {
+ label: 'Delete Template',
+ type: 'POST',
+ url: '/api/RemoveTenantAllowBlockListTemplate',
+ data: { ID: 'GUID' },
+ confirmText: 'Do you want to delete this template?',
+ multiPost: false,
+ icon: ,
+ color: 'danger',
+ },
+ ]
+
+ const offCanvas = {
+ children: (row) => ,
+ size: 'lg',
+ }
+
+ const simpleColumns = [
+ 'templateName',
+ 'entries',
+ 'listType',
+ 'listMethod',
+ 'notes',
+ 'NoExpiration',
+ 'RemoveAfter',
+ ]
+
+ return (
+
+ }
+ />
+ )
+}
+
+Page.getLayout = (page) => {page}
+export default Page
diff --git a/src/pages/email/reports/activesync-devices/index.js b/src/pages/email/reports/activesync-devices/index.js
new file mode 100644
index 000000000000..38b7ea65f87d
--- /dev/null
+++ b/src/pages/email/reports/activesync-devices/index.js
@@ -0,0 +1,103 @@
+import { Layout as DashboardLayout } from '../../../../layouts/index.js'
+import { CippTablePage } from '../../../../components/CippComponents/CippTablePage.jsx'
+import { Block, CheckCircle } from '@mui/icons-material'
+import { TrashIcon } from '@heroicons/react/24/outline'
+
+const Page = () => {
+ const actions = [
+ {
+ label: 'Allow Device',
+ type: 'GET',
+ icon: ,
+ url: '/api/ExecMailboxMobileDevices',
+ data: {
+ Userid: 'userPrincipalName',
+ deviceid: 'deviceID',
+ guid: 'Guid',
+ Quarantine: false,
+ Delete: false,
+ },
+ confirmText:
+ 'Are you sure you want to allow the device [deviceFriendlyName] for [userPrincipalName]?',
+ multiPost: false,
+ condition: (row) => row.deviceAccessState !== 'Allowed',
+ },
+ {
+ label: 'Block Device',
+ type: 'GET',
+ icon: ,
+ url: '/api/ExecMailboxMobileDevices',
+ data: {
+ Userid: 'userPrincipalName',
+ deviceid: 'deviceID',
+ guid: 'Guid',
+ Quarantine: true,
+ Delete: false,
+ },
+ confirmText:
+ 'Are you sure you want to block the device [deviceFriendlyName] for [userPrincipalName]?',
+ multiPost: false,
+ condition: (row) => row.deviceAccessState !== 'Blocked',
+ },
+ {
+ label: 'Delete Device',
+ type: 'GET',
+ icon: ,
+ url: '/api/ExecMailboxMobileDevices',
+ data: {
+ Userid: 'userPrincipalName',
+ deviceid: 'deviceID',
+ guid: 'Guid',
+ Quarantine: false,
+ Delete: true,
+ },
+ confirmText:
+ 'Are you sure you want to delete the device [deviceFriendlyName] for [userPrincipalName]? This action cannot be undone.',
+ multiPost: false,
+ },
+ ]
+
+ return (
+
+ )
+}
+
+Page.getLayout = (page) => {page}
+
+export default Page
diff --git a/src/pages/email/reports/calendar-permissions/index.js b/src/pages/email/reports/calendar-permissions/index.js
index 165c7159f06e..6ca2faac6d0d 100644
--- a/src/pages/email/reports/calendar-permissions/index.js
+++ b/src/pages/email/reports/calendar-permissions/index.js
@@ -1,66 +1,70 @@
-import { Layout as DashboardLayout } from "../../../../layouts/index.js";
-import { CippTablePage } from "../../../../components/CippComponents/CippTablePage.jsx";
-import { useState } from "react";
-import {
- Button,
- FormControlLabel,
- Switch,
- Alert,
- SvgIcon,
- IconButton,
- Tooltip,
-} from "@mui/material";
-import { useSettings } from "../../../../hooks/use-settings";
-import { Stack } from "@mui/system";
-import { Sync, Info } from "@mui/icons-material";
-import { useDialog } from "../../../../hooks/use-dialog";
-import { CippApiDialog } from "../../../../components/CippComponents/CippApiDialog";
-import { CippQueueTracker } from "../../../../components/CippTable/CippQueueTracker";
+import { Layout as DashboardLayout } from '../../../../layouts/index.js'
+import { CippTablePage } from '../../../../components/CippComponents/CippTablePage.jsx'
+import { useState } from 'react'
+import { Button, Alert, SvgIcon, Tooltip, Chip } from '@mui/material'
+import { useSettings } from '../../../../hooks/use-settings'
+import { Stack } from '@mui/system'
+import { Sync, CloudDone, Person, CalendarMonth } from '@mui/icons-material'
+import { useDialog } from '../../../../hooks/use-dialog'
+import { CippApiDialog } from '../../../../components/CippComponents/CippApiDialog'
+import { CippQueueTracker } from '../../../../components/CippTable/CippQueueTracker'
const Page = () => {
- const [byUser, setByUser] = useState(true);
- const currentTenant = useSettings().currentTenant;
- const syncDialog = useDialog();
- const [syncQueueId, setSyncQueueId] = useState(null);
+ const [byUser, setByUser] = useState(true)
+ const currentTenant = useSettings().currentTenant
+ const syncDialog = useDialog()
+ const [syncQueueId, setSyncQueueId] = useState(null)
- const isAllTenants = currentTenant === "AllTenants";
+ const isAllTenants = currentTenant === 'AllTenants'
const columns = byUser
? [
- ...(isAllTenants ? ["Tenant"] : []),
- "User",
- "UserMailboxType",
- "Permissions",
- "MailboxCacheTimestamp",
- "PermissionCacheTimestamp",
+ ...(isAllTenants ? ['Tenant'] : []),
+ 'User',
+ 'UserMailboxType',
+ 'Permissions',
+ 'MailboxCacheTimestamp',
+ 'PermissionCacheTimestamp',
]
: [
- ...(isAllTenants ? ["Tenant"] : []),
- "CalendarUPN",
- "CalendarDisplayName",
- "CalendarType",
- "Permissions",
- "MailboxCacheTimestamp",
- "PermissionCacheTimestamp",
- ];
+ ...(isAllTenants ? ['Tenant'] : []),
+ 'CalendarUPN',
+ 'CalendarDisplayName',
+ 'CalendarType',
+ 'Permissions',
+ 'MailboxCacheTimestamp',
+ 'PermissionCacheTimestamp',
+ ]
// Compute apiData based on byUser directly (no useState needed)
const apiData = {
UseReportDB: true,
ByUser: byUser,
- };
+ }
const pageActions = [
-
+
-
-
-
-
+
+ : }
+ label={byUser ? 'By User' : 'By Calendar'}
+ color="primary"
+ size="small"
+ onClick={() => setByUser((prev) => !prev)}
+ clickable
+ variant="outlined"
+ />
{
>
Sync
- setByUser(e.target.checked)} color="primary" />
- }
- label="Group by User"
- labelPlacement="start"
- />
+
+
+ }
+ label="Cached"
+ color="primary"
+ size="small"
+ disabled
+ variant="outlined"
+ />
+
+
,
- ];
+ ]
return (
<>
- {currentTenant && currentTenant !== "" ? (
+ {currentTenant && currentTenant !== '' ? (
{
title="Sync Calendar Permissions Cache"
fields={[]}
api={{
- type: "GET",
- url: "/api/ExecCIPPDBCache",
+ type: 'GET',
+ url: '/api/ExecCIPPDBCache',
confirmText: `Run calendar permissions cache sync for ${currentTenant}? This will update mailbox and calendar permission data immediately.`,
relatedQueryKeys: [`calendar-permissions-${currentTenant}-${byUser}`],
data: {
- Name: "Mailboxes",
- Types: "CalendarPermissions",
+ Name: 'Mailboxes',
+ Types: 'CalendarPermissions',
},
onSuccess: (result) => {
if (result?.Metadata?.QueueId) {
- setSyncQueueId(result.Metadata.QueueId);
+ setSyncQueueId(result.Metadata.QueueId)
}
},
}}
/>
>
- );
-};
+ )
+}
-Page.getLayout = (page) => {page};
+Page.getLayout = (page) => {page}
-export default Page;
+export default Page
diff --git a/src/pages/email/reports/mailbox-permissions/index.js b/src/pages/email/reports/mailbox-permissions/index.js
index 12dff106c276..cdeff1997a46 100644
--- a/src/pages/email/reports/mailbox-permissions/index.js
+++ b/src/pages/email/reports/mailbox-permissions/index.js
@@ -1,66 +1,70 @@
-import { Layout as DashboardLayout } from "../../../../layouts/index.js";
-import { CippTablePage } from "../../../../components/CippComponents/CippTablePage.jsx";
-import { useState } from "react";
-import {
- Button,
- FormControlLabel,
- Switch,
- Alert,
- SvgIcon,
- IconButton,
- Tooltip,
-} from "@mui/material";
-import { useSettings } from "../../../../hooks/use-settings";
-import { Stack } from "@mui/system";
-import { Sync, Info } from "@mui/icons-material";
-import { useDialog } from "../../../../hooks/use-dialog";
-import { CippApiDialog } from "../../../../components/CippComponents/CippApiDialog";
-import { CippQueueTracker } from "../../../../components/CippTable/CippQueueTracker";
+import { Layout as DashboardLayout } from '../../../../layouts/index.js'
+import { CippTablePage } from '../../../../components/CippComponents/CippTablePage.jsx'
+import { useState } from 'react'
+import { Button, Alert, SvgIcon, Tooltip, Chip } from '@mui/material'
+import { useSettings } from '../../../../hooks/use-settings'
+import { Stack } from '@mui/system'
+import { Sync, CloudDone, Person, Inbox } from '@mui/icons-material'
+import { useDialog } from '../../../../hooks/use-dialog'
+import { CippApiDialog } from '../../../../components/CippComponents/CippApiDialog'
+import { CippQueueTracker } from '../../../../components/CippTable/CippQueueTracker'
const Page = () => {
- const [byUser, setByUser] = useState(true);
- const currentTenant = useSettings().currentTenant;
- const syncDialog = useDialog();
- const [syncQueueId, setSyncQueueId] = useState(null);
+ const [byUser, setByUser] = useState(true)
+ const currentTenant = useSettings().currentTenant
+ const syncDialog = useDialog()
+ const [syncQueueId, setSyncQueueId] = useState(null)
- const isAllTenants = currentTenant === "AllTenants";
+ const isAllTenants = currentTenant === 'AllTenants'
const columns = byUser
? [
- ...(isAllTenants ? ["Tenant"] : []),
- "User",
- "UserMailboxType",
- "Permissions",
- "MailboxCacheTimestamp",
- "PermissionCacheTimestamp",
+ ...(isAllTenants ? ['Tenant'] : []),
+ 'User',
+ 'UserMailboxType',
+ 'Permissions',
+ 'MailboxCacheTimestamp',
+ 'PermissionCacheTimestamp',
]
: [
- ...(isAllTenants ? ["Tenant"] : []),
- "MailboxUPN",
- "MailboxDisplayName",
- "MailboxType",
- "Permissions",
- "MailboxCacheTimestamp",
- "PermissionCacheTimestamp",
- ];
+ ...(isAllTenants ? ['Tenant'] : []),
+ 'MailboxUPN',
+ 'MailboxDisplayName',
+ 'MailboxType',
+ 'Permissions',
+ 'MailboxCacheTimestamp',
+ 'PermissionCacheTimestamp',
+ ]
// Compute apiData based on byUser directly (no useState needed)
const apiData = {
UseReportDB: true,
ByUser: byUser,
- };
+ }
const pageActions = [
-
+
-
-
-
-
+
+ : }
+ label={byUser ? 'By User' : 'By Mailbox'}
+ color="primary"
+ size="small"
+ onClick={() => setByUser((prev) => !prev)}
+ clickable
+ variant="outlined"
+ />
{
>
Sync
- setByUser(e.target.checked)} color="primary" />
- }
- label="Group by User"
- labelPlacement="start"
- />
+
+
+ }
+ label="Cached"
+ color="primary"
+ size="small"
+ disabled
+ variant="outlined"
+ />
+
+
,
- ];
+ ]
return (
<>
- {currentTenant && currentTenant !== "" ? (
+ {currentTenant && currentTenant !== '' ? (
{
title="Sync Mailbox Permissions Cache"
fields={[]}
api={{
- type: "GET",
- url: "/api/ExecCIPPDBCache",
+ type: 'GET',
+ url: '/api/ExecCIPPDBCache',
confirmText: `Run mailbox permissions cache sync for ${currentTenant}? This will update mailbox and permission data immediately.`,
relatedQueryKeys: [`mailbox-permissions-${currentTenant}-${byUser}`],
data: {
- Name: "Mailboxes",
- Types: "Permissions",
+ Name: 'Mailboxes',
+ Types: 'Permissions',
},
onSuccess: (result) => {
if (result?.Metadata?.QueueId) {
- setSyncQueueId(result.Metadata.QueueId);
+ setSyncQueueId(result.Metadata.QueueId)
}
},
}}
/>
>
- );
-};
+ )
+}
-Page.getLayout = (page) => {page};
+Page.getLayout = (page) => {page}
-export default Page;
+export default Page
diff --git a/src/pages/endpoint/MEM/compare-policies/index.js b/src/pages/endpoint/MEM/compare-policies/index.js
new file mode 100644
index 000000000000..da74c739462b
--- /dev/null
+++ b/src/pages/endpoint/MEM/compare-policies/index.js
@@ -0,0 +1,487 @@
+import { Layout as DashboardLayout } from "../../../../layouts/index.js";
+import { useForm, useWatch } from "react-hook-form";
+import { ApiPostCall } from "../../../../api/ApiCall";
+import { CippFormComponent } from "../../../../components/CippComponents/CippFormComponent";
+import { CippFormCondition } from "../../../../components/CippComponents/CippFormCondition";
+import { CippFormTenantSelector } from "../../../../components/CippComponents/CippFormTenantSelector";
+import { CippCodeBlock } from "../../../../components/CippComponents/CippCodeBlock";
+import {
+ Box,
+ Button,
+ Card,
+ CardContent,
+ CardHeader,
+ Typography,
+ Table,
+ TableBody,
+ TableCell,
+ TableContainer,
+ TableHead,
+ TableRow,
+ Paper,
+ Accordion,
+ AccordionSummary,
+ AccordionDetails,
+ Alert,
+ Stack,
+ Chip,
+ Skeleton,
+} from "@mui/material";
+import {
+ ExpandMore as ExpandMoreIcon,
+ CompareArrows as CompareArrowsIcon,
+ CheckCircle as CheckCircleIcon,
+ Error as ErrorIcon,
+} from "@mui/icons-material";
+import { useEffect, useMemo } from "react";
+import { Grid } from "@mui/system";
+import CippPageCard from "../../../../components/CippCards/CippPageCard";
+
+const sourceTypeOptions = [
+ { label: "CIPP Template", value: "template" },
+ { label: "Tenant Policy", value: "tenantPolicy" },
+ { label: "Community Repository", value: "communityRepo" },
+];
+
+const SourceSelector = ({ prefix, formControl, label }) => {
+ const tenantValue = useWatch({ control: formControl.control, name: `${prefix}.tenantFilter` });
+ const repoValue = useWatch({ control: formControl.control, name: `${prefix}.repo` });
+ const branchValue = useWatch({ control: formControl.control, name: `${prefix}.branch` });
+
+ useEffect(() => {
+ if (repoValue?.addedFields?.defaultBranch) {
+ formControl.setValue(`${prefix}.branch`, {
+ label: repoValue.addedFields.defaultBranch,
+ value: repoValue.addedFields.defaultBranch,
+ });
+ } else {
+ formControl.setValue(`${prefix}.branch`, null);
+ }
+ formControl.setValue(`${prefix}.repoFile`, null);
+ }, [repoValue?.value]);
+
+ useEffect(() => {
+ formControl.setValue(`${prefix}.repoFile`, null);
+ }, [branchValue?.value]);
+
+ return (
+
+
+
+
+
+
+
+
+ `${item.Displayname || item.displayName}${item.Type ? ` (${item.Type})` : ""}`,
+ valueField: "GUID",
+ addedField: { type: "Type" },
+ }}
+ validators={{ required: { value: true, message: "Template is required" } }}
+ />
+
+
+
+
+
+
+ {
+ const name = item.displayName || item.name || "Unnamed Policy";
+ const type = item.PolicyTypeName || item.URLName || "";
+ return type ? `${name} (${type})` : name;
+ },
+ valueField: "id",
+ addedField: { urlName: "URLName" },
+ }
+ : undefined
+ }
+ validators={{ required: { value: true, message: "Policy is required" } }}
+ />
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+const hasValue = (val) => val !== null && val !== undefined && val !== "";
+
+const getDiffStatus = (row) => {
+ const a = hasValue(row.ExpectedValue);
+ const b = hasValue(row.ReceivedValue);
+ if (a && b) return "different";
+ if (a) return "onlyA";
+ if (b) return "onlyB";
+ return "equal";
+};
+
+const diffChipProps = {
+ different: { label: "Different", color: "error" },
+ onlyA: { label: "Only in A", color: "warning" },
+ onlyB: { label: "Only in B", color: "info" },
+ equal: { label: "Equal", color: "success" },
+};
+
+const DiffStatusChip = ({ row }) => {
+ const props = diffChipProps[getDiffStatus(row)];
+ return ;
+};
+
+const diffRowColors = {
+ different: { dark: "rgba(244, 67, 54, 0.08)", light: "rgba(244, 67, 54, 0.04)" },
+ onlyA: { dark: "rgba(255, 152, 0, 0.08)", light: "rgba(255, 152, 0, 0.04)" },
+ onlyB: { dark: "rgba(33, 150, 243, 0.08)", light: "rgba(33, 150, 243, 0.04)" },
+ equal: { dark: "transparent", light: "transparent" },
+};
+
+const getRowColor = (row, theme) => {
+ const colors = diffRowColors[getDiffStatus(row)];
+ return theme.palette.mode === "dark" ? colors.dark : colors.light;
+};
+
+const formatValue = (val) => {
+ if (val === null || val === undefined) return N/A;
+ if (typeof val === "object") {
+ return (
+
+ {JSON.stringify(val, null, 2)}
+
+ );
+ }
+ return String(val);
+};
+
+const Page = () => {
+ const formControl = useForm({
+ mode: "onChange",
+ defaultValues: {
+ sourceA: { type: "template" },
+ sourceB: { type: "template" },
+ },
+ });
+
+ const compareApi = ApiPostCall({ relatedQueryKeys: [] });
+
+ const sourceAType = useWatch({ control: formControl.control, name: "sourceA.type" });
+ const sourceBType = useWatch({ control: formControl.control, name: "sourceB.type" });
+ const sourceATemplate = useWatch({ control: formControl.control, name: "sourceA.template" });
+ const sourceBTemplate = useWatch({ control: formControl.control, name: "sourceB.template" });
+ const sourceAPolicy = useWatch({ control: formControl.control, name: "sourceA.policy" });
+ const sourceBPolicy = useWatch({ control: formControl.control, name: "sourceB.policy" });
+ const sourceARepoFile = useWatch({ control: formControl.control, name: "sourceA.repoFile" });
+ const sourceBRepoFile = useWatch({ control: formControl.control, name: "sourceB.repoFile" });
+
+ const isSourceReady = (type, template, policy, repoFile) =>
+ type === "template"
+ ? !!template?.value
+ : type === "tenantPolicy"
+ ? !!policy?.value
+ : type === "communityRepo"
+ ? !!repoFile?.value
+ : false;
+
+ const canCompare =
+ isSourceReady(sourceAType, sourceATemplate, sourceAPolicy, sourceARepoFile) &&
+ isSourceReady(sourceBType, sourceBTemplate, sourceBPolicy, sourceBRepoFile);
+
+ const handleCompare = () => {
+ const values = formControl.getValues();
+
+ const buildPayload = (source) => {
+ if (source.type === "template") {
+ return {
+ type: "template",
+ templateGuid: source.template?.value,
+ };
+ }
+ if (source.type === "communityRepo") {
+ return {
+ type: "communityRepo",
+ fullName: source.repo?.value,
+ branch: source.branch?.value,
+ path: source.repoFile?.value,
+ };
+ }
+ return {
+ type: "tenantPolicy",
+ tenantFilter: source.tenantFilter?.value,
+ policyId: source.policy?.value,
+ urlName: source.policy?.addedFields?.urlName,
+ };
+ };
+
+ compareApi.mutate({
+ url: "/api/ExecCompareIntunePolicy",
+ data: {
+ sourceA: buildPayload(values.sourceA),
+ sourceB: buildPayload(values.sourceB),
+ },
+ });
+ };
+
+ const results = useMemo(() => {
+ if (!compareApi.isSuccess) return null;
+ return compareApi.data?.data || compareApi.data;
+ }, [compareApi.isSuccess, compareApi.data]);
+
+ const errorMessage = useMemo(() => {
+ if (!compareApi.isError) return null;
+ const errData = compareApi.error?.response?.data;
+ return errData?.Results || compareApi.error?.message || "An error occurred";
+ }, [compareApi.isError, compareApi.error]);
+
+ const sourceAJson = useMemo(
+ () => (results?.sourceAData ? JSON.stringify(results.sourceAData, null, 2) : ""),
+ [results?.sourceAData],
+ );
+ const sourceBJson = useMemo(
+ () => (results?.sourceBData ? JSON.stringify(results.sourceBData, null, 2) : ""),
+ [results?.sourceBData],
+ );
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+ }
+ onClick={handleCompare}
+ disabled={!canCompare || compareApi.isPending}
+ >
+ {compareApi.isPending ? "Comparing..." : "Compare"}
+
+
+
+ {compareApi.isPending && (
+
+
+
+
+
+
+
+
+ )}
+
+ {errorMessage && (
+ }>
+ {errorMessage}
+
+ )}
+
+ {results && (
+
+ : }
+ >
+ {results.identical
+ ? "Policies are identical - no differences found."
+ : `${results.Results?.length || 0} difference${results.Results?.length === 1 ? "" : "s"} found between policies.`}
+
+ A: {results.sourceALabel} — B:{" "}
+ {results.sourceBLabel}
+
+
+
+ {!results.identical && results.Results?.length > 0 && (
+
+
+
+
+ Property
+ Source A
+ Source B
+ Status
+
+
+
+ {results.Results.map((row, index) => (
+ ({
+ backgroundColor: getRowColor(row, theme),
+ })}
+ >
+ {row.Property}
+ {formatValue(row.ExpectedValue)}
+ {formatValue(row.ReceivedValue)}
+
+
+
+
+ ))}
+
+
+
+ )}
+
+
+ }>
+ Source A Raw JSON — {results.sourceALabel}
+
+
+
+
+
+
+
+ }>
+ Source B Raw JSON — {results.sourceBLabel}
+
+
+
+
+
+
+ )}
+
+
+
+ );
+};
+
+Page.getLayout = (page) => {page};
+
+export default Page;
diff --git a/src/pages/endpoint/MEM/list-appprotection-policies/index.js b/src/pages/endpoint/MEM/list-appprotection-policies/index.js
index 0c8fc70161fc..bcf12e6e4efd 100644
--- a/src/pages/endpoint/MEM/list-appprotection-policies/index.js
+++ b/src/pages/endpoint/MEM/list-appprotection-policies/index.js
@@ -1,42 +1,42 @@
-import { Layout as DashboardLayout } from "../../../../layouts/index.js";
-import { CippTablePage } from "../../../../components/CippComponents/CippTablePage.jsx";
-import { PermissionButton } from "../../../../utils/permissions.js";
-import { CippPolicyDeployDrawer } from "../../../../components/CippComponents/CippPolicyDeployDrawer.jsx";
-import { useSettings } from "../../../../hooks/use-settings.js";
-import { useCippIntunePolicyActions } from "../../../../components/CippComponents/CippIntunePolicyActions.jsx";
+import { Layout as DashboardLayout } from '../../../../layouts/index.js'
+import { CippTablePage } from '../../../../components/CippComponents/CippTablePage.jsx'
+import { PermissionButton } from '../../../../utils/permissions.js'
+import { CippPolicyDeployDrawer } from '../../../../components/CippComponents/CippPolicyDeployDrawer.jsx'
+import { useSettings } from '../../../../hooks/use-settings.js'
+import { useCippIntunePolicyActions } from '../../../../components/CippComponents/CippIntunePolicyActions.jsx'
const Page = () => {
- const pageTitle = "App Protection & Configuration Policies";
- const cardButtonPermissions = ["Endpoint.MEM.ReadWrite"];
- const tenant = useSettings().currentTenant;
+ const pageTitle = 'App Protection & Configuration Policies'
+ const cardButtonPermissions = ['Endpoint.MEM.ReadWrite']
+ const tenant = useSettings().currentTenant
- const actions = useCippIntunePolicyActions(tenant, "URLName", {
+ const actions = useCippIntunePolicyActions(tenant, 'URLName', {
templateData: {
- ID: "id",
- URLName: "managedAppPolicies",
+ ID: 'id',
+ URLName: 'managedAppPolicies',
},
- platformType: "deviceAppManagement",
- deleteUrlName: "URLName",
- });
+ platformType: 'deviceAppManagement',
+ deleteUrlName: 'URLName',
+ })
const offCanvas = {
extendedInfoFields: [
- "createdDateTime",
- "displayName",
- "lastModifiedDateTime",
- "PolicyTypeName",
- "PolicySource",
+ 'createdDateTime',
+ 'displayName',
+ 'lastModifiedDateTime',
+ 'PolicyTypeName',
+ 'PolicySource',
],
actions: actions,
- };
+ }
const simpleColumns = [
- "displayName",
- "PolicyTypeName",
- "PolicyAssignment",
- "PolicyExclude",
- "lastModifiedDateTime",
- ];
+ 'displayName',
+ 'PolicyTypeName',
+ 'PolicyAssignment',
+ 'PolicyExclude',
+ 'lastModifiedDateTime',
+ ]
return (
{
/>
}
/>
- );
-};
+ )
+}
-Page.getLayout = (page) => {page};
-export default Page;
+Page.getLayout = (page) => {page}
+export default Page
diff --git a/src/pages/endpoint/MEM/list-policies/index.js b/src/pages/endpoint/MEM/list-policies/index.js
index 1b4d2d2c97bc..1a78f45906cb 100644
--- a/src/pages/endpoint/MEM/list-policies/index.js
+++ b/src/pages/endpoint/MEM/list-policies/index.js
@@ -1,59 +1,148 @@
-import { Layout as DashboardLayout } from "../../../../layouts/index.js";
-import { CippTablePage } from "../../../../components/CippComponents/CippTablePage.jsx";
-import { PermissionButton } from "../../../../utils/permissions.js";
-import { CippPolicyDeployDrawer } from "../../../../components/CippComponents/CippPolicyDeployDrawer.jsx";
-import { useSettings } from "../../../../hooks/use-settings.js";
-import { useCippIntunePolicyActions } from "../../../../components/CippComponents/CippIntunePolicyActions.jsx";
+import { Layout as DashboardLayout } from '../../../../layouts/index.js'
+import { CippTablePage } from '../../../../components/CippComponents/CippTablePage.jsx'
+import { PermissionButton } from '../../../../utils/permissions.js'
+import { CippPolicyDeployDrawer } from '../../../../components/CippComponents/CippPolicyDeployDrawer.jsx'
+import { useSettings } from '../../../../hooks/use-settings.js'
+import { useCippIntunePolicyActions } from '../../../../components/CippComponents/CippIntunePolicyActions.jsx'
+import { Sync, Info, CloudDone, Bolt } from '@mui/icons-material'
+import { Button, SvgIcon, IconButton, Tooltip, Chip } from '@mui/material'
+import { Stack } from '@mui/system'
+import { useDialog } from '../../../../hooks/use-dialog'
+import { CippApiDialog } from '../../../../components/CippComponents/CippApiDialog'
+import { CippQueueTracker } from '../../../../components/CippTable/CippQueueTracker'
+import { useState, useEffect } from 'react'
const Page = () => {
- const pageTitle = "Configuration Policies";
- const cardButtonPermissions = ["Endpoint.MEM.ReadWrite"];
- const tenant = useSettings().currentTenant;
+ const pageTitle = 'Configuration Policies'
+ const cardButtonPermissions = ['Endpoint.MEM.ReadWrite']
+ const tenant = useSettings().currentTenant
+ const isAllTenants = tenant === 'AllTenants'
+ const syncDialog = useDialog()
+ const [syncQueueId, setSyncQueueId] = useState(null)
+ const [useReportDB, setUseReportDB] = useState(isAllTenants)
- const actions = useCippIntunePolicyActions(tenant, "URLName", {
+ // Reset toggle whenever the tenant changes
+ useEffect(() => {
+ setUseReportDB(tenant === 'AllTenants')
+ }, [tenant])
+
+ const actions = useCippIntunePolicyActions(tenant, 'URLName', {
templateData: {
- ID: "id",
- URLName: "URLName",
+ ID: 'id',
+ URLName: 'URLName',
},
- deleteUrlName: "URLName",
- });
+ deleteUrlName: 'URLName',
+ })
const offCanvas = {
extendedInfoFields: [
- "createdDateTime",
- "displayName",
- "lastModifiedDateTime",
- "PolicyTypeName",
+ 'createdDateTime',
+ 'displayName',
+ 'lastModifiedDateTime',
+ 'PolicyTypeName',
],
actions: actions,
- };
+ }
const simpleColumns = [
- "displayName",
- "PolicyTypeName",
- "PolicyAssignment",
- "PolicyExclude",
- "description",
- "lastModifiedDateTime",
- ];
+ ...(useReportDB ? ['Tenant', 'CacheTimestamp'] : []),
+ 'displayName',
+ 'PolicyTypeName',
+ 'PolicyAssignment',
+ 'PolicyExclude',
+ 'description',
+ 'lastModifiedDateTime',
+ ]
+
+ const pageActions = [
+
+ {useReportDB && (
+ <>
+
+
+
+
+ }
+ size="xs"
+ onClick={syncDialog.handleOpen}
+ >
+ Sync
+
+ >
+ )}
+
+
+ : }
+ label={useReportDB ? 'Cached' : 'Live'}
+ color="primary"
+ size="small"
+ onClick={isAllTenants ? undefined : () => setUseReportDB((prev) => !prev)}
+ clickable={!isAllTenants}
+ disabled={isAllTenants}
+ variant="outlined"
+ />
+
+
+ ,
+ ]
return (
-
- }
- />
- );
-};
-
-Page.getLayout = (page) => {page};
-export default Page;
+ <>
+
+
+ {pageActions}
+
+ }
+ />
+ {
+ if (result?.Metadata?.QueueId) {
+ setSyncQueueId(result?.Metadata?.QueueId)
+ }
+ },
+ }}
+ />
+ >
+ )
+}
+
+Page.getLayout = (page) => {page}
+export default Page
diff --git a/src/pages/endpoint/applications/list/index.js b/src/pages/endpoint/applications/list/index.js
index 49e5bc4b2816..41671638cfce 100644
--- a/src/pages/endpoint/applications/list/index.js
+++ b/src/pages/endpoint/applications/list/index.js
@@ -2,7 +2,7 @@ import { Layout as DashboardLayout } from "../../../../layouts/index.js";
import { CippTablePage } from "../../../../components/CippComponents/CippTablePage.jsx";
import { CippApiDialog } from "../../../../components/CippComponents/CippApiDialog.jsx";
import { GlobeAltIcon, TrashIcon, UserIcon, UserGroupIcon } from "@heroicons/react/24/outline";
-import { LaptopMac, Sync } from "@mui/icons-material";
+import { LaptopMac, Sync, BookmarkAdd } from "@mui/icons-material";
import { CippApplicationDeployDrawer } from "../../../../components/CippComponents/CippApplicationDeployDrawer";
import { Button, Box } from "@mui/material";
import { useSettings } from "../../../../hooks/use-settings.js";
@@ -33,6 +33,15 @@ const getAppAssignmentSettingsType = (odataType) => {
return odataType.replace("#microsoft.graph.", "").replace(/App$/i, "");
};
+const mapOdataToAppType = (odataType) => {
+ if (!odataType) return "win32ScriptApp";
+ const type = odataType.toLowerCase();
+ if (type.includes("wingetapp")) return "StoreApp";
+ if (type.includes("win32lobapp")) return "chocolateyApp";
+ if (type.includes("officesuiteapp")) return "officeApp";
+ return "win32ScriptApp";
+};
+
const Page = () => {
const pageTitle = "Applications";
const syncDialog = useDialog();
@@ -62,47 +71,59 @@ const Page = () => {
},
];
+ // Builds a customDataformatter that handles both single-row and bulk (array) inputs.
+ const makeAssignFormatter = (getRowData) => (row, action, formData) => {
+ const formatRow = (singleRow) => {
+ const tenantFilterValue =
+ tenant === "AllTenants" && singleRow?.Tenant ? singleRow.Tenant : tenant;
+ return {
+ tenantFilter: tenantFilterValue,
+ ID: singleRow?.id,
+ AppType: getAppAssignmentSettingsType(singleRow?.["@odata.type"]),
+ AssignmentFilterName: formData?.assignmentFilter?.value || null,
+ AssignmentFilterType: formData?.assignmentFilter?.value
+ ? formData?.assignmentFilterType || "include"
+ : null,
+ ...getRowData(singleRow, formData),
+ };
+ };
+ return Array.isArray(row) ? row.map(formatRow) : formatRow(row);
+ };
+
+ const assignmentFields = [
+ {
+ type: "radio",
+ name: "Intent",
+ label: "Assignment intent",
+ options: assignmentIntentOptions,
+ defaultValue: "Required",
+ validators: { required: "Select an assignment intent" },
+ helperText:
+ "Available assigns to Company Portal, Required installs automatically, Uninstall removes the app, Available without enrollment exposes it without device enrollment.",
+ },
+ {
+ type: "radio",
+ name: "assignmentMode",
+ label: "Assignment mode",
+ options: assignmentModeOptions,
+ defaultValue: "replace",
+ helperText:
+ "Replace will overwrite existing assignments. Append keeps current assignments and adds/overwrites only for the selected groups/intents.",
+ },
+ ...getAssignmentFilterFields(),
+ ];
+
const actions = [
{
label: "Assign to All Users",
type: "POST",
url: "/api/ExecAssignApp",
- fields: [
- {
- type: "radio",
- name: "Intent",
- label: "Assignment intent",
- options: assignmentIntentOptions,
- defaultValue: "Required",
- validators: { required: "Select an assignment intent" },
- helperText:
- "Available assigns to Company Portal, Required installs automatically, Uninstall removes the app, Available without enrollment exposes it without device enrollment.",
- },
- {
- type: "radio",
- name: "assignmentMode",
- label: "Assignment mode",
- options: assignmentModeOptions,
- defaultValue: "replace",
- helperText:
- "Replace will overwrite existing assignments. Append keeps current assignments and adds/overwrites only for the selected groups/intents.",
- },
- ...getAssignmentFilterFields(),
- ],
- customDataformatter: (row, action, formData) => {
- const tenantFilterValue = tenant === "AllTenants" && row?.Tenant ? row.Tenant : tenant;
- return {
- tenantFilter: tenantFilterValue,
- ID: row?.id,
- AssignTo: "AllUsers",
- Intent: formData?.Intent || "Required",
- assignmentMode: formData?.assignmentMode || "replace",
- AssignmentFilterName: formData?.assignmentFilter?.value || null,
- AssignmentFilterType: formData?.assignmentFilter?.value
- ? formData?.assignmentFilterType || "include"
- : null,
- };
- },
+ fields: assignmentFields,
+ customDataformatter: makeAssignFormatter((_singleRow, formData) => ({
+ AssignTo: "AllUsers",
+ Intent: formData?.Intent || "Required",
+ assignmentMode: formData?.assignmentMode || "replace",
+ })),
confirmText: 'Are you sure you want to assign "[displayName]" to all users?',
icon: ,
color: "info",
@@ -111,42 +132,12 @@ const Page = () => {
label: "Assign to All Devices",
type: "POST",
url: "/api/ExecAssignApp",
- fields: [
- {
- type: "radio",
- name: "Intent",
- label: "Assignment intent",
- options: assignmentIntentOptions,
- defaultValue: "Required",
- validators: { required: "Select an assignment intent" },
- helperText:
- "Available assigns to Company Portal, Required installs automatically, Uninstall removes the app, Available without enrollment exposes it without device enrollment.",
- },
- {
- type: "radio",
- name: "assignmentMode",
- label: "Assignment mode",
- options: assignmentModeOptions,
- defaultValue: "replace",
- helperText:
- "Replace will overwrite existing assignments. Append keeps current assignments and adds/overwrites only for the selected groups/intents.",
- },
- ...getAssignmentFilterFields(),
- ],
- customDataformatter: (row, action, formData) => {
- const tenantFilterValue = tenant === "AllTenants" && row?.Tenant ? row.Tenant : tenant;
- return {
- tenantFilter: tenantFilterValue,
- ID: row?.id,
- AssignTo: "AllDevices",
- Intent: formData?.Intent || "Required",
- assignmentMode: formData?.assignmentMode || "replace",
- AssignmentFilterName: formData?.assignmentFilter?.value || null,
- AssignmentFilterType: formData?.assignmentFilter?.value
- ? formData?.assignmentFilterType || "include"
- : null,
- };
- },
+ fields: assignmentFields,
+ customDataformatter: makeAssignFormatter((_singleRow, formData) => ({
+ AssignTo: "AllDevices",
+ Intent: formData?.Intent || "Required",
+ assignmentMode: formData?.assignmentMode || "replace",
+ })),
confirmText: 'Are you sure you want to assign "[displayName]" to all devices?',
icon: ,
color: "info",
@@ -155,42 +146,12 @@ const Page = () => {
label: "Assign Globally (All Users / All Devices)",
type: "POST",
url: "/api/ExecAssignApp",
- fields: [
- {
- type: "radio",
- name: "Intent",
- label: "Assignment intent",
- options: assignmentIntentOptions,
- defaultValue: "Required",
- validators: { required: "Select an assignment intent" },
- helperText:
- "Available assigns to Company Portal, Required installs automatically, Uninstall removes the app, Available without enrollment exposes it without device enrollment.",
- },
- {
- type: "radio",
- name: "assignmentMode",
- label: "Assignment mode",
- options: assignmentModeOptions,
- defaultValue: "replace",
- helperText:
- "Replace will overwrite existing assignments. Append keeps current assignments and adds/overwrites only for the selected groups/intents.",
- },
- ...getAssignmentFilterFields(),
- ],
- customDataformatter: (row, action, formData) => {
- const tenantFilterValue = tenant === "AllTenants" && row?.Tenant ? row.Tenant : tenant;
- return {
- tenantFilter: tenantFilterValue,
- ID: row?.id,
- AssignTo: "AllDevicesAndUsers",
- Intent: formData?.Intent || "Required",
- assignmentMode: formData?.assignmentMode || "replace",
- AssignmentFilterName: formData?.assignmentFilter?.value || null,
- AssignmentFilterType: formData?.assignmentFilter?.value
- ? formData?.assignmentFilterType || "include"
- : null,
- };
- },
+ fields: assignmentFields,
+ customDataformatter: makeAssignFormatter((_singleRow, formData) => ({
+ AssignTo: "AllDevicesAndUsers",
+ Intent: formData?.Intent || "Required",
+ assignmentMode: formData?.assignmentMode || "replace",
+ })),
confirmText: 'Are you sure you want to assign "[displayName]" to all users and devices?',
icon: ,
color: "info",
@@ -252,23 +213,52 @@ const Page = () => {
},
...getAssignmentFilterFields(),
],
- customDataformatter: (row, action, formData) => {
+ customDataformatter: makeAssignFormatter((_singleRow, formData) => {
const selectedGroups = Array.isArray(formData?.groupTargets) ? formData.groupTargets : [];
- const tenantFilterValue = tenant === "AllTenants" && row?.Tenant ? row.Tenant : tenant;
return {
- tenantFilter: tenantFilterValue,
- ID: row?.id,
GroupIds: selectedGroups.map((group) => group.value).filter(Boolean),
GroupNames: selectedGroups.map((group) => group.label).filter(Boolean),
Intent: formData?.assignmentIntent || "Required",
AssignmentMode: formData?.assignmentMode || "replace",
- AppType: getAppAssignmentSettingsType(row?.["@odata.type"]),
- AssignmentFilterName: formData?.assignmentFilter?.value || null,
- AssignmentFilterType: formData?.assignmentFilter?.value
- ? formData?.assignmentFilterType || "include"
- : null,
+ };
+ }),
+ },
+ {
+ label: "Save as Template",
+ type: "POST",
+ url: "/api/AddAppTemplate",
+ icon: ,
+ color: "info",
+ fields: [
+ {
+ type: "textField",
+ name: "displayName",
+ label: "Template Name",
+ validators: { required: "Template name is required" },
+ },
+ {
+ type: "textField",
+ name: "description",
+ label: "Description",
+ },
+ ],
+ customDataformatter: (row, action, formData) => {
+ const rows = Array.isArray(row) ? row : [row];
+ return {
+ displayName: formData?.displayName,
+ description: formData?.description || "",
+ apps: rows.map((r) => ({
+ appType: mapOdataToAppType(r["@odata.type"]),
+ appName: r.displayName,
+ config: JSON.stringify({
+ ApplicationName: r.displayName,
+ IntuneBody: r,
+ assignTo: "On",
+ }),
+ })),
};
},
+ confirmText: 'Save selected application(s) as a reusable template?',
},
{
label: "Delete Application",
diff --git a/src/pages/endpoint/applications/templates/index.js b/src/pages/endpoint/applications/templates/index.js
new file mode 100644
index 000000000000..6c4a0eb53285
--- /dev/null
+++ b/src/pages/endpoint/applications/templates/index.js
@@ -0,0 +1,178 @@
+import { useState } from "react";
+import { Layout as DashboardLayout } from "../../../../layouts/index.js";
+import { CippTablePage } from "../../../../components/CippComponents/CippTablePage.jsx";
+import { TrashIcon } from "@heroicons/react/24/outline";
+import { Edit, RocketLaunch } from "@mui/icons-material";
+import { CippAppTemplateDrawer } from "../../../../components/CippComponents/CippAppTemplateDrawer";
+import CippJsonView from "../../../../components/CippFormPages/CippJSONView";
+import { Box } from "@mui/material";
+import { ApiGetCall } from "../../../../api/ApiCall";
+import { GitHub } from "@mui/icons-material";
+
+const Page = () => {
+ const pageTitle = "Application Templates";
+ const [editDrawerOpen, setEditDrawerOpen] = useState(false);
+ const [editTemplate, setEditTemplate] = useState(null);
+ const integrations = ApiGetCall({
+ url: "/api/ListExtensionsConfig",
+ queryKey: "Integrations",
+ refetchOnMount: false,
+ refetchOnReconnect: false,
+ });
+
+ const actions = [
+ {
+ label: "Edit Template",
+ icon: ,
+ color: "info",
+ noConfirm: true,
+ customFunction: (row) => {
+ setEditTemplate({ ...row });
+ setEditDrawerOpen(true);
+ },
+ },
+ {
+ label: "Save to GitHub",
+ type: "POST",
+ url: "/api/ExecCommunityRepo",
+ icon: ,
+ data: {
+ Action: "UploadTemplate",
+ GUID: "GUID",
+ },
+ fields: [
+ {
+ label: "Repository",
+ name: "FullName",
+ type: "select",
+ api: {
+ url: "/api/ListCommunityRepos",
+ data: {
+ WriteAccess: true,
+ },
+ queryKey: "CommunityRepos-Write",
+ dataKey: "Results",
+ valueField: "FullName",
+ labelField: "FullName",
+ },
+ multiple: false,
+ creatable: false,
+ required: true,
+ validators: {
+ required: { value: true, message: "This field is required" },
+ },
+ },
+ {
+ label: "Commit Message",
+ placeholder: "Enter a commit message for adding this file to GitHub",
+ name: "Message",
+ type: "textField",
+ multiline: true,
+ required: true,
+ rows: 4,
+ },
+ ],
+ confirmText: "Are you sure you want to save this template to the selected repository?",
+ condition: () => integrations.isSuccess && integrations?.data?.GitHub?.Enabled,
+ },
+ {
+ label: "Deploy Template",
+ type: "POST",
+ url: "/api/ExecDeployAppTemplate",
+ icon: ,
+ color: "info",
+ fields: [
+ {
+ type: "autoComplete",
+ name: "selectedTenants",
+ label: "Select Tenants",
+ multiple: true,
+ creatable: false,
+ api: {
+ url: "/api/ListTenants?AllTenantSelector=true",
+ queryKey: "ListTenants-AppTemplateDeploy",
+ labelField: (tenant) => `${tenant.displayName} (${tenant.defaultDomainName})`,
+ valueField: "defaultDomainName",
+ addedField: {
+ customerId: "customerId",
+ defaultDomainName: "defaultDomainName",
+ },
+ },
+ validators: { required: "Please select at least one tenant" },
+ },
+ {
+ type: "radio",
+ name: "AssignTo",
+ label: "Override Assignment (optional)",
+ options: [
+ { label: "Keep template assignment", value: "" },
+ { label: "Do not assign", value: "On" },
+ { label: "Assign to all users", value: "allLicensedUsers" },
+ { label: "Assign to all devices", value: "AllDevices" },
+ { label: "Assign to all users and devices", value: "AllDevicesAndUsers" },
+ { label: "Assign to Custom Group", value: "customGroup" },
+ ],
+ },
+ {
+ type: "textField",
+ name: "customGroup",
+ label: "Custom Group Names (comma separated, wildcards allowed)",
+ },
+ ],
+ customDataformatter: (row, action, formData) => ({
+ templateId: row.GUID,
+ selectedTenants: (formData?.selectedTenants || []).map((t) => ({
+ defaultDomainName: t.value,
+ customerId: t.addedFields?.customerId,
+ })),
+ AssignTo: formData?.AssignTo || "",
+ customGroup: formData?.customGroup || "",
+ }),
+ confirmText: 'Deploy "[displayName]" ([appCount] apps) to the selected tenants?',
+ },
+ {
+ label: "Delete Template",
+ type: "POST",
+ url: "/api/RemoveAppTemplate",
+ data: { ID: "GUID" },
+ confirmText: 'Delete the template "[displayName]"?',
+ icon: ,
+ color: "danger",
+ },
+ ];
+
+ const offCanvas = {
+ children: (row) => ,
+ size: "lg",
+ };
+
+ return (
+ <>
+
+
+
+ }
+ />
+ {
+ setEditDrawerOpen(false);
+ setEditTemplate(null);
+ }}
+ />
+ >
+ );
+};
+
+Page.getLayout = (page) => {page};
+export default Page;
diff --git a/src/pages/endpoint/autopilot/add-device/index.js b/src/pages/endpoint/autopilot/add-device/index.js
index 5758c4a0507d..87dbb421a05f 100644
--- a/src/pages/endpoint/autopilot/add-device/index.js
+++ b/src/pages/endpoint/autopilot/add-device/index.js
@@ -1,68 +1,73 @@
-import { Layout as DashboardLayout } from "../../../../layouts/index.js";
-import { CippWizardConfirmation } from "../../../../components/CippWizard/CippWizardConfirmation";
-import CippWizardPage from "../../../../components/CippWizard/CippWizardPage.jsx";
-import { CippTenantStep } from "../../../../components/CippWizard/CippTenantStep.jsx";
-import { CippWizardAutopilotImport } from "../../../../components/CippWizard/CippWizardAutopilotImport";
-import { CippWizardAutopilotOptions } from "../../../../components/CippWizard/CippWizardAutopilotOptions";
+import { Layout as DashboardLayout } from '../../../../layouts/index.js'
+import { CippWizardConfirmation } from '../../../../components/CippWizard/CippWizardConfirmation'
+import CippWizardPage from '../../../../components/CippWizard/CippWizardPage.jsx'
+import { CippTenantStep } from '../../../../components/CippWizard/CippTenantStep.jsx'
+import { CippWizardAutopilotImport } from '../../../../components/CippWizard/CippWizardAutopilotImport'
+import { CippWizardAutopilotOptions } from '../../../../components/CippWizard/CippWizardAutopilotOptions'
const Page = () => {
const steps = [
{
- title: "Step 1",
- description: "Tenant Selection",
+ title: 'Step 1',
+ description: 'Tenant Selection',
component: CippTenantStep,
componentProps: {
allTenants: false,
- type: "single",
+ type: 'single',
},
},
{
- title: "Step 2",
- description: "Device Import",
+ title: 'Step 2',
+ description: 'Device Import',
component: CippWizardAutopilotImport,
componentProps: {
- name: "autopilotData",
+ name: 'autopilotData',
fields: [
{
- friendlyName: "Serialnumber",
- propertyName: "SerialNumber",
- alternativePropertyNames: ["Device Serial Number"],
+ friendlyName: 'Serialnumber',
+ propertyName: 'SerialNumber',
+ alternativePropertyNames: ['Device Serial Number'],
},
{
- friendlyName: "Manufacturer",
- propertyName: "oemManufacturerName",
- alternativePropertyNames: ["Manufacturer name"],
+ friendlyName: 'Manufacturer',
+ propertyName: 'oemManufacturerName',
+ alternativePropertyNames: ['Manufacturer name'],
},
{
- friendlyName: "Model",
- propertyName: "modelName",
- alternativePropertyNames: ["Device model"],
+ friendlyName: 'Model',
+ propertyName: 'modelName',
+ alternativePropertyNames: ['Device model'],
},
{
- friendlyName: "Product ID",
- propertyName: "productKey",
- alternativePropertyNames: ["Windows Product ID"],
+ friendlyName: 'Product ID',
+ propertyName: 'productKey',
+ alternativePropertyNames: ['Windows Product ID'],
},
{
- friendlyName: "Hardware hash",
- propertyName: "hardwareHash",
- alternativePropertyNames: ["Hardware Hash"],
+ friendlyName: 'Hardware hash',
+ propertyName: 'hardwareHash',
+ alternativePropertyNames: ['Hardware Hash'],
+ },
+ {
+ friendlyName: 'Group Tag',
+ propertyName: 'groupTag',
+ alternativePropertyNames: ['Group Tag'],
},
],
- fileName: "autopilot-template",
+ fileName: 'autopilot-template',
},
},
{
- title: "Step 3",
- description: "Extra Options",
+ title: 'Step 3',
+ description: 'Extra Options',
component: CippWizardAutopilotOptions,
},
{
- title: "Step 4",
- description: "Confirmation",
+ title: 'Step 4',
+ description: 'Confirmation',
component: CippWizardConfirmation,
},
- ];
+ ]
return (
<>
@@ -72,9 +77,9 @@ const Page = () => {
wizardTitle="Add Autopilot device wizard"
/>
>
- );
-};
+ )
+}
-Page.getLayout = (page) => {page};
+Page.getLayout = (page) => {page}
-export default Page;
+export default Page
diff --git a/src/pages/identity/administration/group-templates/edit.jsx b/src/pages/identity/administration/group-templates/edit.jsx
index 5fd7f3417805..8c83b0461005 100644
--- a/src/pages/identity/administration/group-templates/edit.jsx
+++ b/src/pages/identity/administration/group-templates/edit.jsx
@@ -46,6 +46,7 @@ const Page = () => {
allowExternal: templateData.allowExternal,
tenantFilter: userSettingsDefaults.currentTenant,
});
+ formControl.trigger();
}
}
}, [template, formControl, userSettingsDefaults.currentTenant]);
diff --git a/src/pages/identity/administration/jit-admin-templates/add.jsx b/src/pages/identity/administration/jit-admin-templates/add.jsx
index 5b776241428d..895bc63e8332 100644
--- a/src/pages/identity/administration/jit-admin-templates/add.jsx
+++ b/src/pages/identity/administration/jit-admin-templates/add.jsx
@@ -26,7 +26,7 @@ const Page = () => {
<>
{
<>
{
});
const watcher = useWatch({ control: formControl.control });
+ const useTAP = useWatch({ control: formControl.control, name: "UseTAP" });
+
+ const tapPolicy = ApiGetCall({
+ url: selectedTenant
+ ? `/api/ListGraphRequest`
+ : undefined,
+ data: {
+ Endpoint: "policies/authenticationMethodsPolicy/authenticationMethodConfigurations/TemporaryAccessPass",
+ tenantFilter: selectedTenant?.value,
+ },
+ queryKey: selectedTenant ? `TAPPolicy-${selectedTenant.value}` : "TAPPolicy",
+ waiting: !!selectedTenant,
+ });
+ const tapEnabled = tapPolicy.isSuccess && tapPolicy.data?.Results?.[0]?.state === "enabled";
const useRoles = useWatch({ control: formControl.control, name: "useRoles" });
const useGroups = useWatch({ control: formControl.control, name: "useGroups" });
@@ -473,6 +487,11 @@ const Page = () => {
name="UseTAP"
formControl={formControl}
/>
+ {useTAP && tapPolicy.isSuccess && !tapEnabled && (
+
+ TAP is not enabled in this tenant. TAP generation will fail.
+
+ )}
{
- const { onNextStep, onPreviousStep, formControl, currentStep, users, onUsersChange } = props;
+ const { onNextStep, onPreviousStep, formControl, currentStep, users, onUsersChange } = props
const handleRemoveUser = (userToRemove) => {
- const updatedUsers = users.filter((user) => user.id !== userToRemove.id);
- onUsersChange(updatedUsers);
- };
+ const updatedUsers = users.filter((user) => user.id !== userToRemove.id)
+ onUsersChange(updatedUsers)
+ }
// Clean user data without circular references
const tableData =
@@ -114,20 +114,20 @@ const UsersDisplayStep = (props) => {
jobTitle: user.jobTitle,
department: user.department,
// Only include serializable properties
- })) || [];
+ })) || []
- const columns = ["displayName", "userPrincipalName", "jobTitle", "department"];
+ const columns = ['displayName', 'userPrincipalName', 'jobTitle', 'department']
// Define actions separately to avoid circular references
const rowActions = [
{
- label: "Remove from List",
+ label: 'Remove from List',
icon: ,
- color: "error",
+ color: 'error',
customFunction: (user) => handleRemoveUser(user),
noConfirm: true,
},
- ];
+ ]
return (
@@ -156,7 +156,7 @@ const UsersDisplayStep = (props) => {
) : (
-
+
No users selected. Please go back and select users from the main table.
@@ -171,17 +171,17 @@ const UsersDisplayStep = (props) => {
noNextButton={!users || users.length === 0}
/>
- );
-};
+ )
+}
// Step 2: Property selection and input
const PropertySelectionStep = (props) => {
- const { onNextStep, onPreviousStep, formControl, currentStep, users } = props;
- const [selectedProperties, setSelectedProperties] = useState([]);
+ const { onNextStep, onPreviousStep, formControl, currentStep, users } = props
+ const [selectedProperties, setSelectedProperties] = useState([])
// Get unique tenant domains from users
const tenantDomains =
- [...new Set(users?.map((user) => user.Tenant || user.tenantFilter).filter(Boolean))] || [];
+ [...new Set(users?.map((user) => user.Tenant || user.tenantFilter).filter(Boolean))] || []
// Fetch custom data mappings for all tenants
const customDataMappings = ApiGetCall({
@@ -189,51 +189,51 @@ const PropertySelectionStep = (props) => {
tenantDomains.length > 0
? `/api/ListCustomDataMappings?sourceType=Manual Entry&directoryObject=User&tenantFilter=${tenantDomains[0]}`
: null,
- queryKey: `ManualEntryMappings-${tenantDomains.join(",")}`,
+ queryKey: `ManualEntryMappings-${tenantDomains.join(',')}`,
enabled: tenantDomains.length > 0,
refetchOnMount: false,
refetchOnReconnect: false,
- });
+ })
// Process custom data mappings into property format
const customDataProperties = useMemo(() => {
if (customDataMappings.isSuccess && customDataMappings.data?.Results) {
return customDataMappings.data.Results.filter((mapping) => {
// Only include single-value properties, filter out multivalue ones
- const dataType = mapping.customDataAttribute.addedFields.dataType?.toLowerCase();
- const isMultiValue = mapping.customDataAttribute.addedFields.isMultiValue;
- return !isMultiValue && dataType !== "collection";
+ const dataType = mapping.customDataAttribute.addedFields.dataType?.toLowerCase()
+ const isMultiValue = mapping.customDataAttribute.addedFields.isMultiValue
+ return !isMultiValue && dataType !== 'collection'
}).map((mapping) => ({
property: mapping.customDataAttribute.value, // Use the actual attribute name, not nested under customData
label: `${mapping.manualEntryFieldLabel} (Custom)`,
- type: mapping.customDataAttribute.addedFields.dataType?.toLowerCase() || "string",
+ type: mapping.customDataAttribute.addedFields.dataType?.toLowerCase() || 'string',
isCustomData: true,
- }));
+ }))
}
- return [];
- }, [customDataMappings.isSuccess, customDataMappings.data]);
+ return []
+ }, [customDataMappings.isSuccess, customDataMappings.data])
// Combine standard properties with custom data properties
const allProperties = useMemo(() => {
- return [...PATCHABLE_PROPERTIES, ...customDataProperties];
- }, [customDataProperties]);
+ return [...PATCHABLE_PROPERTIES, ...customDataProperties]
+ }, [customDataProperties])
// Register form fields
- formControl.register("selectedProperties", { required: true });
- formControl.register("propertyValues", { required: false });
+ formControl.register('selectedProperties', { required: true })
+ formControl.register('propertyValues', { required: false })
const handlePropertyValueChange = (property, value) => {
- const currentValues = formControl.getValues("propertyValues") || {};
- const newValues = { ...currentValues, [property]: value };
- formControl.setValue("propertyValues", newValues);
- formControl.trigger();
- };
+ const currentValues = formControl.getValues('propertyValues') || {}
+ const newValues = { ...currentValues, [property]: value }
+ formControl.setValue('propertyValues', newValues)
+ formControl.trigger()
+ }
const renderPropertyInput = (propertyName) => {
- const property = allProperties.find((p) => p.property === propertyName);
- const currentValue = formControl.getValues("propertyValues")?.[propertyName];
+ const property = allProperties.find((p) => p.property === propertyName)
+ const currentValue = formControl.getValues('propertyValues')?.[propertyName]
- if (property?.type === "boolean") {
+ if (property?.type === 'boolean') {
return (
{
label={property.label}
key={propertyName}
/>
- );
+ )
}
// Default to text input for string types with consistent styling
@@ -254,7 +254,7 @@ const PropertySelectionStep = (props) => {
key={propertyName}
label={property?.label || propertyName}
fullWidth
- value={currentValue || ""}
+ value={currentValue || ''}
onChange={(e) => handlePropertyValueChange(propertyName, e.target.value)}
placeholder={`Enter new value for ${property?.label || propertyName}`}
variant="filled"
@@ -262,21 +262,17 @@ const PropertySelectionStep = (props) => {
slotProps={{
inputLabel: {
shrink: true,
- sx: { transition: "none" },
+ sx: { transition: 'none' },
},
input: {
- notched: true,
sx: {
- transition: "none",
- "& .MuiOutlinedInput-notchedOutline": {
- transition: "none",
- },
+ transition: 'none',
},
},
}}
/>
- );
- };
+ )
+ }
return (
@@ -289,7 +285,7 @@ const PropertySelectionStep = (props) => {
)}
{customDataMappings.isLoading && (
-
+
Loading custom data mappings...
)}
@@ -300,7 +296,7 @@ const PropertySelectionStep = (props) => {
disableCloseOnSelect
options={[
{
- property: "select-all",
+ property: 'select-all',
label: `Select All (${allProperties.length} properties)`,
isSelectAll: true,
},
@@ -309,64 +305,64 @@ const PropertySelectionStep = (props) => {
value={allProperties.filter((prop) => selectedProperties.includes(prop.property))}
onChange={(event, newValue) => {
// Check if "Select All" was clicked
- const selectAllOption = newValue.find((option) => option.isSelectAll);
+ const selectAllOption = newValue.find((option) => option.isSelectAll)
if (selectAllOption) {
// If Select All is in the new value, select all properties
- const allSelected = selectedProperties.length === allProperties.length;
- const newProperties = allSelected ? [] : allProperties.map((p) => p.property);
- setSelectedProperties(newProperties);
- formControl.setValue("selectedProperties", newProperties);
+ const allSelected = selectedProperties.length === allProperties.length
+ const newProperties = allSelected ? [] : allProperties.map((p) => p.property)
+ setSelectedProperties(newProperties)
+ formControl.setValue('selectedProperties', newProperties)
// Reset property values when selection changes
- const currentValues = formControl.getValues("propertyValues") || {};
- const newValues = {};
+ const currentValues = formControl.getValues('propertyValues') || {}
+ const newValues = {}
newProperties.forEach((prop) => {
if (currentValues[prop]) {
- newValues[prop] = currentValues[prop];
+ newValues[prop] = currentValues[prop]
}
- });
- formControl.setValue("propertyValues", newValues);
- formControl.trigger();
+ })
+ formControl.setValue('propertyValues', newValues)
+ formControl.trigger()
} else {
// Normal property selection
const newProperties = newValue
.filter((prop) => !prop.isSelectAll)
- .map((prop) => prop.property);
- setSelectedProperties(newProperties);
- formControl.setValue("selectedProperties", newProperties);
+ .map((prop) => prop.property)
+ setSelectedProperties(newProperties)
+ formControl.setValue('selectedProperties', newProperties)
// Reset property values when selection changes
- const currentValues = formControl.getValues("propertyValues") || {};
- const newValues = {};
+ const currentValues = formControl.getValues('propertyValues') || {}
+ const newValues = {}
newProperties.forEach((prop) => {
if (currentValues[prop]) {
- newValues[prop] = currentValues[prop];
+ newValues[prop] = currentValues[prop]
}
- });
- formControl.setValue("propertyValues", newValues);
- formControl.trigger();
+ })
+ formControl.setValue('propertyValues', newValues)
+ formControl.trigger()
}
}}
getOptionLabel={(option) => option.label}
isOptionEqualToValue={(option, value) => option.property === value.property}
size="small"
renderOption={(props, option, { selected }) => {
- const isAllSelected = selectedProperties.length === allProperties.length;
+ const isAllSelected = selectedProperties.length === allProperties.length
const isIndeterminate =
- selectedProperties.length > 0 && selectedProperties.length < allProperties.length;
+ selectedProperties.length > 0 && selectedProperties.length < allProperties.length
if (option.isSelectAll) {
return (
-
+
- {option.label}
+ {option.label}
- );
+ )
}
return (
@@ -374,7 +370,7 @@ const PropertySelectionStep = (props) => {
{option.label}
- );
+ )
}}
renderInput={(params) => (