2023-07-21 10:55:45 +09:30
|
|
|
{
|
|
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": false,
|
|
|
|
"required": [
|
2023-09-12 10:22:44 +09:30
|
|
|
"rune"
|
2023-07-21 10:55:45 +09:30
|
|
|
],
|
|
|
|
"added": "v23.08",
|
|
|
|
"properties": {
|
2023-07-24 18:58:13 -07:00
|
|
|
"rune": {
|
|
|
|
"type": "string",
|
|
|
|
"description": "rune to check for authorization"
|
|
|
|
},
|
2023-07-21 10:55:45 +09:30
|
|
|
"nodeid": {
|
|
|
|
"type": "string",
|
2023-09-12 10:22:44 +09:30
|
|
|
"description": "node id of requesting node *(required until v23.11)*"
|
2023-07-21 10:55:45 +09:30
|
|
|
},
|
|
|
|
"method": {
|
|
|
|
"type": "string",
|
2023-09-12 10:22:44 +09:30
|
|
|
"description": "method for which rune needs to be validated *(required until v23.11)*"
|
2023-07-21 10:55:45 +09:30
|
|
|
},
|
|
|
|
"params": {
|
|
|
|
"oneOf": [
|
|
|
|
{
|
|
|
|
"type": "array",
|
|
|
|
"description": "array of positional parameters"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "object",
|
|
|
|
"description": "parameters for method"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|