diff --git a/schemas/FeatureManagement.Dotnet.v1.0.0.schema.json b/schemas/FeatureManagement.Dotnet.v1.0.0.schema.json index 430a68b5..8ea0f613 100644 --- a/schemas/FeatureManagement.Dotnet.v1.0.0.schema.json +++ b/schemas/FeatureManagement.Dotnet.v1.0.0.schema.json @@ -2,7 +2,7 @@ "definitions": {}, "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", - "title": "The .NET Feature Management Schema", + "title": "A .NET Feature Management Configuration", "required": [], "patternProperties": { "^[^:]*$": { diff --git a/src/Microsoft.FeatureManagement/ConfigurationFeatureDefinitionProvider.cs b/src/Microsoft.FeatureManagement/ConfigurationFeatureDefinitionProvider.cs index 4ec5d69c..de180158 100644 --- a/src/Microsoft.FeatureManagement/ConfigurationFeatureDefinitionProvider.cs +++ b/src/Microsoft.FeatureManagement/ConfigurationFeatureDefinitionProvider.cs @@ -206,7 +206,7 @@ We support enabledFor: false }, myAllRequiredFilterFeature: { - requirementType: "all", + requirementType: "All", enabledFor: [{name: "myFeatureFilter1"}, {name: "myFeatureFilter2"}] } diff --git a/tests/Tests.FeatureManagement/appsettings.json b/tests/Tests.FeatureManagement/appsettings.json index 77aa687e..509d8ba8 100644 --- a/tests/Tests.FeatureManagement/appsettings.json +++ b/tests/Tests.FeatureManagement/appsettings.json @@ -10,7 +10,7 @@ "OnTestFeature": true, "OffTestFeature": false, "FeatureUsesFiltersWithDuplicatedAlias": { - "RequirementType": "all", + "RequirementType": "All", "EnabledFor": [ { "Name": "DuplicatedFilterName" @@ -145,7 +145,7 @@ ] }, "AllFilterFeature": { - "RequirementType": "all", + "RequirementType": "All", "EnabledFor": [ { "Name": "Test",