1

私は働いていた子フローを持っていました。通常の Power Automate エディターを使用して、入力パラメーターの一部を変更しました。次に、この子フローを呼び出す 2 つのフローを調整しました。

この子フローをテストすると、成功します。他の 2 つのフローがこのフローを呼び出そうとすると、エラーが発生します。

"code":"TriggerInputSchemaMismatch","message":"The input body for trigger 'manual' of type 'Request' did not match its schema definition

サブフローに問題の可能性があるこの警告メッセージがありますが、問題を修正しようとしても、役立つ情報はありません。

ここに画像の説明を入力

フローのトリガーへの完全な入力は次のとおりです。

{
  "type": "object",
  "properties": {
    "text": {
      "title": "CompleteByDateTime",
      "type": "string",
      "x-ms-dynamically-added": true,
      "description": "Please enter your input",
      "x-ms-content-hint": "TEXT"
    },
    "text_1": {
      "title": "TaskScheduleGuid",
      "type": "string",
      "x-ms-dynamically-added": true,
      "description": "Please enter your input",
      "x-ms-content-hint": "TEXT"
    },
    "text_2": {
      "title": "AssignedToGuid",
      "type": "string",
      "x-ms-dynamically-added": true,
      "description": "Enter the GUID of the User to assign the 1st to.  Null if defaulting to the default user/team instead.",
      "x-ms-content-hint": "TEXT"
    },
    "boolean": {
      "title": "CheckForDuplicate",
      "type": "boolean",
      "x-ms-dynamically-added": true,
      "description": "Please select yes or no.  Will match on the Schedule Type and DateTime.  If duplicate found, this flow ends.",
      "x-ms-content-hint": "BOOLEAN"
    },
    "text_4": {
      "title": "AssignedToGuid2",
      "type": "string",
      "x-ms-dynamically-added": true,
      "description": "Only applicable if CreateSecond is true.  Enter the GUID of the User to assign the 2nd to.  Null if defaulting to the default user/team instead.",
      "x-ms-content-hint": "TEXT"
    },
    "boolean_1": {
      "title": "CreateSecond",
      "type": "boolean",
      "x-ms-dynamically-added": true,
      "description": "Please select yes or no",
      "x-ms-content-hint": "BOOLEAN"
    }
  },
  "required": [
    "text",
    "text_1",
    "boolean",
    "boolean_1"
  ]
}

私は完全に立ち往生してイライラしています。このフロー全体をゼロから構築する必要はありません。

4

2 に答える 2