action dweet_lock_thing { label: "Reserve and lock a thing." provider: dweet method: GET path: "/lock/{thing}" encoding: json input: { type: "object" properties: { key: { type: "string" } lock: { type: "string" } thing: { type: "string" } } required: ["key", "lock", "thing"] additionalProperties: false } output: { type: "object" additionalProperties: true } }