Microsoft Graph · Schema

fileStorageContainerSettings

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
isItemVersioningEnabled boolean Indicates whether versioning is enabled for items in the container. Optional. Read-write.
isOcrEnabled boolean Indicates whether Optical Character Recognition (OCR) is enabled for the container. The default value is false. When set to true, OCR extraction is performed for new and updated documents of supported
itemMajorVersionLimit number The maximum major versions allowed for items in the container. Optional. Read-write.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphfilestoragecontainersettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.fileStorageContainerSettings",
  "title": "fileStorageContainerSettings",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "isItemVersioningEnabled": {
      "type": "boolean",
      "description": "Indicates whether versioning is enabled for items in the container. Optional. Read-write.",
      "nullable": true
    },
    "isOcrEnabled": {
      "type": "boolean",
      "description": "Indicates whether Optical Character Recognition (OCR) is enabled for the container. The default value is false. When set to true, OCR extraction is performed for new and updated documents of supported document types, and the extracted fields in the metadata of the document enable end-user search and search-driven solutions. When set to false, existing OCR metadata is not impacted. Optional. Read-write.",
      "nullable": true
    },
    "itemMajorVersionLimit": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "The maximum major versions allowed for items in the container. Optional. Read-write.",
      "format": "int32",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}