AutoRestResultSet

DatabaseEnterpriseJsonMachine-LearningNosqlOracleRestSql

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-19c-autorestresultset-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AutoRestResultSet",
  "title": "AutoRestResultSet",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": true
      }
    },
    "hasMore": {
      "type": "boolean"
    },
    "limit": {
      "type": "integer"
    },
    "offset": {
      "type": "integer"
    },
    "count": {
      "type": "integer"
    },
    "links": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "rel": {
            "type": "string"
          },
          "href": {
            "type": "string"
          }
        }
      }
    }
  }
}