

翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。

# 一括分析出力マニフェスト
<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.
        }
     ]
}
```