Oracle APEX · Schema

LinkRelation

HATEOAS link relation describing a related resource or action

APEXCloudDatabaseDevelopment PlatformEnterpriseGenerative AILow-CodeOracleORDSPL/SQLREST APIWeb ApplicationsWorkflow

Properties

Name Type Description
rel string Link relationship type (e.g., self, describedby, edit, collection)
href string URI of the related resource
View JSON Schema on GitHub

JSON Schema

oracle-apex-linkrelation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LinkRelation",
  "title": "LinkRelation",
  "type": "object",
  "description": "HATEOAS link relation describing a related resource or action",
  "required": [
    "rel",
    "href"
  ],
  "properties": {
    "rel": {
      "type": "string",
      "description": "Link relationship type (e.g., self, describedby, edit, collection)"
    },
    "href": {
      "type": "string",
      "description": "URI of the related resource"
    }
  }
}