Oracle APEX · Schema

TemplateUpdate

Request body for updating a REST module template

APEXCloudDatabaseDevelopment PlatformEnterpriseGenerative AILow-CodeOracleORDSPL/SQLREST APIWeb ApplicationsWorkflow

Properties

Name Type Description
uri_prefix string URI pattern for the template
priority integer Priority for evaluating the template (0-9)
etag_type string Type of entity tag generation
etag_query string SQL query for entity tag generation when etag_type is QUERY
comments string Descriptive comment for the template
View JSON Schema on GitHub

JSON Schema

oracle-apex-templateupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TemplateUpdate",
  "title": "TemplateUpdate",
  "type": "object",
  "description": "Request body for updating a REST module template",
  "required": [
    "uri_prefix",
    "priority",
    "etag_type"
  ],
  "properties": {
    "uri_prefix": {
      "type": "string",
      "description": "URI pattern for the template"
    },
    "priority": {
      "type": "integer",
      "description": "Priority for evaluating the template (0-9)",
      "minimum": 0,
      "maximum": 9
    },
    "etag_type": {
      "type": "string",
      "description": "Type of entity tag generation",
      "enum": [
        "HASH",
        "QUERY",
        "NONE"
      ]
    },
    "etag_query": {
      "type": "string",
      "description": "SQL query for entity tag generation when etag_type is QUERY"
    },
    "comments": {
      "type": "string",
      "description": "Descriptive comment for the template"
    }
  }
}