

本文為英文版的機器翻譯版本，如內容有任何歧義或不一致之處，概以英文版為準。

# 大量分析輸出資訊清單
<a name="bulk-analysis-output-manifests"></a>

批量分析作業會產生包含作业結果的輸出資訊清單檔案，以及資訊清單摘要，其中包含處理輸入資訊清單專案時任何錯誤的統計資料和詳細資訊。

如果輸入的清單檔案中包含重複的專案，將不會嘗試透過作业篩選出唯一的輸入，而是會處理所有提供的專案。

輸出資訊清單檔案的格式如下：

```
// Output manifest for content moderation
{"source-ref":"s3://foo/bar/1.jpg", "detect-moderation-labels": {"ModerationLabels":[],"ModerationModelVersion":"7.0","ContentTypes":[{"Confidence":72.7257,"Name":"Animated"}]}}
```

輸出清單檔案摘要的格式如下：

```
{
    "version": "1.0",                # Schema version, 1.0 for GA.
    "statistics": {
        "total-json-lines": Number,  # Total number json lines (images) in the input manifest.
        "valid-json-lines": Number,  # Total number of JSON Lines (images) that contain references to valid images.
        "invalid-json-lines": Number # Total number of invalid JSON Lines. These lines were not handled.
    },
    "errors": [
        {
            "line-numer": Number,   # The number of the line in the manifest where the error occured.
            "source-ref": "String", # Optional. Name of the file if was parsed.
            "code": "String",       # Error code.
            "message": "String"     # Description of the error.
        }
     ]
}
```