Share via


parseExpressionResponse リソースの種類

名前空間: microsoft.graph

parseExpression アクションからの応答を表します。

プロパティ

プロパティ 説明
error publicError 式の評価でエラーが発生した場合のエラーの詳細。
evaluationResult String collection 式の評価によって生成される値のコレクション。
evaluationSucceededed ブール型 true 評価が成功した場合。
parsedExpression attributeMappingSource 解析された式を表す attributeMappingSource オブジェクト。
parsingSucceeded ブール型 true 式が正常に解析された場合。

JSON 表記

リソースの JSON 表記を次に示します。

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