Microsoft Graph · Schema

contentTypeOrder

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
default boolean Indicates whether this is the default content type
position number Specifies the position in which the content type appears in the selection UI.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphcontenttypeorder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.contentTypeOrder",
  "title": "contentTypeOrder",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "default": {
      "type": "boolean",
      "description": "Indicates whether this is the default content type",
      "nullable": true
    },
    "position": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "Specifies the position in which the content type appears in the selection UI.",
      "format": "int32",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}