Microsoft Graph · Schema

fileHash

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
hashType object File hash type. The possible values are: unknown, sha1, sha256, md5, authenticodeHash256, lsHash, ctph, peSha1, peSha256.
hashValue string Value of the file hash.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphfilehash-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.fileHash",
  "title": "fileHash",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "hashType": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.fileHashType"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "File hash type. The possible values are: unknown, sha1, sha256, md5, authenticodeHash256, lsHash, ctph, peSha1, peSha256."
    },
    "hashValue": {
      "type": "string",
      "description": "Value of the file hash.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}