{
"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"
]
}