Skip to content
Merged
Changes from 5 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
31 changes: 31 additions & 0 deletions docs/FeatureManagement/FeatureManagement.v1.0.0.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"definitions": {},
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://azconfig.io/schemas/FeatureManagement/v1.0.0/FeatureManagement.json",
"type": "object",
"title": "A Microsoft Feature Management Configuration",

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"title": "A Microsoft Feature Management Configuration",
"title": "The Microsoft Feature Management Schema",

"required": [
"feature_management"
],
"properties": {
"feature_management":{
"$id": "#/properties/feature_management",
"type": "object",
"title": "The Feature Management Schema",
Comment thread
zhiyuanliang-ms marked this conversation as resolved.
Outdated
"required": [
"feature_flags"
],
"properties": {
"feature_flags": {
"$id": "#/properties/feature_management/properties/feature_flags",
"type": "array",
"title": "Feature Flags",
"description": "Declares feature flags based on Microsoft Feature Flag schema.",
"items": {
"$ref": "https://github.com/Azure/AppConfiguration/blob/main/docs/FeatureManagement/FeatureFlag.v1.1.0.schema.json"
}
}
}
}
}
}