Microsoft Graph · Schema
termColumn
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| allowMultipleValues | boolean | Specifies whether the column allows more than one value. |
| showFullyQualifiedName | boolean | Specifies whether to display the entire term path or only the term label. |
| parentTerm | object | |
| termSet | object | |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.termColumn",
"title": "termColumn",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"allowMultipleValues": {
"type": "boolean",
"description": "Specifies whether the column allows more than one value.",
"nullable": true
},
"showFullyQualifiedName": {
"type": "boolean",
"description": "Specifies whether to display the entire term path or only the term label.",
"nullable": true
},
"parentTerm": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.termStore.term"
},
{
"type": "object",
"nullable": true
}
],
"x-ms-navigationProperty": true
},
"termSet": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.termStore.set"
},
{
"type": "object",
"nullable": true
}
],
"x-ms-navigationProperty": true
},
"@odata.type": {
"type": "string"
}
}
}