Oracle Database · Schema

CreateRESTHandlerRequest

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
method string
source_type string
source string
View JSON Schema on GitHub

JSON Schema

oracle-database-createresthandlerrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateRESTHandlerRequest",
  "title": "CreateRESTHandlerRequest",
  "type": "object",
  "required": [
    "method",
    "source_type",
    "source"
  ],
  "properties": {
    "method": {
      "type": "string",
      "enum": [
        "GET",
        "POST",
        "PUT",
        "DELETE"
      ]
    },
    "source_type": {
      "type": "string",
      "enum": [
        "collection/query",
        "collection/feed",
        "query",
        "plsql"
      ]
    },
    "source": {
      "type": "string"
    }
  }
}