foxglove.Timestamp

A timestamp composed of seconds and nanoseconds

RoboticsObservabilityVisualizationData PlatformPhysical AIAutonomyFleet ManagementDeveloper ToolsMCAPROS

Properties

Name Type Description
sec integer The number of seconds since a user-defined epoch
nsec integer The number of nanoseconds since the sec value
View JSON Schema on GitHub

JSON Schema

foxglove-technologies-timestamp.json Raw ↑
{
  "title": "foxglove.Timestamp",
  "description": "A timestamp composed of seconds and nanoseconds",
  "$comment": "Generated by https://github.com/foxglove/foxglove-sdk",
  "type": "object",
  "properties": {
    "sec": {
      "type": "integer",
      "minimum": 0,
      "description": "The number of seconds since a user-defined epoch"
    },
    "nsec": {
      "type": "integer",
      "minimum": 0,
      "description": "The number of nanoseconds since the sec value"
    }
  },
  "required": [
    "sec",
    "nsec"
  ]
}