Android · Schema

Timestamp

A timestamp in seconds and nanoseconds.

AIAndroidAutomotiveGoogleMachine LearningMobile DevelopmentSDKTVWearables

Properties

Name Type Description
seconds string Seconds since Unix Epoch.
nanos integer Non-negative fractions of a second at nanosecond resolution.
View JSON Schema on GitHub

JSON Schema

android-timestamp-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Timestamp",
  "title": "Timestamp",
  "type": "object",
  "description": "A timestamp in seconds and nanoseconds.",
  "properties": {
    "seconds": {
      "type": "string",
      "format": "int64",
      "description": "Seconds since Unix Epoch.",
      "example": "example_value"
    },
    "nanos": {
      "type": "integer",
      "description": "Non-negative fractions of a second at nanosecond resolution.",
      "example": 10
    }
  }
}