19 lines
498 B
JSON
19 lines
498 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://squeebot.lunasqu.ee/pkg/plugins-evert/utility.schema.json",
|
|
"title": "utility",
|
|
"description": "utility plugin configuration",
|
|
"type": "object",
|
|
"properties": {
|
|
"ipfsGateway": {
|
|
"type": "string",
|
|
"description": "IPFS gateway"
|
|
},
|
|
"randomMax": {
|
|
"type": "integer",
|
|
"description": "Max number of allowed random numbers"
|
|
}
|
|
},
|
|
"required": ["ipfsGateway", "randomMax"]
|
|
}
|