Microsoft Graph · Schema

urlMatchInfo

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
baseUrls array A list of the URL prefixes that must match URLs to be processed by this URL-to-item-resolver.
urlPattern string A regular expression that will be matched towards the URL that is processed by this URL-to-item-resolver. The ECMAScript specification for regular expressions (ECMA-262) is used for the evaluation. Th
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphexternalconnectorsurlmatchinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.externalConnectors.urlMatchInfo",
  "title": "urlMatchInfo",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "baseUrls": {
      "type": "array",
      "items": {
        "type": "string",
        "nullable": true
      },
      "description": "A list of the URL prefixes that must match URLs to be processed by this URL-to-item-resolver."
    },
    "urlPattern": {
      "type": "string",
      "description": "A regular expression that will be matched towards the URL that is processed by this URL-to-item-resolver. The ECMAScript specification for regular expressions (ECMA-262) is used for the evaluation. The named groups defined by the regular expression will be used later to extract values from the URL.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}