Microsoft Graph · Schema

propertyRule

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
operation object
property string The property from the externalItem schema. Required.
values array A collection with one or many strings. One or more specified strings are matched with the specified property using the specified operation. Required.
valuesJoinedBy object
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphexternalconnectorspropertyrule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.externalConnectors.propertyRule",
  "title": "propertyRule",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "operation": {
      "$ref": "#/components/schemas/microsoft.graph.externalConnectors.ruleOperation"
    },
    "property": {
      "type": "string",
      "description": "The property from the externalItem schema. Required."
    },
    "values": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "A collection with one or many strings. One or more specified strings are matched with the specified property using the specified operation. Required."
    },
    "valuesJoinedBy": {
      "$ref": "#/components/schemas/microsoft.graph.binaryOperator"
    },
    "@odata.type": {
      "type": "string"
    }
  }
}