Microsoft Graph · Schema

microsoft.graph.processFileMetadata

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphprocessfilemetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.processFileMetadata",
  "title": "microsoft.graph.processFileMetadata",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.processContentMetadataBase"
    },
    {
      "title": "processFileMetadata",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "customProperties": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.customMetadataDictionary"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "A dictionary containing custom metadata associated with the file, potentially extracted by the calling application."
        },
        "ownerId": {
          "type": "string",
          "description": "The unique identifier (for example, Entra User ID or UPN) of the owner of the file.",
          "nullable": true
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.processFileMetadata"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.processFileMetadata"
}