{ "$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" } } }