Oracle Database · Schema

FeatureUsageList

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
items array
View JSON Schema on GitHub

JSON Schema

oracle-database-featureusagelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FeatureUsageList",
  "title": "FeatureUsageList",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "currently_used": {
            "type": "boolean"
          },
          "first_usage_date": {
            "type": "string",
            "format": "date-time"
          },
          "last_usage_date": {
            "type": "string",
            "format": "date-time"
          }
        }
      }
    }
  }
}