ImDataResponse

Standard NX-API REST response wrapper

Data CenterInfrastructureNetwork AutomationNetworkingSDNSwitches

Properties

Name Type Description
totalCount string Total number of managed objects in the response
imdata array Array of managed object results
View JSON Schema on GitHub

JSON Schema

cisco-nexus-imdataresponse-schema.json Raw ↑
{
  "$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": []
    }
  }
}