{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Feature", "title": "Feature", "type": "object", "properties": { "FeatureCode": { "type": "string", "description": "Feature code identifier" }, "FeatureName": { "type": "string", "description": "Feature display name" }, "FeatureDescription": { "type": "string", "description": "Feature description" }, "EnabledFlag": { "type": "boolean", "description": "Whether the feature is enabled" } } }