TimeBasedCollectionScheme

Information about a collection scheme that uses a time period to decide how often to collect data.

AutomotiveConnected VehiclesIoTTelematicsVehicle Data

Properties

Name Type Description
periodMs object
View JSON Schema on GitHub

JSON Schema

iot-fleetwise-time-based-collection-scheme-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-fleetwise/refs/heads/main/json-schema/iot-fleetwise-time-based-collection-scheme-schema.json",
  "title": "TimeBasedCollectionScheme",
  "description": "Information about a collection scheme that uses a time period to decide how often to collect data.",
  "type": "object",
  "properties": {
    "periodMs": {
      "allOf": [
        {
          "$ref": "#/components/schemas/collectionPeriodMs"
        },
        {
          "description": "The time period (in milliseconds) to decide how often to collect data. For example, if the time period is <code>60000</code>, the Edge Agent software collects data once every minute."
        }
      ]
    }
  },
  "required": [
    "periodMs"
  ]
}