Amazon IoT FleetWise · JSON Structure

Iot Fleetwise Node Counts Structure

Information about the number of nodes and node types in a vehicle network.

Type: object Properties: 5
AutomotiveConnected VehiclesIoTTelematicsVehicle Data

NodeCounts is a JSON Structure definition published by Amazon IoT FleetWise, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

totalNodes totalBranches totalSensors totalAttributes totalActuators

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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."
        }
      ]
    }
  }
}