action superset_get_chart_pk { label: "get_chart_pk" description: "Get a chart detail information." provider: superset method: GET path: "/chart/{pk}" encoding: json input: { type: "object" properties: { pk: { type: "integer" } q: { type: "string" } } required: ["pk"] additionalProperties: false } output: { type: "object" properties: { description_columns: { type: "object" properties: { column_name: { type: "string" description: "The description for the column name. Will be translated by babel" } } } id: { type: "string" description: "The item id" } label_columns: { type: "object" properties: { column_name: { type: "string" description: "The label for the column name. Will be translated by babel" } } } result: { type: "object" properties: { cache_timeout: { type: "integer" format: "int32" } dashboards: { type: "object" properties: { dashboard_title: { type: "string" } id: { type: "integer" format: "int32" } } } description: { type: "string" } 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" } query_context: { type: "string" } slice_name: { type: "string" } viz_type: { type: "string" } } } show_columns: { type: "array" description: "A list of columns" items: { type: "string" } } show_title: { type: "string" description: "A title to render. Will be translated by babel" } } } }