@archastro/sdk
    Preparing search index...

    Variable solutionInstanceSchemaConst

    solutionInstanceSchema: ZodObject<
        {
            agent: ZodOptional<ZodNullable<ZodString>>;
            agent_name: ZodOptional<ZodNullable<ZodString>>;
            attachment_ref: ZodOptional<
                ZodNullable<
                    ZodRecord<ZodString, ZodType<{} | null, ZodTypeDef, {} | null>>,
                >,
            >;
            created_at: ZodString;
            customer_key: ZodString;
            customer_label: ZodOptional<ZodNullable<ZodString>>;
            id: ZodString;
            local_edit_count: ZodOptional<ZodNullable<ZodNumber>>;
            pinned_template_version: ZodOptional<ZodNullable<ZodString>>;
            pinned_version_number: ZodOptional<ZodNullable<ZodNumber>>;
            solution_template_config: ZodString;
            status: ZodEnum<["active", "archived"]>;
            updated_at: ZodString;
        },
        "strip",
        ZodTypeAny,
        {
            agent?: string
            | null;
            agent_name?: string | null;
            attachment_ref?: Record<string, {} | null> | null;
            created_at: string;
            customer_key: string;
            customer_label?: string | null;
            id: string;
            local_edit_count?: number | null;
            pinned_template_version?: string | null;
            pinned_version_number?: number | null;
            solution_template_config: string;
            status: "active" | "archived";
            updated_at: string;
        },
        {
            agent?: string
            | null;
            agent_name?: string | null;
            attachment_ref?: Record<string, {} | null> | null;
            created_at: string;
            customer_key: string;
            customer_label?: string | null;
            id: string;
            local_edit_count?: number | null;
            pinned_template_version?: string | null;
            pinned_version_number?: number | null;
            solution_template_config: string;
            status: "active" | "archived";
            updated_at: string;
        },
    > = ...

    Runtime validator for SolutionInstance.