Microsoft Purview · Schema

SearchRequest

Search request payload

ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation Protection

Properties

Name Type Description
keywords string
offset integer
limit integer
filter object
facets array
taxonomySetting object
View JSON Schema on GitHub

JSON Schema

microsoft-purview-searchrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SearchRequest",
  "title": "SearchRequest",
  "type": "object",
  "description": "Search request payload",
  "properties": {
    "keywords": {
      "type": "string"
    },
    "offset": {
      "type": "integer",
      "format": "int32"
    },
    "limit": {
      "type": "integer",
      "format": "int32"
    },
    "filter": {
      "type": "object"
    },
    "facets": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SearchFacetItem"
      }
    },
    "taxonomySetting": {
      "type": "object"
    }
  }
}