action superset_get_dashboard_favorite_status { label: "get_dashboard_favorite_status" description: "Check favorited dashboards for current user" provider: superset method: GET path: "/dashboard/favorite_status/" encoding: json input: { type: "object" properties: { q: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { result: { type: "array" description: "A list of results for each corresponding chart in the request" items: { type: "object" properties: { id: { type: "integer" format: "int32" description: "The Chart id" } value: { type: "boolean" description: "The FaveStar value" } } } } } } }