Microsoft Graph · Schema

microsoft.graph.storageQuotaBreakdown

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphstoragequotabreakdown-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.storageQuotaBreakdown",
  "title": "microsoft.graph.storageQuotaBreakdown",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "storageQuotaBreakdown",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "displayName": {
          "type": "string",
          "nullable": true
        },
        "manageWebUrl": {
          "type": "string",
          "nullable": true
        },
        "used": {
          "type": "number",
          "format": "int64",
          "nullable": true
        },
        "@odata.type": {
          "type": "string"
        }
      },
      "discriminator": {
        "propertyName": "@odata.type",
        "mapping": {
          "#microsoft.graph.serviceStorageQuotaBreakdown": "#/components/schemas/microsoft.graph.serviceStorageQuotaBreakdown"
        }
      }
    }
  ]
}