{ "title": "foxglove.Duration", "description": "A duration of time, composed of seconds and nanoseconds", "$comment": "Generated by https://github.com/foxglove/foxglove-sdk", "type": "object", "properties": { "sec": { "type": "integer", "description": "The number of seconds in the duration" }, "nsec": { "type": "integer", "minimum": 0, "description": "The number of nanoseconds in the positive direction" } }, "required": [ "sec", "nsec" ] }