SecurityConfiguration

Application ServerEnterpriseJava EEMiddlewareOracleWebLogic

Properties

Name Type Description
name string
realms array
crossDomainSecurityEnabled boolean
webAppFilesCaseInsensitive string
View JSON Schema on GitHub

JSON Schema

weblogic-securityconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SecurityConfiguration",
  "title": "SecurityConfiguration",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "realms": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "authenticationProviders": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "name": {
                  "type": "string"
                },
                "type": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "crossDomainSecurityEnabled": {
      "type": "boolean"
    },
    "webAppFilesCaseInsensitive": {
      "type": "string",
      "enum": [
        "os",
        "true",
        "false"
      ]
    }
  }
}