Microsoft Graph · Schema

Endpoint

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-endpoint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Endpoint",
  "title": "Endpoint",
  "allOf": [
    {
      "$ref": "#/components/schemas/DirectoryObject"
    },
    {
      "title": "endpoint",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "capability": {
          "type": "string"
        },
        "providerId": {
          "type": "string",
          "nullable": true
        },
        "providerName": {
          "type": "string",
          "nullable": true
        },
        "providerResourceId": {
          "type": "string",
          "nullable": true
        },
        "uri": {
          "type": "string"
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.endpoint"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.endpoint"
}