Trimble · Schema

MileageResponse

ConstructionTransportationGeospatialGPSMappingBIMFleet ManagementCollaborationAgriculture

Properties

Name Type Description
Mileage number Miles between stops
Hours number Drive time in hours
FuelCost number Estimated fuel cost in USD
RouteType string
View JSON Schema on GitHub

JSON Schema

trimble-mileageresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MileageResponse",
  "title": "MileageResponse",
  "type": "object",
  "properties": {
    "Mileage": {
      "type": "number",
      "description": "Miles between stops"
    },
    "Hours": {
      "type": "number",
      "description": "Drive time in hours"
    },
    "FuelCost": {
      "type": "number",
      "description": "Estimated fuel cost in USD"
    },
    "RouteType": {
      "type": "string"
    }
  }
}