action stackexchange_get_me_questions_featured { label: "get_me_questions_featured" description: "Returns the questions that have active bounties offered by the user associated with the given access_token.\n \nThis method returns a list of questions.\n" provider: stackexchange method: GET path: "/me/questions/featured" encoding: json input: { type: "object" properties: { callback: { type: "string" } filter: { type: "string" } fromdate: { type: "integer" } max: { type: "string" } min: { type: "string" } order: { type: "string" enum: ["desc", "asc"] } page: { type: "integer" } pagesize: { type: "integer" } site: { type: "string" } sort: { type: "string" enum: ["activity", "creation", "votes"] } todate: { type: "integer" } } required: ["site"] additionalProperties: false } output: { type: "object" additionalProperties: true } }