Microsoft Graph · Schema
filterClause
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| operatorName | string | Name of the operator to be applied to the source and target operands. Must be one of the supported operators. Supported operators can be discovered. |
| sourceOperandName | string | Name of source operand (the operand being tested). The source operand name must match one of the attribute names on the source object. |
| targetOperand | object | Values that the source operand will be tested against. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.filterClause",
"title": "filterClause",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"operatorName": {
"type": "string",
"description": "Name of the operator to be applied to the source and target operands. Must be one of the supported operators. Supported operators can be discovered.",
"nullable": true
},
"sourceOperandName": {
"type": "string",
"description": "Name of source operand (the operand being tested). The source operand name must match one of the attribute names on the source object.",
"nullable": true
},
"targetOperand": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.filterOperand"
},
{
"type": "object",
"nullable": true
}
],
"description": "Values that the source operand will be tested against."
},
"@odata.type": {
"type": "string"
}
}
}