Microsoft Graph · Schema

objectDefinition

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
attributes array Defines attributes of the object.
metadata array Metadata for the given object.
name string Name of the object. Must be unique within a directory definition. Not nullable.
supportedApis array The API that the provisioning service queries to retrieve data for synchronization.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphobjectdefinition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.objectDefinition",
  "title": "objectDefinition",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "attributes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.attributeDefinition"
      },
      "description": "Defines attributes of the object."
    },
    "metadata": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.objectDefinitionMetadataEntry"
      },
      "description": "Metadata for the given object."
    },
    "name": {
      "type": "string",
      "description": "Name of the object. Must be unique within a directory definition. Not nullable.",
      "nullable": true
    },
    "supportedApis": {
      "type": "array",
      "items": {
        "type": "string",
        "nullable": true
      },
      "description": "The API that the provisioning service queries to retrieve data for synchronization."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}