action superset_get_report_pk_log { label: "get_report_pk_log" description: "Get a list of report schedule logs, use Rison or JSON query parameters for filtering, sorting, pagination and for selecting specific columns and metadata." provider: superset method: GET path: "/report/{pk}/log/" encoding: json input: { type: "object" properties: { pk: { type: "integer" } q: { type: "string" } } required: ["pk"] additionalProperties: false } output: { type: "object" properties: { count: { type: "number" description: "The total record count on the backend" } ids: { type: "array" description: "A list of log ids" items: { type: "string" } } result: { type: "array" description: "The result from the get list query" items: { type: "object" required: ["scheduled_dttm", "state"] properties: { end_dttm: { type: "string" format: "date-time" } error_message: { type: "string" } id: { type: "integer" format: "int32" } scheduled_dttm: { type: "string" format: "date-time" } start_dttm: { type: "string" format: "date-time" } state: { type: "string" } uuid: { type: "string" format: "uuid" } value: { type: "number" format: "float" } value_row_json: { type: "string" } } } } } } }