Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55239,7 +55239,6 @@ components:
type: string
required:
- name
- project_id
type: object
LLMObsAnnotationQueueDataAttributesResponse:
description: Attributes of an LLM Observability annotation queue.
Expand Down Expand Up @@ -158838,7 +158837,8 @@ paths:
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
post:
description: |-
Create an annotation queue. The `name` and `project_id` fields are required.
Create an annotation queue. The `name` field is required.
Optionally associate the queue with a project by providing `project_id`.
An optional `annotation_schema` can be provided to define the labels for the queue.
Fields such as `created_by`, `owned_by`, `created_at`, `modified_by`,
and `modified_at` are inferred by the backend.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11437,7 +11437,8 @@ export class LLMObservabilityApi {
}

/**
* Create an annotation queue. The `name` and `project_id` fields are required.
* Create an annotation queue. The `name` field is required.
* Optionally associate the queue with a project by providing `project_id`.
* An optional `annotation_schema` can be provided to define the labels for the queue.
* Fields such as `created_by`, `owned_by`, `created_at`, `modified_by`,
* and `modified_at` are inferred by the backend.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export class LLMObsAnnotationQueueDataAttributesRequest {
/**
* Identifier of the project this queue belongs to.
*/
"projectId": string;
"projectId"?: string;

/**
* A container for additional, undeclared properties.
Expand Down Expand Up @@ -60,7 +60,6 @@ export class LLMObsAnnotationQueueDataAttributesRequest {
projectId: {
baseName: "project_id",
type: "string",
required: true,
},
additionalProperties: {
baseName: "additionalProperties",
Expand Down
Loading