parseExpressionResponse resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

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"
}