UNPKG

runnerty-notificator-twitter

Version:
53 lines 1.05 kB
{ "$schema": "http://json-schema.org/draft-06/schema#", "title": "runnerty-notificator-twitter", "definitions": { "config": { "type": "object", "required": [ "id", "type", "consumer_key", "consumer_secret", "access_token_key", "access_token_secret" ], "properties": { "id": { "type": "string" }, "type": { "type": "string", "pattern": "runnerty-notificator-twitter" }, "consumer_key": { "type": "string" }, "consumer_secret": { "type": "string" }, "access_token_key": { "type": "string" }, "access_token_secret": { "type": "string" } } }, "params": { "type": "object", "required": [ "id", "tweet" ], "properties": { "id": { "type": "string" }, "tweet": { "type": "string" } } } } }