action superset_get_database { label: "get_database" description: "Get a list of models" provider: superset method: GET path: "/database/" 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" required: ["database_name"] properties: { allow_csv_upload: { type: "boolean" } allow_ctas: { type: "boolean" } allow_cvas: { type: "boolean" } allow_dml: { type: "boolean" } allow_multi_schema_metadata_fetch: { type: "boolean" } allow_run_async: { type: "boolean" } allows_cost_estimate: { type: "object" } allows_subquery: { type: "object" } allows_virtual_table_explore: { type: "object" } backend: { type: "object" } changed_on: { type: "string" format: "date-time" } changed_on_delta_humanized: { type: "object" } created_by: { type: "object" required: ["first_name", "last_name"] properties: { first_name: { type: "string" } last_name: { type: "string" } } } database_name: { type: "string" } explore_database_id: { type: "object" } expose_in_sqllab: { type: "boolean" } extra: { type: "string" } force_ctas_schema: { type: "string" } id: { type: "integer" format: "int32" } } } } } } }