CORE-POS/IS4C

View on GitHub
pos/is4c-nf/scale-drivers/drivers/NewMagellan/Newtonsoft.Json/Schema/JsonSchemaModel.cs

Summary

Maintainability
A
1 hr
Test Coverage

Method Combine has 30 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        private static void Combine(JsonSchemaModel model, JsonSchema schema)
        {
            // Version 3 of the Draft JSON Schema has the default value of Not Required
            model.Required = model.Required || (schema.Required ?? false);
            model.Type = model.Type & (schema.Type ?? JsonSchemaType.Any);

    There are no issues that match your filters.

    Category
    Status