status-go/tests-functional/schemas/wakuext_markAsSeenActivityCenterNotifications
Yevheniia Berdnyk 157d6eb1bd
test_: activity center notifications (#6337)
* test_: activity center notifications

* test_: small fix

* test_: changes according to review
2025-02-12 19:31:35 +02:00

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"
}