{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-location-service/refs/heads/main/json-schema/amazon-location-service-tracker-schema.json", "title": "Tracker", "description": "An Amazon Location Service tracker resource for tracking device positions.", "type": "object", "properties": { "TrackerName": { "type": "string", "description": "The name of the tracker resource.", "example": "fleet-tracker" }, "TrackerArn": { "type": "string", "description": "The Amazon Resource Name (ARN) for the tracker." }, "Description": { "type": "string", "description": "The optional description for the tracker resource." }, "PositionFiltering": { "type": "string", "description": "The position filtering method of the tracker resource.", "example": "TimeBased", "enum": [ "TimeBased", "DistanceBased", "AccuracyBased" ] }, "CreateTime": { "type": "string", "description": "The timestamp for when the tracker resource was created.", "format": "date-time" } } }