Skip to content

Commit 9c84875

Browse files
authored
Merge pull request #533 from abatishchev/patch-1
Fixed broken link to JSON schema in MicrosoftFeatureManagementFields.cs
2 parents fa0e457 + baf7664 commit 9c84875

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

src/Microsoft.FeatureManagement/MicrosoftFeatureManagementFields.cs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,21 @@
44

55
namespace Microsoft.FeatureManagement
66
{
7-
//
8-
// Microsoft Feature Management schema: https://github.com/Azure/AppConfiguration/blob/main/docs/FeatureManagement/FeatureManagement.v1.0.0.schema.json
7+
/// <summary>
8+
/// See Microsoft Feature Management schema: https://github.com/microsoft/FeatureManagement/blob/main/Schema/FeatureManagement.v2.0.0.schema.json
9+
/// </summary>
910
internal static class MicrosoftFeatureManagementFields
1011
{
1112
public const string FeatureManagementSectionName = "feature_management";
1213
public const string FeatureFlagsSectionName = "feature_flags";
1314

14-
//
1515
// Microsoft feature flag keywords
1616
public const string Id = "id";
1717
public const string Enabled = "enabled";
1818
public const string Conditions = "conditions";
1919
public const string ClientFilters = "client_filters";
2020
public const string RequirementType = "requirement_type";
2121

22-
//
2322
// Allocation keywords
2423
public const string AllocationSectionName = "allocation";
2524
public const string AllocationDefaultWhenDisabled = "default_when_disabled";
@@ -34,7 +33,6 @@ internal static class MicrosoftFeatureManagementFields
3433
public const string PercentileAllocationTo = "to";
3534
public const string AllocationSeed = "seed";
3635

37-
//
3836
// Client filter keywords
3937
public const string Name = "name";
4038
public const string Parameters = "parameters";

0 commit comments

Comments
 (0)