mirror of
https://github.com/status-im/status-go.git
synced 2025-02-24 04:38:41 +00:00
* test_: activity center notifications * test_: small fix * test_: changes according to review
48 lines
1.2 KiB
Plaintext
48 lines
1.2 KiB
Plaintext
{
|
|
"$schema": "http://json-schema.org/schema#",
|
|
"properties": {
|
|
"id": {
|
|
"type": "integer"
|
|
},
|
|
"jsonrpc": {
|
|
"type": "string"
|
|
},
|
|
"result": {
|
|
"properties": {
|
|
"activityCenterState": {
|
|
"properties": {
|
|
"hasSeen": {
|
|
"type": "boolean"
|
|
},
|
|
"updatedAt": {
|
|
"type": "integer"
|
|
}
|
|
},
|
|
"required": [
|
|
"hasSeen",
|
|
"updatedAt"
|
|
],
|
|
"type": "object"
|
|
},
|
|
"discordOldestMessageTimestamp": {
|
|
"type": "integer"
|
|
},
|
|
"notifications": {
|
|
"type": "null"
|
|
}
|
|
},
|
|
"required": [
|
|
"activityCenterState",
|
|
"discordOldestMessageTimestamp",
|
|
"notifications"
|
|
],
|
|
"type": "object"
|
|
}
|
|
},
|
|
"required": [
|
|
"id",
|
|
"jsonrpc",
|
|
"result"
|
|
],
|
|
"type": "object"
|
|
} |