Microsoft Graph · Schema

fileDetails

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
fileName string The name of the file.
filePath string The file path (location) of the file instance.
filePublisher string The publisher of the file.
fileSize number The size of the file in bytes.
issuer string The certificate authority (CA) that issued the certificate.
md5 string The Md5 cryptographic hash of the file content.
sha1 string The Sha1 cryptographic hash of the file content.
sha256 string The Sha256 cryptographic hash of the file content.
sha256Ac string
signer string The signer of the signed file.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsecurityfiledetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.security.fileDetails",
  "title": "fileDetails",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "fileName": {
      "type": "string",
      "description": "The name of the file.",
      "nullable": true
    },
    "filePath": {
      "type": "string",
      "description": "The file path (location) of the file instance.",
      "nullable": true
    },
    "filePublisher": {
      "type": "string",
      "description": "The publisher of the file.",
      "nullable": true
    },
    "fileSize": {
      "type": "number",
      "description": "The size of the file in bytes.",
      "format": "int64",
      "nullable": true
    },
    "issuer": {
      "type": "string",
      "description": "The certificate authority (CA) that issued the certificate.",
      "nullable": true
    },
    "md5": {
      "type": "string",
      "description": "The Md5 cryptographic hash of the file content.",
      "nullable": true
    },
    "sha1": {
      "type": "string",
      "description": "The Sha1 cryptographic hash of the file content.",
      "nullable": true
    },
    "sha256": {
      "type": "string",
      "description": "The Sha256 cryptographic hash of the file content.",
      "nullable": true
    },
    "sha256Ac": {
      "type": "string",
      "nullable": true
    },
    "signer": {
      "type": "string",
      "description": "The signer of the signed file.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}