jira.js
    Preparing search index...

    Variable SubmitComponentsSchemaConst

    SubmitComponentsSchema: ZodObject<
        {
            devopsComponents: ZodArray<
                ZodObject<
                    {
                        avatarUrl: ZodURL;
                        componentType: ZodCustom<
                            | string & {}
                            | "Service"
                            | "Application"
                            | "Library"
                            | "Capability"
                            | "Cloud resource"
                            | "Data pipeline"
                            | "Machine learning model"
                            | "UI element"
                            | "Website"
                            | "Other",
                            | string & {}
                            | "Service"
                            | "Application"
                            | "Library"
                            | "Capability"
                            | "Cloud resource"
                            | "Data pipeline"
                            | "Machine learning model"
                            | "UI element"
                            | "Website"
                            | "Other",
                        >;
                        description: ZodString;
                        id: ZodString;
                        lastUpdated: ZodUnion<readonly [ZodString, ZodDate]>;
                        name: ZodString;
                        providerName: ZodOptional<ZodString>;
                        schemaVersion: ZodCustom<string & {} | "1.0", string & {} | "1.0">;
                        tier: ZodCustom<
                            string & {}
                            | "Tier 1"
                            | "Tier 2"
                            | "Tier 3"
                            | "Tier 4",
                            string & {} | "Tier 1" | "Tier 2" | "Tier 3" | "Tier 4",
                        >;
                        updateSequenceNumber: ZodNumber;
                        url: ZodURL;
                    },
                    $strip,
                >,
            >;
            properties: ZodOptional<ZodRecord<ZodString, ZodAny>>;
            providerMetadata: ZodOptional<
                ZodObject<{ product: ZodOptional<ZodString> }, $strip>,
            >;
        },
        $strip,
    > = ...