-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update failure_reason, fix horizontal spelling
- Loading branch information
Showing
9 changed files
with
95 additions
and
37 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
type: object | ||
description: Failure error details | ||
|
||
properties: | ||
url: | ||
type: string | ||
description: Failed URL of asset | ||
nullable: true | ||
|
||
host: | ||
type: string | ||
description: URL host | ||
nullable: true | ||
|
||
path: | ||
type: string | ||
description: URL path | ||
nullable: true | ||
|
||
protocol: | ||
type: string | ||
description: Network protocol | ||
nullable: true | ||
|
||
remediation: | ||
type: string | ||
description: Instructions on how to resolve the error | ||
nullable: true | ||
|
||
error_type: | ||
type: string | ||
description: HTTP response status code message or service defined error | ||
nullable: true | ||
|
||
status_code: | ||
type: number | ||
description: HTTP response status codes if the error is asset related | ||
nullable: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
type: object | ||
description: An object describing the reason for failure if the resource failed to render. | ||
required: | ||
- remediation | ||
- failure_reason | ||
|
||
properties: | ||
remediation: | ||
type: string | ||
description: Instructions on how to resolve the error | ||
|
||
failure_reason: | ||
type: string | ||
description: Reason failure occurred | ||
|
||
errors: | ||
type: array | ||
nullable: true | ||
items: | ||
$ref: "../../../shared/models/failure_reason/error.yml" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters