IBM WebSphere · Schema
Feature
Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Feature symbolic name |
| displayName | string | Human-readable feature name |
| version | string | Feature version |
| description | string | Feature description |
| enabled | boolean | Whether the feature is currently enabled |
| dependencies | array | List of dependent feature names |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Feature",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Feature symbolic name"
},
"displayName": {
"type": "string",
"description": "Human-readable feature name"
},
"version": {
"type": "string",
"description": "Feature version"
},
"description": {
"type": "string",
"description": "Feature description"
},
"enabled": {
"type": "boolean",
"description": "Whether the feature is currently enabled"
},
"dependencies": {
"type": "array",
"description": "List of dependent feature names"
}
}
}