Timestamp

An Object

Note

Drop in one of our language drivers to accelerate your development.
Here are links to some of our popular Cookbooks to help you get started!

Properties

The following properties are available:

Property Type Default Read-Only Description
day_of_month number No
hour number No
millisecond number No
minute number No
month number No
ms number No
second number No
timestamp string No
year number No

Schema


{
  "type": "object",
  "description": "Timestamp",
  "properties": {
    "timestamp": {
      "type": "string"
    },
    "year": {
      "type": "number"
    },
    "month": {
      "type": "number"
    },
    "day_of_month": {
      "type": "number"
    },
    "hour": {
      "type": "number"
    },
    "minute": {
      "type": "number"
    },
    "second": {
      "type": "number"
    },
    "millisecond": {
      "type": "number"
    },
    "ms": {
      "type": "number"
    }
  },
  "id": "timestamp"
}