Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,21 @@

namespace Microsoft.FeatureManagement
{
//
// Microsoft Feature Management schema: https://github.com/Azure/AppConfiguration/blob/main/docs/FeatureManagement/FeatureManagement.v1.0.0.schema.json
/// <summary>
/// See Microsoft Feature Management schema: https://github.com/microsoft/FeatureManagement/blob/main/Schema/FeatureManagement.v2.0.0.schema.json
/// </summary>
internal static class MicrosoftFeatureManagementFields
{
public const string FeatureManagementSectionName = "feature_management";
public const string FeatureFlagsSectionName = "feature_flags";

//
// Microsoft feature flag keywords
public const string Id = "id";
public const string Enabled = "enabled";
public const string Conditions = "conditions";
public const string ClientFilters = "client_filters";
public const string RequirementType = "requirement_type";

//
// Allocation keywords
public const string AllocationSectionName = "allocation";
public const string AllocationDefaultWhenDisabled = "default_when_disabled";
Expand All @@ -34,7 +33,6 @@ internal static class MicrosoftFeatureManagementFields
public const string PercentileAllocationTo = "to";
public const string AllocationSeed = "seed";

//
// Client filter keywords
public const string Name = "name";
public const string Parameters = "parameters";
Expand Down