You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
messageTIMESTAMP {
// Represents seconds of UTC time since Unix epochrequiredint64seconds=1;
// Non-negative fractions of a second at millisecond resolutionrequiredint32millis=2;
}
JSON SCHEMA:
"TIMESTAMP": {
"title": "TIMESTAMP",
"type": "object",
"properties": {
"seconds": {
"type": "integer",
"minimum": -9007199254740991,
"maximum": 9007199254740991,
"$comment" : "Represents seconds of UTC time since Unix epoch"
},
"millis": {
"type": "integer",
"minimum": -2147483648,
"maximum": 2147483647,
"$comment" : "Non-negative fractions of a second at millisecond resolution",
}
},
"required": [
"seconds",
"millis"
]
}
The text was updated successfully, but these errors were encountered:
i.e. PROTO:
JSON SCHEMA:
The text was updated successfully, but these errors were encountered: