Created
July 17, 2018 03:26
-
-
Save ishiduca/e0377c6d192d36d97780c0df35adb0e8 to your computer and use it in GitHub Desktop.
jsonschema for jsonrpc2.0
This file contains 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
{ | |
"type": "object", | |
"required": true, | |
"additionalProperties": false, | |
"properties": { | |
"jsonrpc": { | |
"name": "jsonrpc", | |
"type": "string", | |
"required": true, | |
"enum": [ | |
"2.0" | |
], | |
"addionalPropeties": false | |
}, | |
"id": { | |
"name": "id", | |
"type": [ | |
"null", | |
"number", | |
"string" | |
], | |
"required": true, | |
"addionalPropeties": false | |
}, | |
"method": { | |
"name": "method", | |
"type": "string", | |
"required": true, | |
"addionalPropeties": false | |
}, | |
"params": { | |
"name": "params", | |
"type": [ | |
"object", | |
"array" | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment