32 lines
651 B
Plaintext
32 lines
651 B
Plaintext
{
|
|
"$schema": "http://json-schema.org/schema#",
|
|
"properties": {
|
|
"error": {
|
|
"properties": {
|
|
"code": {
|
|
"type": "integer"
|
|
},
|
|
"message": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"code",
|
|
"message"
|
|
],
|
|
"type": "object"
|
|
},
|
|
"id": {
|
|
"type": "integer"
|
|
},
|
|
"jsonrpc": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"error",
|
|
"id",
|
|
"jsonrpc"
|
|
],
|
|
"type": "object"
|
|
} |