action superset_get_chart { label: "get_chart" description: "Get a list of charts, use Rison or JSON query parameters for filtering, sorting, pagination and for selecting specific columns and metadata." provider: superset method: GET path: "/chart/" encoding: json input: { type: "object" properties: { q: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { count: { type: "number" description: "The total record count on the backend" } description_columns: { type: "object" properties: { column_name: { type: "string" description: "The description for the column name. Will be translated by babel" } } } ids: { type: "array" description: "A list of item ids, useful when you don't know the column id" items: { type: "string" } } label_columns: { type: "object" properties: { column_name: { type: "string" description: "The label for the column name. Will be translated by babel" } } } list_columns: { type: "array" description: "A list of columns" items: { type: "string" } } list_title: { type: "string" description: "A title to render. Will be translated by babel" } order_columns: { type: "array" description: "A list of allowed columns to sort" items: { type: "string" } } result: { type: "array" description: "The result from the get list query" items: { type: "object" properties: { cache_timeout: { type: "integer" format: "int32" } changed_by: { type: "object" required: ["first_name", "last_name"] properties: { first_name: { type: "string" } last_name: { type: "string" } } } changed_by_name: { type: "object" } changed_by_url: { type: "object" } changed_on_delta_humanized: { type: "object" } changed_on_utc: { type: "object" } created_by: { type: "object" required: ["first_name", "last_name"] properties: { first_name: { type: "string" } id: { type: "integer" format: "int32" } last_name: { type: "string" } } } datasource_id: { type: "integer" format: "int32" } datasource_name_text: { type: "object" } datasource_type: { type: "string" } datasource_url: { type: "object" } description: { type: "string" } description_markeddown: { type: "object" } edit_url: { type: "object" } id: { type: "integer" format: "int32" } owners: { type: "object" required: ["first_name", "last_name", "username"] properties: { first_name: { type: "string" } id: { type: "integer" format: "int32" } last_name: { type: "string" } username: { type: "string" } } } params: { type: "string" } slice_name: { type: "string" } table: { type: "object" required: ["table_name"] properties: { default_endpoint: { type: "string" } table_name: { type: "string" } } } thumbnail_url: { type: "object" } url: { type: "object" } viz_type: { type: "string" } } } } } } }