Variable reviewRuleWithoutOverridesShapeConst

reviewRuleWithoutOverridesShape: ShapeDefinition<
    {
        autoAdd: ShapeOptional<boolean>;
        codeOwns: ShapeOptional<
            ShapeOr<
                [
                    {
                        notPaths: ShapeOptional<ShapeOr<[string, ShapeClass<(...)>]>[]>;
                        paths: ShapeOptional<ShapeOr<[string, ShapeClass<(...)>]>[]>;
                    },
                    undefined,
                ],
            >,
        >;
        required: ShapeOptional<ShapeOr<[ShapeExact<readonly ["all"]>, number]>>;
        users: ShapeOptional<string[]>;
    },
    false,
> = ...

The sanitized shape for an individual rule without user overrides.