action neutrinoapi_bad_word_filter { label: "Bad Word Filter" description: "Detect bad words, swear words and profanity in a given text" provider: neutrinoapi method: POST path: "/bad-word-filter" encoding: form output: { type: "object" required: ["bad-words-list", "bad-words-total", "censored-content", "is-bad"] properties: { "bad-words-list": { type: "array" description: "An array of the bad words found" items: { type: "string" } } "bad-words-total": { type: "integer" format: "int32" description: "Total number of bad words detected" } "censored-content": { type: "string" description: "The censored content (only set if censor-character has been set)" } "is-bad": { type: "boolean" description: "Does the text contain bad words" } } } }