Oracle Database · Schema

CreateOAuthClientRequest

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
name string
description string
grant_type string
redirect_uri string
View JSON Schema on GitHub

JSON Schema

oracle-database-createoauthclientrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateOAuthClientRequest",
  "title": "CreateOAuthClientRequest",
  "type": "object",
  "required": [
    "name",
    "grant_type"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "grant_type": {
      "type": "string",
      "enum": [
        "authorization_code",
        "client_credentials"
      ]
    },
    "redirect_uri": {
      "type": "string",
      "format": "uri"
    }
  }
}