action superset_get_chart_info { label: "get_chart_info" description: "Several metadata information about chart API endpoints." provider: superset method: GET path: "/chart/_info" encoding: json input: { type: "object" properties: { q: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { add_columns: { type: "object" } edit_columns: { type: "object" } filters: { type: "object" properties: { column_name: { type: "array" items: { type: "object" properties: { name: { type: "string" description: "The filter name. Will be translated by babel" } operator: { type: "string" description: "The filter operation key to use on list filters" } } } } } } permissions: { type: "array" description: "The user permissions for this API resource" items: { type: "string" } } } } }