{ "$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 60000, the Edge Agent software collects data once every minute." } ] } }, "required": [ "periodMs" ] }