IBM WebSphere · Schema

ServerConfig

Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware

Properties

Name Type Description
description string
featureManager object
httpEndpoint array
View JSON Schema on GitHub

JSON Schema

websphere-serverconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServerConfig",
  "title": "ServerConfig",
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "featureManager": {
      "type": "object",
      "properties": {
        "feature": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "example": "example_value"
    },
    "httpEndpoint": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "host": {
            "type": "string"
          },
          "httpPort": {
            "type": "integer"
          },
          "httpsPort": {
            "type": "integer"
          }
        }
      },
      "example": []
    }
  },
  "additionalProperties": true
}