ChangeManagerStatus

Application ServerEnterpriseJava EEMiddlewareOracleWebLogic

Properties

Name Type Description
locked boolean Whether the configuration is locked for editing
lockOwner string The user who holds the edit lock
hasChanges boolean Whether there are pending changes
mergeNeeded boolean Whether a merge is needed before activation
View JSON Schema on GitHub

JSON Schema

weblogic-changemanagerstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChangeManagerStatus",
  "title": "ChangeManagerStatus",
  "type": "object",
  "properties": {
    "locked": {
      "type": "boolean",
      "description": "Whether the configuration is locked for editing"
    },
    "lockOwner": {
      "type": "string",
      "description": "The user who holds the edit lock"
    },
    "hasChanges": {
      "type": "boolean",
      "description": "Whether there are pending changes"
    },
    "mergeNeeded": {
      "type": "boolean",
      "description": "Whether a merge is needed before activation"
    }
  }
}