Microsoft Graph · Schema

microsoft.graph.externalConnectors.externalItem

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphexternalconnectorsexternalitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.externalConnectors.externalItem",
  "title": "microsoft.graph.externalConnectors.externalItem",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "externalItem",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "acl": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.externalConnectors.acl"
          },
          "description": "An array of access control entries. Each entry specifies the access granted to a user or group. Required."
        },
        "content": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.externalConnectors.externalItemContent"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "A plain-text  representation of the contents of the item. The text in this property is full-text indexed. Optional."
        },
        "properties": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.externalConnectors.properties"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "A property bag with the properties of the item. The properties MUST conform to the schema defined for the externalConnection. Required."
        },
        "activities": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.externalConnectors.externalActivity"
          },
          "description": "Returns a list of activities performed on the item. Write-only.",
          "x-ms-navigationProperty": true
        },
        "@odata.type": {
          "type": "string"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.externalConnectors.externalItem"
}