DomainRuntime

Application ServerEnterpriseJava EEMiddlewareOracle

Properties

Name Type Description
name string Domain name
activationTime integer Time when the domain was last activated
links array
View JSON Schema on GitHub

JSON Schema

oracle-weblogic-domainruntime-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DomainRuntime",
  "title": "DomainRuntime",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Domain name"
    },
    "activationTime": {
      "type": "integer",
      "format": "int64",
      "description": "Time when the domain was last activated"
    },
    "links": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Link"
      }
    }
  }
}