SqlResponse

DatabaseEnterpriseJsonMachine-LearningNosqlOracleRestSql

Properties

Name Type Description
items array
View JSON Schema on GitHub

JSON Schema

oracle-database-19c-sqlresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SqlResponse",
  "title": "SqlResponse",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "statementId": {
            "type": "integer"
          },
          "statementType": {
            "type": "string"
          },
          "statementText": {
            "type": "string"
          },
          "resultSet": {
            "type": "object",
            "properties": {
              "metadata": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "columnName": {
                      "type": "string"
                    },
                    "jdbcType": {
                      "type": "integer"
                    }
                  }
                }
              },
              "items": {
                "type": "array",
                "items": {
                  "type": "object",
                  "additionalProperties": true
                }
              },
              "hasMore": {
                "type": "boolean"
              },
              "count": {
                "type": "integer"
              }
            }
          }
        }
      }
    }
  }
}