Oracle Database · Schema

DocumentList

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
items array
hasMore boolean Whether more documents exist beyond this page
limit integer Server-imposed result limit
offset integer Offset of first returned result
count integer Number of documents in this response
totalResults integer Total documents in collection (only if totalResults=true)
links array
View JSON Schema on GitHub

JSON Schema

oracle-database-documentlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DocumentList",
  "title": "DocumentList",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Document"
      }
    },
    "hasMore": {
      "type": "boolean",
      "description": "Whether more documents exist beyond this page"
    },
    "limit": {
      "type": "integer",
      "description": "Server-imposed result limit"
    },
    "offset": {
      "type": "integer",
      "description": "Offset of first returned result"
    },
    "count": {
      "type": "integer",
      "description": "Number of documents in this response"
    },
    "totalResults": {
      "type": "integer",
      "description": "Total documents in collection (only if totalResults=true)"
    },
    "links": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Link"
      }
    }
  }
}