Paginated collection of targets.
{ "$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." } } }