foxglove.Duration

A duration of time, composed of seconds and nanoseconds

RoboticsObservabilityVisualizationData PlatformPhysical AIAutonomyFleet ManagementDeveloper ToolsMCAPROS

Properties

Name Type Description
sec integer The number of seconds in the duration
nsec integer The number of nanoseconds in the positive direction
View JSON Schema on GitHub

JSON Schema

foxglove-technologies-duration.json Raw ↑
{
  "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"
  ]
}