{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.security.blobEvidence", "title": "microsoft.graph.security.blobEvidence", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.security.alertEvidence" }, { "title": "blobEvidence", "required": [ "@odata.type" ], "type": "object", "properties": { "blobContainer": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.security.blobContainerEvidence" }, { "type": "object", "nullable": true } ], "description": "The container which the blob belongs to." }, "etag": { "type": "string", "description": "The Etag associated with this blob.", "nullable": true }, "fileHashes": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.security.fileHash" }, "description": "The file hashes associated with this blob." }, "name": { "type": "string", "description": "The name of the blob.", "nullable": true }, "url": { "type": "string", "description": "The full URL representation of the blob.", "nullable": true }, "@odata.type": { "type": "string", "default": "#microsoft.graph.security.blobEvidence" } } } ], "x-ms-discriminator-value": "#microsoft.graph.security.blobEvidence" }