---
title: "Timestamp"
url: "https://sbx.developer-internal.sanofi.com/apis/httpbin-1/versions/da3754ed-f573-4cf9-a100-7688d77483f4/schemas/Timestamp"
---

> Full API specification: https://sbx.developer-internal.sanofi.com/apis/httpbin-1/versions/da3754ed-f573-4cf9-a100-7688d77483f4.md

# Timestamp

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: httpbin
  version: 1.0-oas3
servers:
  - url: https://httpbin.org
  - url: http://httpbin.apim.eu/
  - url: https://eu.httpbin.org
  - url: http://eu.httpbin.org
  - url: http://localhost:8000/test
components:
  schemas:
    Timestamp:
      type: object
      properties:
        epoch:
          type: number
          format: double
          example: 1498229228.0671656
        slang_date:
          type: string
          example: today
        slang_time:
          type: string
          example: now
        iso8601:
          type: string
          example: 2017-06-23T14:47:08.067166Z
        rfc2822:
          type: string
          example: Fri, 23 Jun 2017 14:47:08 GMT
        rfc3339:
          type: string
          example: 2017-06-23T14:47:08.06Z
      required:
        - epoch
        - slang_date
        - slang_time
        - iso8601
        - rfc2822
        - rfc3339
      example:
        epoch: 1485183550.84644
        slang_date: Jan 23
        slang_time: 4 months ago
        iso8601: 2017-01-23T14:59:10.846440Z
        rfc2822: Mon, 23 Jan 2017 14:59:10 GMT
        rfc3339: 2017-01-23T14:59:10.84Z
```
