ApplicationRuntime

Application ServerEnterpriseJava EEMiddlewareOracle

Properties

Name Type Description
name string
healthState object
state string
links array
View JSON Schema on GitHub

JSON Schema

oracle-weblogic-applicationruntime-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApplicationRuntime",
  "title": "ApplicationRuntime",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "healthState": {
      "type": "object",
      "properties": {
        "state": {
          "type": "string",
          "enum": [
            "HEALTH_OK",
            "HEALTH_WARN",
            "HEALTH_CRITICAL",
            "HEALTH_FAILED",
            "HEALTH_OVERLOADED"
          ]
        },
        "subsystemName": {
          "type": "string"
        }
      }
    },
    "state": {
      "type": "string"
    },
    "links": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Link"
      }
    }
  }
}