-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetrics-openrpc.json
More file actions
41 lines (40 loc) · 872 Bytes
/
Copy pathmetrics-openrpc.json
File metadata and controls
41 lines (40 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"openrpc": "1.3.0",
"info": {
"title": "Metrics",
"description": "An example of a metrics service that uses notification-only methods",
"version": "1.0.0"
},
"servers": [],
"methods": [
{
"name": "link_clicked",
"params": [
{
"name": "link href",
"schema": {
"title": "href",
"type": "string",
"format": "uri"
}
},
{
"name": "link label",
"schema": {
"title": "label",
"type": "string"
}
}
],
"examples": [
{
"name": "login link clicked",
"params": [
{ "name": "link href", "value": "https://open-rpc.org" },
{ "name": "link label", "value": "Visit the OpenRPC Homepage" }
]
}
]
}
]
}