action opendatanetwork_get_suggestions { label: "Get suggestions" description: "" provider: opendatanetwork method: GET path: "/suggest/v1/{type}" encoding: json input: { type: "object" properties: { "X-App-Token": { type: "string" } app_token: { type: "string" } limit: { type: "number" } query: { type: "string" } type: { type: "string" enum: ["entity", "category", "publisher", "dataset", "question"] } variable_id: { type: "string" } } required: ["query", "type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }