action opendatanetwork_get_questions { label: "Get questions" description: "" provider: opendatanetwork method: GET path: "/search/v1/question" encoding: json input: { type: "object" properties: { "X-App-Token": { type: "string" } app_token: { type: "string" } limit: { type: "number" } offset: { type: "number" } query: { type: "string" } } required: ["query"] additionalProperties: false } output: { type: "object" additionalProperties: true } }