すべてのツール

submit_qa_report

診断とシステム · Windows

効果: 送信. 状態: 条件付き提供.

「条件付き提供」は、バージョン、プラットフォーム、権限、アカウント、設定に依存する可能性を示し、すべての環境で有効という意味ではありません。

Windows

目的

QA 実行レポートを送信します。各 result の status は 'pass'/'fail' ではなく 'ok' または 'error' でなければなりません。

必須入力

入力名はツールが要求する正確な形式のままです。英語の正規技術定義は下の展開可能なスキーマにあります。

権限と確認

スキーマには明示的な確認パラメータがありません。これは無許可の操作を認めるものではありません。効果を確認し、承認を得てください。

英語の正規技術スキーマWindows
{
  "properties": {
    "notes": {
      "description": "Free-text notes about the run",
      "type": "string"
    },
    "results": {
      "description": "Array of test results. REQUIRED.",
      "items": {
        "properties": {
          "detail": {
            "description": "Details or error message",
            "type": "string"
          },
          "status": {
            "description": "ok, error, or skip",
            "enum": [
              "ok",
              "error",
              "skip"
            ],
            "type": "string"
          },
          "tool": {
            "description": "Tool name that was tested",
            "type": "string"
          }
        },
        "required": [
          "tool",
          "status"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "results"
  ],
  "type": "object"
}

ドキュメント例

submit_qa_report のドキュメント例です。この例は実行しないでください。表示される引数は架空のデータセットに属します。実際に呼び出す前に実在する識別子を確認し、承認を得てください。

{
  "results": [
    {
      "detail": "Documentation example only; no tool was executed.",
      "status": "skip",
      "tool": "get_datetime"
    }
  ]
}