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 is a JSON representation of the resource.

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