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 | Create a new schema object. |
Get | 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 JSON representation shows the resource type.
{
"baseType": "String",
"properties": [
{
"name": "String",
"type": "String"
}
]
}