Skip to content

Latest commit

 

History

History
68 lines (56 loc) · 1.89 KB

File metadata and controls

68 lines (56 loc) · 1.89 KB
title parseExpressionResponse resource type
description Represents the response from the synchronizationSchema: parseExpression action.
ms.localizationpriority medium
doc_type resourcePageType
author ArvindHarinder1
ms.subservice entra-applications
ms.date 07/22/2024

parseExpressionResponse resource type

Namespace: microsoft.graph

Represents the response from the parseExpression action.

Properties

Property Type Description
error publicError Error details, if expression evaluation resulted in an error.
evaluationResult String collection A collection of values produced by the evaluation of the expression.
evaluationSucceeded Boolean true if the evaluation was successful.
parsedExpression attributeMappingSource An attributeMappingSource object representing the parsed expression.
parsingSucceeded Boolean true if the expression was parsed successfully.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.parseExpressionResponse",
  "error": {
    "@odata.type": "microsoft.graph.publicError"
  },
  "evaluationSucceeded": "Boolean",
  "evaluationResult": [
    "String"
  ],
  "parsedExpression": {
    "@odata.type": "microsoft.graph.attributeMappingSource"
  },
  "parsingSucceeded": "Boolean"
}