ErrorResponse

Application ServerEnterpriseJava EEMiddlewareOracle

Properties

Name Type Description
type string
title string
status integer
wls:errorsDetails array
View JSON Schema on GitHub

JSON Schema

oracle-weblogic-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "properties": {
    "type": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "status": {
      "type": "integer"
    },
    "wls:errorsDetails": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "detail": {
            "type": "string"
          },
          "o:errorPath": {
            "type": "string"
          }
        }
      }
    }
  }
}