Value object for the length of time in transit.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TransitTimeObject", "title": "Transit Time Object", "type": "object", "properties": { "units": { "type": "string", "enum": [ "BUSINESS_DAYS", "DAYS", "HOURS" ] }, "duration": { "type": "integer", "minimum": 1, "maximum": 90 } }, "description": "Value object for the length of time in transit.", "x-internal": false }