Oracle APEX · Schema
ModuleCreate
Request body for creating or updating a REST service module
APEXCloudDatabaseDevelopment PlatformEnterpriseGenerative AILow-CodeOracleORDSPL/SQLREST APIWeb ApplicationsWorkflows
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of the RESTful service module. Case sensitive. |
| base_path | string | The base URI path used to access this RESTful service. All URIs starting with this path will be serviced by this module. |
| origins_allowed | string | Comma-separated list of allowed CORS origins for the module |
| items_per_page | integer | Default pagination size for GET handlers (number of rows per page) |
| module_status | string | Publication status of the module |
| comments | string | Descriptive comment for the module |
| run_mode | string | Set to 'codePreview' to return the PL/SQL code that would be executed instead of executing it |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ModuleCreate",
"title": "ModuleCreate",
"type": "object",
"description": "Request body for creating or updating a REST service module",
"required": [
"name",
"base_path"
],
"properties": {
"name": {
"type": "string",
"description": "Name of the RESTful service module. Case sensitive."
},
"base_path": {
"type": "string",
"description": "The base URI path used to access this RESTful service. All URIs starting with this path will be serviced by this module.",
"examples": [
"hr/",
"api/v1/"
]
},
"origins_allowed": {
"type": "string",
"description": "Comma-separated list of allowed CORS origins for the module"
},
"items_per_page": {
"type": "integer",
"description": "Default pagination size for GET handlers (number of rows per page)",
"default": 25,
"minimum": 1
},
"module_status": {
"type": "string",
"description": "Publication status of the module",
"enum": [
"PUBLISHED",
"NOT_PUBLISHED"
],
"default": "PUBLISHED"
},
"comments": {
"type": "string",
"description": "Descriptive comment for the module"
},
"run_mode": {
"type": "string",
"description": "Set to 'codePreview' to return the PL/SQL code that would be executed instead of executing it",
"enum": [
"codePreview"
]
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/oracle-apex-modulecreate"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.