Created
July 9, 2016 10:57
-
-
Save amio/299462ea83766a669d03fef2d07f8621 to your computer and use it in GitHub Desktop.
General Browser Error Schema
This file contains hidden or 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
{ | |
"title": "General Browser Error Schema", | |
"type": "object", | |
"properties": { | |
"source": { | |
"type": "string" | |
}, | |
"message": { | |
"type": "string" | |
}, | |
"stack": { | |
"type": "string" | |
}, | |
"meta": { | |
"type": "object" | |
} | |
}, | |
"required": ["source", "message"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment