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

google-play-developer-timestamp-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Timestamp",
  "type": "object",
  "description": "A timestamp in seconds and nanoseconds.",
  "properties": {
    "seconds": {
      "type": "string",
      "description": "Seconds since Unix Epoch."
    },
    "nanos": {
      "type": "integer",
      "description": "Non-negative fractions of a second at nanosecond resolution."
    }
  }
}