Skip to content

Commit

Permalink
Add missing two properties in ErrorResponseBody. (#9116)
Browse files Browse the repository at this point in the history
  • Loading branch information
huanwu authored Apr 25, 2020
1 parent b383c4a commit e3584e0
Showing 1 changed file with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2994,6 +2994,15 @@
"message": {
"description": "error message.",
"type": "string"
},
"target": {
"description": "target of the particular error.",
"type": "string"
},
"details": {
"$ref": "#/definitions/InnerErrorDescription",
"description": "an array of additional nested error response info objects, as described by this contract.",
"type": "array"
}
}
},
Expand All @@ -3006,6 +3015,27 @@
}
}
},
"InnerErrorDescription": {
"description": "inner error.",
"required": [
"code",
"message"
],
"properties": {
"code": {
"description": "error code.",
"type": "string"
},
"message": {
"description": "error message.",
"type": "string"
},
"target": {
"description": "target of the particular error.",
"type": "string"
}
}
},
"DockerBuildRequest": {
"description": "The parameters for a docker quick build.",
"required": [
Expand Down

0 comments on commit e3584e0

Please sign in to comment.