mirror of
https://github.com/google/styleguide.git
synced 2024-03-22 13:11:43 +08:00
Correct "error" response JSON code snippet
Added missing double-quote within error.errors[].message `"File Not Found`, and applied linting as per https://jsoneditoronline.org
This commit is contained in:
parent
d3881b4fa9
commit
83bd7b1a58
|
@ -521,11 +521,13 @@ Property Value Type: object<br />Parent: -
|
||||||
"error": {
|
"error": {
|
||||||
"code": 404,
|
"code": 404,
|
||||||
"message": "File Not Found",
|
"message": "File Not Found",
|
||||||
"errors": [{
|
"errors": [
|
||||||
"domain": "Calendar",
|
{
|
||||||
"reason": "ResourceNotFoundException",
|
"domain": "Calendar",
|
||||||
"message": "File Not Found
|
"reason": "ResourceNotFoundException",
|
||||||
}]
|
"message": "File Not Found"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user