action greip_get_bad_words { label: "get_badWords" description: "badWords endpoint: Detects whether user inputs contain profanity or not." provider: greip method: GET path: "/badWords" encoding: json input: { type: "object" properties: { format: { type: "string" } key: { type: "string" } listBadWords: { type: "string" } scoreOnly: { type: "string" } text: { type: "string" } } required: ["key", "text"] additionalProperties: false } output: { type: "object" additionalProperties: true } }