action superset_get_report_pk { label: "get_report_pk" description: "Get a report schedule" provider: superset method: GET path: "/report/{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" required: ["crontab", "name", "recipients", "type"] properties: { active: { type: "boolean" } chart: { type: "object" properties: { id: { type: "integer" format: "int32" } slice_name: { type: "string" } viz_type: { type: "string" } } } context_markdown: { type: "string" } creation_method: { type: "string" } crontab: { type: "string" } dashboard: { type: "object" properties: { dashboard_title: { type: "string" } id: { type: "integer" format: "int32" } } } database: { type: "object" required: ["database_name"] properties: { database_name: { type: "string" } id: { type: "integer" format: "int32" } } } description: { type: "string" } grace_period: { type: "integer" format: "int32" } id: { type: "integer" format: "int32" } last_eval_dttm: { type: "string" format: "date-time" } last_state: { type: "string" } last_value: { type: "number" format: "float" } last_value_row_json: { type: "string" } log_retention: { type: "integer" format: "int32" } name: { type: "string" } owners: { type: "object" required: ["first_name", "last_name"] properties: { first_name: { type: "string" } id: { type: "integer" format: "int32" } last_name: { type: "string" } } } recipients: { type: "object" required: ["type"] properties: { id: { type: "integer" format: "int32" } recipient_config_json: { type: "string" } type: { type: "string" } } } report_format: { type: "string" } sql: { type: "string" } timezone: { type: "string" } type: { type: "string" } validator_config_json: { type: "string" } validator_type: { type: "string" } working_timeout: { type: "integer" format: "int32" } } } 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" } } } }