Microsoft Graph · Schema

fileStorageContainerCustomPropertyValue

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
isSearchable boolean Indicates whether the custom property is searchable. Optional. The default value is false.
value string Value of the custom property. Required.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphfilestoragecontainercustompropertyvalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.fileStorageContainerCustomPropertyValue",
  "title": "fileStorageContainerCustomPropertyValue",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "isSearchable": {
      "type": "boolean",
      "description": "Indicates whether the custom property is searchable. Optional. The default value is false.",
      "nullable": true
    },
    "value": {
      "type": "string",
      "description": "Value of the custom property. Required."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}