jira.js
    Preparing search index...

    Variable GetIncidentByIdSchemaConst

    GetIncidentByIdSchema: ZodObject<
        {
            affectedComponents: ZodArray<ZodString>;
            associations: ZodOptional<
                ZodArray<
                    ZodObject<
                        {
                            associationType: ZodOptional<
                                ZodCustom<
                                    | string & {}
                                    | "issueIdOrKeys"
                                    | "serviceIdOrKeys"
                                    | "ati:cloud:compass:event-source",
                                    | string & {}
                                    | "issueIdOrKeys"
                                    | "serviceIdOrKeys"
                                    | "ati:cloud:compass:event-source",
                                >,
                            >;
                            values: ZodOptional<ZodArray<ZodString>>;
                        },
                        $loose,
                    >,
                >,
            >;
            createdDate: ZodCoercedDate<unknown>;
            description: ZodString;
            id: ZodString;
            lastUpdated: ZodCoercedDate<unknown>;
            schemaVersion: ZodCustom<string & {} | "1.0", string & {} | "1.0">;
            severity: ZodOptional<
                ZodObject<
                    {
                        level: ZodCustom<
                            "unknown"
                            | string & {}
                            | "P1"
                            | "P2"
                            | "P3"
                            | "P4"
                            | "P5",
                            "unknown" | string & {} | "P1" | "P2" | "P3" | "P4" | "P5",
                        >;
                    },
                    $loose,
                >,
            >;
            status: ZodCustom<
                "unknown"
                | "open"
                | string & {}
                | "resolved",
                "unknown" | "open" | string & {} | "resolved",
            >;
            summary: ZodString;
            updateSequenceNumber: ZodNumber;
            url: ZodURL;
        },
        $loose,
    > = ...

    Data related to a specific incident in a specific container that the incident is present in. Must specify at least one association to a component.*