Service

A subscribed Office 365 service as returned by the Service Communications API.

Microsoft 365Microsoft Office IntegrationOffice 365

Properties

Name Type Description
Id string The service identifier (e.g. Exchange, Lync, SharePoint).
DisplayName string The display name of the service.
FeatureNames array List of feature names available for the service.
View JSON Schema on GitHub

JSON Schema

service.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "service.json",
  "title": "Service",
  "description": "A subscribed Office 365 service as returned by the Service Communications API.",
  "type": "object",
  "properties": {
    "Id": {
      "type": "string",
      "description": "The service identifier (e.g. Exchange, Lync, SharePoint)."
    },
    "DisplayName": {
      "type": "string",
      "description": "The display name of the service."
    },
    "FeatureNames": {
      "type": "array",
      "description": "List of feature names available for the service.",
      "items": {
        "type": "string"
      }
    }
  },
  "required": ["Id", "DisplayName", "FeatureNames"]
}