DiagnosticQueryResult

Application ServerEnterpriseJava EEMiddlewareOracleWebLogic

Properties

Name Type Description
columns array Column definitions for the result set
rows array Result rows
totalRecords integer Total number of matching records
returnedRecords integer Number of records returned
View JSON Schema on GitHub

JSON Schema

weblogic-diagnosticqueryresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DiagnosticQueryResult",
  "title": "DiagnosticQueryResult",
  "type": "object",
  "properties": {
    "columns": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        }
      },
      "description": "Column definitions for the result set"
    },
    "rows": {
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "description": "Result rows"
    },
    "totalRecords": {
      "type": "integer",
      "description": "Total number of matching records"
    },
    "returnedRecords": {
      "type": "integer",
      "description": "Number of records returned"
    }
  }
}