{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.parseExpressionResponse", "title": "parseExpressionResponse", "required": [ "@odata.type" ], "type": "object", "properties": { "error": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.publicError" }, { "type": "object", "nullable": true } ], "description": "Error details, if expression evaluation resulted in an error." }, "evaluationResult": { "type": "array", "items": { "type": "string", "nullable": true }, "description": "A collection of values produced by the evaluation of the expression." }, "evaluationSucceeded": { "type": "boolean", "description": "true if the evaluation was successful." }, "parsedExpression": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.attributeMappingSource" }, { "type": "object", "nullable": true } ], "description": "An attributeMappingSource object representing the parsed expression." }, "parsingSucceeded": { "type": "boolean", "description": "true if the expression was parsed successfully." }, "@odata.type": { "type": "string" } } }