jira.js
    Preparing search index...

    Variable GetVulnerabilityByIdSchemaConst

    GetVulnerabilityByIdSchema: ZodObject<
        {
            addAssociations: ZodOptional<
                ZodArray<
                    ZodObject<
                        {
                            associationType: ZodCustom<
                                string & {}
                                | "issueKeys"
                                | "issueIdOrKeys",
                                string & {} | "issueKeys" | "issueIdOrKeys",
                            >;
                            values: ZodArray<ZodString>;
                        },
                        $loose,
                    >,
                >,
            >;
            additionalInfo: ZodOptional<
                ZodObject<{ content: ZodString; url: ZodOptional<ZodURL> }, $loose>,
            >;
            associationsLastUpdated: ZodOptional<ZodCoercedDate<unknown>>;
            associationsUpdateSequenceNumber: ZodOptional<ZodNumber>;
            containerId: ZodString;
            description: ZodString;
            displayName: ZodString;
            id: ZodString;
            identifiers: ZodOptional<
                ZodArray<ZodObject<{ displayName: ZodString; url: ZodURL }, $loose>>,
            >;
            introducedDate: ZodCoercedDate<unknown>;
            lastUpdated: ZodCoercedDate<unknown>;
            removeAssociations: ZodOptional<
                ZodArray<
                    ZodObject<
                        {
                            associationType: ZodCustom<
                                string & {}
                                | "issueKeys"
                                | "issueIdOrKeys",
                                string & {} | "issueKeys" | "issueIdOrKeys",
                            >;
                            values: ZodArray<ZodString>;
                        },
                        $loose,
                    >,
                >,
            >;
            schemaVersion: ZodCustom<string & {} | "1.0", string & {} | "1.0">;
            severity: ZodObject<
                {
                    level: ZodCustom<
                        "high"
                        | "low"
                        | "medium"
                        | "unknown"
                        | string & {}
                        | "critical",
                        "high" | "low" | "medium" | "unknown" | string & {} | "critical",
                    >;
                },
                $loose,
            >;
            status: ZodCustom<
                "unknown"
                | "closed"
                | "open"
                | string & {}
                | "ignored",
                "unknown" | "closed" | "open" | string & {} | "ignored",
            >;
            type: ZodCustom<
                "unknown"
                | string & {}
                | "sca"
                | "sast"
                | "dast",
                "unknown" | string & {} | "sca" | "sast" | "dast",
            >;
            updateSequenceNumber: ZodNumber;
            url: ZodURL;
        },
        $loose,
    > = ...

    Data related to a specific vulnerability in a specific workspace that the vulnerability is present in. Must specify at least one association.*