action superset_get_dataset_pk_related_objects { label: "get_dataset_pk_related_objects" description: "Get charts and dashboards count associated to a dataset" provider: superset method: GET path: "/dataset/{pk}/related_objects" encoding: json input: { type: "object" properties: { pk: { type: "integer" } } required: ["pk"] additionalProperties: false } output: { type: "object" properties: { charts: { type: "object" properties: { count: { type: "integer" format: "int32" description: "Chart count" } result: { type: "array" description: "A list of dashboards" items: { type: "object" properties: { id: { type: "integer" format: "int32" } slice_name: { type: "string" } viz_type: { type: "string" } } } } } } dashboards: { type: "object" properties: { count: { type: "integer" format: "int32" description: "Dashboard count" } result: { type: "array" description: "A list of dashboards" items: { type: "object" properties: { id: { type: "integer" format: "int32" } json_metadata: { type: "object" } slug: { type: "string" } title: { type: "string" } } } } } } } } }