status-go/tests-functional/schemas/wakuext_activityCenterNotif...

33 lines
725 B
Plaintext

{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"$id": "http://example.com/example.json",
"type": "object",
"required": [
"id",
"jsonrpc",
"result"
],
"properties": {
"id": {
"type": "string"
},
"jsonrpc": {
"type": "string"
},
"result": {
"type": "object",
"required": [
"cursor",
"notifications"
],
"properties": {
"cursor": {
"type": "string"
},
"notifications": {
"type": "null"
}
}
}
}
}