action superset_get_database_pk_select_star_table_name { label: "get_database_pk_select_star_table_name" description: "Get database select star for table" provider: superset method: GET path: "/database/{pk}/select_star/{table_name}/" encoding: json input: { type: "object" properties: { pk: { type: "integer" } schema_name: { type: "string" } table_name: { type: "string" } } required: ["pk", "schema_name", "table_name"] additionalProperties: false } output: { type: "object" properties: { result: { type: "string" description: "SQL select star" } } } }