自動音声認識(ASR)APIエラーリファレンス
自動音声認識(ASR)APIエラーリファレンス
このページでは、自動音声認識(ASR)評価APIのエラーコードと詳細について説明します。
ASR評価ツールの詳細については、自動音声認識(ASR)評価ツールについてを参照してください。
HTTPステータスコード | 説明 | 例 |
---|---|---|
HTTP 400 Bad Request | リクエスト本文にエラーがあります。 |
HTTP 400 Bad Request Content-Type: application/json { "message": "The request payload failed validations", "violations": [ { "code": "RESOURCE_NOT_FOUND", "message": "The \"uploadId\" value of XXXX at property path \"$.annotations[0].uploadId\" cannot be found" }, { "code": "RESOURCE_NOT_FOUND", "message": "The \"filePathInUpload\" at property path \"$.annotationns[0].contents[0].filePathInUpload\" cannot be found in \"uploadId\" at property path \"$.annotations[0].uploadId\"" }, { "code": "INVALID_ARRAY_SIZE", "message": "The number of annotations at property path \"$.annotations\" exceed the limit of 1000" }, { "code": "MISSING_REQUIRED_PROPERTY", "message": "Object instance at property path \"$\" has missing required property \"annotations\"" }, { "code": "INVALID_INTEGER_VALUE", "message": "The \"weight\" property at property path \"$.annotations[1].contents[2].weight\" is outside the allowed range.Actual value: 0, Minimum value: 1" }, { "code": "INVALID_STRNG_LENGTH", "message": "The \"expectedTranscription\" property at property path \"$.annotations[0].contents[1].expectedTrasncription\" is outside the allowed range.Actal length: 501, Maximum length: 500" }, { "code": "PARAMETER_EXPIRED", "message": "The \"nextToken\" query parameter expired" } ] } |
HTTP 409 Conflict | 評価の実行中に新たな評価をリクエストした場合のエラーです。 |
{ "message": "The evaluation request conflicts with another one currently being processed", "code": "CONFLICTING_INSTANCES" } |
HTTP 404 Not Found | 要求されたリソースが見つかりません。 |
{ "message": "The requested resource cannot be found", "code": "RESOURCE_NOT_FOUND" } |
HTTP 401 Unauthorized | 開発者アカウントが許可されていません。 |
{ "message": "The access token has expired" } |
HTTP 403 Forbidden | スキルにアクセスする権限がありません。 |
{ "message": "The skill cannot be accessed" } |
HTTP 404 Not Found | スキルが見つかりません。 |
{ "message": "The skill cannot be found" } |
HTTP 429 Too Many Requests | リクエストが制限されています。 |
{ "message": "Too many requests" } |
HTTP 503 Service Unavailable | サービスが利用できません。 |
{ "message": "Service unavailable" } |
HTTP 500 Internal Server Error | 内部サーバーエラーです。 |
{ "message": "An internal server error occurred", "code": "INTERNAL_SERVER_ERROR" } |