{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-fleetwise/refs/heads/main/json-structure/iot-fleetwise-node-counts-structure.json", "name": "NodeCounts", "description": "Information about the number of nodes and node types in a vehicle network.", "type": "object", "properties": { "totalNodes": { "allOf": [ { "$ref": "#/components/schemas/number" }, { "description": "The total number of nodes in a vehicle network." } ] }, "totalBranches": { "allOf": [ { "$ref": "#/components/schemas/number" }, { "description": "The total number of nodes in a vehicle network that represent branches." } ] }, "totalSensors": { "allOf": [ { "$ref": "#/components/schemas/number" }, { "description": "The total number of nodes in a vehicle network that represent sensors." } ] }, "totalAttributes": { "allOf": [ { "$ref": "#/components/schemas/number" }, { "description": "The total number of nodes in a vehicle network that represent attributes." } ] }, "totalActuators": { "allOf": [ { "$ref": "#/components/schemas/number" }, { "description": "The total number of nodes in a vehicle network that represent actuators." } ] } } }