Oracle Database · Schema

CatalogResponse

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
items array
hasMore boolean
View JSON Schema on GitHub

JSON Schema

oracle-database-catalogresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CatalogResponse",
  "title": "CatalogResponse",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Collection name"
          },
          "properties": {
            "type": "object",
            "description": "Collection metadata properties"
          },
          "links": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Link"
            }
          }
        }
      }
    },
    "hasMore": {
      "type": "boolean"
    }
  }
}