TargetCollection

Paginated collection of targets.

Cloud ManagementDatabase ManagementEnterprise ManagementInfrastructure ManagementMonitoringOracle

Properties

Name Type Description
items array
totalCount integer Total number of targets matching the query.
limit integer Maximum items per page.
offset integer Current offset in the result set.
hasMore boolean Whether more results are available.
View JSON Schema on GitHub

JSON Schema

oracle-enterprise-manager-cloud-control-target-collection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TargetCollection",
  "type": "object",
  "description": "Paginated collection of targets.",
  "properties": {
    "items": {
      "type": "array"
    },
    "totalCount": {
      "type": "integer",
      "description": "Total number of targets matching the query."
    },
    "limit": {
      "type": "integer",
      "description": "Maximum items per page."
    },
    "offset": {
      "type": "integer",
      "description": "Current offset in the result set."
    },
    "hasMore": {
      "type": "boolean",
      "description": "Whether more results are available."
    }
  }
}