Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph.externalConnectors
Defines the set of conditions to display a displayTemplate. Rules use the format: (property from the item schema) + (operation) + (value). For example, a propertyRule can specify that "itemTitle" "contains" "contoso". Therefore, the displayTemplate isn't displayed unless itemTitle contains the value contoso.
Properties
| Property | Type | Description |
|---|---|---|
| operation | microsoft.graph.externalConnectors.ruleOperation | Specifies the operations to be performed during evaluation of a single propertyRule, where property and a string from the values collection are the respective operands. The possible values are: null, equals, notEquals, contains, notContains, lessThan, greaterThan, startsWith. Required. |
| property | String | The property from the externalItem schema. Required. |
| values | String collection | A collection with one or many strings. One or more specified strings are matched with the specified property using the specified operation. Required. |
| valuesJoinedBy | binaryOperator | The join operator for evaluating multiple propertyRules. For example, if and is specified, then all propertyRules must be true for the propertyRule to be true. The possible values are: or, and. Required. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"operation": "String",
"property": "String",
"values": [
"String"
],
"valuesJoinedBy": "String"
}