Microsoft Graph · Schema

microsoft.graph.restorePoint

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphrestorepoint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.restorePoint",
  "title": "microsoft.graph.restorePoint",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "restorePoint",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "expirationDateTime": {
          "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$",
          "type": "string",
          "description": "Expiration date time of the restore point.",
          "format": "date-time",
          "nullable": true
        },
        "protectionDateTime": {
          "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$",
          "type": "string",
          "description": "Date time when the restore point was created.",
          "format": "date-time",
          "nullable": true
        },
        "tags": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.restorePointTags"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "The type of the restore point. The possible values are: none, fastRestore, unknownFutureValue."
        },
        "protectionUnit": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.protectionUnitBase"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "The site, drive, or mailbox units that are protected under a protection policy.",
          "x-ms-navigationProperty": true
        },
        "@odata.type": {
          "type": "string"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.restorePoint"
}