Oracle Database · Schema

ColumnList

CloudDatabaseEnterpriseOracleREST APISQL
View JSON Schema on GitHub

JSON Schema

oracle-database-columnlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ColumnList",
  "title": "ColumnList",
  "allOf": [
    {
      "$ref": "#/components/schemas/PaginatedResponse"
    },
    {
      "type": "object",
      "properties": {
        "items": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/ColumnMetadata"
          }
        }
      }
    }
  ]
}