schema resource type

Namespace: microsoft.graph.externalConnectors

The connection schema determines how your external content will be used in various Microsoft Graph experiences. Schema is a flat list of all the properties that you plan to add to the connection along with their attributes, labels, and aliases. You must register the schema before adding items into the connection.

Methods

Method Return type Description
Create schema schema Create a new schema object.
Get schema schema Read the properties and relationships of a schema object.

Properties

Property Type Description
baseType String Must be set to microsoft.graph.externalConnector.externalItem. Required.
properties property collection The properties defined for the items in the connection. The minimum number of properties is one, the maximum is 128.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "baseType": "String",
  "properties": [
    {
      "name": "String",
      "type": "String"
    }
  ]
}