Created
March 4, 2019 19:18
-
-
Save blangel/85d0ccdf658f093c5ad691f691ac7427 to your computer and use it in GitHub Desktop.
Dash Fleet API - MaintenanceDuration.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// either a distance value (e.g. perform this maintenance once every 5K miles) | |
{"distancePerMaintenance": 5000, | |
"distanceUnit": "Miles" | |
} | |
// or a duration value (e.g. perform this maintenance once every 6 months) | |
{"millisecondsPerMaintenance":157700000000 | |
} | |
// or an absolute time (e.g. perform this maintenance at 03/04/2019) | |
{"absoluteDueDate":1551657600000 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment