Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 13 additions & 22 deletions spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1085,6 +1085,12 @@ components:
type: number
format: float
description: Timestamp in seconds since the UNIX epoch. Can be transformed into a Date object.

UnixSecondsNullable:
type: number
format: float
nullable: true
description: Timestamp in seconds since the UNIX epoch. Can be transformed into a Date object.

SearchableUnixSecondsInput:
oneOf:
Expand Down Expand Up @@ -1997,12 +2003,7 @@ components:
updatedAt:
$ref: '#/components/schemas/UnixSeconds'
archivedAt:
nullable: true
# TODO: This should be a UnixSeconds object, but the OpenAPI generator doesn't correctly create Python SDK
# schemas to reflect nullability. Leads to a runtime exception when archivedAt is null.
type: number
format: float
description: Timestamp in seconds since the UNIX epoch. Can be transformed into a Date object.
$ref: '#/components/schemas/UnixSecondsNullable'
labels:
type: array
items:
Expand Down Expand Up @@ -2060,12 +2061,7 @@ components:
updatedAt:
$ref: '#/components/schemas/UnixSeconds'
archivedAt:
nullable: true
# TODO: This should be a UnixSeconds object, but the OpenAPI generator doesn't correctly create Python SDK
# schemas to reflect nullability. Leads to a runtime exception when archivedAt is null.
type: number
format: float
description: Timestamp in seconds since the UNIX epoch. Can be transformed into a Date object.
$ref: '#/components/schemas/UnixSecondsNullable'
pipelineId:
type: string
format: uuid
Expand Down Expand Up @@ -2100,12 +2096,7 @@ components:
updatedAt:
$ref: '#/components/schemas/UnixSeconds'
archivedAt:
nullable: true
# TODO: This should be a UnixSeconds object, but the OpenAPI generator doesn't correctly create Python SDK
# schemas to reflect nullability. Leads to a runtime exception when archivedAt is null.
type: number
format: float
description: Timestamp in seconds since the UNIX epoch. Can be transformed into a Date object.
$ref: '#/components/schemas/UnixSecondsNullable'
expectedOutputs:
type: object
nullable: true
Expand Down Expand Up @@ -2167,22 +2158,22 @@ components:
id:
type: string
format: uuid
description: The ID of the evaluator
description: The ID of the evaluator
createdAt:
$ref: '#/components/schemas/UnixSeconds'
updatedAt:
$ref: '#/components/schemas/UnixSeconds'
archivedAt:
$ref: '#/components/schemas/UnixSeconds'
nullable: true
$ref: '#/components/schemas/UnixSecondsNullable'
icon:
type: string
nullable: true
name:
type: string
description: The name of the evaluator
options:
type: object
type: array
items: {}
description: For evaluators with options scoring, the available options to choose from
nullable: true
aiModel:
Expand Down