Microsoft Graph · Schema

file

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
hashes object Hashes of the file's binary content, if available. Read-only.
mimeType string The MIME type for the file. This is determined by logic on the server and might not be the value provided when the file was uploaded. Read-only.
processingMetadata boolean
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphfile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.file",
  "title": "file",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "hashes": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.hashes"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Hashes of the file's binary content, if available. Read-only."
    },
    "mimeType": {
      "type": "string",
      "description": "The MIME type for the file. This is determined by logic on the server and might not be the value provided when the file was uploaded. Read-only.",
      "nullable": true
    },
    "processingMetadata": {
      "type": "boolean",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}