Standard NX-API REST response wrapper
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ImDataResponse", "title": "ImDataResponse", "type": "object", "description": "Standard NX-API REST response wrapper", "properties": { "totalCount": { "type": "string", "description": "Total number of managed objects in the response", "example": "example_value" }, "imdata": { "type": "array", "description": "Array of managed object results", "items": { "type": "object" }, "example": [] } } }