jira.js
    Preparing search index...

    Variable DashboardGadgetResponseSchemaConst

    DashboardGadgetResponseSchema: ZodObject<
        {
            gadgets: ZodArray<
                ZodObject<
                    {
                        color: ZodCustom<
                            | string & {}
                            | "blue"
                            | "red"
                            | "yellow"
                            | "green"
                            | "cyan"
                            | "purple"
                            | "gray"
                            | "white",
                            | string & {}
                            | "blue"
                            | "red"
                            | "yellow"
                            | "green"
                            | "cyan"
                            | "purple"
                            | "gray"
                            | "white",
                        >;
                        id: ZodNumber;
                        moduleKey: ZodOptional<ZodString>;
                        position: ZodOptional<
                            ZodObject<
                                {
                                    "The column position of the gadget.": ZodNumber;
                                    "The row position of the gadget.": ZodNumber;
                                },
                                $loose,
                            >,
                        >;
                        title: ZodString;
                        uri: ZodOptional<ZodString>;
                    },
                    $loose,
                >,
            >;
        },
        $loose,
    > = ...

    The list of gadgets on the dashboard.