IBM WebSphere · Schema

Node

Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware

Properties

Name Type Description
name string Node name
hostName string Hostname of the node
platformOS string Operating system platform
servers array
synchronized boolean Whether the node configuration is synchronized
View JSON Schema on GitHub

JSON Schema

websphere-node-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Node",
  "title": "Node",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Node name",
      "example": "Example Title"
    },
    "hostName": {
      "type": "string",
      "description": "Hostname of the node",
      "example": "example_value"
    },
    "platformOS": {
      "type": "string",
      "description": "Operating system platform",
      "example": "example_value"
    },
    "servers": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": []
    },
    "synchronized": {
      "type": "boolean",
      "description": "Whether the node configuration is synchronized",
      "example": true
    }
  }
}