25 lines
548 B
JSON
25 lines
548 B
JSON
|
{
|
||
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||
|
"$id": "https://squeebot.lunasqu.ee/pkg/plugins-evert/fun.schema.json",
|
||
|
"title": "fun",
|
||
|
"description": "fun plugin configuration",
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"simpleReplies": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"type": "object",
|
||
|
"patternProperties": {
|
||
|
".*": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"required": ["simpleReplies"]
|
||
|
}
|