Microsoft Graph · Schema

integratedApplicationMetadata

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
name string The name of the integrated application.
version string The version number of the integrated application.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphintegratedapplicationmetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.integratedApplicationMetadata",
  "title": "integratedApplicationMetadata",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the integrated application.",
      "nullable": true
    },
    "version": {
      "type": "string",
      "description": "The version number of the integrated application.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  },
  "discriminator": {
    "propertyName": "@odata.type",
    "mapping": {
      "#microsoft.graph.protectedApplicationMetadata": "#/components/schemas/microsoft.graph.protectedApplicationMetadata"
    }
  }
}