Microsoft Graph · Schema
microsoft.graph.contentType
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.contentType",
"title": "microsoft.graph.contentType",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.entity"
},
{
"title": "contentType",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"associatedHubsUrls": {
"type": "array",
"items": {
"type": "string",
"nullable": true
},
"description": "List of canonical URLs for hub sites with which this content type is associated to. This will contain all hub sites where this content type is queued to be enforced or is already enforced. Enforcing a content type means that the content type is applied to the lists in the enforced sites."
},
"description": {
"type": "string",
"description": "The descriptive text for the item.",
"nullable": true
},
"documentSet": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.documentSet"
},
{
"type": "object",
"nullable": true
}
],
"description": "Document Set metadata."
},
"documentTemplate": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.documentSetContent"
},
{
"type": "object",
"nullable": true
}
],
"description": "Document template metadata. To make sure that documents have consistent content across a site and its subsites, you can associate a Word, Excel, or PowerPoint template with a site content type."
},
"group": {
"type": "string",
"description": "The name of the group this content type belongs to. Helps organize related content types.",
"nullable": true
},
"hidden": {
"type": "boolean",
"description": "Indicates whether the content type is hidden in the list's 'New' menu.",
"nullable": true
},
"inheritedFrom": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.itemReference"
},
{
"type": "object",
"nullable": true
}
],
"description": "If this content type is inherited from another scope (like a site), provides a reference to the item where the content type is defined."
},
"isBuiltIn": {
"type": "boolean",
"description": "Specifies if a content type is a built-in content type.",
"nullable": true
},
"name": {
"type": "string",
"description": "The name of the content type.",
"nullable": true
},
"order": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.contentTypeOrder"
},
{
"type": "object",
"nullable": true
}
],
"description": "Specifies the order in which the content type appears in the selection UI."
},
"parentId": {
"type": "string",
"description": "The unique identifier of the content type.",
"nullable": true
},
"propagateChanges": {
"type": "boolean",
"description": "If true, any changes made to the content type are pushed to inherited content types and lists that implement the content type.",
"nullable": true
},
"readOnly": {
"type": "boolean",
"description": "If true, the content type can't be modified unless this value is first set to false.",
"nullable": true
},
"sealed": {
"type": "boolean",
"description": "If true, the content type can't be modified by users or through push-down operations. Only site collection administrators can seal or unseal content types.",
"nullable": true
},
"base": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.contentType"
},
{
"type": "object",
"nullable": true
}
],
"description": "Parent contentType from which this content type is derived.",
"x-ms-navigationProperty": true
},
"baseTypes": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.contentType"
},
"description": "The collection of content types that are ancestors of this content type.",
"x-ms-navigationProperty": true
},
"columnLinks": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.columnLink"
},
"description": "The collection of columns that are required by this content type.",
"x-ms-navigationProperty": true
},
"columnPositions": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.columnDefinition"
},
"description": "Column order information in a content type.",
"x-ms-navigationProperty": true
},
"columns": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.columnDefinition"
},
"description": "The collection of column definitions for this content type.",
"x-ms-navigationProperty": true
},
"@odata.type": {
"type": "string"
}
}
}
],
"x-ms-discriminator-value": "#microsoft.graph.contentType"
}