action dweet_get_latest_dweet { label: "Read the latest dweet for a thing." provider: dweet method: GET path: "/get/latest/dweet/for/{thing}" encoding: json input: { type: "object" properties: { key: { type: "string" } thing: { type: "string" } } required: ["thing"] additionalProperties: false } output: { type: "object" additionalProperties: true } }