27 lines
777 B
JSON
27 lines
777 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://squeebot.lunasqu.ee/pkg/plugins-evert/url-twitter.schema.json",
|
|
"title": "url-twitter",
|
|
"description": "url-twitter plugin configuration",
|
|
"type": "object",
|
|
"properties": {
|
|
"consumer_key": {
|
|
"type": "string",
|
|
"description": "Twitter Consumer Key"
|
|
},
|
|
"consumer_secret": {
|
|
"type": "string",
|
|
"description": "Twitter Consumer Secret"
|
|
},
|
|
"access_token_key": {
|
|
"type": "string",
|
|
"description": "Twitter Access Token Key"
|
|
},
|
|
"access_token_secret": {
|
|
"type": "string",
|
|
"description": "Twitter Access Token Secret"
|
|
}
|
|
},
|
|
"required": ["consumer_key", "consumer_secret", "access_token_key", "access_token_secret"]
|
|
}
|