Oracle Database · Schema

PaginatedResponse

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
items array
hasMore boolean
limit integer
offset integer
count integer
links array
View JSON Schema on GitHub

JSON Schema

oracle-database-paginatedresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaginatedResponse",
  "title": "PaginatedResponse",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {}
    },
    "hasMore": {
      "type": "boolean"
    },
    "limit": {
      "type": "integer"
    },
    "offset": {
      "type": "integer"
    },
    "count": {
      "type": "integer"
    },
    "links": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Link"
      }
    }
  }
}