action superset_get_saved_query_pk { label: "get_saved_query_pk" description: "Get a saved query" provider: superset method: GET path: "/saved_query/{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: { created_by: { type: "object" required: ["first_name", "last_name"] properties: { first_name: { type: "string" } id: { type: "integer" format: "int32" } last_name: { type: "string" } } } database: { type: "object" required: ["database_name"] properties: { database_name: { type: "string" } id: { type: "integer" format: "int32" } } } description: { type: "string" } id: { type: "integer" format: "int32" } label: { type: "string" } schema: { type: "string" } sql: { type: "string" } sql_tables: { type: "object" } } } 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" } } } }