Oracle APEX · Schema

ItemsCollection

Paginated collection of resource items following the ORDS standard collection format

APEXCloudDatabaseDevelopment PlatformEnterpriseGenerative AILow-CodeOracleORDSPL/SQLREST APIWeb ApplicationsWorkflow

Properties

Name Type Description
count integer Total number of records in the current response page
hasMore boolean Indicates whether additional pages of results are available
limit integer The page size limit applied by the server
offset integer The starting index of items in this page
items array Array of resource items in this page
links array Pagination navigation links (first, next, prev, last)
View JSON Schema on GitHub

JSON Schema

oracle-apex-itemscollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ItemsCollection",
  "title": "ItemsCollection",
  "type": "object",
  "description": "Paginated collection of resource items following the ORDS standard collection format",
  "properties": {
    "count": {
      "type": "integer",
      "description": "Total number of records in the current response page"
    },
    "hasMore": {
      "type": "boolean",
      "description": "Indicates whether additional pages of results are available"
    },
    "limit": {
      "type": "integer",
      "description": "The page size limit applied by the server"
    },
    "offset": {
      "type": "integer",
      "description": "The starting index of items in this page"
    },
    "items": {
      "type": "array",
      "description": "Array of resource items in this page",
      "items": {
        "$ref": "#/components/schemas/ResourceItem"
      }
    },
    "links": {
      "type": "array",
      "description": "Pagination navigation links (first, next, prev, last)",
      "items": {
        "$ref": "#/components/schemas/LinkRelation"
      }
    }
  }
}