Microsoft Graph · Schema

restorePointSearchResponse

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
noResultProtectionUnitIds array Contains alist of protection units with no restore points.
searchResponseId string The unique identifier of the search response.
searchResults array Contains a collection of restore points.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphrestorepointsearchresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.restorePointSearchResponse",
  "title": "restorePointSearchResponse",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "noResultProtectionUnitIds": {
      "type": "array",
      "items": {
        "type": "string",
        "nullable": true
      },
      "description": "Contains  alist of protection units with no restore points."
    },
    "searchResponseId": {
      "type": "string",
      "description": "The unique identifier of the search response.",
      "nullable": true
    },
    "searchResults": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.restorePointSearchResult"
      },
      "description": "Contains a collection of restore points."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}