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:
James Daily 2018-09-13 10:29:55 -04:00 committed by GitHub
parent d3881b4fa9
commit 83bd7b1a58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"
}
]
} }
} }