action dweet_create_alert_get { label: "Create an alert for a thing. A thing must be locked before an alert can be set." provider: dweet method: GET path: "/alert/{who}/when/{thing}/{condition}" encoding: json input: { type: "object" properties: { condition: { type: "string" } key: { type: "string" } thing: { type: "string" } who: { type: "string" } } required: ["condition", "key", "thing", "who"] additionalProperties: false } output: { type: "object" additionalProperties: true } }