Microsoft Graph · Schema

microsoft.graph.unifiedStorageQuota

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphunifiedstoragequota-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.unifiedStorageQuota",
  "title": "microsoft.graph.unifiedStorageQuota",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "unifiedStorageQuota",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "deleted": {
          "type": "number",
          "format": "int64",
          "nullable": true
        },
        "manageWebUrl": {
          "type": "string",
          "nullable": true
        },
        "remaining": {
          "type": "number",
          "format": "int64",
          "nullable": true
        },
        "state": {
          "type": "string",
          "nullable": true
        },
        "total": {
          "type": "number",
          "format": "int64",
          "nullable": true
        },
        "used": {
          "type": "number",
          "format": "int64",
          "nullable": true
        },
        "services": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.serviceStorageQuotaBreakdown"
          },
          "x-ms-navigationProperty": true
        },
        "@odata.type": {
          "type": "string"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.unifiedStorageQuota"
}