action wordnik_get_examples { label: "Returns examples for a word" provider: wordnik method: GET path: "/word.json/{word}/examples" encoding: json input: { type: "object" properties: { includeDuplicates: { type: "string" enum: ["false", "true"] } limit: { type: "integer" format: "int32" } skip: { type: "integer" format: "int32" } useCanonical: { type: "string" enum: ["false", "true"] } word: { type: "string" } } required: ["word"] additionalProperties: false } output: { type: "object" additionalProperties: true } }