Oracle APEX · Schema

ResourceItem

A single resource item with HATEOAS navigation links. Additional properties are included depending on the resource type.

APEXCloudDatabaseDevelopment PlatformEnterpriseGenerative AILow-CodeOracleORDSPL/SQLREST APIWeb ApplicationsWorkflow

Properties

Name Type Description
links array HATEOAS links for the resource
View JSON Schema on GitHub

JSON Schema

oracle-apex-resourceitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResourceItem",
  "title": "ResourceItem",
  "type": "object",
  "description": "A single resource item with HATEOAS navigation links. Additional properties are included depending on the resource type.",
  "additionalProperties": true,
  "properties": {
    "links": {
      "type": "array",
      "description": "HATEOAS links for the resource",
      "items": {
        "$ref": "#/components/schemas/LinkRelation"
      }
    }
  }
}