You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.
This PR includes no changesets
When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types
--- a/schemas/fingerprint-server-api-v4-normalized.yaml+++ b/schemas/fingerprint-server-api-v4-normalized.yaml@@ -530,14 +530,14 @@
value). Defaults to 7 days ago. Setting `start` does not change the
default of `now` for `end`/`end_date_time` — adjust it separately if
needed.
schema:
examples:
- - 1767225600000- example: 1767225600000- type: integer- format: int64+ - '2026-01-01T00:00:00Z'+ example: '2026-01-01T00:00:00Z'+ type: string+ format: date-time
x-parameter-alias: start_date_time
- name: start_date_time
in: query
description: >-
Include events that happened after this point (with timestamp
@@ -545,28 +545,28 @@
timestamp). Defaults to 7 days ago. Setting `start_date_time` does
not the default of `now` for `end`/`end_date_time` — adjust it
separately if needed. This parameter is an alias for `start`.
schema:
examples:
- - '2026-01-01T00:00:00Z'- example: '2026-01-01T00:00:00Z'- type: string- format: date-time+ - 1767225600000+ example: 1767225600000+ type: integer+ format: int64
x-aliased-parameter-name: start
- name: end
in: query
description: >-
Include events that happened before this point (with timestamp less
than or equal the provided `end` Unix milliseconds value). Defaults
to now. Setting `end` does not change the default of `7 days ago`
for `start`/`start_date_time` — adjust it separately if needed.
schema:
examples:
- - 1769903999000- example: 1769903999000- type: integer- format: int64+ - '2026-01-31T23:59:59Z'+ example: '2026-01-31T23:59:59Z'+ type: string+ format: date-time
x-parameter-alias: end_date_time
- name: end_date_time
in: query
description: >-
Include events that happened before this point (with timestamp less
@@ -574,14 +574,14 @@
Defaults to now. Setting `end_date_time` does not change the default
of `7 days ago` for `start`/`start_date_time` — adjust it separately
if needed. This parameter is an alias for `end`.
schema:
examples:
- - '2026-01-31T23:59:59Z'- example: '2026-01-31T23:59:59Z'- type: string- format: date-time+ - 1769903999000+ example: 1769903999000+ type: integer+ format: int64
x-aliased-parameter-name: end
- name: reverse
in: query
schema:
type: boolean
--- a/schemas/fingerprint-server-api-v4-with-examples.yaml+++ b/schemas/fingerprint-server-api-v4-with-examples.yaml@@ -1645,45 +1645,46 @@
to web events only (e.g., https://example.com)
- name: start
in: query
schema:
oneOf:
- - type: integer- format: int64- examples:- - 1767225600000
- type: string
format: date-time
examples:
- '2026-01-01T00:00:00Z'
+ - type: integer+ format: int64+ examples:+ - 1767225600000
examples:
- '2026-01-01T00:00:00Z'
description: >
- Include events that happened after this point (with timestamp- greater than or equal the provided `start` Unix milliseconds value- or RFC3339 timestamp). Defaults to 7 days ago. Setting `start` does- not change `end`'s default of `now` — adjust it separately if- needed.+ Include events that happened after the provided `start` date+ formatted as an RFC3339 timestamp. For backward compatibility, a+ Unix milliseconds timestamp is also accepted. Defaults to 7 days+ ago. Setting `start` does not change the default `end` date of `now`+ — adjust it separately if needed.
- name: end
in: query
schema:
oneOf:
- - type: integer- format: int64- examples:- - 1769903999000
- type: string
format: date-time
examples:
- '2026-01-31T23:59:59Z'
+ - type: integer+ format: int64+ examples:+ - 1769903999000
examples:
- '2026-01-31T23:59:59Z'
description: >
- Include events that happened before this point (with timestamp less- than or equal the provided `end` Unix milliseconds value or RFC3339- timestamp). Defaults to now. Setting `end` does not change `start`'s- default of `7 days ago` — adjust it separately if needed.+ Include events that happened before the provided `end` date+ formatted as an RFC3339 timestamp. For backward compatibility, a+ Unix milliseconds timestamp is also accepted. Defaults to now.+ Setting `end` does not change the default `start` date of `7 days+ ago` — adjust it separately if needed.
- name: reverse
in: query
schema:
type: boolean
description: >
--- a/schemas/fingerprint-server-api-v4.yaml+++ b/schemas/fingerprint-server-api-v4.yaml@@ -524,51 +524,52 @@
to web events only (e.g., https://example.com)
- name: start
in: query
schema:
oneOf:
- - type: integer- format: int64- examples:- - 1767225600000- example: 1767225600000
- type: string
format: date-time
examples:
- '2026-01-01T00:00:00Z'
example: '2026-01-01T00:00:00Z'
+ - type: integer+ format: int64+ examples:+ - 1767225600000+ example: 1767225600000
examples:
- '2026-01-01T00:00:00Z'
example: '2026-01-01T00:00:00Z'
description: >
- Include events that happened after this point (with timestamp- greater than or equal the provided `start` Unix milliseconds value- or RFC3339 timestamp). Defaults to 7 days ago. Setting `start` does- not change `end`'s default of `now` — adjust it separately if- needed.+ Include events that happened after the provided `start` date+ formatted as an RFC3339 timestamp. For backward compatibility, a+ Unix milliseconds timestamp is also accepted. Defaults to 7 days+ ago. Setting `start` does not change the default `end` date of `now`+ — adjust it separately if needed.
- name: end
in: query
schema:
oneOf:
- - type: integer- format: int64- examples:- - 1769903999000- example: 1769903999000
- type: string
format: date-time
examples:
- '2026-01-31T23:59:59Z'
example: '2026-01-31T23:59:59Z'
+ - type: integer+ format: int64+ examples:+ - 1769903999000+ example: 1769903999000
examples:
- '2026-01-31T23:59:59Z'
example: '2026-01-31T23:59:59Z'
description: >
- Include events that happened before this point (with timestamp less- than or equal the provided `end` Unix milliseconds value or RFC3339- timestamp). Defaults to now. Setting `end` does not change `start`'s- default of `7 days ago` — adjust it separately if needed.+ Include events that happened before the provided `end` date+ formatted as an RFC3339 timestamp. For backward compatibility, a+ Unix milliseconds timestamp is also accepted. Defaults to now.+ Setting `end` does not change the default `start` date of `7 days+ ago` — adjust it separately if needed.
- name: reverse
in: query
schema:
type: boolean
description: >
fingerprint-dx-team-actions-runnerBot
changed the title
Sync OpenAPI Schema (17877)
Sync OpenAPI Schema (17877) - events-search: Prefer RFC3339 for start and end query parameters
Jul 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR automatically updates the OpenAPI schema.
Changes
1 file(s) modified
Modified files
schemas/paths/events.yamlNote for reviewers: Please review the schema changes.
You likely need to manually add a changeset file to this branch before merging.