Microsoft Graph · Schema

parseExpressionResponse

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
error object Error details, if expression evaluation resulted in an error.
evaluationResult array A collection of values produced by the evaluation of the expression.
evaluationSucceeded boolean true if the evaluation was successful.
parsedExpression object An attributeMappingSource object representing the parsed expression.
parsingSucceeded boolean true if the expression was parsed successfully.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphparseexpressionresponse-schema.json Raw ↑
{
  "$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"
    }
  }
}