action superset_get_log { label: "get_log" description: "Get a list of models" provider: superset method: GET path: "/log/" 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: { action: { type: "string" } dashboard_id: { type: "integer" format: "int32" } dttm: { type: "string" format: "date-time" } duration_ms: { type: "integer" format: "int32" } json: { type: "string" } referrer: { type: "string" } slice_id: { type: "integer" format: "int32" } user: { type: "object" required: ["username"] properties: { username: { type: "string" } } } user_id: { type: "integer" format: "int32" } } } } } } }