schema resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
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.
Important
Microsoft Graph connectors and are currently in public preview status. To gain access to connectors functionality, you must turn on the Targeted release option in your tenant. See more details on the connectors preview program.
Methods
Method | Return Type | Description |
---|---|---|
Create schema | None or schema | Register connection schema. |
Get schema | schema | Read properties of a schema object. |
Properties
Property | Type | Description |
---|---|---|
baseType | String | Must be set to microsoft.graph.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",
"id": "String (identifier)",
"properties": [{"@odata.type": "microsoft.graph.property"}]
}