Microsoft Graph · Schema

sizeRange

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
maximumSize number The maximum size (in kilobytes) that an incoming message must have in order for a condition or exception to apply.
minimumSize number The minimum size (in kilobytes) that an incoming message must have in order for a condition or exception to apply.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsizerange-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.sizeRange",
  "title": "sizeRange",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "maximumSize": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "The maximum size (in kilobytes) that an incoming message must have in order for a condition or exception to apply.",
      "format": "int32",
      "nullable": true
    },
    "minimumSize": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "The minimum size (in kilobytes) that an incoming message must have in order for a condition or exception to apply.",
      "format": "int32",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}