Microsoft Graph · Schema

extensionSchemaProperty

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
name string The name of the strongly typed property defined as part of a schema extension.
type string The type of the property that is defined as part of a schema extension. Allowed values are Binary, Boolean, DateTime, Integer, or String. For more information, see Supported property data types.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphextensionschemaproperty-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.extensionSchemaProperty",
  "title": "extensionSchemaProperty",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the strongly typed property defined as part of a schema extension.",
      "nullable": true
    },
    "type": {
      "type": "string",
      "description": "The type of the property that is defined as part of a schema extension.  Allowed values are Binary, Boolean, DateTime, Integer, or String. For more information, see Supported property data types.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}