Use type: integer, format: int64 for timestamps (#1129)

* Use type: integer / format: int64 for timestamps

Closes #749.

* Changelog
This commit is contained in:
Alexey Rusakov 2022-06-15 08:32:55 +02:00 committed by GitHub
parent 6adacd18c1
commit 6792b7a9d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 11 additions and 3 deletions

View file

@ -126,6 +126,7 @@ paths:
description: The ID of the room in which the event was posted.
ts:
type: integer
format: int64
description: |-
The unix timestamp at which the event notification was sent,
in milliseconds.

View file

@ -147,7 +147,7 @@ paths:
title: StrippedChildStateEvent
properties:
origin_server_ts:
type: number
type: integer
format: int64
description: The `origin_server_ts` for the event.
required: [origin_server_ts]

View file

@ -68,6 +68,7 @@ paths:
description: The address of the 3pid being looked up.
validated_at:
type: integer
format: int64
description: |-
Timestamp, in milliseconds, indicating the time that the 3pid
was validated.
@ -174,12 +175,15 @@ paths:
description: The Matrix user ID associated with the 3pid.
not_before:
type: integer
format: int64
description: A unix timestamp before which the association is not known to be valid.
not_after:
type: integer
format: int64
description: A unix timestamp after which the association is not known to be valid.
ts:
type: integer
format: int64
description: The unix timestamp at which the association was verified.
signatures:
type: object

View file

@ -184,6 +184,7 @@ paths:
description: The `pushkey` given when the pusher was created.
pushkey_ts:
type: integer
format: int64
description: |-
The unix timestamp (in seconds) when the
pushkey was last updated.

View file

@ -154,7 +154,7 @@ paths:
- type: object
properties:
origin_server_ts:
type: number
type: integer
format: int64
description: The `origin_server_ts` for the event.
required: [origin_server_ts]