Microsoft Graph · Schema
hashes
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| crc32Hash | string | The CRC32 value of the file (if available). Read-only. |
| quickXorHash | string | A proprietary hash of the file that can be used to determine if the contents of the file change (if available). Read-only. |
| sha1Hash | string | SHA1 hash for the contents of the file (if available). Read-only. |
| sha256Hash | string | This property isn't supported. Don't use. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.hashes",
"title": "hashes",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"crc32Hash": {
"type": "string",
"description": "The CRC32 value of the file (if available). Read-only.",
"nullable": true
},
"quickXorHash": {
"type": "string",
"description": "A proprietary hash of the file that can be used to determine if the contents of the file change (if available). Read-only.",
"nullable": true
},
"sha1Hash": {
"type": "string",
"description": "SHA1 hash for the contents of the file (if available). Read-only.",
"nullable": true
},
"sha256Hash": {
"type": "string",
"description": "This property isn't supported. Don't use.",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}